Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Back to Back FR using OSPF and RIPv1

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Here's one for you:

Back to Back cisco 2520 routers using Frame-relay and OSPF.

Then from one of thoes Cisco routers to a Retix 1722 Router you have Frame-relay and RIP.

Lab_A -> Frame Relay and OSPF to Lab_B
Lab_A -> int S0 and E0 are in use
Lab_A -> S0 goes to Lab_B

Lab_B -> Frame Relay and OSPF to Lab_A
Lab_B -> Frame Relay and RIPv1 to Retix Router
Lab_B -> NO Ethernet needed
Lab_B -> Redistribute OSPF to RIP? How??
Lab_B -> and how do you set DLCI's from this router to both networkeks.

This will make you brain hurt I hope, because it's had me head throbbing for about a week now!!

Thank you,

Paul



 
Try this:

On A router
int serial x
encap frame-rel
ip address 10.1.1.2 255.255.255.0
ip ospf net point-to-point
router ospf 3
net 10.0.0.0 0.255.255.255 area 0

On B router
frame-relay switching
int serial x
encap frame-rel
no ip address
int serial x.1 point-to-point
frame-relay intf-type dce
frame-relay interface-dlci 123
ip address 10.1.1.1 255.255.255.255
ip ospf net point-to-point
int serial y
encap frame-rel
no ip address
int serial y.1 point-to-point
frame-relay intf-type dce
frame-relay interface-dlci 567
ip address 20.1.1.1 255.255.255.255
ip ospf net point-to-point

router ospf 3
net 10.0.0.0 0.255.255.255 area 0
redistribute rip metric xx
passive-interface y.1
router rip
net 20.0.0.0
passive interface serial x.1

If you cannot get frame to work - try to set LMI-TYPE on frame interfaces to same values (check with ?) or change encapsulation type. You probably need to set this on interface to third router. If your IOS is new enough, router A should get DLCI automatically.
I hope this will help and I didn't miss something!
Reggie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top