ISDN WAN Connections: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
==BRI Configuration With Dial-on-Demand Routing== | ==BRI Configuration With Dial-on-Demand Routing== | ||
#Basic Router Configuration | #Basic Router Configuration | ||
#Configure the router to use the approiate ISDN switch types | #Configure the router to use the approiate ISDN switch types. | ||
#*Router(config)# '''isdn switch-type''' ''type'' | #*Router(config)# '''isdn switch-type''' ''type'' | ||
# | #**This configuration uses the basic-ni switch type. To learn about the other switch type, see [http://www.cisco.com/en/US/docs/ios/11_3/debug/command/reference/disdn.html ISDN Switch Types]. | ||
#Configure dialer list to identifiy intresting traffic. | |||
#*Router(config)# '''dialer-list''' ''dialer-group-number'' '''protocol''' ''protocol-name'' '''permit | deny | list''' ''access-list-numeber'' | #*Router(config)# '''dialer-list''' ''dialer-group-number'' '''protocol''' ''protocol-name'' '''permit | deny | list''' ''access-list-numeber'' | ||
#Configure BRI Interface with encapsulation and authentication settings | #Configure BRI Interface with encapsulation and authentication settings. | ||
#*Router(config)# '''interface''' ''interface-number'' | #*Router(config)# '''interface''' ''interface-number'' | ||
#*Router(config-if)# '''ip address''' ''ip-address'' ''subnet-mask'' | #*Router(config-if)# '''ip address''' ''ip-address'' ''subnet-mask'' | ||
#*Router(config-if)# '''encapsulation ppp''' | #*Router(config-if)# '''encapsulation ppp''' | ||
#*Router(config-if)# '''ppp authentication chap''' | #*Router(config-if)# '''ppp authentication chap''' | ||
#Congigure a service profile identifier (SPID) | #Congigure a service profile identifier (SPID). | ||
#*Router(config-if)# '''isdn spid''' ''spid-number'' ''local-dial-number'' | #*Router(config-if)# '''isdn spid''' ''spid-number'' ''local-dial-number'' | ||
#Set the Dialer Idle Timeout | #Set the Dialer Idle Timeout. | ||
#*Router(config-if)# '''dialer idle-timeout''' ''seconds'' | #*Router(config-if)# '''dialer idle-timeout''' ''seconds'' | ||
#**The dialer idle timeout defualts to 120 seconds. It may need to be changed to a lower value to avoid excesive call charges. | |||
#Associate the interface to the already created dialer-list | #Associate the interface to the already created dialer-list | ||
#*Router(config-if)# '''dialer-group''' ''dialer-group-number'' | #*Router(config-if)# '''dialer-group''' ''dialer-group-number'' | ||
Line 40: | Line 40: | ||
#**This command identifies which router to call as the snapshot server. | #**This command identifies which router to call as the snapshot server. | ||
#**The sequence-number identifies the order in which that server is called in cases where there may be more than one snapshot server. Setting it to 1 would make it the first server to call. | #**The sequence-number identifies the order in which that server is called in cases where there may be more than one snapshot server. Setting it to 1 would make it the first server to call. | ||
#**The dial-string is the destination snapshot server telephone number. |
Revision as of 23:08, 10 May 2010
Basic Rate Interface (BRI)
This was set up in a lab enviroment using an Adtran Atlas 550 to simulate WAN connection. This document will configure an ISDN BRI connection with dial-on-demand routing (DDO), snapshot routing, and B channel aggragation.
BRI Configuration With Dial-on-Demand Routing
- Basic Router Configuration
- Configure the router to use the approiate ISDN switch types.
- Router(config)# isdn switch-type type
- This configuration uses the basic-ni switch type. To learn about the other switch type, see ISDN Switch Types.
- Router(config)# isdn switch-type type
- Configure dialer list to identifiy intresting traffic.
- Router(config)# dialer-list dialer-group-number protocol protocol-name permit | deny | list access-list-numeber
- Configure BRI Interface with encapsulation and authentication settings.
- Router(config)# interface interface-number
- Router(config-if)# ip address ip-address subnet-mask
- Router(config-if)# encapsulation ppp
- Router(config-if)# ppp authentication chap
- Congigure a service profile identifier (SPID).
- Router(config-if)# isdn spid spid-number local-dial-number
- Set the Dialer Idle Timeout.
- Router(config-if)# dialer idle-timeout seconds
- The dialer idle timeout defualts to 120 seconds. It may need to be changed to a lower value to avoid excesive call charges.
- Router(config-if)# dialer idle-timeout seconds
- Associate the interface to the already created dialer-list
- Router(config-if)# dialer-group dialer-group-number
- Configure the Dialer Map
- Router(config-if)# dialer map protocol next-hop-address name hostname [broadcast] dial-string
- The dialer map tells the interface what to do with interesting traffic
- You do not need to enable broadcasts if your routing protocol does not need broadcast.
- The dial string is the destination telephone number.
- Router(config-if)# dialer map protocol next-hop-address name hostname [broadcast] dial-string
Configuring Snapshot Routing
- Configure a dynamic routing protocol.
- This document was created using RIPv2.
- Configure the snapshot server
- Router(config-if)#snapshot server active-time [dialer]
- the active-time argument is the amount of time in minutes that routing updates with be exchanged and must be the same between the server and the client.
- The dialer keyword is an option to allow the client to dial up the server if there is no "interesting" traffic.
- Router(config-if)#snapshot server active-time [dialer]
- Configure the snapshot client.
- Router(config-if)#snapshot client active-time quiet-time [supress-statechange-updates] [dialer]
- The quiet-time argument, like the active-time argument, is expressed in minutes and is generally equivalent to the active-time x3.
- The suppress-statechange-updates option will prevent needless triggered updates in such situations as a line protocol changing states.
- Router(config-if)#dialer map snapshot sequence number dial-string
- This command identifies which router to call as the snapshot server.
- The sequence-number identifies the order in which that server is called in cases where there may be more than one snapshot server. Setting it to 1 would make it the first server to call.
- The dial-string is the destination snapshot server telephone number.
- Router(config-if)#snapshot client active-time quiet-time [supress-statechange-updates] [dialer]