ifconfig 用法
时间: 2024-04-11 07:24:49 浏览: 99
ifconfig是一个用于配置和显示网络接口信息的命令行工具。它通常用于Linux和Unix系统中。
使用ifconfig命令可以获取和设置网络接口的IP地址、子网掩码、广播地址等信息。以下是ifconfig的一些常见用法:
1. 显示所有网络接口信息:
```
ifconfig
```
2. 显示指定网络接口信息:
```
ifconfig <interface>
```
其中,<interface>是网络接口的名称,如eth0、wlan0等。
3. 启用或禁用网络接口:
```
ifconfig <interface> up
ifconfig <interface> down
```
4. 设置网络接口IP地址:
```
ifconfig <interface> <ip_address>
```
其中,<ip_address>是要设置的IP地址。
5. 设置网络接口子网掩码:
```
ifconfig <interface> netmask <netmask>
```
其中,<netmask>是要设置的子网掩码。
6. 设置网络接口广播地址:
```
ifconfig <interface> broadcast <broadcast_address>
```
其中,<broadcast_address>是要设置的广播地址。
7. 设置网络接口MAC地址:
```
ifconfig <interface> hw ether <mac_address>
```
其中,<mac_address>是要设置的MAC地址。
8. 启用或禁用网络接口的广播功能:
```
ifconfig <interface> multicast
ifconfig <interface> -multicast
```
以上是ifconfig的一些常见用法,你可以根据需要选择相应的命令进行配置和显示网络接口信息。
阅读全文