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
|