要使用 Linux VLAN, 需載入 8021q module
modprobe 8021q
使用 vconfig 可以建立 vlan-devices
vconfig add eth1 100 # 建立 eth1 VLAN 100 vlan-device
vconfig add eth1 200 # 建立 eth1 VLAN 200 vlan-device
ifconfig eth1.100 192.168.100.1 netmask 255.255.255.0 # 設定 eth1 VLAN 100 vlan-device IP
ifconfig eth1.200 192.168.200.1 netmask 255.255.255.0 # 設定 eth1 VLAN 100 vlan-device IP
ifconfig eth1.200:0 192.168.200.2 netmask 255.255.255.0 # 設定 eth1 VLAN 100 vlan-device alias IP
需搭配網管型 Switch, Port 要帶 tag
Leave a comment