Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个移动路由器,可以使用不同的 Python 脚本进行配置。我需要做的是在具体的 UDP 端口中读取到达路由器的所有数据包,然后将这些信息复制到 .txt 文件中。
任何人都可以给我一些关于如何使用 Python 做到这一点的提示?每次数据包到达路由器时如何检测?
谢谢你。
这是一个快速示例,说明如何绑定到 UDP 端口并在收到数据报时执行一些操作:
import socket s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) s.bind(('', 9800)) try: while True: result, who = s.recvfrom(256) print result, who finally: s.close()