HP-UX - Add a VLAN using nwmgr

HP-UX、Linux、Tru64 UNIX、NonStop、OpenVMS、Windows Server等,数据中心、虚拟化方案等

版主: xyevolve

版面规则
1. 本版是定位于惠普软件系统及解决方案的技术讨论区。
2. 本版鼓励发帖共同讨论技术问题,不鼓励站内信件私下交流,独知知不如众知知。
3. 本版允许转贴或引用他人的作品,但必须声明原作者信息。
4. 本版禁止发表出售、求购、或其他非技术讨论等帖子。
5. 本版禁止灌水,包括但不限于任何与所讨论主题无关的回复,无意义字符,直接复制其他回复等。
6. 本站附件禁止用于商业目的,请在下载后24小时内删除,本站不对其造成的结果负任何责任。
回复
admin
网站编辑
帖子: 767
注册时间: 2010年 12月 22日 04:06 星期三

HP-UX - Add a VLAN using nwmgr

帖子 admin » 2013年 8月 3日 22:45 星期六

1. Use nwmgr to create a VLAN interface.

代码: 全选

# nwmgr -a -S vlan [-c lanVPPA] -A vlanid=vlanid, ppa=PPA [,attr=value...] [--sc]
NOTE: Please refer to the nwmgr_vlan manpage for details on the attributes that may be set. Attributes not set will get the default values. The ppa can be a single interface, a failover group, or an aggregate.

For example, to add the VLAN tag 454 to the failover group lan900, use:

代码: 全选

# nwmgr -a -S vlan -A vlanid=454, ppa=900
VLAN interface lan5000 successfully configured.
lan5000 current values:
VPPA = 5000
Related PPA = 0
VLAN ID = 454
VLAN Name = UNNAMED
Priority = 0
Priority Override Level = CONF_PRI
ToS = 0
ToS Override Level = IP_HEADER
2. Use nwmgr to save the VLAN configuration so it will be persistent across reboots.

For example, to save all current VLAN settings:

代码: 全选

# nwmgr -s -A all --from cu --sa -S vlan
To save the specific interface:

代码: 全选

# nwmgr -s -c lan5000 -A all --from cu --sa
3. Edit the /etc/rc.config.d/netconf file to add the IP configuration for the VLAN interface.

For example:
INTERFACE_NAME[2]=”lan5000”
IP_ADDRESS[2]=”192.6.1.1”
SUBNET_MASK[2]=”255.255.224.0”
BROADCAST_ADDRESS[2]=””
INTERFACE_STATE[2]=””
DHCP_ENABLE[2]=”0”
NOTE: The index value must be different for each interface

4. Restart the network.

代码: 全选

# /sbin/init.d/net stop
# /sbin/init.d/vlan stop
# /sbin/init.d/hplm stop
# /sbin/init.d/hpapa stop
# /sbin/init.d/hplm start
# /sbin/init.d/hpapa start
# /sbin/init.d/vlan start
# /sbin/init.d/net start
NOTE: If you experience problems with the network, you should reboot the server. Restarting portions of the network may not correctly re-initialize other network subsystems.

回复