HP-UX – Configure network interface

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 – Configure network interface

帖子 admin » 2013年 8月 3日 23:08 星期六

1. Open the /etc/rc.config.d/netconf for editing.

2. Add the internet configuration information for the interface.

For example:
INTERFACE_NAME[0]=”lan0”
IP_ADDRESS[0]=”192.6.1.1”
SUBNET_MASK[0]=”255.255.224.0”
BROADCAST_ADDRESS[0]=””
INTERFACE_STATE[0]=””
DHCP_ENABLE[0]=”0”
NOTE: The index value (value located inside brackets) must be different for each interface.

3. Add the routing information.

For example, to specify the default route:
ROUTE_DESTINATION[0]=”default”
ROUTE_GATEWAY[0]=”192.6.1.2”
ROUTE_COUNT[0]=”1”
ROUTE_MASK[0]=””
ROUTE_ARGS[0]=””
NOTE: The index value (value located inside brackets) must be different for each route.

4. Save the file and exit the editor.

5. Check the network adapter’s interface configuration file to verify speed and duplex settings.

NOTE: HP names these configuration files differently depending on model. Consult your particular network adapter’s documentation.

6. Reboot the server or restart the network services to avoid the reboot.

代码: 全选

# /sbin/init.d/net start

回复