python testing whether socket is connected code example
Example: check remote port is open or not using python
def port_check(HOST):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
s.connect((HOST, int(22)))
s.shutdown(2)
return True
except:
return False