Just WAN up he says
We have a working version of a prototype network in the U1 lab, however someone just dropped a requirement on us that we need to route IPX traffic from the remotes back to the file servers at the HQ network. Those spreadsheets aren't going to write themselves now, are they. That means what we have in place, all IP routing, will have to change to accommodate IPX. In the meantime it's time to commit what we have to writing, mainly so we have it documented somewhere, but also to maybe help others out in the future. Part of it is to show Lumbergh we produced something to get him off our backs.
The design needs some work, things need to move to sub-interfaces, EIGRP needs some work and, as mentioned, IPX needs to be added.
HQ Router
The configuration for the HQ router:
! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname INIHQRTR01 ! boot-start-marker boot-end-marker ! logging buffered 4096 informational enable password REDACTED ! no aaa new-model ! resource policy ! ip cef ! username admin password REDACTED ! interface FastEthernet0/0 ip address 192.168.57.30 255.255.255.0 duplex auto speed auto ! interface Serial0/0 description To Frame Router TELFRSW01 SERIAL0/0 ip address 172.16.10.1 255.255.255.0 encapsulation frame-relay ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/1 no ip address shutdown clock rate 2000000 ! interface Serial0/2 no ip address shutdown clock rate 2000000 ! interface Ethernet1/0 description 10BASE2 LAN ip address 192.168.22.30 255.255.255.0 half-duplex ! interface Serial1/0 no ip address shutdown no dce-terminal-timing-enable ! interface Ethernet1/1 no ip address shutdown half-duplex ! interface Vlan1 no ip address ! router eigrp 666 network 172.16.10.0 0.0.0.255 network 192.168.57.0 no auto-summary ! no ip http server no ip http secure-server ip route 0.0.0.0 0.0.0.0 192.168.57.1 ! control-plane ! line con 0 line aux 0 line vty 0 4 login local ! end
Frame Relay Router (Switch)
! version 12.2 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname TELFRSW01 ! logging buffered 4096 informational enable password REDACTED ! username admin password REDACTED ip subnet-zero ip cef ! frame-relay switching ! interface FastEthernet0/0 description MGMT LAN Interface no ip address duplex auto speed auto ! interface Serial0/0 description To INIHQRTR01 SERIAL0/0 no ip address encapsulation frame-relay service-module t1 clocksource internal frame-relay lmi-type ansi frame-relay intf-type dce frame-relay route 102 interface Serial0/1 201 frame-relay route 103 interface Serial1/0 301 ! interface Serial0/1 description To INIAUS01 SERIAL0/0 no ip address encapsulation frame-relay service-module t1 clock source internal frame-relay lmi-type ansi frame-relay intf-type dce frame-relay route 201 interface Serial0/0 102 ! interface Serial1/0 description To INIKMCI01 SERIAL0/0 no ip address encapsulation frame-relay service-module t1 clock source internal frame-relay lmi-type ansi frame-relay intf-type dce frame-relay route 301 interface Serial0/0 103 ! interface Serial1/1 no ip address clockrate 2000000 ! interface Serial1/2 no ip address shutdown clockrate 2000000 ! ip classless no ip http server ! line con 0 line aux 0 line vty 0 4 login local ! end
INIKAUS01 Router
! version 12.2 service timestamps debug datetime msec service timestamps log datetime msec service password-encryption ! hostname INIKAUS01 ! enable password REDACTED ! username admin password REDACTED ip subnet-zero ip cef ! ip dhcp excluded-address 10.100.10.1 10.100.10.25 ! ip dhcp pool KAUSLAN network 10.100.10.0 255.255.255.0 default-router 10.100.10.1 ! call rsvp-sync ! interface FastEthernet0/0 ip address 10.100.10.1 255.255.255.0 duplex auto speed auto ! interface Serial0/0 description To TELFRSW01 SERIAL0/1 ip address 172.16.10.2 255.255.255.0 encapsulation frame-relay fair-queue frame-relay lmi-type ansi ! interface Serial0/1 no ip address shutdown ! interface Serial0/2 no ip address shutdown ! router eigrp 666 redistribute connected network 10.100.10.0 0.0.0.255 network 172.16.10.0 0.0.0.255 no auto-summary no eigrp log-neighbor-changes ! ip classless ip http server ip pim bidir-enable ! dial-peer cor custom ! line con 0 line aux 0 line vty 0 4 login local ! end
INIKMCI01 Router
! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname INIKMCI01 ! boot-start-marker boot-end-marker ! enable password REDACTED ! no aaa new-model no network-clock-participate slot 1 no network-clock-participate wic 0 ip cef ! ip auth-proxy max-nodata-conns 3 ip admission max-nodata-conns 3 ! username admin password REDACTED ! interface FastEthernet0/0 ip address 10.100.20.1 255.255.255.0 shutdown duplex auto speed auto ! interface Serial0/0 ip address 172.16.10.3 255.255.255.0 encapsulation frame-relay no fair-queue frame-relay lmi-type ansi ! interface Serial0/1 no ip address shutdown ! interface Serial0/2 no ip address shutdown ! router eigrp 666 redistribute connected network 10.100.20.0 0.0.0.255 network 172.16.10.0 0.0.0.255 no auto-summary no eigrp log-neighbor-changes ! ip forward-protocol nd ! ip http server no ip http secure-server ! control-plane ! line con 0 line aux 0 line vty 0 4 login local ! end
As always, caveat emptor.