Turn off stp by default, thanks ejka
authorFlorian Fainelli <florian@openwrt.org>
Thu, 18 Oct 2007 13:20:02 +0000 (13:20 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Thu, 18 Oct 2007 13:20:02 +0000 (13:20 +0000)
SVN-Revision: 9345

package/base-files/files/etc/config/network
package/base-files/files/lib/network/config.sh

index 5d380d1e8bc1c6624b7c76132104c1c001401549..a35fd2ef9a1532a1fa7f8b3d53e83ca25ff620ca 100644 (file)
@@ -12,4 +12,3 @@ config interface lan
        option proto    static
        option ipaddr   192.168.1.1
        option netmask  255.255.255.0
-       option stp      on
index e750c8a415e559deedbe12d42d0ad264eaa3a062..f07d92623f2972125371e6b1ff4b81679f879b9f 100755 (executable)
@@ -100,7 +100,7 @@ prepare_interface() {
                                        $DEBUG brctl setfd "br-$config" 0
                                        $DEBUG ifconfig "br-$config" up
                                        $DEBUG brctl addif "br-$config" "$iface"
-                                       $DEBUG brctl stp "br-$config" ${stp:-on}
+                                       $DEBUG brctl stp "br-$config" ${stp:-off}
                                        # Creating the bridge here will have triggered a hotplug event, which will
                                        # result in another setup_interface() call, so we simply stop processing
                                        # the current event at this point.