* [Bridge] STP problem
@ 2005-09-02 17:25 Daniel Gheorghica
2005-09-04 6:00 ` Zoran s
0 siblings, 1 reply; 2+ messages in thread
From: Daniel Gheorghica @ 2005-09-02 17:25 UTC (permalink / raw)
To: Bridge
[-- Attachment #1: Type: text/plain, Size: 2195 bytes --]
Hi all,
I have to use STP function between too bridges. The network topology are:
/--------------\ / ------ Wireless Link ----\ /--------------------\
|==LAN1==| ---- | BRIDGE 1| | BRIDGE 2| -----| ===LAN 2=== |
\---------------/ \ -----TINC vpn tunnel ------/ \---------------------/
When one of link failed the ping from one to other site stop to works.
I use bridge-utils-1.0.6 and tinc-1.0.4
I wait any suggestion about this
Daniel
The bridege setup script is:
#! /bin/bash
PATH=$PATH:/usr/local/sbin:/sbin
BR=br0
IP="172.16.3.223 <http://172.16.3.223>"
MASK="255.255.252.0 <http://255.255.252.0>"
BROADCAST="172.16.3.255 <http://172.16.3.255>"
return=$rc_done
case "$1" in
start)
echo "Starting service bridge $BR"
tincd -n vpn
brctl addbr $BR
brctl setbridgeprio $BR 0 || return=$rc_failed
brctl addif $BR eth0 || return=$rc_failed
brctl addif $BR eth1 || return=$rc_failed
brctl addif $BR vpn || return=$rc_failed
ifconfig eth0 0.0.0.0 <http://0.0.0.0> || return=$rc_failed
ifconfig eth1 0.0.0.0 <http://0.0.0.0> || return=$rc_failed
ifconfig vpn 0.0.0.0 <http://0.0.0.0> || return=$rc_failed
brctl sethello $BR 1 || return=$rc_failed
brctl setmaxage $BR 4 || return=$rc_failed
brctl setpathcost $BR eth1 100 || return=$rc_failed
brctl setpathcost $BR vpn 100 || return=$rc_failed
brctl setportprio $BR eth1 20 || return=$rc_failed
brctl setportprio $BR vpn 20 || return=$rc_failed
# brctl setageing $BR 20 || return=$rc_failed
brctl setfd $BR 4 || return=$rc_failed
brctl stp $BR on
/sbin/ifconfig $BR inet $IP netmask $MASK broadcast $BROADCAST up
echo -e "$return"
;;
stop)
tincd -k -n vpn
/sbin/ifconfig $BR down
echo "Shutting down service bridge $BR"
brctl delif $BR vpn || return=$rc_failed
brctl delif $BR eth0 || return=$rc_failed
brctl delif $BR eth1 || return=$rc_failed
brctl delbr $BR || return=$rc_failed
rmmod bridge || return=$rc_failed
echo -e "$return"
;;
status)
ifconfig $BR
brctl showstp $BR
brctl show
;;
restart)
$0 stop && $0 start || return=$rc_failed
;;
*)
echo "Usage: $0 {start|stop|status|restart}"
exit 1
esac
test "$return" = "$rc_done" || exit 1
exit 0
[-- Attachment #2: Type: text/html, Size: 5670 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [Bridge] STP problem
2005-09-02 17:25 [Bridge] STP problem Daniel Gheorghica
@ 2005-09-04 6:00 ` Zoran s
0 siblings, 0 replies; 2+ messages in thread
From: Zoran s @ 2005-09-04 6:00 UTC (permalink / raw)
To: Daniel Gheorghica, Bridge
Daniel,
I have couple of questions here to help to close on to
the cause of the problem.
Does it happen [ping stops working] in any case (when
ANY of the links fail)?
You might consider [both scenarios] setting only one
link to be tunnel between your LANs, and see what then
will happen with ping, this test scenarios might help:
LAN1 -- BRIDGE1 -- Wireless Link -- BRIDGE2 -- LAN2
or
LAN1 -- BRIDGE1 -- TINC vpn tunnel -- BRIDGE2 -- LAN2
Regards,
Zoran
--- Daniel Gheorghica <gheodan@gmail.com> wrote:
> Hi all,
> I have to use STP function between too bridges. The
> network topology are:
> /--------------\ / ------ Wireless Link ----\
> /--------------------\
> |==LAN1==| ---- | BRIDGE 1| | BRIDGE 2| -----|
> ===LAN 2=== |
> \---------------/ \ -----TINC vpn tunnel ------/
> \---------------------/
> When one of link failed the ping from one to other
> site stop to works.
> I use bridge-utils-1.0.6 and tinc-1.0.4
> I wait any suggestion about this
> Daniel
> The bridege setup script is:
>
> #! /bin/bash
>
> PATH=$PATH:/usr/local/sbin:/sbin
> BR=br0
> IP="172.16.3.223 <http://172.16.3.223>"
> MASK="255.255.252.0 <http://255.255.252.0>"
> BROADCAST="172.16.3.255 <http://172.16.3.255>"
>
> return=$rc_done
> case "$1" in
>
> start)
> echo "Starting service bridge $BR"
> tincd -n vpn
> brctl addbr $BR
> brctl setbridgeprio $BR 0 || return=$rc_failed
> brctl addif $BR eth0 || return=$rc_failed
> brctl addif $BR eth1 || return=$rc_failed
> brctl addif $BR vpn || return=$rc_failed
> ifconfig eth0 0.0.0.0 <http://0.0.0.0> ||
> return=$rc_failed
> ifconfig eth1 0.0.0.0 <http://0.0.0.0> ||
> return=$rc_failed
> ifconfig vpn 0.0.0.0 <http://0.0.0.0> ||
> return=$rc_failed
> brctl sethello $BR 1 || return=$rc_failed
> brctl setmaxage $BR 4 || return=$rc_failed
> brctl setpathcost $BR eth1 100 || return=$rc_failed
>
> brctl setpathcost $BR vpn 100 || return=$rc_failed
> brctl setportprio $BR eth1 20 || return=$rc_failed
> brctl setportprio $BR vpn 20 || return=$rc_failed
> # brctl setageing $BR 20 || return=$rc_failed
> brctl setfd $BR 4 || return=$rc_failed
> brctl stp $BR on
> /sbin/ifconfig $BR inet $IP netmask $MASK broadcast
> $BROADCAST up
> echo -e "$return"
> ;;
>
> stop)
> tincd -k -n vpn
> /sbin/ifconfig $BR down
> echo "Shutting down service bridge $BR"
> brctl delif $BR vpn || return=$rc_failed
> brctl delif $BR eth0 || return=$rc_failed
> brctl delif $BR eth1 || return=$rc_failed
> brctl delbr $BR || return=$rc_failed
> rmmod bridge || return=$rc_failed
> echo -e "$return"
> ;;
>
> status)
> ifconfig $BR
> brctl showstp $BR
> brctl show
> ;;
>
> restart)
> $0 stop && $0 start || return=$rc_failed
> ;;
>
> *)
>
> echo "Usage: $0 {start|stop|status|restart}"
> exit 1
> esac
>
> test "$return" = "$rc_done" || exit 1
> exit 0
____________________________________________________
Start your day with Yahoo! - make it your home page
http://www.yahoo.com/r/hs
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-09-04 6:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-02 17:25 [Bridge] STP problem Daniel Gheorghica
2005-09-04 6:00 ` Zoran s
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.