在linux网桥中始终禁用tap接口

我有一个物理接口eth0,我想创建两个虚拟接口并用eth0桥接它们.为此我做:
#Create the virtual interfaces
tunctl -t tap0
tunctl -t tap1
ifconfig tap0 up
ifconfig tap1 up

#Create the bridge
brctl addbr br0
brctl stp br0 off
brctl addif br0 eth0
brctl addif br0 tap0
brctl addif br0 tap1

#Turning up the bridge
ifconfig br0 up

但是我的问题是,如果tap接口总是在桥中出现禁用,并且没有流量流向它们.

$brctl show br0
bridge name bridge id       STP enabled interfaces
br0     8000.080027cabeba   no          eth2
                                        tap0
                                        tap1

$brctl showstp br0
br0
 bridge id      8000.080027cabeba
 designated root    8000.080027cabeba
 root port         0            path cost          0
 max age          20.00         bridge max age        20.00
 hello time        2.00         bridge hello time      2.00
 forward delay        15.00         bridge forward delay      15.00
 ageing time         300.01
 hello timer           0.00         tcn timer          0.00
 topology change timer     0.00         gc timer         298.42
 flags          


eth2 (1)
 port id        8001            state            forwarding
 designated root    8000.080027cabeba   path cost          4
 designated bridge  8000.080027cabeba   message age timer      0.00
 designated port    8001            forward delay timer   12.97
 designated cost       0            hold timer         1.24
 flags          

tap0 (2)
 port id        8002            state              disabled
 designated root    8000.080027cabeba   path cost        100
 designated bridge  8000.080027cabeba   message age timer      0.00
 designated port    8002            forward delay timer    0.00
 designated cost       0            hold timer         0.00
 flags          

tap1 (3)
 port id        8003            state              disabled
 designated root    8000.080027cabeba   path cost        100
 designated bridge  8000.080027cabeba   message age timer      0.00
 designated port    8003            forward delay timer    0.00
 designated cost       0            hold timer         0.00
 flags

有没有办法将tap接口设置为转发状态?我不明白为什么他们不是因为STP被禁用.

干杯

丹尼尔

解决方法

用户打开设备手柄时,仅在点击时设置载波(IFF_RUNNING).

对于使用tunctl创建的持久性点击,您需要一个附加到点击的应用程序,例如:

> http://backreference.org/2010/03/26/tuntap-interface-tutorial/

相关文章

/etc/sysctl.conf这个目录主要是配置一些系统信息,/etc/sys...
1.作用 useradd或adduser命令用来建立用户帐号和创建用户的起...
它们都是多模式编辑器,不同的是vim 是vi的升级版本,它不仅...
不管是我们在安装软件还是监测软件的使用性能,我们都要随时...
装好Tomcat7后,发现除了本机能访问外界访问不了,岂有此理。...
修改防火墙配置需要修改 /etc/sysconfig/iptables 这个文件,...