9 2 Build a Network Challenge 2 BGP - ItsMmmike/NET-330_Tech-Journal GitHub Wiki
Build a Network Challenge 2 - BGP
Purpose:
In this lab, we add upon our environment from Challenge 1 by using BGP in order to extend network connectivity to a Partner and Customer Network.
Materials:
- Cisco Packet Tracer
- Completed Challenge 1 Packet Tracer File
Objective:
The completed lab environment should look similar to below:
===
Working Notes/Documentation:
BTV Router Config
# Configure Default Route
ena
conf t
ip route 0.0.0.0 0.0.0.0 192.168.2.1 # Sets up default route to VT-ISP
# Enable Default Route on OSPF
ena
conf t
router ospf 1
default-information originate # Config used to send default route to all OSPF Area Routers
exit
# Configure Interface
int fa0/1 # (to Vermont-ISP)
ip address 192.168.2.2 255.255.255.252
no shut
exit
# Configure Routing/BGP
ena
conf t
router bgp 3033
neighbor 192.168.2.1 remote-as 1010
network 192.168.2.0 mask 255.255.255.252 # (to Vermont-ISP)
redistribute ospf 1 # Config used to advertise all ospf instance 1 routes via BGP
# Save Configuration
end
enable
copy run start
Vermont-ISP Router Config
# Configure Hostname
Enable
Conf t
Hostname Mike_Vermont-ISP
# Configure Interfaces
Int fa0/0 (to Pacific-ISP)
Ip address 192.168.1.1 255.255.255.252
No shut
Int fa0/1 # (to Burlington-BTV)
Ip address 192.168.2.1 255.255.255.252
No shut
# Configure Routing/BGP
Router bgp 1010 # (defines the AS for our router)
# Configure BGP Peers
Conf t
neighbor 192.168.1.2 remote-as 2054
neighbor 192.168.2.2 remote-as 3033
# Configure BGP Advertise Networks
Conf t
Network 192.168.1.0 mask 255.255.255.252 # (to Pacific)
Network 192.168.2.0 mask 255.255.255.252 # (to Burlington)
# Save Configuration
end
enable
copy run start
Pacific-ISP Router Config
# Configure Hostname
Enable
Conf t
Hostname Mike_Pacific-ISP
# Configure Interfaces
Int fa0/0 # (to Vermont-ISP)
Ip address 192.168.1.2 255.255.255.252
No shut
Int fa0/1 # (to Partner Co)
Ip address 192.168.3.1 255.255.255.252
No shut
Int se0/1/0 # (to Customer Co)
Ip address 192.168.4.1 255.255.255.252
No shut
# Configure Routing/BGP
Router bgp 2054
# Configure BGP Peers
Conf t
neighbor 192.168.1.1 remote-as 1010
neighbor 192.168.3.2 remote-as 34908
neighbor 192.168.4.2 remote-as 5132
# Configure BGP Advertise Networks
Conf t
Network 192.168.1.0 mask 255.255.255.252 # (to Vermont-ISP)
Network 192.168.3.0 mask 255.255.255.252 # (to Partner Co)
Network 192.168.4.0 mask 255.255.255.252 # (to Customer Co)
# Save Configuration
end
enable
copy run start
Partner Co Router Config
# Configure Hostname
Enable
Conf t
Hostname Mike_Partner-Co-Router
# Configure Interfaces
Int fa0/0 # (to Pacific-ISP)
Ip address 192.168.3.2 255.255.255.252
No shut
Int fa0/1 # (to Partner_Co-Net)
Ip address 10.15.6.1 255.255.255.0
No shut
# Configure Routing/BGP
Router bgp 34908
# Configure BGP Peer
Conf t
neighbor 192.168.3.1 remote-as 2054
# Configure BGP Advertise Networks
Conf t
Network 192.168.3.0 mask 255.255.255.252 # (to Pacific)
Network 10.15.6.0 mask 255.255.255.0 # (to Partner_Co-Net)
# Save Configuration
end
enable
copy run start
Customer Co Router Config
# Configure Hostname
Enable
Conf t
Hostname Mike_Customer-Co-Router
# Configure Interfaces
Int se0/1/0 # (to Pacific-ISP)
Ip address 192.168.3.2 255.255.255.252
No shut
Int fa0/0 # (to Customer_Co-Net)
Ip address 10.200.24.1 255.255.255.0
No shut
# Configure Routing/BGP
Router bgp 5132
# Configure BGP Peer
Conf t
neighbor 192.168.4.1 remote-as 2054
# Configure BGP Advertise Networks
Conf t
Network 192.168.4.0 mask 255.255.255.252 # (to Pacific)
Network 10.200.24.0 mask 255.255.255.0 # (to Customer_Co-Net)
# Save Configuration
end
enable
copy run start
===
Deliverables:
Screenshot of the "sh ip route" command being run on the Pacific ISP Router to show the current Routing Table
Screenshot of the "sh ip route" command being run on the Vermont ISP Router to show the current Routing Table
Screenshot of the "sh ip route" command being run on the BTV-Router Router to show the current Routing Table
Screenshot of the "Customer PC" (10.200.24.2) successfully pinging the "Data-Center Workstation" (172.16.6.2)