0% found this document useful (0 votes)
28 views1 page

Exercise: 8

BGP is a routing protocol used to exchange routing information between multiple autonomous systems. To configure BGP, declare your own autonomous system number, define neighbors and their autonomous system numbers, and define the networks you own. The example configuration shows Router1 in autonomous system 2 configured with BGP neighbors in autonomous systems 1 and 3 and advertising its 2.2.2.0/24 network.

Uploaded by

Vidushi Sood
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

Exercise: 8

BGP is a routing protocol used to exchange routing information between multiple autonomous systems. To configure BGP, declare your own autonomous system number, define neighbors and their autonomous system numbers, and define the networks you own. The example configuration shows Router1 in autonomous system 2 configured with BGP neighbors in autonomous systems 1 and 3 and advertising its 2.2.2.0/24 network.

Uploaded by

Vidushi Sood
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

EXERCISE: 8

BGP
BGP is a very robust routing protocol that is used to exchange routing information between
multiple Autonomous Systems (AS)
How to configure BGP? For short:
1. Declare your own AS number by "router bgp as-number".
2. Define neighbors with "neighbor Address remote-as as-number".
3. Define the networks you own by "network Address Mask".

Here is the BGP configuration fragment on "Router1" (AS number 2).


router bgp 2
bgp log-neighbor-changes
no synchronization
neighbor 4.4.4.1 remote-as 1
neighbor 5.5.5.3 remote-as 3
network 2.2.2.0 mask 255.255.255.0'

You might also like