ifconfig与brctl详细具体使用
时间: 2023-10-21 17:23:42 浏览: 101
`ifconfig` 命令
`ifconfig` 命令是用于配置和管理网络接口的工具。以下是一些常用的 `ifconfig` 命令:
1. 显示所有网络接口的信息:
```
ifconfig
```
2. 显示指定网络接口的信息:
```
ifconfig eth0
```
3. 启用或禁用网络接口:
```
ifconfig eth0 up
ifconfig eth0 down
```
4. 配置网络接口的 IP 地址与子网掩码:
```
ifconfig eth0 192.168.1.100 netmask 255.255.255.0
```
5. 显示网络接口的统计信息:
```
ifconfig eth0 | grep "RX packets"
ifconfig eth0 | grep "TX packets"
```
`brctl` 命令
`brctl` 命令是用于管理 Linux 上的网络桥接的工具。以下是一些常用的 `brctl` 命令:
1. 显示所有网络桥接的信息:
```
brctl show
```
2. 创建一个新的网络桥接:
```
brctl addbr br0
```
3. 删除一个网络桥接:
```
brctl delbr br0
```
4. 向一个网络桥接中添加一个网络接口:
```
brctl addif br0 eth0
```
5. 从一个网络桥接中删除一个网络接口:
```
brctl delif br0 eth0
```
6. 显示一个网络桥接的统计信息:
```
brctl showstp br0
```
这些命令只是 `ifconfig` 和 `brctl` 命令的一些基本用法,还有更多高级的使用方法可以参考各自的帮助文档。
阅读全文