A node configured with 3 interfaces, each in a separate subnet as below:
as soon as i enable this configuration, i can ping all interfaces:
but i can only access the management UI through the 10.10.10.20 interface. any ideas as to what may be happening?
Code:
auto lo
iface lo inet loopback
iface enp0s31f6 inet manual
#NiC on motherboard
iface wlo1 inet manual
auto enp1s0
iface enp1s0 inet manual
mtu 9000
#10GbE Card Port 0
auto enp1s0d1
iface enp1s0d1 inet manual
mtu 9000
#10GbE Card Port 1
auto enp6s0f0
iface enp6s0f0 inet manual
#1GbE Card Port 0
auto enp6s0f1
iface enp6s0f1 inet manual
#1GbE Card Port 1
auto bond0
iface bond0 inet manual
bond-slaves enp6s0f0 enp6s0f1
bond-miimon 100
bond-mode 802.3ad
#LACP of 1GbE Card Ports
auto vmbr0
iface vmbr0 inet manual
address 10.10.100.100/24
gateway 10.10.100.1
bridge-ports enp0s31f6
bridge-stp off
bridge-fd 0
#Bridge on motherboard NIC
auto vmbr1
iface vmbr1 inet static
address 10.10.10.20/24
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
#Bridge on bond0
auto vmbr2
iface vmbr2 inet static
address 10.10.50.100/24
bridge-ports enp1s0d1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-124
mtu 9000
#Bridge for 10GbE Ports
as soon as i enable this configuration, i can ping all interfaces:
Code:
~ ping 10.10.100.100 ✔ 06:12:47 PM
PING 10.10.100.100 (10.10.100.100): 56 data bytes
64 bytes from 10.10.100.100: icmp_seq=0 ttl=64 time=2.318 ms
64 bytes from 10.10.100.100: icmp_seq=1 ttl=64 time=2.754 ms
64 bytes from 10.10.100.100: icmp_seq=2 ttl=64 time=3.108 ms
^C
--- 10.10.100.100 ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 2.318/2.727/3.108/0.323 ms
~ ping 10.10.10.20 ✔ 06:12:58 PM
PING 10.10.10.20 (10.10.10.20): 56 data bytes
64 bytes from 10.10.10.20: icmp_seq=0 ttl=64 time=2.928 ms
64 bytes from 10.10.10.20: icmp_seq=1 ttl=64 time=2.683 ms
^C
--- 10.10.10.20 ping statistics ---
2 packets transmitted, 2 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 2.683/2.805/2.928/0.122 ms
~ ping 10.10.50.50 ✔ 06:13:05 PM
PING 10.10.50.50 (10.10.50.50): 56 data bytes
64 bytes from 10.10.50.50: icmp_seq=0 ttl=63 time=3.157 ms
64 bytes from 10.10.50.50: icmp_seq=1 ttl=63 time=2.859 ms
^C
--- 10.10.50.50 ping statistics ---
2 packets transmitted, 2 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 2.859/3.008/3.157/0.149 ms
but i can only access the management UI through the 10.10.10.20 interface. any ideas as to what may be happening?