You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
611 B

7 years ago
dhclient
===
动态获取或释放IP地址
## 补充说明
**dhclient命令** 使用动态主机配置协议动态的配置网络接口的网络参数。
### 语法
```
dhclient(选项)(参数)
```
### 选项
```
0指定dhcp客户端监听的端口号
-d总是以前台方式运行程序
-q安静模式不打印任何错误的提示信息
-r释放ip地址。
```
### 参数
网络接口:操作的网络接口。
### 实例
```
dhclient -r #释放IP
dhclient #获取IP
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->