网络 - 测试连接[Python或C]

时间:2010-06-26 22:37:14

标签: python networking

假设我想看看我的ftp服务器是否在线,我怎么能在程序中执行此操作。 另外,您认为最容易打扰最简单的方式是什么?

2 个答案:

答案 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)

连接到FTP服务器的端口以查看它是否接受连接。

如果您想更进一步,可以发送ls命令并检查您是否得到明智的回应。

如果您想在Python中执行此操作,可以使用ftplib