Frame relay with four routers
Following on from the two router scenario, I've attempted three routers connected to a frame relay router via an 8A/S NM. The output for the connected serial ports is as follows on the frame relay router:
FrameRelay#
!
interface Serial1/0
no ip address
encapsulation frame-relay
no keepalive
clockrate 64000
frame-relay intf-type dce
frame-relay route 101 interface Serial1/1 102
!
interface Serial1/1
no ip address
encapsulation frame-relay
no keepalive
clockrate 64000
frame-relay intf-type dce
frame-relay route 102 interface Serial1/2 103
!
interface Serial1/2
no ip address
encapsulation frame-relay
no keepalive
clockrate 64000
frame-relay intf-type dce
frame-relay route 103 interface Serial1/0 101
!
FrameRelay#show frame-relay map
FrameRelay#show frame-relay route
Input Intf Input Dlci Output Intf Output Dlci Status
Serial1/0 101 Serial1/1 102 static
Serial1/1 102 Serial1/2 103 static
Serial1/2 103 Serial1/0 101 static
FrameRelay#show frame-relay pvc
PVC Statistics for interface Serial1/0 (Frame Relay DCE)
Active Inactive Deleted Static
Local 0 0 0 0
Switched 1 0 0 0
Unused 0 0 0 0
DLCI = 101, DLCI USAGE = SWITCHED, PVC STATUS = ACTIVE, INTERFACE = Serial1/0
PVC Statistics for interface Serial1/1 (Frame Relay DCE)
Active Inactive Deleted Static
Local 0 0 0 0
Switched 1 0 0 0
Unused 0 0 0 0
DLCI = 102, DLCI USAGE = SWITCHED, PVC STATUS = ACTIVE, INTERFACE = Serial1/1
PVC Statistics for interface Serial1/2 (Frame Relay DCE)
Active Inactive Deleted Static
Local 0 0 0 0
Switched 1 0 0 0
Unused 0 0 0 0
DLCI = 103, DLCI USAGE = SWITCHED, PVC STATUS = ACTIVE, INTERFACE = Serial1/2
Now, each spoke router has a WIC-2T with the serial port connected via DTE to the NM module of the ports listed above, all set to 64000 DCE (on the framerelay router).
Router1#show run int s0/1
Building configuration...
Current configuration : 159 bytes
!
interface Serial0/1
ip address 10.0.0.1 255.255.255.0
encapsulation frame-relay
no keepalive
serial restart-delay 0
frame-relay interface-dlci 101
end
Router1#show frame-relay map
Serial0/1 (up): ip 10.0.0.3 dlci 101(0x65,0x1850), dynamic,
broadcast,
Router1#show frame-relay pvc
PVC Statistics for interface Serial0/1 (Frame Relay DTE)
Active Inactive Deleted Static
Local 0 0 0 1
Switched 0 0 0 0
Unused 0 0 0 0
DLCI = 101, DLCI USAGE = LOCAL, PVC STATUS = STATIC, INTERFACE = Serial0/1
Router2#show run int serial0/1
Building configuration...
Current configuration : 159 bytes
!
interface Serial0/1
ip address 10.0.0.2 255.255.255.0
encapsulation frame-relay
no keepalive
serial restart-delay 0
frame-relay interface-dlci 102
end
Router2#show frame-relay map
Serial0/1 (up): ip 10.0.0.1 dlci 102(0x66,0x1860), dynamic,
broadcast,
Router2#show frame-relay pvc
PVC Statistics for interface Serial0/1 (Frame Relay DTE)
Active Inactive Deleted Static
Local 0 0 0 1
Switched 0 0 0 0
Unused 0 0 0 0
DLCI = 102, DLCI USAGE = LOCAL, PVC STATUS = STATIC, INTERFACE = Serial0/1
Router3#show run int serial0/0
Building configuration...
Current configuration : 159 bytes
!
interface Serial0/1
ip address 10.0.0.3 255.255.255.0
encapsulation frame-relay
no keepalive
serial restart_delay 0
frame-relay interface-dlci 103
end
Router3#show frame-relay pvc
PVC Statistics for interface Serial0/1 (Frame Relay DTE)
Active Inactive Deleted Static
Local 0 0 0 1
Switched 0 0 0 0
Unused 0 0 0 0
DLCI = 103, DLCI USAGE = LOCAL, PVC STATUS = STATIC, INTERFACE = Serial0/1
The problem (unless this is how it works with three serial connections) is that the show frame-relay map commands on all the spoke routers 1, 2 and 3 doesn't always produce the serial up reply, in this instance serial 0/1 on router 3 (the last spoke entry above) failed to return anything. Sometimes, the order in which the connections are configured dictates if a frame-relay map statement returns any information.
Am I missing something or is this configured correctly? With two routers they both return information the status for the map command but for three routers, one router always has blank information in reply to the map command.
Thank you in advance for any constructive comments.