11.2.1 Packet Tracer – Configure and Verify eBGP Answers
CCNP ENCOR v8 & 8.01 | |
Final Exam Answers | |
This Chapters 11 - 12 | |
Chapters 11 - 12 Exam Answers | Online Test |
Chapters 11 - 12 Quizzes Answers | Online Test |
Next Chapters 13 - 14 | |
Chapters 13 - 14 Exam Answers | Online Test |
Chapters 13 - 14 Quizzes Answers | Online Test |
CCNP ENCOR Packet Tracer Activity Files Answers | |
11.2.1 Packet Tracer – Configure and Verify eBGP Answers | |
CCNP ENCOR Student Lab Source Files Answers | |
11.1.2 Lab – Implement eBGP for IPv4 Answers | |
11.1.3 Lab – Implement MP-BGP Answers | |
12.1.2 Lab – Implement BGP Path Manipulation Answers | |
12.1.3 Lab – Implement BGP Communities Answers |
Packet Tracer – Configure and Verify eBGP (Answers Version)
Answers 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.
Note: Only companies with very large networks can afford their own autonomous system.
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 |
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.
- 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.
- 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.
- 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.
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
From any device inside of the ACME network, ping the Other Company internal server again. Does it work?
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.
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.
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
- Verify that ACME1 has formed an eBGP adjacency with ISP-Entry-1. The show ip bgp summary command is very useful here.
- Use the show ip bgp summary command to verify the routes that ACME1 has learned via eBGP and their status.
- 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.
- 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
- From any ACME Inc. device, ping the Other Company server at 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
CCNP ENCOR v8 & 8.01 | |
Final Exam Answers | |
This Chapters 11 - 12 | |
Chapters 11 - 12 Exam Answers | Online Test |
Chapters 11 - 12 Quizzes Answers | Online Test |
Next Chapters 13 - 14 | |
Chapters 13 - 14 Exam Answers | Online Test |
Chapters 13 - 14 Quizzes Answers | Online Test |
CCNP ENCOR Packet Tracer Activity Files Answers | |
11.2.1 Packet Tracer – Configure and Verify eBGP Answers | |
CCNP ENCOR Student Lab Source Files Answers | |
11.1.2 Lab – Implement eBGP for IPv4 Answers | |
11.1.3 Lab – Implement MP-BGP Answers | |
12.1.2 Lab – Implement BGP Path Manipulation Answers | |
12.1.3 Lab – Implement BGP Communities Answers |