mininet中如何实现跨子网?

发布于 2025-01-11 00:47:53 字数 833 浏览 0 评论 0原文

我使用这篇文章尝试在mininet中实现跨子网。
以下是我的命令:
mn --topo single,2 --mac
h1 ifconfig h1-eth0 10.0.0.1/24 网络掩码 255.0.0.0
h2 ifconfig h2-eth0 20.0.0.1/24 网络掩码 255.0.0.0
h1路由添加默认网关10.0.0.254 h1-eth0
h2路由添加默认gw 20.0.0.254 h2-eth0
s1 ifconfig s1:0 10.0.0.254
s1 ifconfig s1:1 20.0.0.254

输入上述命令后,我尝试像这样进行 ping:
h1 ping 10.0.0.254
这里是我所看到的。
但它应该像这个

我尝试更改 h1 和 h2 的网络掩码(255.255.255.0)
或者继续本文的其余步骤。 但他们没有工作。

请告诉我哪里做错了或者在 mininet 中跨子网的正确方法。

I use this article to try to implement cross-subnet in mininet.
The following are my commands:
mn --topo single,2 --mac
h1 ifconfig h1-eth0 10.0.0.1/24 netmask 255.0.0.0
h2 ifconfig h2-eth0 20.0.0.1/24 netmask 255.0.0.0
h1 route add default gw 10.0.0.254 h1-eth0
h2 route add default gw 20.0.0.254 h2-eth0
s1 ifconfig s1:0 10.0.0.254
s1 ifconfig s1:1 20.0.0.254

After typing above commands, I try to ping like this:
h1 ping 10.0.0.254
Here is what I see.
But it should be like this.

I try to change the netmask of h1 and h2(255.255.255.0)
or just go ahead the remaining steps of the article.
but they didn't work.

Please tell me where I did wrong or the correct way to cross subnet in mininet.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

把昨日还给我 2025-01-18 00:47:53

从您引用的文章中定义的步骤来看,您缺少一些有关在交换机中安装流规则的步骤。这就是为什么你的测试不起作用。我非常相信您在 ICMP (ping) 工作之前错过了 ARP 请求/响应。看,这个人安装了规则以便处理 ARP:

mininet > sh ovs - ofctl add - flow s1 "table=0,priority=65535,arp,arp_tpa=10.0.0.254 actions=LOCAL"

mininet > sh ovs - ofctl add - flow s1 "table=0,priority=65535,arp,arp_tpa=20.0.0.254 actions=LOCAL"

干杯,

From the article you reference to the steps you define, you are missing quite some steps in regard to installing flow rules in your switch. That is why your test does not work. I pretty much believe you are missing the ARP request/response before the ICMP (ping) works. See, the person installs rules so that ARP is handled:

mininet > sh ovs - ofctl add - flow s1 "table=0,priority=65535,arp,arp_tpa=10.0.0.254 actions=LOCAL"

mininet > sh ovs - ofctl add - flow s1 "table=0,priority=65535,arp,arp_tpa=20.0.0.254 actions=LOCAL"

Cheers,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文