You are on page 1of 4

Packet Tracer - Configure and Verify eBGP (Instructor Version)

Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only.

Objectives
Configure and verify eBGP between two autonomous systems.

Background / Scenario
In this activity, you will configure and verify the operation of eBGP between autonomous systems 65001 and
65002. ACME Inc. is a company that has a partnership with Other Company and must exchange routes. Both
companies have their own autonomous systems and will use ISP as the transit AS to reach each other.

En esta actividad, configurará y verificará el funcionamiento de eBGP entre los


sistemas autónomos 65001 y 65002. ACME Inc. es una empresa que tiene una
sociedad con Otra Compañía y debe intercambiar rutas. Ambas empresas tienen
sus propios sistemas autónomos y utilizarán ISP como AS de tránsito para
comunicarse entre sí
Note: Only companies with very large networks can afford their own autonomous system.

Solo las empresas con redes muy grandes pueden permitirse


su propio sistema autónomo
Address Table
Device Interface IPv4 Address Subnet Mask Default Gateway

ACME1 G0/0 192.168.0.1 255.255.255.0 N/A


ACME1
S0/0/0 1.1.1.2 255.255.255.252 N/A

OtherCo1 G/0/0 172.16.10.1 255.255.255.0 N/A


OtherCo1
S0/0/0 1.1.1.10 255.255.255.252 N/A

ISP-Entry-1 S0/0/0 1.1.1.1 255.255.255.252 N/A


ISP-Entry-1
S0/0/1 1.1.1.5 255.255.255.252 N/A

ISP-Entry-2 S0/0/0 1.1.1.9 255.255.255.252 N/A


ISP-Entry-2
S0/0/1 1.1.1.6 255.255.255.252 N/A

PC0 NIC DHCP DHCP 192.168.0.1


Laptop0 NIC DHCP DHCP 192.168.0.1
Laptop1 NIC DHCP DHCP 192.168.0.1
Server NIC 172.16.10.2 255.255.255.0 172.16.10.1

 2017 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 1 of 4 www.netacad.com
Packet Tracer - Configure and Verify eBGP

Instructions

Part 1: Configure eBGP in ACME Inc.


ACME Inc. hired an ISP to provide a connection to a partner company called Other Company. The ISP has
established network reachability within its network and to Other Company. You must connect ACME to the
ISP so that ACME and Other Company can communicate. Because the ISP is using BGP as the routing
protocol, you must configure ACME1, which is the ACME border router, to establish a BGP neighbor
connection with ISP-Entry-1. ISP-Entry-1 is the ISP border router that is directly connected to ACME.

ACME Inc. contrató a un ISP para proporcionar una conexión con una empresa
asociada llamada Otra Compañía. El ISP ha establecido la accesibilidad de la
red dentro de su red y con otras empresas. Debe conectar ACME al ISP para
que ACME y otra compañía puedan comunicarse. Debido a que el ISP utiliza
BGP como protocolo de enrutamiento, debe configurar ACME1, que es el
enrutador de borde ACME, para establecer una conexión de vecino BGP con
ISP-Entry-1. ISP-Entry-1 es el enrutador de borde ISP que está conectado
directamente a ACME
a. From ISP-Entry-1, verify that the ISP has provided IP reachability through its network by pinging 1.1.1.9,
which is the IP address of the ISP-Entry-2 Serial 0/0/0 interface.

Desde ISP-Entry-1, verifique que el ISP haya proporcionado accesibilidad IP


a través de su red haciendo ping a 1.1.1.9, que es la dirección IP de la
interfaz ISP-Entry-2 Serial 0/0/0
b. From any device inside of the ACME network, ping the Other Company server at 172.16.10.2. The pings
should fail because no BGP routing is configured at this time.

Desde cualquier dispositivo dentro de la red ACME, haga ping al servidor de


la Otra Compañía en 172.16.10.2. Los pings deberían fallar porque no hay
ningún enrutamiento BGP configurado en este momento
c. Configure ACME1 to become an eBGP peer with ISP-Entry-1. ACME has AS number is 65001, and the
ISP is using AS number 65003. Use 1.1.1.1 as the neighbor IP address and add the ACME internal
network 192.168.0.0/24 to BGP.

Configure ACME1 para convertirse en un par de eBGP con ISP-Entry-1. El


número de AS de ACME es 65001 y el ISP está utilizando el número de AS
65003. Utilice 1.1.1.1 como dirección IP vecina y agregue la red interna de
ACME 192.168.0.0/24 a BGP
ACME1(config)# router bgp 65001
ACME1(config-router)# neighbor 1.1.1.1 remote-as 65003
ACME1(config-router)# network 192.168.0.0 mask 255.255.255.0

 2017 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 2 of 4 www.netacad.com
Packet Tracer - Configure and Verify eBGP

From any device inside of the ACME network, ping the Other Company internal server again. Does it
work?

Desde cualquier dispositivo dentro de la red ACME, vuelva a hacer ping al


servidor interno de la Otra Compañía. ¿Funciona?
Type your answers here.
No.

Part 2: Configure eBGP for Other Company Inc.


The network administrator at Other Company is not familiar with BGP and could not configure the Other
Company side of the link. Because of this, you must also configure the Other Company end of the connection.

El administrador de red de Otra Compañía no está familiarizado con BGP y no


pudo configurar el lado del enlace de Otra Compañía. Debido a esto, también
debe configurar el extremo de la conexión de Otra compañía
Configure router OtherCo1 to form an eBGP adjacency with ISP-Entry-2, which is the ISP border router facing
OtherCo1. Other Company is under AS 65002 while ISP is under AS 65003. Use the 1.1.1.9 as the neighbor
IP address of ISP-Entry-2 and add the Other Company internal network 172.16.10.0/24 to BGP.

Configure el enrutador OtherCo1 para formar una adyacencia eBGP con ISP-Entry-
2, que es el enrutador de borde ISP frente a OtherCo1. Otra compañía está bajo AS
65002 mientras que ISP está bajo AS 65003. Use 1.1.1.9 como la dirección IP
vecina de ISP-Entry-2 y agregue la red interna de Otra Compañía 172.16.10.0/24 a
BGP.

OtherCo1(config)# router bgp 65002


OtherCo1(config-router)# neighbor 1.1.1.9 remote-as 65003
OtherCo1(config-router)# network 172.16.10.0 mask 255.255.255.0

Part 3: eBGP Verification


a. Verify that ACME1 has formed an eBGP adjacency with ISP-Entry-1. The show ip bgp summary
command is very useful here.

Verifique que ACME1 haya formado una adyacencia eBGP con ISP-Entry-1. El
comando show ip bgp summary es muy útil aquí
a. Use the show ip bgp summary command to verify the routes that ACME1 has learned via eBGP and
their status.

Utilice el comando show ip bgp summary para verificar las rutas que ACME1
ha aprendido a través de eBGP y su estado
a. Look at the routing tables on ACME1 and OtherCo1. ACME1 should have learned the route to the Other
Company network 172.16.10.0/24. Similarly, OtherCo1 should now know about the route to the ACME
network 192.168.0.0/24.

 2017 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 3 of 4 www.netacad.com
Packet Tracer - Configure and Verify eBGP

Mire las tablas de enrutamiento en ACME1 y OtherCo1. ACME1 debería


haber aprendido la ruta a la red de la Otra Compañía 172.16.10.0/24. De
manera similar, OtherCo1 ahora debería conocer la ruta a la red ACME
192.168.0.0/24.
b. Open a web browser in any ACME Inc. end device and navigate to the Other Company server by entering
its IP address of 172.16.10.2

Abra un navegador web en cualquier dispositivo final de ACME Inc. y navegue


hasta el servidor de la Otra Compañía ingresando su dirección IP 172.16.10.2
a. From any ACME Inc. device, ping the Other Company server at 172.16.10.2.

Desde cualquier dispositivo de ACME Inc., haga ping al


servidor de Otra Compañía en 172.16.10.2.
End of document

Scripts

ACME1 Configuration
router bgp 65001
neighbor 1.1.1.1 remote-as 65003
network 192.168.0.0 mask 255.255.255.0

OtherCo1 Configuration
router bgp 65002
neighbor 1.1.1.9 remote-as 65003
network 172.16.10.0 mask 255.255.255.0

 2017 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 4 of 4 www.netacad.com

You might also like