如何在openwrt上设置openflow的networkingconfiguration?

我使用Openflow 1.3自定义构build了Openwrt(barrier barrier),我可以将它连接到带外模式的ryo simple_switch_13控制器。 Ehternet端口号3和4被设置为openflow端口,但是当我将设备连接到这些端口并手动设置IP时,将无法ping 192.168.1.1或同一networking上的任何其他设备!
这里有什么问题? Openflow似乎没有问题,当这些端口没有设置为openflow端口时,这些端口正常工作。 请提供一些提示。

openwrt中configuration文件是:

的/ etc /configuration/networking

config switch 'eth0' option name 'eth0' option reset '1' option enable_vlan '1' config switch_vlan option device 'eth0' option vlan '1' option ports '1 2 8t' config switch_vlan option device 'eth0' option vlan '2' option ports '0 8t' config interface 'loopback' option ifname 'lo' option proto 'static' option ipaddr '127.0.0.1' option netmask '255.0.0.0' config globals 'globals' option ula_prefix 'fdbe:80c3:7cea::/48' config interface 'lan' option ifname 'eth0.1' option force_link '1' option type 'bridge' option proto 'static' option ipaddr '192.168.1.1' option netmask '255.255.255.0' option ip6assign '60' config interface 'wan' option ifname 'eth0.2' option proto 'dhcp' config interface 'wan6' option ifname '@wan' option proto 'dhcpv6' config interface option 'ifname' 'eth0.4' option 'proto' 'static' config interface option 'ifname' 'eth0.3' option 'proto' 'static' 

/ etc / config / openflow文件:

 config 'ofswitch' option 'dp' 'dp0' option 'dpid' '000000000001' option 'ofports' 'eth0.3 eth0.4' option 'ofctl' 'tcp:CONTROLLER_IP:6633' option 'mode' 'outofband' 

Ryu simple_switch_13作为带外控制器运行,设备是Li nksys E3000。 谢谢。