|
Posted by Elia Spadoni on April 29, 2008, 8:11 pm
If you were Registered and logged in, you could reply and use other advanced thread options Hello, thank you for your answer,
>> I have managed creating the virtual ip of HSRP
>>
>> my troubles are in the IP SLA command.
>>
>> I need that router A pings this IP (example) 77.77.77.50
>> I need that router B pings this IP (example) 99.99.99.50
>>
>> The pinged IP is to test the reachability of the upstream router of each
>> connection.
>>
>> I would like to ping it every 30 seconds (frequency 30)
>> and after 3 (three) pings un-answered, the router will change connection
>> from sHDSL to ADSL. After 3 pings answered, the connection is re-routed
>> on
>> the main SHDSL link.
> You can configure tracking in many different ways. Personally assuming
> your SDSL is primary and ADSL is backup, configure HSRP on the LAN
> side and then on your primary router track the object as part of
> HSRP.... somthing like:
>
> RTR-A
>
> ip sla monitor 1
> type echo protocol ipIcmpEcho 77.77.77.50
> frequency X
> ip sla monitor schedule 1 life forever start-time now
> !
> track 1 rtr 1 reachability
> !
> int Ethernet 0/0
> ip address 1.2.3.4 255.255.255.0
> standby 10 ip X.X.X.X
> standby 10 track 1
> standby 10 track ATM0/0
> standby 10 priority 105
> standby 10 preempt
> etc.....
>
> This way if your tracked object of 1, a ping to 77.77.77.50 fails, the
> HSRP of this router will be reduced and your secondary ADSL router
> take over.
>
> Look on Cisco for IP SLA
>
> Regards
>
> Darren
Hello
I have read about IP SLA but I did not find any examples suitable for my
personal situation.
Some questions:
a) So, since the SHDSL is the main link, and just if the SHDSL link is down,
the ADSL will take over, I need to set the IP SLA commands on the SHDSL
router only, right?
> standby 10 track 1
> standby 10 track ATM0/0
b) In this way, in the HSRP I will monitor both the status of the ATM0/0
interface AND the "ip sla entry number 1" right?
c) But how can I set, ping every 30 seconds and if three pings fail,
re-route the connection?
I can set the frequency of 30 seconds, but not how many pings need to be
failed to lower the priority of the HSRP router.
d) To set "how much decrease the priority" I could use this command, standby
1 track 1 decrement 20, right?
e) > track 1 rtr 1 reachability
delay down 10 up 20
this will delay the time to 10 seconds to put the HSRP router "offline",
right?
Thank you in advance
|