Networking
Centos 可以配置為路由私有 vlan 嗎?
所以你可以用 vlan100 配置 eth0:
VLAN=yes VLAN_NAME_TYPE=VLAN_PLUS_VID_NO_PAD DEVICE=vlan100 PHYSDEV=eth0 BOOTPROTO=static ONBOOT=yes TYPE=Ethernet IPADDR=10.10.10.1 NETMASK=255.255.255.0
現在介面將看到帶有 vlan 100 標記的流量。
我可以配置 Centos 將 vlan100 數據包轉發到任何地方。
現在假設我在 vlan 100 中有多個私有 vlan?
vlan 103,vlan 104。
我如何獲得查看私有 VLAN 的界面?
您需要 802.1q 隧道或 QinQ。看到這個:
http://www.microhowto.info/howto/configure_an_ethernet_interface_as_a_qinq_vlan_trunk.html
ip link add link eth0 eth0.100 type vlan proto 802.1ad id 100 ip link add link eth0.100 eth0.100.103 type vlan proto 802.1Q id 103 ip link set eth0 up ip link set eth0.100 up