mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
546 B
546 B
brctl
Ethernet bridge administration. More information: https://manned.org/brctl.
- 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}}