728x90
반응형
서버 간 방화벽 확인 Shell (Python)
- 사용법
- python connect.py
- '127.0.0.1'
- 12000
- HOST ip 를 입력할 때는 '127.0.0.1' 로 입력.
- connected 라고 출력되면 연결된 거임.
import socket
print("##### example #####")
print("host : '127.xx.xx.xx'")
print("port : xxxx")
print("#################")
HOST = input("host : ")
PORT = input("port : ")
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST,PORT))
print("HOST : ", HOST, " connected")
'Utils & Infra & Tool > Shell' 카테고리의 다른 글
Sftp Shell Script with password (0) | 2020.07.10 |
---|---|
Linux 서버 간 데이터 전송 (SCP 이용) (0) | 2020.07.10 |
jar 안에서 특정 클래스 찾는 Shell (findClass) (0) | 2020.07.10 |
[Shell] egrep, grep, awk 명령어 (0) | 2020.07.10 |
[Shell] 파일 주기적으로 백업 하는 Shell (0) | 2020.07.10 |
댓글