1 頁 (共 1 頁)

Ubuntu Vlan

發表於 : 2010-04-01 23:53:19
yehlu
http://www.lupaworld.com/24775/viewspace-64389.html

apt-get install vlan
modprobe 8021q
vconfig add eth0 2
vconfig add eth0 3
ifconfig eth0 0.0.0.0 up
ifconfig eth0.2 192.168.0.1 broadcast 192.168.0.255 netmask 255.255.255.0 up
ifconfig eth0.3 192.168.1.1 broadcast 192.168.1.255 netmask 255.255.255.0 up

echo 1 > /proc/sys/net/ipv4/ip_forward
vim /etc/sysctl.con
net.ipv4.conf.default.forwarding=1
sysctl -p

route add -net 192.168.0.0 netmask 255.255.255.0 gw eth0.2
route add -net 192.168.1.0 netmask 255.255.255.0 gw eth0.3

Re: Ubuntu Vlan

發表於 : 2010-04-01 23:57:26
yehlu
http://www.mysidenotes.com/2007/08/17/v ... tu-debian/



Here is a quick guide how to enable VLANs on Ubuntu or Debian box.

VLANs on Linux will work with the most of the modern ethernet adapters. Frankly speaking I have not came across of adapter it would not work with.

I presume that you use standard kernel shipped with Ubuntu. However, if you use a custom built kernel make sure VLAN support is enabled in it.

In this example I want my computer to connect to vlan4,vlan5 and vlan101. My default gateway is in vlan101. And I have only one ethernet interface eth0.

Note: If you want to connect to only one VLAN or you have many network interfaces it is possible to do as well.

OK, now how to do this:

1. Install VLAN package on your computer:

sudo apt-get install vlan

2. Edit your /etc/network/interfaces file so it would contain the following:

# The loopback network interface
auto lo
iface lo inet loopback

# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
auto vlan4
auto vlan5
auto vlan101

# VLAN 4
iface vlan4 inet static
address 192.168.0.8
netmask 255.255.255.192
network 192.168.0.0
broadcast 192.168.0.63
mtu 1500
vlan_raw_device eth0

# VLAN 5
iface vlan5 inet static
address 10.0.111.8
netmask 255.255.255.0
network 10.0.111.0
broadcast 10.0.111.255
mtu 1500
vlan_raw_device eth0

# VLAN 101
iface vlan101 inet static
address 172.12.101.8
netmask 255.255.255.0
network 172.12.101.0
broadcast 172.12.101.255
gateway 172.12.101.1
mtu 1500
vlan_raw_device eth0

Note: You have to replace my IP addresses, network masks and gateway IP address with your own.

3. Make sure that switch interface you are connected to configured with respective VLANs.

4. Restart your network interface:
sudo /etc/init.d/networking restart

You should see something like:
Set name-type for VLAN subsystem. Should be visible in /proc/net/vlan/config
Added VLAN with VID == 4 to IF -:eth0:-
Set name-type for VLAN subsystem. Should be visible in /proc/net/vlan/config
Added VLAN with VID == 5 to IF -:eth0:-
Set name-type for VLAN subsystem. Should be visible in /proc/net/vlan/config
Added VLAN with VID == 101 to IF -:eth0:-

And this is it. Nice and easy. Happy VLANing!