実現したいこと
Hyper-V 上の Vyos でブリッジしようとしましたが、片方としか通信できません。
接続 eth3, eth4 をブリッジします
[RTX1500A / 10.1.0.1] ---- [eth3 vyos eth4] --- [10.1.0.2 / RTX1500B]
br0 (eth3 & eth4) : 10.1.0.100/24
発生している問題
RTX1500A から RTX1500B へ ping が通りません
Vyos からだと
eth3 側のみ ping が通ります
eth4 側は ping が通りません
ブリッジから eth3 を外すと eth4 側の RTX1500B に ping が通るようになります
設定
Vyos
1set interfaces bridge br0 address '10.1.0.100/24' 2set interfaces bridge br0 member interface eth3 3set interfaces bridge br0 member interface eth4
試したこと
設定完了後の疎通確認
Vyos
1vyos@vyos:~$ ping 10.1.0.1 2PING 10.1.0.1 (10.1.0.1) 56(84) bytes of data. 364 bytes from 10.1.0.1: icmp_seq=1 ttl=255 time=2.66 ms 464 bytes from 10.1.0.1: icmp_seq=2 ttl=255 time=2.80 ms 564 bytes from 10.1.0.1: icmp_seq=3 ttl=255 time=2.75 ms 6^C 7--- 10.1.0.1 ping statistics --- 83 packets transmitted, 3 received, 0% packet loss, time 2004ms 9rtt min/avg/max/mdev = 2.662/2.736/2.800/0.056 ms 10 11vyos@vyos:~$ ping 10.1.0.2 12PING 10.1.0.2 (10.1.0.2) 56(84) bytes of data. 13From 10.1.0.100 icmp_seq=1 Destination Host Unreachable 14From 10.1.0.100 icmp_seq=2 Destination Host Unreachable 15From 10.1.0.100 icmp_seq=3 Destination Host Unreachable 16^C 17--- 10.1.0.2 ping statistics --- 184 packets transmitted, 0 received, +3 errors, 100% packet loss, time 3087ms 19 20vyos@vyos:~$ show arp 21Address HWtype HWaddress Flags Mask Iface 2210.1.0.1 ether 00:a0:de:35:ec:17 C br0 2310.1.0.2 (incomplete) br0
eth3 をブリッジから外してみると、 RTX1500B に繋がるようになる。
Vyos
1vyos@vyos:~$ configure 2vyos@vyos# del interfaces bridge br0 member interface eth3 3vyos@vyos# commit 4 5vyos@vyos# ping 10.1.0.2 6PING 10.1.0.2 (10.1.0.2) 56(84) bytes of data. 764 bytes from 10.1.0.2: icmp_seq=1 ttl=255 time=1.65 ms 864 bytes from 10.1.0.2: icmp_seq=2 ttl=255 time=1.13 ms 964 bytes from 10.1.0.2: icmp_seq=3 ttl=255 time=1.04 ms 10^C 11--- 10.1.0.2 ping statistics --- 123 packets transmitted, 3 received, 0% packet loss, time 2003ms 13rtt min/avg/max/mdev = 1.043/1.272/1.649/0.268 ms
ちなみに、LAN ケーブルを抜くと NO-CARRIER になり
Vyos
1vyos@vyos:~$ show bridge br0 25: eth3: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 master br0 state disabled priority 32 cost 100 36: eth4: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 master br0 state disabled priority 32 cost 100
ケーブルを挿すと UP します
Vyos
1vyos@vyos:~$ show bridge br0 25: eth3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master br0 state forwarding priority 32 cost 100 36: eth4: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master br0 state forwarding priority 32 cost 100
Vyos
1vyos@vyos:~$ show interfaces 2Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down 3Interface IP Address S/L Description 4--------- ---------- --- ----------- 5br0 10.1.0.100/24 u/u 6eth0 - u/D 7eth1 - u/u 8eth2 - u/u 9eth3 - u/u 10eth4 - u/u 11eth5 x.x.x.x/24 u/u 12lo 127.0.0.1/8 u/u 13 ::1/128
バージョン情報
- Microsoft Windows [Version 10.0.19043.1110] (21H1)
- Hyper-V マネージャ 10.0.19041.1
- VyOS 1.4-rolling-202107122017
- RTX1500 Rev.8.03.94
あなたの回答
tips
プレビュー