所以我想做一个类似于 Netcat (nc -l -v -p 2121) 的 Python 端口监听器。我环顾四周,找不到我要找的东西。我只想能够通过 CLI 参数提供一个端口并监听该端口(python listen.py 2121)。如果有人能指出我正确的方向,将不胜感激。
问问题
3759 次
2 回答
3
开始的地方将是socket
模块(它是内置的)。
要设置监听套接字s
,您可以执行以下操作:
port = 1234
s = socket.socket()
s.bind(("", port))
s.listen(1)
一旦套接字正在侦听,您可以使用 接受它的连接socket.accept()
,这将返回一个包含已连接套接字及其连接地址的元组。
于 2013-07-15T21:24:06.590 回答
1
Check out the SocketServer module, there are lots of examples there.
于 2013-07-15T21:21:38.293 回答