mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* aurvote: add Chinese translation * balooctl: add Chinese translation * beep: add Chinese translation * betterlockscreen: add Chinese translation * binwalk: add Chinese translation * binwise: add Chinese translation * blkdiscard: add Chinese translation * blkid: add Chinese translation * bluetoothctl: add Chinese translation * bluetoothd: add Chinese translation * bmon: add Chinese translation * bpftrace: add Chinese translation * bpytop: add Chinese translation * brctl: add Chinese translation * brew: add Chinese translation * commit suggestion
24 lines
479 B
Markdown
24 lines
479 B
Markdown
# brctl
|
|
|
|
> 以太网桥管理。
|
|
> 更多信息:<https://manned.org/brctl>.
|
|
|
|
- 显示有关当前现有以太网网桥信息的列表:
|
|
|
|
`sudo brctl show`
|
|
|
|
- 创建新的以太网桥接接口:
|
|
|
|
`sudo brctl add {{网桥名}}`
|
|
|
|
- 删除一个已存在的以太网桥接接口:
|
|
|
|
`sudo brctl del {{网桥名}}`
|
|
|
|
- 向现有网桥添加接口:
|
|
|
|
`sudo brctl addif {{网桥名}} {{接口名}}`
|
|
|
|
- 从现有网桥中删除接口:
|
|
|
|
`sudo brctl delif {{网桥名}} {{接口名}}`
|