I'm a total newbie to BGP and am having problems after the BGP routes are sent across to the network.
My test network (went for the simplest little network possible) is like so:
FirstBox->SecondBox->ThirdBox
All of them being metarouters with the right ether* forwarded to one another.
My main goal is to send a packet from FirstBox to ThirdBox with BGP determining the first hop.
I've got the following in SecondBox:
Code:Select all
Flags: X - disabled, A - active, D - dynamic, C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme, B - blackhole, U - unreachable, P - prohibit 0 ADC dst-address=10.1.1.0/24 pref-src=10.1.1.2 gateway=ether1 gateway-status=ether1 reachable distance=0 scope=10 1 ADC dst-address=10.1.2.0/24 pref-src=10.1.2.1 gateway=ether2 gateway-status=ether2 reachable distance=0 scope=10 2 A S dst-address=10.10.10.1/32 gateway=10.1.1.1 gateway-status=10.1.1.1 reachable ether1 distance=1 scope=30 target-scope=10 3 ADC dst-address=10.10.10.2/32 pref-src=10.10.10.2 gateway=lobridge gateway-status=lobridge reachable distance=0 scope=10 4 A S dst-address=10.10.10.3/32 gateway=10.1.2.2 gateway-status=10.1.2.2 reachable ether2 distance=1 scope=30 target-scope=10
Code:Select all
Flags: X - disabled 0 network=10.1.2.0/24 synchronize=yes 1 network=10.1.1.0/24 synchronize=yes
And in ThirdBox, the final routes it has:
Code:Select all
Flags: X - disabled, A - active, D - dynamic, C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme, B - blackhole, U - unreachable, P - prohibit 0 ADb dst-address=10.1.1.0/24 gateway=10.10.10.2 gateway-status=10.10.10.2 recursive via 10.1.2.1 ether1 distance=200 scope=40 target-scope=30 bgp-local-pref=100 bgp-origin=igp received-from=ch 1 ADC dst-address=10.1.2.0/24 pref-src=10.1.2.2 gateway=ether1 gateway-status=ether1 reachable distance=0 scope=10 2 Db dst-address=10.1.2.0/24 gateway=10.10.10.2 gateway-status=10.10.10.2 recursive via 10.1.2.1 ether1 distance=200 scope=40 target-scope=30 bgp-local-pref=100 bgp-origin=igp received-from=ch 3 A S dst-address=10.10.10.2/32 gateway=10.1.2.1 gateway-status=10.1.2.1 reachable ether1 distance=1 scope=30 target-scope=10 4 ADC dst-address=10.10.10.3/32 pref-src=10.10.10.3 gateway=lobridge gateway-status=lobridge reachable distance=0 scope=10
When doing a traceroute from ThirdBox to FirstBox (10.10.10.1) I get this:
Code:Select all
# ADDRESS RT1 RT2 RT3 STATUS 1 10.1.2.1 2ms 1ms 2ms 2 0.0.0.0 0ms 0ms 0ms
Any help with this would be very, very much appreciated.
Thanks