[ LiB ]Practical Exercise: Configuring Dialer Profiles Summary

Practical Exercise Solution

To complete this exercise you need to configure two dialer profiles on R3one for each caller. Use the map class with the dialer string on R3 for R1. You also have to configure a dialer profile on R1 for its communication with the central site. R2 needs to be configured for legacy DDR.

The addressing scheme is shown in Figure 7-4. Use the EIGRP protocol when configuring R3. After you are finished with your configuration, you can verify it against Examples 7-8, 7-9, and 7-10.

Example 7-8 shows the configuration of R3.

Example 7-8. Central Site Configuration
R3#show running-config
hostname R3
!
aaa new-model
aaa authentication login default local
aaa authentication ppp default local
!
username admin privilege 15 password 7 cisco
username R1 password 7 cisco
username R2 password 7 cisco
!
isdn switch-type basic-5ess
!
interface Ethernet0
  ip address 192.22.80.4 255.255.255.0
!
interface BRI0
  no ip address
  encapsulation ppp
  dialer pool-member 1
  isdn switch-type basic-5ess
  ppp authentication chap
  ppp multilink
!
interface Dialer0
  ip address 192.22.85.1 255.255.255.0
  encapsulation ppp
  dialer pool 1
  dialer remote-name R1
  dialer string 6661000 class mapclass1
  dialer load-threshold 128 outbound
  dialer-group 5
  ppp authentication chap
  ppp multilink
!
interface Dialer1
  ip address 192.22.86.1 255.255.255.0
  encapsulation ppp
  dialer pool 1
  dialer remote-name R2
  dialer string 6662000
  dialer-group 5
  ppp authentication chap
!
router eigrp 67
  redistribute static
  passive-interface Dialer0
  passive-interface Dialer1
  network 192.22.0.0
  auto-summary
!
ip classless
ip route 192.22.95.0 255.255.255.0 Dialer1
ip route 192.22.96.0 255.255.255.0 Dialer0
!
map-class dialer mapclass1
  dialer idle-timeout 180
  dialer fast-idle 5
!
dialer-list 5 protocol ip permit
!

Example 7-9 shows the configuration of R1.

Example 7-9. Remote Branch Configuration
R1#show running-config
hostname R1
!
aaa new-model
aaa authentication login default local
aaa authentication ppp default local
!
username admin privilege 15 password 7 cisco
username R3 password 7 cisco
!
ip subnet-zero
!
isdn switch-type basic-5ess
!
interface Ethernet0
ip address 192.22.96.1 255.255.255.0
!
interface BRI0
no ip address
encapsulation ppp
dialer pool-member 10
isdn switch-type basic-5ess
ppp multilink
!
interface Dialer1
ip address 192.22.85.2 255.255.255.0
encapsulation ppp
dialer pool 10
dialer remote-name R3
dialer string 6663000
dialer load-threshold 128 outbound
dialer-group 5
ppp authentication chap
ppp multilink
!
ip classless
ip route 192.22.0.0 255.255.0.0 192.22.80.0
ip route 192.22.80.0 255.255.255.0 Dialer1
!
dialer-list 5 protocol ip permit
!

Example 7-10 shows the configuration of R2.

Example 7-10. Telecommuter Configuration
R2#show running-config
hostname R2
!
aaa new-model
aaa authentication login default local
aaa authentication ppp default local
!
username admin privilege 15 password 7 cisco
username R3 password 7 cisco
!
isdn switch-type basic-5ess
!
interface Ethernet0
ip address 192.22.95.1 255.255.255.0
!
interface BRI0
ip address 192.22.86.2 255.255.255.0
encapsulation ppp
dialer map ip 192.22.86.1 name R3 6663000
dialer-group 1
isdn switch-type basic-5ess
ppp authentication chap
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.22.86.1
!
dialer-list 1 protocol ip permit
!

[ LiB ]Practical Exercise: Configuring Dialer Profiles Summary