Configure P1R1 for basic Exterior Border Gateway Protocol (EBGP). Configure P1R1 and P1R2 for Interior Border
Gateway Protocol (IBGP). Confirm BGP connectivity.
Lab Topology
For this lab, your network design will include two pods of devices. Pod 2 will be configured upon the initial loading of the lab. You will be responsible for configuring Pod 1. The Pod 2 devices will be configured with the same
IP addressing scheme as those in Pod 1. For all labs that require more than one pod, your pod will be represented
as Pod 1, and the remote pod will be Pod 2.
The Topology below represents the NetMap in the Simulator. To access each of the devices from within the Simulator, select the device name from the appropriate menu in the Simulator. For example, to access P1R1, click the
eRouters button and select P1R1 from the drop-down menu.
61
BSCI LAB 10
BGP Topology
Command Summary
Command
router bgp autonomous_system_number
neighbor ip_address remote-as asn
neighbor ip_address next-hop-self
network address {mask mask}
show ip bgp summary
show ip bgp neighbor
show ip bgp
clear ip bgp*
62
Description
enters router config mode for BGP
establishes a BGP neighbor relationship
defines the neighbor as a Next Hop Self neighbor
specifies networks to be advertised by BGP
displays summary BGP neighbor status
displays detailed BGP neighbor status
displays BGP table
resets all BGP peer connections
BSCI LAB 10
Lab Tasks
1. Make sure there is no configuration on P1R1 and P1R2. If any configurations are present, erase them
and reload both routers.
2. Configure P1R1 and P1R2 with the IP addresses shown in the Lab Topology diagram.
3. Assign a clock rate of 64000 to all DCE serial interfaces.
4. On P1R1 and P1R2, enable FastEthernet 0/0, serial 0/0, and Loopback 0.
5. Use ping to verify connectivity.
1. On P1R1, enable EBGP for your AS. You will need to configure a neighbor statement for each pod. These
examples are for Pod 1. The next-hop-self command is used to force P1R1 to advertise itself as the
next hop on the shared Ethernet backbone.
2. On P1R1, configure a network statement for each directly connected network.
3. Execute the show ip bgp summary command. How many neighbors are listed? How many network
entries are listed?
______________________________________________________________
4. Execute the show ip route command. Do you see any BGP routes? If so, what are the administrative
distances of these routes?
______________________________________________________________
5. Try the show ip bgp neighbors command. What is the BGP state of the first neighbor?
______________________________________________________________
63
BSCI LAB 10
Lab Solutions
64
BSCI LAB 10
C
C
C
B
B
5. Established
P1R1#show ip bgp neighbors
BGP neighbor is 10.100.100.2, remote AS 2, external link
BGP version 4, remote router ID 192.168.2.1
BGP state = Established, up for 00:09:55
65
BSCI LAB 10
1. P1R2(config)#router bgp 1
P1R2(config-router)#network 192.168.1.16 mask 255.255.255.240
P1R2(config-router)#network 192.168.1.32 mask 255.255.255.240
P1R2(config-router)#network 192.168.1.48 mask 255.255.255.240
2. P1R1(config)#router bgp 1
P1R1(config-router)#neighbor 192.168.1.34 remote-as 1
P1R2(config)#router bgp 1
P1R2(config-router)#neighbor 192.168.1.33 remote-as 1
P1R1#show ip bgp summary
Neighbor
V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
10.100.100.2 4 2
36
36
6
0
0 00:32:20
3
192.168.1.34 4 1
6
6
6
0
0 00:01:08
3
3. Yes
P1R2#sh ip route
10.0.0.0/24 is subnetted, 1 subnets
B
10.100.100.0 [200/0] via 192.168.1.33, 00:16:06
192.168.1.0/28 is subnetted, 4 subnets
C
192.168.1.32 is directly connected, Serial0/0
C
192.168.1.48 is directly connected, FastEthernet0/0
B
192.168.1.0 [200/0] via 192.168.1.33, 00:16:06
C
192.168.1.16 is directly connected, Loopback0
192.168.2.0/28 is subnetted, 2 subnets
B
192.168.2.32 [200/0] via 10.100.100.2, 00:15:56
B
192.168.2.0 [200/0] via 10.100.100.2, 00:15:57
4. The next hop is 10.100.100.2.
5. P1R1(config-router)#neighbor 192.168.1.34 next-hop-self
6. The next hop changes to 192.168.1.33.
66
BSCI LAB 10
Pod 1 Router 2
hostname P1R2
!
enable password cisco
!
interface Loopback0
ip address 192.168.1.17 255.255.255.240
!
interface FastEthernet0/0
ip address 192.168.1.49 255.255.255.240
speed auto
!
interface Serial0/0
ip address 192.168.1.34 255.255.255.240
!
router bgp 1
no synchronization
bgp log-neighbor-changes
network 192.168.1.16 mask 255.255.255.240
network 192.168.1.32 mask 255.255.255.240
network 192.168.1.48 mask 255.255.255.240
neighbor 192.168.1.33 remote-as 1
!
67
68