SIMULATION 1
Guidelines
This is a lab item in which tasks will be performed on virtual devices.
- Refer to the Tasks tab to view the tasks for this lab item.
- Refer to the Topology tab to access the device console(s) and perform the tasks.
- Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window.
- All necessary preconfigurations have been applied.
- Do not change the enable password or hostname for any device.
- Save your configurations to NVRAM before moving to the next item.
- Click Next at the bottom of the screen to submit this lab and move to the next question.
- When Next is clicked, the lab closes and cannot be reopened.
Topology

Tasks
Configure the BGP routing protocol for R1 and R2 according to the topology to achieve these goals:
1. Configure EBGP neighbor adjacency for the IPv4 and IPv6 address family between R1 and R2 using Loopback0 IPv4 and IPv6 addresses. All BGP updates must come from the Loopback0 interface as the source. Do not use IGP routing protocols to complete this task.
2. Configure MD5 Authentication for the EBGP adjacency between R1 and R2. The password is clear text C1sc0!.
Correct Answer:
R1:
conf t
ip route 2.2.2.2 255.255.255.255 192.168.1.2
ip route 2000:cc13:cc13:2::1/128 2000:cc13:cc13:cc13::2
router bgp 65515
neighbor 2000:cc13:cc13:2::1 remote-as 65516
neighbor 2000:cc13:cc13:2::1 update-source lo0
neighbor 2000:cc13:cc13:2::1 disable-connected-check
neighbor 2000:cc13:cc13:2::1 ebgp-multihop 2
neighbor 2000:cc13:cc13:2::1 password C1sc0!.
neighbor 2.2.2.2 remote-as 65516
neighbor 2.2.2.2 update-source lo0
neighbor 2.2.2.2 disable-connected-check
neighbor 2.2.2.2 ebgp-multihop 2
neighbor 2.2.2.2 password C1sc0!.
address-family ipv4 unicast
neighbor 2.2.2.2 activate
address-family ipv6
neighbor 2000:cc13:cc13:2::1 activate
do copy running-config startup-config
R2:
conf t
ip route 1.1.1.1 255.255.255.255 192.168.1.1
ip route 2000:cc13:cc13:1::1/128 2000:cc13:cc13:cc13::1
router bgp 65516
neighbor 2000:cc13:cc13:1::1 remote-as 65515
neighbor 2000:cc13:cc13:1::1 update-source lo0
neighbor 2000:cc13:cc13:1::1 disable-connected-check
neighbor 2000:cc13:cc13:1::1 ebgp-multihop 2
neighbor 2000:cc13:cc13:1::1 password C1sc0!.
neighbor 1.1.1.1 remote-as 65515
neighbor 1.1.1.1 update-source lo0
neighbor 1.1.1.1 disable-connected-check
neighbor 1.1.1.1 ebgp-multihop 2
neighbor 1.1.1.1 password C1sc0!.
address-family ipv4 unicast
neighbor 1.1.1.1 activate
address-family ipv6
neighbor 2000:cc13:cc13:1::1 activate
do copy running-config startup-config