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.
我是 pox 控制器的新手,想编写一个代码,其中交换机将向控制器发送一些数据包,控制器将向交换机发送 hello 数据包
如果你想使用 mininet 的 TCP 数据包,你可以使用 Python 设置一个简单的 HTTP 服务器并执行一个 wget,就像打开那里托管的页面一样
假设你启动 mininet
sudo mn --controller remote
然后你有 2 台主机 h1,h2。使用 h1 运行一个简单的 http 服务器,使用 h2 从该服务器读取站点
mininet> h1 python -m SimpleHTTPServer 80 & mininet> h2 wget -O - h1