Doeas anyone has idea about vlan support in linux with NIC teaming/bonding.In case of a switch I am not able to communicate however if I remove multiple vlan interfaces from NIC , I am able to communication.
Regards,
Doeas anyone has idea about vlan support in linux with NIC teaming/bonding.In case of a switch I am not able to communicate however if I remove multiple vlan interfaces from NIC , I am able to communication.
Regards,
VLAN tagging is supported in Linux using the 802.1Q module. NIC bonding is supported in Linux using the bonding module. Every major distribution should include a kernel new enough that it supports these features.
VLAN Tagging
# ip link add link eth0 name eth0.200 type vlan id 200
# ip link show
This will create an interface eth0.200
that is tagging for VLAN ID 200.
NIC Bonding
# ifconfig bond0 192.168.0.1 netmask 255.255.0.0
# ifenslave bond0 eth0 eth1
This will create an interface bond0
with the IP address 192.168.0.1/16 composed of eth0
and eth1
.
The method to making these setting persistent is dependent upon your particular distribution of Linux.
There was a bug in RHEl6 2.6-32.279 which was causing this issue. Upgrading kernel will resolve it.
A bug was in 8021dq module.
Regards