! Listing 7.17a: Frame Relay (only) hub router ! (NOT IN BOOK) ! !Copyright (C) 2001 by Vincent C Jones. All Rights Reserved. version 11.2 ! hostname FrameRelayHub ! interface Loopback0 description Hub Router 1 Management ID ip address 10.0.0.201 255.255.255.255 no ip directed-broadcast ! interface Loopback1 description Common target address for frame relay users ip address 10.0.0.1 255.255.255.255 ! interface FastEthernet0/0 description Primary Data Center LAN ip address 10.200.0.1 255.255.0.0 ! interface FastEthernet0/1 description Secondary (backup) LAN ip address 10.201.0.1 255.255.0.0 ! interface Serial1/0 no ip address encapsulation frame-relay frame-relay traffic-shaping frame-relay class Spokes ! interface Serial1/0.123 point-to-point description Spoke 123 ip address 10.101.23.14 255.255.255.252 bandwidth 56 delay 2000 frame-relay interface-dlci 123 ! ! . . . Other frame relay subinterfaces go here ! ! router eigrp 1 network 10.0.0.0 distribute-list 12 out FastEthernet0/0 distribute-list 12 out FastEthernet0/1 distribute-list 10 out Serial1/0.121 distribute-list 10 out Serial1/0.122 distribute-list 10 out Serial1/0.123 ! . . . Filters for other frame relay subinterfaces go here no auto-summary ! ip classless ! map-class frame-relay Spokes frame-relay traffic-rate 56000 56000 access-list 10 permit 10.0.0.1 access-list 10 deny any access-list 12 deny 10.0.0.0 0.0.0.127 access-list 12 permit any ! end