This is just quick how-to on setting up vlan interface on a Linux system. As this is in lengths described elsewhere I will stick just to the commands and brief explanations.
The first thing to do is to get the “vlan” package as it is not normally installed. The other bit is the 8021q kernel module which is not normally loaded but is present on Debian-based systems by defualt.
Checking the state of the module:
lsmod | grep 8021q
if this will return empty result you must load the module using mordprobe
modprobe 8021q
and verify again with lsmod as before.
Now the system is ready to get new tagged interfaces
vconfig add eth0 X
Where eth0 is your physical interface and X is the VLAN ID you want the new interface to be tagged with. The command will have an output saying that interface eth0.X has been created. This is great but you also must now somehow specify what pbit setting do you want in there as by default egress traffic is by default priority 0. In order to make lets say ping ICMP packets marked with CoS we must create an egress map for the default priority (o) in which we will re-map it to whatever we want.
vconfig set_egress_map eth0.X 0 7
In this example I have re-mapped the default priority 0 to egress priority 7
This setup can be made permanent by adding the module name in /etc/modules and adding the relevant lines in the interfaces file e.g.:
auto eth0.100 iface eth0.100 inet static address 192.168.100.1 netmask 255.255.255.0 vlan-raw-device eth0