navbar
Technical Tips

Frame Relay Unnumbered IP and IPX Routing


+++++++++++{Central Router -- Chicago}++++++++++++
Current configuration:
!
version 11.0
service udp-small-servers
service tcp-small-servers
!
hostname Chicago
!
ipx routing 0000.0c4e.29ac
!
interface Ethernet0
 ip address 192.100.100.1 255.255.255.0
 ipx network 1
!
interface Serial0
 no ip address
 encapsulation frame-relay
 frame-relay lmi-type ansi
!
interface Serial0.1 point-to-point
 description connection to San Francisco
 ip unnumbered e0
 ipx network 100
 frame-relay interface-dlci 16 broadcast
!
interface Serial0.2 point-to-point
 description connection to New York
 ip unnumbered e0
 ipx network 101
 frame-relay interface-dlci 17 broadcast
!
interface Serial1
 no ip address
 shutdown
!
router igrp 1
 network 192.100.100.0
!
ip route 192.150.150.0 255.255.255.0 192.150.150.1
ip route 192.150.150.1 255.255.255.255. serial0.1
ip route 192.200.200.0 255.255.255.0 192.200.200.1
ip route 192.200.200.1 255.255.255.255 serial 0.2
!
line con 0
line aux 0
 transport input all
line vty 0 4
 login
!
end

++++++++++++{Remote Router - San Francisco}+++++++++++++

Current configuration:
!
version 11.0
service udp-small-servers
service tcp-small-servers
!
hostname SanFrancisco
!
ipx routing 0000.0c4e.29ad
!
interface Ethernet0
 ip address 192.150.150.1 255.255.255.0
 ipx network 200
!
interface Serial0
 no ip address
 encapsulation frame-relay
 frame-relay lmi-type ansi
!
interface Serial0.1
 description connection to Chicago
 ip unnumbered e0
 ipx network 100
 frame-relay interface-dlci 16 broadcast
!
interface Serial1
 no ip address
 shutdown
!
router igrp 1
 network 192.150.150.0
!
ip route 0.0.0.0 0.0.0.0 192.100.100.1
ip route 192.100.100.1 255.255.255.255 serial0
!
line con 0
line aux 0
 transport input all
line vty 0 4
 login
!
end
++++++++++++{Remote Router - New York}++++++++++++++

Current configuration:
!
version 11.0
service udp-small-servers
service tcp-small-servers
!
hostname NewYork
!
ipx routing 0000.0c4e.29ae
!
interface Ethernet0
 ip address 192.200.200.1 255.255.255.0
 ipx network 300
!
Interface Serial0
 no ip address
 encapsulation frame-relay
 frame-relay lmi-type ansi
!
interface Seial0.1
 description connection to Chicago
 ip unnumbered e0
 ipx network 101
 frame-relay interface-dlci 16 broadcast
!
interface Serial1
 no ip address
 shutdown
!
router igrp 1
 network 192.200.200.0
!
!
ip route 0.0.0.0 0.0.0.0 192.100.100.1
ip route 192.100.100.1 255.255.255.255 serial0
!
line con 0
line aux 0
 transport input all
line vty 0 4
 login
!
end
!