假设要在网卡eth0上绑定vlan100,
方法一
新建一个网卡,名字为ifcfg-vlan100
内容如下:
VLAN=yes
VLAN_NAME_TYPE=VLAN_PLUS_VID_NO_PAD
DEVICE=vlan100
PHYSDEV=eth0
BOOTPROTO=static
ONBOOT=yes
TYPE=Ethernet
IPADDR=192.168.100.254
NETMASK=255.255.255.0
方法二
使用子网卡
新建一个网卡,名字为ifcfg-eth0.100
内容如下:
VLAN=yes
DEVICE=eth0.100
BOOTPROTO=static
ONBOOT=yes
TYPE=Ethernet
IPADDR=10.254.5.254
NETMASK=255.255.255.0