Posts

Showing posts with the label Configuring Frame Relay in GNS3 with OSPF

Configuring Frame Relay in GNS3 with OSPF

Image
Today I have been configuring frame relay in GNS3. My setup is one frame relay switch with one virtual frame relay circuit, point to point. Here is the configuration for the interfaces on R1 and R2. R1#sh run | sec interface Serial0/0 interface Serial0/0  no ip address  encapsulation frame-relay  clock rate 2000000  cdp enable interface Serial0/0.1 point-to-point  ip address 192.168.1.254 255.255.255.252  frame-relay interface-dlci 101 R1# R1#sh run | sec interface Loopback1 interface Loopback1  ip address 172.16.1.1 255.255.255.0 R1# R2#sh run | sec interface Serial0/0 interface Serial0/0  no ip address  encapsulation frame-relay  clock rate 2000000  cdp enable interface Serial0/0.1 point-to-point  ip address 192.168.1.253 255.255.255.252  frame-relay interface-dlci 202 R2# R2#sh run | sec interface Loopback1 interface Loopback1  ip address 172.16.2.1 255.255.255.0 R2# Notice the clock rate is sp...