Networking Forums

Networking Forums > Computer Networking > Linux Networking > BGP and RIP using gated

Reply
Thread Tools Display Modes

BGP and RIP using gated

 
 
Jim
Guest
Posts: n/a

 
      07-16-2004, 04:09 PM
I'm looking for some assistance on configuring a Linux box running
gated 3.6 to support both RIP and BGP. Here is my setup:

+----+ +----+ +----+
| A +-----+ B +----+ C |
+----+ +----+ +----+
e0 e1 e0 e1 e0 e1
v0,v1

e0,e1 = ethernet interfaces
v0,v1 = logical interfaces on B

Here is what I want to accomplish with a gated config file on System B

B learns RIP from C (no sending of anything to C)
B (Autonomousystem 200) learns BGP from A (Autonomousystem 100)
B sends BGP to A of RIP learned from C
B sends BGP to A of static routes pointing to v0 and v1


I tried the following gated.conf but I don't see my RIP routes being
sent via BGP, just what looked like a "hey, I'm here as 10.1.1.25".


interfaces { interface all passive; };
autonomoussystem 200;
routerid 10.1.1.25;
rip yes {
interface all version 2 noripin noripout;
interface e1 version 2 ripin;
};
bgp yes {
traceoptions detail packets;
group type External peeras 100 { peer 10.1.5.7; };
};
#import proto bgp as 100 { default; };
export proto bgp as 100 {
proto rip { all; };
};

Any help would be greatly appreciated!

Jim
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Gated learning RIP from non-local subnet? jimnl69@hotmail.com Linux Networking 2 03-23-2005 08:18 PM
zebra/gated question Jason Clark Linux Networking 1 11-01-2004 10:08 PM
Gated Monica M. Linux Networking 0 10-22-2004 01:06 PM



1 2 3 4 5 6 7 8 9 10 11