BGP link reroute problem

BGP link reroute problem

NewsGroups | Search | Tools
 alt.certification.cisco  Post an article  get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
BGP link reroute problem response3 08-24-2006
Posted by response3 on August 24, 2006, 1:41 pm
If you were  Registered and logged in, you could reply and use other advanced thread options


Hi all. I'm learning BGP for my CCNP BSCI exam, and have been trying
to setup a test lab with 3 routers in a full mesh. I've got each
router speaking BGP to each other and advertising a local subnet to
each other (the subnet is setup on a loopback interface instead of a
physical interface). If I do a "show ip bgp", I can see two paths to
each subnet, and a "show ip route" tells me the same thing. The
problem is when I take down the link from router A to C, the traffic
from router A cannot pass through router B to the loopback interface on
router C. I've looked and looked, and it's probably simple, but I
don't understand what's preventing ping traffic from passing through
the alternate routes. If you help out and possibly give a few
suggestions, I'd really appreciate it! Thanks.


Posted by Doan on August 24, 2006, 3:56 pm
If you were  Registered and logged in, you could reply and use other advanced thread options



On 24 Aug 2006, response3 wrote:

> Hi all. I'm learning BGP for my CCNP BSCI exam, and have been trying
> to setup a test lab with 3 routers in a full mesh. I've got each
> router speaking BGP to each other and advertising a local subnet to
> each other (the subnet is setup on a loopback interface instead of a
> physical interface). If I do a "show ip bgp", I can see two paths to
> each subnet, and a "show ip route" tells me the same thing. The
> problem is when I take down the link from router A to C, the traffic
> from router A cannot pass through router B to the loopback interface on
> router C. I've looked and looked, and it's probably simple, but I
> don't understand what's preventing ping traffic from passing through
> the alternate routes. If you help out and possibly give a few
> suggestions, I'd really appreciate it! Thanks.
>
Can you post your configurations and "show ip route" of each router?

Doan



Posted by NO_spamm on August 24, 2006, 4:29 pm
If you were  Registered and logged in, you could reply and use other advanced thread options


On Thu, 24 Aug 2006 10:41:23 -0700, response3 wrote:

> Hi all. I'm learning BGP for my CCNP BSCI exam, and have been trying
> to setup a test lab with 3 routers in a full mesh. I've got each
> router speaking BGP to each other and advertising a local subnet to
> each other (the subnet is setup on a loopback interface instead of a
> physical interface). If I do a "show ip bgp", I can see two paths to
> each subnet, and a "show ip route" tells me the same thing. The
> problem is when I take down the link from router A to C, the traffic
> from router A cannot pass through router B to the loopback interface on
> router C. I've looked and looked, and it's probably simple, but I
> don't understand what's preventing ping traffic from passing through
> the alternate routes. If you help out and possibly give a few
> suggestions, I'd really appreciate it! Thanks.

The questions that need to be answered are:

- did you configure iBGP or eBGP or a combination?
- did you configure an IGP (OSPF, ISIS, etc)?
- did you use loopbacks as neighbor addresses?




FW

Posted by response3 on August 26, 2006, 4:46 am
If you were  Registered and logged in, you could reply and use other advanced thread options



NO_spamm wrote:
> On Thu, 24 Aug 2006 10:41:23 -0700, response3 wrote:
>
> > Hi all. I'm learning BGP for my CCNP BSCI exam, and have been trying
> > to setup a test lab with 3 routers in a full mesh. I've got each
> > router speaking BGP to each other and advertising a local subnet to
> > each other (the subnet is setup on a loopback interface instead of a
> > physical interface). If I do a "show ip bgp", I can see two paths to
> > each subnet, and a "show ip route" tells me the same thing. The
> > problem is when I take down the link from router A to C, the traffic
> > from router A cannot pass through router B to the loopback interface on
> > router C. I've looked and looked, and it's probably simple, but I
> > don't understand what's preventing ping traffic from passing through
> > the alternate routes. If you help out and possibly give a few
> > suggestions, I'd really appreciate it! Thanks.
>
> The questions that need to be answered are:
>
> - did you configure iBGP or eBGP or a combination?
> - did you configure an IGP (OSPF, ISIS, etc)?
> - did you use loopbacks as neighbor addresses?
>
>
>
>
> FW

Here's the configs. Thanks all.

############################

R1
lo0: 192.168.1.1
s0: 10.1.1.1
fa0: 10.3.3.1

Router bgp 1
Network 192.168.1.0 mask 255.255.255.0
Neighbor 10.3.3.2 remote-as 3
Neighbor 10.1.1.2 remote-as 2

------------------------------------

R2
lo0: 192.168.2.1
s0: 10.1.1.2
fa0: 10.2.2.1

Router bgp 2
Network 192.168.2.0 mask 255.255.255.0
Neighbor 10.3.3.2 remote-as 3
Neighbor 10.1.1.1 remote-as 1

-------------------------------------

R3
gi0/0: 10.3.3.2
gi0/1: 10.2.2.2
lo0: 192.168.3.1

Router bgp 3
Network 192.168.3.0 mask 255.255.255.0
Neighbor 10.3.3.1 remote-as 1
Neighbor 10.1.1.2 remote-as 2


###################

Hope this helps. Thanks again.

-Brian


Posted by NO_spamm on August 26, 2006, 10:49 am
If you were  Registered and logged in, you could reply and use other advanced thread options


On Sat, 26 Aug 2006 01:46:41 -0700, response3 wrote:

>
> NO_spamm wrote:
>> On Thu, 24 Aug 2006 10:41:23 -0700, response3 wrote:
>>
>> > Hi all. I'm learning BGP for my CCNP BSCI exam, and have been trying
>> > to setup a test lab with 3 routers in a full mesh. I've got each
>> > router speaking BGP to each other and advertising a local subnet to
>> > each other (the subnet is setup on a loopback interface instead of a
>> > physical interface). If I do a "show ip bgp", I can see two paths to
>> > each subnet, and a "show ip route" tells me the same thing. The
>> > problem is when I take down the link from router A to C, the traffic
>> > from router A cannot pass through router B to the loopback interface on
>> > router C. I've looked and looked, and it's probably simple, but I
>> > don't understand what's preventing ping traffic from passing through
>> > the alternate routes. If you help out and possibly give a few
>> > suggestions, I'd really appreciate it! Thanks.
>>
>> The questions that need to be answered are:
>>
>> - did you configure iBGP or eBGP or a combination?
>> - did you configure an IGP (OSPF, ISIS, etc)?
>> - did you use loopbacks as neighbor addresses?
>>
>>
>>
>>
>> FW
>
> Here's the configs. Thanks all.
>
> ############################
>
> R1
> lo0: 192.168.1.1
> s0: 10.1.1.1
> fa0: 10.3.3.1
>
> Router bgp 1
> Network 192.168.1.0 mask 255.255.255.0
> Neighbor 10.3.3.2 remote-as 3
> Neighbor 10.1.1.2 remote-as 2
>
> ------------------------------------
>
> R2
> lo0: 192.168.2.1
> s0: 10.1.1.2
> fa0: 10.2.2.1
>
> Router bgp 2
> Network 192.168.2.0 mask 255.255.255.0
> Neighbor 10.3.3.2 remote-as 3
> Neighbor 10.1.1.1 remote-as 1
>
> -------------------------------------
>
> R3
> gi0/0: 10.3.3.2
> gi0/1: 10.2.2.2
> lo0: 192.168.3.1
>
> Router bgp 3
> Network 192.168.3.0 mask 255.255.255.0
> Neighbor 10.3.3.1 remote-as 1
> Neighbor 10.1.1.2 remote-as 2
>
>
> ###################
>
> Hope this helps. Thanks again.
>
> -Brian


Try, to disable synchronization on all three routers:

router bgp n
no synch


FW

Similar ThreadsPosted
Good Link August 13, 2006, 11:37 am
Serial Link Problems March 18, 2006, 11:32 am
Inter Switch Link (ISL) 2611 Help! January 9, 2006, 8:49 am
Make traffic for test the link July 11, 2006, 4:48 pm
SUNROCKET PROMOTION CODE LINK September 20, 2005, 1:30 pm
Link Aggregation through transparent Cable Modems April 21, 2007, 1:46 am
Re: useful Cisco link hope this group accepts attachment November 1, 2005, 8:27 pm
hey guys can u just send me the ccna study guide link, January 23, 2007, 5:04 am
free download cisco ios with ioshunter or direct link April 9, 2007, 9:44 pm
The salient differneces between Link State and Distance Vector? June 22, 2007, 3:13 pm

other useful resources:
The Federal Communications Commission (FCC)
Telecommunications Industry Association
Electronic and Software Security Products and Services
International Telecommunication Union

Custom CGI Perl and PHP programming by 1-Script.com

Contact Us | Privacy Policy
The site map in XML format XML site map