cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
355
Views
5
Helpful
2
Replies

ISDN Routing !!!

fkseow
Level 1
Level 1

Hi any one please help to clarify the following scenerio;

I have a remote site with 1720 router and connected back to HQ with a 2620 router there by a 64k leased line. There is a 64k ISDN backup link for the two sites.

The BRI interface is belonged to a member of a dialer profile. Once the primary link (64K leased line) fails, the ISDN will perform a DDR as a backup.

If I use the following static default route for the primary link;

1720(config)# ip route 0.0.0.0 0.0.0.0 202.188.23.3

whereby 202.188.23.3 is the ip address of the Serial interface of 2620 at HQ.

Questions;

(1) what should include the routing for the ISDN link ?

(2) How do I differentiate the routings for Leased line and ISDN link ?

(3) At HQ do I need to specify "ip route 0.0.0.0 0.0.0.0 202.188.23.4" (whereby 202.188.23.4 is the ip address of 1720 serial interface) ?

(4) If I have more than one remote site connected to HQ, can I still use the routing as in (3) ?

Please help out.

2 Replies 2

mljohnson
Level 4
Level 4

You need a floating static route for the ISDN interface; something like "ip route 0.0.0.0 0.0.0.0 1.1.1.1 200", where 1.1.1.1 is the 2620 ISDN address. If you are using unnumbered on the ISDN interface, then you also need to add "ip route 1.1.1.1 255.255.255.255 dialer 1", where Dialer1 is your dialer profile. Once the serial link goes down and 202.188.23.3 is removed from the routing table, this new default route will be installed.

At HQ, for normal routing, you need to have a route for the LAN (or other networks) of the 1720; so something like "ip route 172.16.0.0 255.255.0.0 202.188.23.4". You would do this for each remote site.

You could also use RIP routing over ISDN to inject a summary of the branch into HQ, with an appropriate admin distance.

Once the serial line comes back up the EIGRP (or OSPF?) reconvergence should replace both the RIP injected route at HQ and suppress the floating static in the remote office.

RIP is handy in this case because the normal routes become valid while ISDN is still up so there's less likelyhood of loss of session problems when it gets torn down, if you see what I mean.