Bridging with ip *

Create a Bridge
ip link add name name type bridge
ip link set name up
List all Bridges
ip -o link list type bridge
List a Specific Bridge
ip -o link list name
Destroy a Bridge
ip link delete name
Add an Interface to a Bridge
ip link set ethX up
ip link set ethX master name
List all Bridged Interfaces
ip -o link list type bridge_slave
List Interfaces on a Specific Bridge
ip -o link list type bridge_slave master name
Remove an Interface from a Bridge
ip link set ethX nomaster