It's been awhile since I posted last. At this point I've pretty much been able to cover almost all of the relevant chapters in the Routing TCP/IP vol 1 book. Currently I'm going through a phase of review and mini labs to harden alot of this material into my brain and then I plan on reviewing the CCIE Written Exam book chapters. I hope to be done doing a solid review of the material I've covered so far in a few weeks. Then I will start in on the vol. 2 book. Originally I thought I was going to be able to take the written 3 months after starting to study. That isn't the case now as I haven't had as much study time with family and work as I thought/hoped I would. Nevertheless, I am still learning a ton and I am actually spending alot of time in GNS3. Hopefully that will shave some time off my lab studying.
Now onto the Frame Relay Stuff.
I was trying to do a lab for Frame Relay Multilink on GNS3 through the frame switch. I wasn't ever able to get it working. After double and checking the configuration I finally gave up and figured it wasn't something that the GNS3/Dynamips frame switch was meant to do.
I was able to get it working by going Back to Back Frame-Relay. Configs Below.
****R1****
interface MFR1
ip address 192.168.1.1 255.255.255.0
no keepalive
frame-relay map ip 192.168.1.1 101
frame-relay map ip 192.168.1.2 101
!
interface MFR1.1 point-to-point
ip address 192.168.2.1 255.255.255.0
frame-relay interface-dlci 102
!
interface MFR1.2 point-to-point
ip address 192.168.3.1 255.255.255.0
frame-relay interface-dlci 103
!
interface Serial1/0
no ip address
encapsulation frame-relay MFR1
serial restart-delay 0
no arp frame-relay
!
interface Serial1/1
no ip address
encapsulation frame-relay MFR1
serial restart-delay 0
no arp frame-relay
!
interface Serial1/2
no ip address
encapsulation frame-relay MFR1
serial restart-delay 0
no arp frame-relay
!
end
****R1****
****R2****
hostname R2
!
interface MFR1
ip address 192.168.1.2 255.255.255.0
no keepalive
frame-relay map ip 192.168.1.1 101
!
interface MFR1.1 point-to-point
ip address 192.168.2.2 255.255.255.0
frame-relay interface-dlci 102
!
interface MFR1.2 multipoint
ip address 192.168.3.2 255.255.255.0
frame-relay map ip 192.168.3.1 103
!
interface Serial1/0
no ip address
encapsulation frame-relay MFR1
serial restart-delay 0
no arp frame-relay
!
interface Serial1/1
no ip address
encapsulation frame-relay MFR1
serial restart-delay 0
no arp frame-relay
!
interface Serial1/2
no ip address
encapsulation frame-relay MFR1
serial restart-delay 0
no arp frame-relay
!
****R2****
r1#sh int mfr1
MFR1 is up, line protocol is up
Hardware is Multilink Frame Relay bundle interface
Internet address is 192.168.1.1/24
MTU 1500 bytes, BW 4632 Kbit, DLY 20000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation FRAME-RELAY, loopback not set
Keepalive not set
DTR is pulsed for 2 seconds on reset
LMI DLCI 1023 LMI type is CISCO frame relay DTE
FR SVC disabled, LAPF state down
Broadcast queue 0/64, broadcasts sent/dropped 13/0, interface broadcasts 0
Last input 00:00:52, output never, output hang never
Last clearing of "show interface" counters 00:11:27
Input queue: 0/75/6/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/120 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
32 packets input, 4580 bytes, 0 no buffer
Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
38 packets output, 6821 bytes, 0 underruns
0 output errors, 0 collisions, 0 interface resets
0 output buffer failures, 0 output buffers swapped out
0 carrier transitions
r1#