brctl: add page.

This commit is contained in:
Marco Bonelli
2019-01-09 00:12:18 +01:00
committed by Starbeamrainbowlabs
parent ddd40bc650
commit ac5cd6d896
3 changed files with 27 additions and 8 deletions

23
pages/linux/brctl.md Normal file
View File

@@ -0,0 +1,23 @@
# 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}}`