9.5. 使用 iproute 配置以太网桥接配置
iproute 软件包可用作 bridge-utils 的替代选择。它允许设置网桥端口选项,如
优先级
、成本
或 状态
。
要使用
ip
实用程序为分配给网桥设备的接口设置端口选项,以 root
身份运行以下命令:
~]# ip link set enp1s0 type bridge_slave option
要选择可用选项,使用
ip
实用程序以 root
用户身份运行以下命令:
~]# ip link help bridge_slave
Usage: ... bridge_slave [ state STATE ] [ priority PRIO ] [cost COST ]
[ guard {on | off} ]
[ hairpin {on | off} ]
[ fastleave {on | off} ]
[ root_block {on | off} ]
[ learning {on | off} ]
[ flood {on | off} ]
有关端口选项的详情,请查看 ip-link(8)man
page。