1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/brctl.md

24 lines
498 B
Markdown
Raw Normal View History

2019-01-09 00:12:18 +01:00
# brctl
> Ethernet bridge administration.
- Show a list with information about currently existing ethernet bridges:
`sudo brctl show`
- Create a new ethernet bridge interface:
`sudo brctl add {{bridge_name}}`
- Delete an existing ethernet bridge interface:
`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}}`