cheng029 发表于 2015-4-18 09:03:22

||Cloudstack环境多网段支持

说明:如果Agent端的地址与guestVMIP地址不同时,需要允许在交换机上和Linux主机中添加多VLAN/子网地支持
1.交换机支持多VLAN标签
配置如下:
interface GigabitEthernet1/0/5
switchport trunk encapsulation dot1q
switchport trunk allow vlan 多协议VLAN标签
switchport mode trunk
end

2.Linux主机配置
  安装vlan(vconfig)和加载8021q模块
#yum install vconfig
#modprobe 8021q
#lsmod |grep -i 8021q
  使用linux vconfig命令配置vlan
#vconfig add eth0 100
Added VLAN with VID == 100 to IF -:eth0:-
#vconfig add eth0 200
Added VLAN with VID == 200 to IF -:eth0:-
  #在eth0接口上配置两个VLAN
#vconfig set_flag eth0.100 1 1
Set flag on device -:eth0.100:- Should be visible in /proc/net/vlan/eth0.100
#vconfig set_flag eth0.200 1 1
Set flag on device -:eth0.200:- Should be visible in /proc/net/vlan/eth0.200
  #设置VLAN的REORDER_HDR参数,默认就行了。
#可以使用cat /proc/net/vlan/eth0.100查看eth0.100参数
#ifconfig eth0 0.0.0.0
#ifconfig eth0.100 172.16.1.8 netmask 255.255.255.0 up
#ifconfig eth0.200 172.16.2.8 netmask 255.255.255.0 up
#配置网络信息
  #vconf
  ig rem eth0.100
Removed VLAN -:eth0.100:-
#vconfig rem eth0.200
Removed VLAN -:eth0.200:-
#删除VLAN命令
  #将VLAN信息写入配置文件(/etc/rc.local)中,下次随机启动。
页: [1]
查看完整版本: ||Cloudstack环境多网段支持