假设我想看看我的ftp服务器是否在线,我怎么能在程序中执行此操作。 另外,您认为最容易打扰最简单的方式是什么?
答案 0 :(得分:2)
就个人而言,我会首先尝试使用nmap,http://nmap.org。
nmap $HOSTNAME -p 21
在python中测试服务器列表上的端口21(ftp)可能如下所示:
#!/usr/bin/env python
from socket import *
host_list=['localhost', 'stackoverflow.com']
port=21 # (FTP port)
def test_port(ip_address, port, timeout=3):
s = socket(AF_INET, SOCK_STREAM)
s.settimeout(timeout)
result = s.connect_ex((ip_address, port))
s.close()
if(result == 0):
return True
else:
return False
for host in host_list:
if test_port(gethostbyname(host), port):
print 'Successfully connected to',
else:
print 'Failed to connect to',
print '%s on port %d' % (host, port)
答案 1 :(得分:1)