tldr/pages/linux/brctl.md

25 lines
546 B
Markdown
Raw Normal View History

2019-01-08 23:12:18 +00:00
# brctl
> Ethernet bridge administration.
> More information: <https://manned.org/brctl>.
2019-01-08 23:12:18 +00:00
- Show a list with information about currently existing Ethernet bridges:
2019-01-08 23:12:18 +00:00
`sudo brctl show`
- Create a new Ethernet bridge interface:
2019-01-08 23:12:18 +00:00
`sudo brctl add {{bridge_name}}`
- Delete an existing Ethernet bridge interface:
2019-01-08 23:12:18 +00:00
`sudo brctl del {{bridge_name}}`
- Add an interface to an existing bridge:
`sudo brctl addif {{bridge_name}} {{interface_name}}`
- Remove an interface from an existing bridge:
`sudo brctl delif {{bridge_name}} {{interface_name}}`