본문 바로가기

컴퓨터/IT

우분투 8.10 vlan 가상 네트워크 자동 시작

https://wiki.ubuntu.com/vlan


sudo apt-get install vlan

sudo modprobe 8021q

sudo vconfig add eth0 1

sudo ifconfig eth0.1 10.10.10.1 netmask 255.255.255.0

sudo su -c 'echo "8021q" >> /etc/modules'


/etc/network/interfaces 파일에서
auto eth0.1
iface eth0.1 inet static
address 10.10.10.1
netmask 255.255.255.0
vlan-raw-device eth0

이렇게 하면 우분투를 재시작해도 인터페이스가 추가되어 올라온다.

포트포워딩은 그냥 rc.local에 추가해도 되는것 같다..