Lição 9ª

 

 

 

 

 

   

Há momentos em que o BGP speaker remoto não está diretamente conectadas. Quando isto ocorre, é conhecido como um multihop eBGP. Há um par de razões diferentes isso pode ocorrer:

Há um outro roteador entre o BGP speaker local e BGP speaker remoto que não arranca BGP.
A fonte de uma conexão em uma interface BGP loopback em pelo menos um BGP speaker.

Use o seguinte comando:

neighbor address ebgp-multihop [ ttl ]

 

Na figura R2 não participar de BGP.

R1 Lo0-1.1.1.1

R3 Lo0-3.3.3.3

R1# conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)# router bgp 100

R1(config-router)# neighbor 3.3.3.3 remote-as 200

R1(config-router)# ^Z

R1#

R3# conf t

Enter configuration commands, one per line. End with CNTL/Z.

R3(config)# router bgp 200

R3(config-router)# neighbor 1.1.1.1 remote-as 100

R3(config-router)# ^Z

R3#

R1# conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)# router bgp 100

R1(config-router)# neighbor 3.3.3.3 update-source Lo0

R1(config-router)# neighbor 3.3.3.3 ebgp-multihop

R1(config-router)# ^Z

R1#

R3# conf t

Enter configuration commands, one per line. End with CNTL/Z.

R3(config)# router bgp 200

R3(config-router)# neighbor 1.1.1.1 update-source Lo0

R3(config-router)# neighbor 1.1.1.1 ebgp-multihop

R3(config-router)# ^Z

R3#

 

Por agora terminou com BGP configuração básica em um segundo curso irá abordar as opções avançadas para BGP.