Can't reach other vlan only host adminstrative vlan

hrobayo

New Member
Feb 19, 2021
1
0
1
44
Good day,

Can't reach vlan 408 only host adminstrative vlan 305, may I doing something wrong.. Please help me.


auto lo
iface lo inet loopback

iface enp129s0f0 inet manual

iface enp129s0f1 inet manual

iface usb0 inet manual

auto eno1
iface eno1 inet manual

auto eno2
iface eno2 inet manual

auto vlan305
iface vlan305 inet static
address 172.18.49.240/27
gateway 172.18.49.252
ovs_type OVSIntPort
ovs_bridge vmbr1
ovs_options tag=305

auto vlan408
iface vlan408 inet static
address 172.18.60.248/27
ovs_type OVSIntPort
ovs_bridge vmbr1
ovs_options tag=408

auto bond0
iface bond0 inet manual
ovs_bonds eno1 eno2
ovs_type OVSBond
ovs_bridge vmbr1
ovs_options bond_mode=balance-slb vlan_mode=native-untagged trunks=305,408

auto vmbr1
iface vmbr1 inet manual
ovs_type OVSBridge
ovs_ports vlan305 bond0 vlan408
 
Check first whether the IP configuration is correct by
Code:
ip addr

or - if nettools are installed -

Code:
ifconfig

if you can see the correctly configured vlan305 trace the interface by
Code:
tcpdump -eni vlan305

whether packets are sent/received as expected.

Depending on the result a next step for investigation can be defined.