Linux 配置Vlan

Linux 配置Vlan

  1. yum install vconfig
  2. modprobe 8021q
  3. lsmod | grep -i 8021q
  4. vconfig add eth1 51
  5. ifconfig eth1.51 up
  6. 可以使用cat /proc/net/vlan/eth1.51查看eth1.51参数
  7. 配置网络信息
  8. ifconfig eth1 0.0.0.0
  9. ifconfig eth1.51 192.168.51.250 netmask 255.255.255.0 up
  10. 删除VLAN命令
  11. vconfig rem eth1.51
  12. VLAN信息写入配置文件,开机加载8021q模块
  13. echo "modprobe 8021q" >> /etc/rc.local
  14. 创建vlan
  15. 连接vlanvlan id号要对应才能连接
  16. 配置文件/etc/sysconfig/network-scripts/ifcfg-ethx.y
  17. 其中:
  18. x表示: 具体物理网卡号
  19. y表示: vlanvlan号,即vlan ID
  20. 配置文件要求:
  21. 1. 必须包含VLAN=yes
  22. 2. 接口名必须为ethx.yy表示vlan ID,要与实际的对应
  23. 3. MAC地址不需要指定
  24. 创建配置文件/etc/sysconfig/network-scripts/ifcfg-eth1.51
  25. 文件内容如下:
  26. DEVICE=eth1.51
  27. VLAN=yes
  28. BOOTPROTO=static
  29. ONBOOT=yes
  30. IPADDR=192.168.51.250
  31. NETMASK=255.255.255.0
  32. GATEWAY=192.168.51.1

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注