HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

brctl — Ethernet bridge administration. More information: <https://manned.org/brctl>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
administrationcommandethernetbrctlcliinformationbridgemore
linux

Problem

How to use the brctl command: Ethernet bridge administration. More information: <https://manned.org/brctl>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: linux/brctl

Revisions (0)

No revisions yet.