ifup
启用一个网络接口。
格式
ifup <ifname> {-dhcp | -nodhcp} [-dhcp6 | -nodhcp6]
说明
[root@sylixos:/root]# help ifup
set net interface enable
"-dncp" mean use dhcp client get net address.
"-nodncp" mean MUST NOT use dhcp.
ifup [ifname] [{-dhcp | -nodhcp}] [{-dhcp6 | -nodhcp6}]
[root@sylixos:/root]#
此命令有 3 种用法:
- 参数 ifname:用于启用一个网络。
- 选项-dhcp,表示使用 DHCP 得到网络地址(自动获取 IP 地址)。
- 选项-nodhcp,表示不使用 DHCP 获得 IP 地址。
样例
[root@sylixos:/root]# ifup en1
DHCP client starting...
DHCP client start.
net interface "en1" set up.
[root@sylixos:/root]# ifup en1 -nodhcp
net interface "en1" set up.
[root@sylixos:/root]#