BGP and BGP4+ Configuration

BGP Configurations

Enabling BGP Peers In The Same Autonomous

System

This example shows the minimum configuration required for enabling BGP on an interface. Peer 1 and Peer 2 are two BGP Peers belonging to the same Autonomous System (AS), AS200, connecting to network 10.10.10.0/24. First, define the routing process and the AS number to which the peers belong. Then, define BGP neighbors to start exchanging routing updates.

 

10.10.10.10

 

10.10.10.11

Peer 1

Peer 2

 

bgp_1

Peer 1

awplus#

configure terminal Enter the Global Configuration mode.

awplus(config)#

router bgp 200 Define the BGP routing process. The number 200 specifies the AS number of Peer 1.

awplus(config-router)#

neighbor 10.10.10.11 remote-as 200 Define BGP neighbors. 10.10.10.11 is the IP address of the neighbor (Peer 2) and 200 is the neighbor’s AS number.

Peer 2

awplus#

configure terminal Enter the Global Configuration mode

awplus(config)#

router bgp 200 Define the BGP routing process. The number 200 specifies the AS number of Peer 2.

awplus(config-router)#

neighbor 10.10.10.10 remote-as 200 Define BGP neighbors. 10.10.10.10 is the IP address of the neighbor (Peer 1) and 200 is the neighbor’s AS number.

Names of Commands Used

router bgp (BGP and BGP4+) neighbor remote-as (BGP and BGP4+)

Software Reference Supplement for SwitchBlade® x8112, x908, x900 and x610 Series Switches

C613-50032-01 REV D

AlliedWare PlusTM Operating System - Software Version 5.4.3-2.6

2.3

Page 55
Image 55
Allied Telesis VERSION 5.4.3-2.6, BGP4 manual BGP Configurations, Enabling BGP Peers In The Same Autonomous System