源码安装mininet中出现fatal: read error: Connection reset by peer

源码安装mininet的步骤:http://mininet.org/download/
当执行sudo ./install.sh后执行一段程序后出现错误:
Cloning into ‘openflow’…
fatal: read error: Connection reset by peer

出现这个错误是因为在install.sh中存在的git下openflow的地址失效了

解决方案:
sudo gedit install.sh
找到openflow的安装地址git clone git://openflowswitch.org/openflow.git
将其修改为git clone git://github.com/mininet/openflow

保存重新执行install.sh即可

你可能感兴趣的:(SDN-ODL)