python操作端口

#!/usr/bin/python 
import telnetlib 

host = '???'
port = '???'

t = telnetlib.Telnet(host,port)
t.read_until('')
t.write('flush_all\r\n')
t.read_until('')
t.write('quit\r\n')
print t.read_all()

本文出自 “杨仕” 博客,转载请与作者联系!

你可能感兴趣的:(python操作端口)