#yum install vconfig 安装vconfig命令包
#modprobe 8021q 加载8021q模块,若不支持8021q模块,则不支持VLAN
#lsmod |grep -i 8021q
#vconfig add eth0 100 在eth0上配置VLAN 100
#vconfig add eth0 200 在eth0上配置VLAN 200
#vconfig set_flag eth0.100 1 1 设置VLAN的REORDER_HDR参数
#vconfig set_flag eth0.200 1 1 设置VLAN的REORDER_HDR参数
#ifconfig eth0.100 192.168.1.8 netmask 255.255.255.0 up 配置网络命令
#ifconfig eth0.100 192.168.2.8 netmask 255.255.255.0 up 配置网络命令
#ip link set eth0.100 down
#vconfig rem eth0.100 删除VLAN命令
标签:vconfig,eth0.100,8021q,VLAN,命令,eth0 From: https://www.cnblogs.com/skyliao/p/18215031