Exchange Point Lab Exercise
Configuring peering with an Upstream and Configuring Local Peering across IXP
Connect your router’s serial port to the upstream router according to the diagram.
We will now set up eBGP between all of the routers in the classroom and the corresponding upstream router. Each table is its own AS. For example, Table A is AS 100. Table B is AS 1100, etc.
AS:
Verify your addressing scheme.
Router(config)#router bgp 100 //use your AS number
Router(config-router)#neighbor 80.248.70.65 remote-as 1
// use the IP address and AS number of your neighbor
Router(config-router)#neighbor 80.248.70.65 description My-Peer-with-AS1
Router(config-router)#neighbor 80.248.70.65 update-source loopback0
Router(config-router)#neighbor 80.248.70.65 prefix-list my-routes out
Router(config-router)#neighbor 80.248.70.65 prefix-list my-peer in
Router(config)#ip prefix-list my-routes seq 5 permit 80.248.70.128/28
Router(config)#ip prefix-list my-routes seq 10 deny 0.0.0.0/0 le 32
Router(config)#
Router(config)#ip prefix-list my-upstream seq 5 deny 10.0.0.0/8 le 32
Router(config)#ip prefix-list my-upstream seq 10 deny 127.0.0.0/8 le 32
Router(config)#ip prefix-list my-upstream seq 15 deny 172.16.0.0/12 le 32
Router(config)#ip prefix-list my-upstream seq 20 deny 192.0.2.0/24 le 32
Router(config)#ip prefix-list my-upstream seq 25 deny 192.168.0.0/16 le 32
Router(config)#ip prefix-list my-upstream seq 50 permit 0.0.0.0/0 le 32
Notice that you will have to confirm with your upstream as to what routes they are planning
to send you. In the case above, the neighbor is sending everything. Double check
that you set your "my-routes" outbound filter to contain the network you wish to announce.
The entries with sequence number 50 are used to deny default routes.
Router#show ip bgp sum
BGP router identifier 80.248.70.21, local AS number 100
BGP table version is 3, main routing table version 3
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
80.248.70.65 4 1 0 0 3 0 0 never Idle
Router#show ip bgp
What routes are you receiving?
Other commands to monitor BGP:
Router#sh ip route
Router#sh ip bgp
Router#sh ip bgp neighbor
Router#sh ip bgp neighbor x.x.x.x received-routes [*]
[*] Only works if "soft-reconfiguration inbound" has been configured for this peer
AS number of neighbor Prefixes they will be announcing Ip address for peering
----------------------------- ---------------------------------------- ---------------------------
Note:
Often, in a BGP speaker, many neighbors are configured with the same update policies (that is, the same outbound route maps, distribute lists, filter lists, update source, and so on). Neighbors with the same update policies can be grouped into peer groups to simplify configuration and, more importantly, to make updating more efficient. When you have many peers, this approach is highly recommended.
We can use this to simplify our outbound configuration for our peers. We should be announcing just our prefix to our Exchange Point peers:
For example:
router bgp 100 neighbor XP-peers peer-group neighbor XP-peers filter-list 99 out neighbor XP-peers description Exchange Point Peers .. neighbor 80.248.70.3 remote-as 200 neighbor 80.248.70.3 peer-group XP-peers neighbor 80.248.70.3 filter-list 43 in neighbor 80.248.70.5 remote-as 300 neighbor 80.248.70.5 peer-group XP-peers neighbor 80.248.70.5 filter-list 45 in neighbor 80.248.70.7 remote-as 400 neighbor 80.248.70.7 peer-group XP-peers neighbor 80.248.70.7 filter-list 47 in
..
ip as-path access-list 99 permit ^$
etc
Our Inbound prefix lists will vary for each peer as we will only be accepting only our peers’ prefix from each.