! Listing 7.2: Primary hub router using EIGRP everywhere ! !Copyright (C) 2001 by Vincent C Jones. All Rights Reserved. version 11.2 ! hostname HubPrimary ! interface Loopback0 description Target address for Frame Relay users ip address 10.0.0.1 255.255.255.255 ! interface Ethernet0/0 description Primary data center LAN ip address 10.0.64.1 255.255.192.0 ! interface Ethernet0/1 description Secondary (backup) data center LAN ip address 10.0.128.1 255.255.192.0 ! interface Serial1/0 no ip address encapsulation frame-relay frame-relay traffic-shaping frame-relay class Spokes frame-relay lmi-type ansi ! interface Serial1/0.101 point-to-point description PVC to Spoke 101 ip address 10.101.128.6 255.255.255.252 bandwidth 56 delay 2000 frame-relay interface-dlci 101 ! ! . . . Other frame relay subinterfaces go here ! router eigrp 1 network 10.0.0.0 distribute-list 12 out Ethernet0/0 distribute-list 12 out Ethernet0/1 distribute-list 10 out Serial1/0.101 distribute-list 10 out Serial1/0.102 distribute-list 10 out Serial1/0.103 ! . . . 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 permit 0.0.0.0 access-list 10 deny any access-list 12 deny 10.0.0.1 access-list 12 permit any ! end