• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# dhclient
2
3
4## 命令功能
5
6设置和查看dhclient的参数。
7
8
9## 命令格式
10
11- dhclient <_netif name_>
12
13- dhclient -x <_netif name_>
14
15
16## 参数说明
17
18**表1** 参数说明
19
20| 参数                            | 参数说明                                     | 取值范围         |
21| ------------------------------- | -------------------------------------------- | ---------------- |
22| -h \| --help          | 查看dhclient命令支持的参数列表,及使用方式。 | N/A              |
23| <netif name>         | 启动对应网卡的dhcp请求。                     | 网卡名字,eth0。 |
24| -x <netif name> | 关闭对应网卡的dhcp功能。                     | 网卡名字,eth0。 |
25
26
27## 使用指南
28
29举例:
30
31- dhclient eth0
32
33- dhclient -x eth0
34
35## 特殊说明
36
37shell端暂不支持。
38
39## 使用实例
40
41**示例1** 启动网卡eth0的dhcp请求
42
43
44```
45OHOS:/$ dhclient eth0
46OHOS:/$ ifconfig
47lo      ip:127.0.0.1 netmask:255.0.0.0 gateway:127.0.0.1
48        ip6: ::1/64
49        HWaddr 00 MTU:0 Running Link UP
50eth0    ip:192.168.1.10 netmask:255.255.255.0 gateway:192.168.1.1
51        HWaddr 42:da:81:bc:58:94 MTU:1500 Running Default Link UP
52OHOS:/$
53```
54
55
56**示例2** 关闭网卡eth0的dhcp请求
57
58
59```
60OHOS:/$ dhclient -x eth0
61NetifStatusCallback(eth0): nsc event: 0xf0
62OHOS:/$ ifconfig
63lo      ip:127.0.0.1 netmask:255.0.0.0 gateway:127.0.0.1
64        ip6: ::1/64
65        HWaddr 00 MTU:0 Running Link UP
66eth0    ip:0.0.0.0 netmask:0.0.0.0 gateway:0.0.0.0
67        HWaddr 42:da:81:bc:58:94 MTU:1500 Running Default Link UP
68```