H3C BGP Configuration Examples

Size: px
Start display at page:

Download "H3C BGP Configuration Examples"

Transcription

1 H3C BGP Configuration Examples Copyright 2017 New H3C Technologies Co., Ltd. All rights reserved. No part of this manual may be reproduced or transmitted in any form or by any means without prior written consent of New H3C Technologies Co., Ltd. The information in this document is subject to change without notice.

2 Contents Introduction 1 Prerequisites 1 Example: Configuring basic BGP 1 Network configuration 1 Analysis 1 Software versions used 1 Restrictions and guidelines 1 Procedures 2 Verifying the configuration 5 Configuration files 6 Examples: Configuring BGP and IGP route redistribution 7 Network configuration 7 Analysis 8 Software versions used 8 Restrictions and guidelines 8 Procedures 8 Verifying the configuration 10 Configuration files 11 Related documentation 13 i

3 Introduction This document provides BGP configuration examples. Prerequisites The configuration examples in this document were created and verified in a lab environment, and all the devices were started with the factory default configuration. When you are working on a live network, make sure you understand the potential impact of every command on your network. This document assumes that you have basic knowledge of BGP. Example: Configuring basic BGP Network configuration As shown in Figure 1, all switches run BGP. Run EBGP between Switch A and Switch B, and run IBGP between Switch B and Switch C so that Switch C can access the network /24 connected to Switch A. Figure 1 Network diagram Vlan-int /24 Loop /32 AS Vlan-int /24 Switch A EBGP AS Vlan-int /24 Loop /32 Vlan-int /24 Switch B IBGP Vlan-int /24 Loop /32 Switch C Analysis To enable Switch B to communicate with Switch C through loopback interfaces, enable OSPF in AS By default, BGP does not advertise local networks. To enable Switch C to access the network /24 connected directly to Switch A, perform the following tasks: Add network /24 to the BGP routing table of Switch A. Add networks /24 and /24 to the BGP routing table of Switch B. Software versions used This configuration example was created and verified on S7500EXS-CMW710-R7536P05. Restrictions and guidelines When you configure basic BGP, follow these restrictions and guidelines: 1

4 Use loopback interfaces to establish IBGP connections to prevent route flapping caused by port state changes. Loopback interfaces are virtual interfaces. Use the peer connect-interface command to specify the loopback interface as the source interface for establishing BGP connections. The EBGP peers, Switch A and Switch B, are located in different ASs. Typically, their loopback interfaces are not reachable to each other, so the switches use directly connected interfaces to establish EBGP sessions. Procedures 1. Configure IP addresses for interfaces: Configure an IP address for VLAN-interface 100. <SwitchA> system-view [SwitchA] interface Vlan-interface 100 [SwitchA-Vlan-interface100] ip address Configure IP addresses for other interfaces in the same way that VLAN-interface 100 is configured. (Details not shown.) 2. Configure IBGP: Configure Switch B. <SwitchB> system-view [SwitchB] bgp [SwitchB-bgp-default] router-id [SwitchB-bgp-default] peer as-number [SwitchB-bgp-default] peer connect-interface Loopback 0 [SwitchB-bgp-default] address-family ipv4 unicast [SwitchB-bgp-default-ipv4] peer enable [SwitchB-bgp-default-ipv4] quit [SwitchB-bgp-default] quit [SwitchB] ospf 1 [SwitchB-ospf-1] area 0 [SwitchB-ospf-1-area ] network [SwitchB-ospf-1-area ] network [SwitchB-ospf-1-area ] quit [SwitchB-ospf-1] quit Configure Switch C. <SwitchC> system-view [SwitchC] bgp [SwitchC-bgp-default] router-id [SwitchC-bgp-default] peer as-number [SwitchC-bgp-default] peer connect-interface Loopback 0 [SwitchC-bgp-default] address-family ipv4 unicast [SwitchC-bgp-default-ipv4] peer enable [SwitchC-bgp-default-ipv4] quit [SwitchC-bgp-default] quit [SwitchC] ospf 1 [SwitchC-ospf-1] area 0 [SwitchC-ospf-1-area ] network [SwitchC-ospf-1-area ] network

5 [SwitchC-ospf-1-area ] quit [SwitchC-ospf-1] quit Display BGP peer information on Switch C. [SwitchC] display bgp peer ipv4 BGP local router ID : Local AS number : Total number of peers : 1 Peers in established state : 1 Peer AS MsgRcvd MsgSent OutQ PrefRcv Up/Down State :00:13 Established The output shows that Switch C has established an IBGP peer relationship with Switch B. 3. Configure EBGP: Configure Switch A. <SwitchA> system-view [SwitchA] bgp [SwitchA-bgp-default] router-id [SwitchA-bgp-default] peer as-number [SwitchA-bgp-default] address-family ipv4 unicast [SwitchA-bgp-default-ipv4] peer enable [SwitchA-bgp-default-ipv4] network [SwitchA-bgp-default-ipv4] quit [SwitchA-bgp-default] quit Configure Switch B. [SwitchB] bgp [SwitchB-bgp-default] peer as-number [SwitchB-bgp-default] address-family ipv4 unicast [SwitchB-bgp-default-ipv4] peer enable [SwitchB-bgp-default-ipv4] quit [SwitchB-bgp-default] quit Display BGP peer information on Switch B. [SwitchB] display bgp peer ipv4 BGP local router ID : Local AS number : Total number of peers : 2 Peers in established state : 2 Peer AS MsgRcvd MsgSent OutQ PrefRcv Up/Down State :02:49 Established :00:05 Established The output shows that Switch B has established an IBGP peer relationship with Switch C and an EBGP peer relationship with Switch A. Display the BGP routing table on Switch A. [SwitchA] display bgp routing-table ipv4 Total number of routes: 1 3

6 BGP local router ID is Status codes: * - valid, > - best, d - dampened, h - history, s - suppressed, S - stale, i - internal, e - external Origin: i - IGP, e - EGP,? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn * > / i Display the BGP routing table on Switch B. [SwitchB] display bgp routing-table ipv4 Total number of routes: 1 BGP local router ID is Status codes: * - valid, > - best, d - dampened, h - history, s - suppressed, S - stale, i - internal, e - external Origin: i - IGP, e - EGP,? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn * >e / i Display the BGP routing table on Switch C. [SwitchC] display bgp routing-table ipv4 Total number of routes: 1 BGP local router ID is Status codes: * - valid, > - best, d - dampened, h - history, s - suppressed, S - stale, i - internal, e - external Origin: i - IGP, e - EGP,? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn i / i The outputs show that Switch A has learned no route to AS 65009, and Switch C has learned network , but the next hop is unreachable. As a result, the route is invalid. 4. Configure BGP to redistribute direct routes on Switch B: Configure Switch B. [SwitchB] bgp [SwitchB-bgp-default] address-family ipv4 unicast [SwitchB-bgp-default-ipv4] network [SwitchB-bgp-default-ipv4] network [SwitchB-bgp-default-ipv4] quit [SwitchB-bgp-default] quit Display the BGP routing table on Switch A. [SwitchA] display bgp routing-table ipv4 4

7 Total number of routes: 3 BGP local router ID is Status codes: * - valid, > - best, d - dampened, h - history, s - suppressed, S - stale, i - internal, e - external Origin: i - IGP, e - EGP,? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn * >e / ? * > / i * >e / i The output shows that route /24 has been added in Switch A's routing table. Display the BGP routing table on Switch C. [SwitchC] display bgp routing-table ipv4 Total number of routes: 3 BGP local router ID is Status codes: * - valid, > - best, d - dampened, h - history, s - suppressed, S - stale, i - internal, e - external Origin: i - IGP, e - EGP,? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn * >i / ? * >i / i * >i / i The output shows that the route becomes valid with the next hop as Switch A. Verifying the configuration Verify that Switch C can ping [SwitchC] ping Ping ( ): 56 data bytes, press CTRL_C to break 56 bytes from : icmp_seq=0 ttl=254 time= ms 56 bytes from : icmp_seq=1 ttl=254 time=4.000 ms 56 bytes from : icmp_seq=2 ttl=254 time=4.000 ms 56 bytes from : icmp_seq=3 ttl=254 time=3.000 ms 56 bytes from : icmp_seq=4 ttl=254 time=3.000 ms --- Ping statistics for packet(s) transmitted, 5 packet(s) received, 0.0% packet loss round-trip min/avg/max/std-dev = 3.000/4.800/10.000/2.638 ms 5

8 Configuration files Switch A: vlan 100 vlan 200 interface Loopback0 ip address interface Vlan-interface100 ip address interface Vlan-interface200 ip address bgp router-id peer as-number address-family ipv4 unicast network peer enable Switch B: vlan 200 vlan 300 interface Loopback0 ip address interface Vlan-interface200 ip address interface Vlan-interface300 ip address bgp router-id peer as-number peer as-number peer connect-interface Loopback0 address-family ipv4 unicast network

9 network peer enable peer enable ospf 1 area network network Switch C: vlan 300 interface Loopback0 ip address interface Vlan-interface300 ip address bgp router-id peer as-number peer connect-interface Loopback0 address-family ipv4 unicast peer enable ospf 1 area network network Examples: Configuring BGP and IGP route redistribution Network configuration As shown in Figure 2, all devices of company A belong to AS and all devices of company B belong to AS Run EBGP between Switch A and Switch B, and run OSPF between Switch B and Switch C to allow communication only between networks /24 and /24. 7

10 Figure 2 Network diagram Vlan-int /24 AS Loop /32 EBGP AS Loop /32 OSPF Loop /32 Vlan-int /24 Vlan-int /24 Vlan-int /24 Switch A Vlan-int /24 Switch B Vlan-int /24 Vlan-int /24 Switch C Vlan-int /24 Analysis To enable Switch A to obtain the route to /24, configure BGP to redistribute routes from OSPF on Switch B. To enable Switch C to obtain the route to /24, configure OSPF to redistribute routes from BGP on Switch B. Software versions used This configuration example was created and verified on S7500EXS-CMW710-R7536P05. Restrictions and guidelines The EBGP peers, Switch A and Switch B, are located in different ASs. Typically, their loopback interfaces are not reachable to each other, so the switches use directly connected interfaces to establish EBGP sessions. Procedures 1. Configure IP addresses for interfaces: Configure an IP address for VLAN-interface 100. <SwitchA> system-view [SwitchA] interface Vlan-interface 100 [SwitchA-Vlan-interface100] ip address Configure IP addresses for other interfaces in the same way that VLAN-interface 100 is configured. (Details not shown.) 2. Enable OSPF in AS 65009: Configure Switch B. <SwitchB> system-view [SwitchB] ospf 1 [SwitchB-ospf-1] area 0 [SwitchB-ospf-1-area ] network [SwitchB-ospf-1-area ] network [SwitchB-ospf-1-area ] quit [SwitchB-ospf-1] quit Configure Switch C. <SwitchC> system-view 8

11 [SwitchC] ospf 1 [SwitchC-ospf-1] area 0 [SwitchC-ospf-1-area ] network [SwitchC-ospf-1-area ] network [SwitchC-ospf-1-area ] quit [SwitchC-ospf-1] quit 3. Configure the EBGP connection and add network /24 to the BGP routing table of Switch A: Configure Switch A. <SwitchA> system-view [SwitchA] bgp [SwitchA-bgp-default] router-id [SwitchA-bgp-default] peer as-number [SwitchA-bgp-default] address-family ipv4 unicast [SwitchA-bgp-default-ipv4] peer enable [SwitchA-bgp-default-ipv4] network [SwitchA-bgp-default-ipv4] quit [SwitchA-bgp-default] quit Configure Switch B. [SwitchB] bgp [SwitchB-bgp-default] router-id [SwitchB-bgp-default] peer as-number [SwitchB-bgp-default] address-family ipv4 unicast [SwitchB-bgp-default-ipv4] peer enable 4. Configure BGP and IGP route redistribution: Configure route redistribution between BGP and OSPF on Switch B. [SwitchB-bgp-default-ipv4] import-route ospf 1 [SwitchB-bgp-default-ipv4] quit [SwitchB-bgp-default] quit [SwitchB] ospf 1 [SwitchB-ospf-1] import-route bgp [SwitchB-ospf-1] quit Display the BGP routing table on Switch A. [SwitchA] display bgp routing-table ipv4 Total number of routes: 3 BGP local router ID is Status codes: * - valid, > - best, d - dampened, h - history, s - suppressed, S - stale, i - internal, e - external Origin: i - IGP, e - EGP,? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn * > / i * >e / ? The output shows that Switch A has obtained the route to /24. Display the OSPF routing table on Switch C. 9

12 [SwitchC] display ospf routing OSPF Process 1 with Router ID Routing Tables Routing for Network Destination Cost Type NextHop AdvRouter Area /24 1 Transit /24 1 Stub /32 1 Stub Routing for ASEs Destination Cost Type Tag NextHop AdvRouter /24 1 Type Total Nets: 3 Intra Area: 2 Inter Area: 0 ASE: 1 NSSA: 0 The output shows that Switch C has obtained the route to /24. Verifying the configuration Verify that can ping [SwitchA] ping -a Ping ( ) from : 56 data bytes, press CTRL_C to break 56 bytes from : icmp_seq=0 ttl=254 time= ms 56 bytes from : icmp_seq=1 ttl=254 time= ms 56 bytes from : icmp_seq=2 ttl=254 time=2.000 ms 56 bytes from : icmp_seq=3 ttl=254 time=7.000 ms 56 bytes from : icmp_seq=4 ttl=254 time=9.000 ms --- Ping statistics for packet(s) transmitted, 5 packet(s) received, 0.0% packet loss round-trip min/avg/max/std-dev = 2.000/8.000/12.000/3.406 ms Verify that can ping [SwitchC] ping -a Ping ( ) from : 56 data bytes, press CTRL_C to break 56 bytes from : icmp_seq=0 ttl=254 time=9.000 ms 56 bytes from : icmp_seq=1 ttl=254 time=4.000 ms 56 bytes from : icmp_seq=2 ttl=254 time=3.000 ms 56 bytes from : icmp_seq=3 ttl=254 time=3.000 ms 56 bytes from : icmp_seq=4 ttl=254 time=3.000 ms --- Ping statistics for packet(s) transmitted, 5 packet(s) received, 0.0% packet loss round-trip min/avg/max/std-dev = 3.000/4.400/9.000/2.332 ms Verify that cannot ping or [SwitchA] ping a Ping ( ) from : 56 data bytes, press CTRL_C to break 10

13 --- Ping statistics for packet(s) transmitted, 0 packet(s) received, 100.0% packet loss [SwitchA] ping a Ping ( ) from : 56 data bytes, press CTRL_C to break --- Ping statistics for packet(s) transmitted, 0 packet(s) received, 100.0% packet loss Verify that cannot ping or [SwitchC] ping a Ping ( ) from : 56 data bytes, press CTRL_C to break --- Ping statistics for packet(s) transmitted, 0 packet(s) received, 100.0% packet loss [SwitchC] ping a Ping ( ) from : 56 data bytes, press CTRL_C to break --- Ping statistics for packet(s) transmitted, 0 packet(s) received, 100.0% packet loss Configuration files Switch A: vlan

14 vlan 200 vlan 600 interface Loopback0 ip address interface Vlan-interface100 ip address interface Vlan-interface200 ip address interface Vlan-interface600 ip address bgp router-id peer as-number address-family ipv4 unicast network peer enable Switch B: vlan 200 vlan 300 vlan 500 interface Loopback0 ip address interface Vlan-interface200 ip address interface Vlan-interface300 ip address bgp router-id peer as-number address-family ipv4 unicast import-route ospf 1 peer enable 12

15 ospf 1 import-route bgp area network network Switch C: vlan 300 vlan 400 interface Loopback0 ip address interface Vlan-interface300 ip address interface Vlan-interface400 ip address interface Vlan-interface500 ip address ospf 1 area network network Related documentation H3C S7500E-XS Switch Series Layer 3 IP Routing Command Reference-R7536P05 H3C S7500E-XS Switch Series Layer 3 IP Routing Configuration Guide-R7536P05 13

Table of Contents 1 MSDP Configuration 1-1

Table of Contents 1 MSDP Configuration 1-1 Table of Contents 1 MSDP Configuration 1-1 MSDP Overview 1-1 Introduction to MSDP 1-1 How MSDP Works 1-2 Multi-Instance MSDP 1-7 Protocols and Standards 1-7 MSDP Configuration Task List 1-7 Configuring

More information

Configuring basic MBGP

Configuring basic MBGP Contents Configuring MBGP 1 MBGP overview 1 Protocols and standards 1 MBGP configuration task list 1 Configuring basic MBGP 2 Controlling route advertisement and reception 2 Configuration prerequisites

More information

Table of Contents 1 MSDP Configuration 1-1

Table of Contents 1 MSDP Configuration 1-1 Table of Contents 1 MSDP Configuration 1-1 MSDP Overview 1-1 Introduction to MSDP 1-1 How MSDP Works 1-2 Protocols and Standards 1-7 MSDP Configuration Task List 1-7 Configuring Basic Functions of MSDP

More information

Table of Contents 1 MBGP Configuration 1-1

Table of Contents 1 MBGP Configuration 1-1 Table of Contents 1 MBGP Configuration 1-1 MBGP Over 1-1 Protocols and Standards 1-2 MBGP Configuration Task List 1-2 Configuring MBGP Basic Functions 1-2 Prerequisites 1-2 Configuration Procedure 1-3

More information

Configuring MSDP. MSDP overview. How MSDP works. MSDP peers

Configuring MSDP. MSDP overview. How MSDP works. MSDP peers Contents Configuring MSDP 1 MSDP overview 1 How MSDP works 1 MSDP support for VPNs 6 Protocols and standards 6 MSDP configuration task list 6 Configuring basic MSDP functions 7 Configuration prerequisites

More information

Configuring MSDP. Overview. How MSDP operates. MSDP peers

Configuring MSDP. Overview. How MSDP operates. MSDP peers Contents Configuring MSDP 1 Overview 1 How MSDP operates 1 MSDP support for VPNs 6 Protocols and standards 6 MSDP configuration task list 7 Configuring basic MSDP functions 7 Configuration prerequisites

More information

H3C S10500 IP Unnumbered Configuration Examples

H3C S10500 IP Unnumbered Configuration Examples H3C S10500 IP Unnumbered Configuration Examples Copyright 2015 Hangzhou H3C Technologies Co., Ltd. All rights reserved. No part of this manual may be reproduced or transmitted in any form or by any means

More information

Contents. Configuring MSDP 1

Contents. Configuring MSDP 1 Contents Configuring MSDP 1 Overview 1 How MSDP works 1 MSDP support for VPNs 6 Protocols and standards 6 MSDP configuration task list 7 Configuring basic MSDP features 7 Configuration prerequisites 7

More information

Contents. BGP commands 1

Contents. BGP commands 1 Contents BGP commands 1 address-family ipv4 1 address-family ipv6 2 address-family link-state 3 advertise-rib-active 4 aggregate 5 balance 7 balance as-path-neglect 9 bestroute as-path-neglect 10 bestroute

More information

H3C S5830V2 & S5820V2 Switch Series

H3C S5830V2 & S5820V2 Switch Series H3C S5830V2 & S5820V2 Switch Series MCE Command Reference Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: Release2108 Document version: 6W101-20120531 Copyright 2012, Hangzhou

More information

H3C S7500E-X OSPF Configuration Examples

H3C S7500E-X OSPF Configuration Examples H3C S7500E-X OSPF Configuration Examples Copyright 2015 Hangzhou H3C Technologies Co., Ltd. All rights reserved. No part of this manual may be reproduced or transmitted in any form or by any means without

More information

Configuring IPv6 Provider Edge over MPLS (6PE)

Configuring IPv6 Provider Edge over MPLS (6PE) Finding Feature Information, page 1 Configuring 6PE, page 1 Finding Feature Information Your software release may not support all the features documented in this module. For the latest caveats and feature

More information

Table of Contents 1 Static Routing Configuration 1-1

Table of Contents 1 Static Routing Configuration 1-1 Table of Contents 1 Static Routing Configuration 1-1 Introduction 1-1 Static Route 1-1 Default Route 1-1 Application Environment of Static Routing 1-2 Configuring a Static Route 1-2 Configuration Prerequisites

More information

Table of Contents 1 Static Routing Configuration 1-1

Table of Contents 1 Static Routing Configuration 1-1 Table of Contents 1 Static Routing Configuration 1-1 Introduction 1-1 Static Route 1-1 Default Route 1-1 Application Environment of Static Routing 1-2 Configuring a Static Route 1-2 Configuration Prerequisites

More information

MultiVRF Deployment Example

MultiVRF Deployment Example MultiVRF Deployment Example BGP Session Per VRF Loopback13 192.168.1.13/32 AVPN VLAN10/VE10/RED VRF/172.16.16.2/30 VLAN11/VE11/GREEN VRF/172.16.16.6/30 VLAN13/VE13/Manage VRF/172.16.16.10/30 (2) Customer

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series Layer 3 IP Routing Configuration Guide Part number: 5998-5307a Software version: Release 23xx Document version: 6W101-20150320 Legal and notice information Copyright 2015 Hewlett-Packard

More information

Contents. EVPN overview 1

Contents. EVPN overview 1 Contents EVPN overview 1 EVPN network model 1 MP-BGP extension for EVPN 2 Configuration automation 3 Assignment of traffic to VXLANs 3 Traffic from the local site to a remote site 3 Traffic from a remote

More information

Table of Contents. BGP Configuration 1

Table of Contents. BGP Configuration 1 Table of Contents BGP Configuration 1 BGP Overview 1 Formats of BGP Messages 2 BGP Path Attributes 5 BGP Route Selection 9 ibgp and IGP Synchronization 11 Settlements for Problems in Large Scale BGP Networks

More information

Module 6 Implementing BGP

Module 6 Implementing BGP Module 6 Implementing BGP Lesson 1 Explaining BGP Concepts and Terminology BGP Border Gateway Protocol Using BGP to Connect to the Internet If only one ISP, do not need BGP. If multiple ISPs, use BGP,

More information

Table of Contents 1 BGP Configuration 1-1

Table of Contents 1 BGP Configuration 1-1 Table of Contents 1 BGP Configuration 1-1 BGP Overview 1-1 Formats of BGP Messages 1-2 BGP Path Attributes 1-4 BGP Route Selection 1-8 ibgp and IGP Synchronization 1-11 Settlements for Problems in Large

More information

H3C S12500 Unauthorized DHCP Server Detection Configuration Examples

H3C S12500 Unauthorized DHCP Server Detection Configuration Examples H3C S12500 Unauthorized DHCP Server Detection Configuration Examples Copyright 2013 Hangzhou H3C Technologies Co., Ltd. All rights reserved. No part of this manual may be reproduced or transmitted in any

More information

Multiprotocol BGP Extensions for IP Multicast Commands

Multiprotocol BGP Extensions for IP Multicast Commands Multiprotocol BGP Extensions for IP Multicast Commands Use the commands in this chapter to configure and monitor multiprotocol BGP. Multiprotocol BGP is based on RFC 2283, Multiprotocol Extensions for

More information

HPE FlexNetwork 5510 HI Switch Series

HPE FlexNetwork 5510 HI Switch Series HPE FlexNetwork 5510 HI Switch Series Layer 3 IP Routing Configuration Guide Part number: 5200-0077a Software version: Release 11xx Document version: 6W101-20161221 Copyright 2015, 2016 Hewlett Packard

More information

Contents. Configuring GRE 1

Contents. Configuring GRE 1 Contents Configuring GRE 1 Overview 1 GRE encapsulation format 1 GRE tunnel operating principle 1 GRE application scenarios 2 Protocols and standards 4 Configuring a GRE/IPv4 tunnel 4 Configuration guidelines

More information

Operation Manual IPv4 Routing H3C S3610&S5510 Series Ethernet Switches. Table of Contents

Operation Manual IPv4 Routing H3C S3610&S5510 Series Ethernet Switches. Table of Contents Table of Contents Table of Contents Chapter 1 Static Routing Configuration... 1-1 1.1 Introduction... 1-1 1.1.1 Static Route... 1-1 1.1.2 Default Route... 1-1 1.1.3 Application Environment of Static Routing...

More information

Table of Contents 1 Static Routing Configuration 1-1

Table of Contents 1 Static Routing Configuration 1-1 Table of Contents 1 Static Routing Configuration 1-1 Introduction 1-1 Static Route 1-1 Default Route 1-1 Application Environment of Static Routing 1-2 Configuring a Static Route 1-2 Configuration Prerequisites

More information

HP FlexFabric 7900 Switch Series

HP FlexFabric 7900 Switch Series HP FlexFabric 7900 Switch Series Layer 3 - IP Routing Configuration Guide Part number: 5998-4283 Software version: Release 2109 Document version: 6W100-20140122 Legal and notice information Copyright 2014

More information

Adapted from the Synchronization example in g/case/studies/icsbgp4.html

Adapted from the Synchronization example in   g/case/studies/icsbgp4.html Adapted from the Synchronization example in http://www.cisco.com/en/us/docs/internetworkin g/case/studies/icsbgp4.html When an AS provides transit service to other ASs when there are non-bgp routers in

More information

South America Workshop WALC 2006 (Quito, Ecuador July 06)

South America Workshop WALC 2006 (Quito, Ecuador July 06) South America Workshop WALC 2006 (Quito, Ecuador 26-28 July 06) Multiprotocol BGP configuration Pedro Lorga (lorga@fccn.pt) Miguel Baptista (miguel.baptista@fccn.pt) Simon Muyal (muyal@renater.pt) Laboratory

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series Layer 3 - IP Routing Configuration Guide Part number: 5998-2895 Software version: Release 2210 Document version: 6W100-20131105 Legal and notice information Copyright 2013

More information

Configuring IP addressing

Configuring IP addressing Contents Configuring IP addressing 1 Overview 1 IP address classes 1 Special IP addresses 2 Subnetting and masking 2 Assigning an IP address to an interface 3 Configuration guidelines 3 Configuration procedure

More information

Contents. Introduction. Prerequisites. Requirements. Components Used

Contents. Introduction. Prerequisites. Requirements. Components Used Contents Introduction Prerequisites Requirements Components Used Configure Network Diagram Configurations OSPF EIGRP RIP Troubleshoot Introduction This document describes how to redistribute Internal Border

More information

IP Routing Volume Organization

IP Routing Volume Organization IP Routing Volume Organization Manual Version 20091105-C-1.03 Product Version Release 6300 series Organization The IP Routing Volume is organized as follows: Features IP Routing Overview Static Routing

More information

Protecting an EBGP peer when memory usage reaches level 2 threshold 66 Configuring a large-scale BGP network 67 Configuring BGP community 67

Protecting an EBGP peer when memory usage reaches level 2 threshold 66 Configuring a large-scale BGP network 67 Configuring BGP community 67 Contents Configuring BGP 1 Overview 1 BGP speaker and BGP peer 1 BGP message types 1 BGP path attributes 2 BGP route selection 6 BGP route advertisement rules 6 BGP load balancing 6 Settlements for problems

More information

Deploy MPLS L3 VPN. APNIC Technical Workshop October 23 to 25, Selangor, Malaysia Hosted by:

Deploy MPLS L3 VPN. APNIC Technical Workshop October 23 to 25, Selangor, Malaysia Hosted by: Deploy MPLS L3 VPN APNIC Technical Workshop October 23 to 25, 2017. Selangor, Malaysia Hosted by: Issue Date: [201609] Revision: [01] Acknowledgement Cisco Systems Course Outline MPLS L3 VPN Models L3

More information

Configuring BGP community 43 Configuring a BGP route reflector 44 Configuring a BGP confederation 44 Configuring BGP GR 45 Enabling Guard route

Configuring BGP community 43 Configuring a BGP route reflector 44 Configuring a BGP confederation 44 Configuring BGP GR 45 Enabling Guard route Contents Configuring BGP 1 Overview 1 BGP speaker and BGP peer 1 BGP message types 1 BGP path attributes 2 BGP route selection 6 BGP route advertisement rules 6 BGP load balancing 6 Settlements for problems

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series MCE Configuration Guide Part number: 5998-2896 Software version: Release2207 Document version: 6W100-20121130 Legal and notice information Copyright 2012 Hewlett-Packard Development

More information

Configuration prerequisites 45 Configuring BGP community 45 Configuring a BGP route reflector 46 Configuring a BGP confederation 46 Configuring BGP

Configuration prerequisites 45 Configuring BGP community 45 Configuring a BGP route reflector 46 Configuring a BGP confederation 46 Configuring BGP Contents Configuring BGP 1 Overview 1 BGP speaker and BGP peer 1 BGP message types 1 BGP path attributes 2 BGP route selection 6 BGP route advertisement rules 6 BGP load balancing 6 Settlements for problems

More information

Introduction to BGP. ISP Workshops. Last updated 30 October 2013

Introduction to BGP. ISP Workshops. Last updated 30 October 2013 Introduction to BGP ISP Workshops Last updated 30 October 2013 1 Border Gateway Protocol p A Routing Protocol used to exchange routing information between different networks n Exterior gateway protocol

More information

FiberstoreOS BGP Configuration

FiberstoreOS BGP Configuration FiberstoreOS BGP Configuration Contents 1 Configure BGP...1 1.1 Overview... 1 1.2 Basic Topology (EBGP)... 2 1.2.2 Configuration... 2 1.2.3 Validation... 4 1.3 Basic topology(ibgp)... 5 1.3.2 Configuration...

More information

HP A5830 Switch Series Layer 3 - IP Routing. Configuration Guide. Abstract

HP A5830 Switch Series Layer 3 - IP Routing. Configuration Guide. Abstract HP A5830 Switch Series Layer 3 - IP Routing Configuration Guide Abstract This document describes the software features for the HP A Series products and guides you through the software configuration procedures.

More information

Operation Manual MCE H3C S3610&S5510 Series Ethernet Switches. Table of Contents

Operation Manual MCE H3C S3610&S5510 Series Ethernet Switches. Table of Contents Table of Contents Table of Contents Chapter 1 MCE Overview... 1-1 1.1 MCE Overview... 1-1 1.1.1 Introduction to BGP/MPLS VPN... 1-1 1.1.2 BGP/MPLS VPN Concepts... 1-2 1.1.3 Introduction to MCE... 1-5 1.1.4

More information

APNIC elearning: BGP Basics. 30 September :00 PM AEST Brisbane (UTC+10) Revision: 2.0

APNIC elearning: BGP Basics. 30 September :00 PM AEST Brisbane (UTC+10) Revision: 2.0 APNIC elearning: BGP Basics 30 September 2015 1:00 PM AEST Brisbane (UTC+10) Issue Date: 07 July 2015 Revision: 2.0 Presenter Nurul Islam (Roman) Senior Training Specialist, APNIC Nurul maintains the APNIC

More information

LAB1: BGP IPv4. BGP: Initial Config. Disclaimer

LAB1: BGP IPv4. BGP: Initial Config. Disclaimer Page1 LAB1: BGP IPv4 Disclaimer This Configuration Guide is designed to assist members to enhance their skills in respective technology area. While every effort has been made to ensure that all material

More information

Example: Conditionally Generating Static Routes

Example: Conditionally Generating Static Routes 1 of 5 9/30/2012 5:46 PM Example: Conditionally Generating Static Routes Understanding Conditionally Generated Routes Example: Configuring a Conditional Default Route Policy Understanding Conditionally

More information

BGP Attributes and Path Selection

BGP Attributes and Path Selection BGP Attributes and Path Selection ISP Training Workshops 1 BGP Attributes The tools available for the job 2 What Is an Attribute?... Next Hop AS Path MED...... Part of a BGP Update Describes the characteristics

More information

Using ping, tracert, and system debugging

Using ping, tracert, and system debugging Contents Using ping, tracert, and system debugging 1 Ping 1 Using a ping command to test network connectivity 1 Ping example 1 Tracert 3 Prerequisites 4 Using a tracert command to identify failed or all

More information

HP FlexFabric 7900 Switch Series

HP FlexFabric 7900 Switch Series HP FlexFabric 7900 Switch Series MCE Configuration Guide Part number: 5998-6188 Software version: Release 2117 and Release 2118 Document version: 6W100-20140805 Legal and notice information Copyright 2014

More information

Internetwork Expert s CCNP Bootcamp. Border Gateway Protocol (BGP) What Is BGP?

Internetwork Expert s CCNP Bootcamp. Border Gateway Protocol (BGP) What Is BGP? Internetwork Expert s CCNP Bootcamp Border Gateway Protocol (BGP) http:// What Is BGP? Border Gateway Protocol Version 4 Standards based RFC 4271 A Border Gateway Protocol 4 (BGP-4) Exterior Gateway Protocol

More information

H3C S10500 Switch Series

H3C S10500 Switch Series H3C S10500 Switch Series Layer 3 - IP Routing Configuration Guide Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: Release 1126 and Later Document version: 20111130-C-1.01 Copyright

More information

Operation Manual Routing Protocol. Table of Contents

Operation Manual Routing Protocol. Table of Contents Table of Contents Table of Contents Chapter 1 IP Routing Protocol Overview... 1-1 1.1 Introduction to IP Route and Routing Table... 1-1 1.1.1 IP Route... 1-1 1.1.2 Routing Table... 1-1 1.2 Routing Management

More information

Contents. Configuring a default route 1 Introduction to default routes 1

Contents. Configuring a default route 1 Introduction to default routes 1 Contents Configuring static routing 1 Introduction to static routes 1 Configuring a static route 1 Configuration prerequisites 1 Configuration procedure 1 Configuring BFD for static routes 2 BFD control

More information

HP FlexFabric 5930 Switch Series

HP FlexFabric 5930 Switch Series HP FlexFabric 5930 Switch Series MCE Configuration Guide Part number: 5998-4625 Software version: Release 2406 & Release 2407P01 Document version: 6W101-20140404 Legal and notice information Copyright

More information

HPE FlexFabric 5940 Switch Series

HPE FlexFabric 5940 Switch Series HPE FlexFabric 5940 Switch Series MCE Configuration Guide Part number: 5200-1024b Software version: Release 25xx Document version: 6W102-20170830 Copyright 2017 Hewlett Packard Enterprise Development LP

More information

HP A5820X & A5800 Switch Series Layer 3 - IP Routing. Configuration Guide. Abstract

HP A5820X & A5800 Switch Series Layer 3 - IP Routing. Configuration Guide. Abstract HP A5820X & A5800 Switch Series Layer 3 - IP Routing Configuration Guide Abstract This document describes the software features for the HP A Series products and guides you through the software configuration

More information

address-family ipv4 vrf vrf-name - Selects a per-vrf instance of a routing protocol.

address-family ipv4 vrf vrf-name - Selects a per-vrf instance of a routing protocol. LAB 1: Initial MPLS VPN Setup LAB 2: Running OSPF between PE and CE Routers LAB 3: Running BGP between PE and CE Routers LAB 4: Overlapping VPNs LAB 1: Initial MPLS VPN Setup Introduction: Introduction

More information

Page1. Cisco IOS Software, Linux Software (I86BI_LINUX-ADVENTERPRISEK9-M), Version 15.2(4)M1, DEVELOPMENT TEST SOFTWARE

Page1. Cisco IOS Software, Linux Software (I86BI_LINUX-ADVENTERPRISEK9-M), Version 15.2(4)M1, DEVELOPMENT TEST SOFTWARE BGP Disclaimer This Configuration Guide is designed to assist members to enhance their skills in particular technology area. While every effort has been made to ensure that all material is as complete

More information

Configuring a BGP Route Server

Configuring a BGP Route Server BGP route server is a feature designed for internet exchange (IX) operators that provides an alternative to full ebgp mesh peering among the service providers who have a presence at the IX. The route server

More information

Border Gateway Protocol - BGP

Border Gateway Protocol - BGP BGP Fundamentals Border Gateway Protocol - BGP Runs over TCP (port 179) TCP connection required before BGP session Need to be reachable! Path vector routing protocol Best path selection based on path attributes

More information

H3C S10500 OpenFlow Configuration Examples

H3C S10500 OpenFlow Configuration Examples H3C S10500 OpenFlow Configuration Examples Copyright 2015 Hangzhou H3C Technologies Co., Ltd. All rights reserved. No part of this manual may be reproduced or transmitted in any form or by any means without

More information

Chapter 7 Lab 7-1, Configuring BGP with Default Routing

Chapter 7 Lab 7-1, Configuring BGP with Default Routing Chapter 7 Topology Objectives Configure BGP to exchange routing information with two ISPs. Background The International Travel Agency (ITA) relies extensively on the Internet for sales. For this reason,

More information

HP FlexFabric 5700 Switch Series

HP FlexFabric 5700 Switch Series HP FlexFabric 5700 Switch Series Layer 3 - IP Routing Configuration Guide Part number: 5998-6688 Software version: Release 2416 Document version: 6W100-20150130 Legal and notice information Copyright 2015

More information

BGP Attributes and Policy Control

BGP Attributes and Policy Control BGP Attributes and Policy Control ISP/IXP Workshops 1 Agenda BGP Attributes BGP Path Selection Applying Policy 2 BGP Attributes The tools available for the job 3 What Is an Attribute?... Next Hop......

More information

MPLS VPN Multipath Support for Inter-AS VPNs

MPLS VPN Multipath Support for Inter-AS VPNs The feature supports Virtual Private Network (VPN)v4 multipath for Autonomous System Boundary Routers (ASBRs) in the interautonomous system (Inter-AS) Multiprotocol Label Switching (MPLS) VPN environment.

More information

UniNets MPLS LAB MANUAL MPLS. UNiNets Multiprotocol label Switching MPLS LAB MANUAL. UniNets MPLS LAB MANUAL

UniNets MPLS LAB MANUAL MPLS. UNiNets Multiprotocol label Switching MPLS LAB MANUAL. UniNets MPLS LAB MANUAL MPLS UNiNets Multiprotocol label Switching MPLS LAB MANUAL CCNP TOPOLOGY Lab: OSPF Routing VPN Topology: Task1: Perform the basic Configuration to provide the reachability as per diagram. SW1 Configuration

More information

Configuring IP addressing 1

Configuring IP addressing 1 Contents Configuring IP addressing 1 Overview 1 IP address classes 1 Special IP addresses 2 Subnetting and masking 2 Assigning an IP address to an interface 2 Configuration guidelines 3 Configuration procedure

More information

Chapter 20 IPv6 BGP Unicast Address Family Commands

Chapter 20 IPv6 BGP Unicast Address Family Commands Chapter 20 IPv6 BGP Unicast Address Family Commands NOTE: The IPv6 BGP unicast address family configuration level is present only on HP devices that support IPv6 and the ProCurve 9408sl Routing Switch

More information

Ravi Chandra cisco Systems Cisco Systems Confidential

Ravi Chandra cisco Systems Cisco Systems Confidential BGP4 1 Ravi Chandra cisco Systems 0799_04F7_c2 Cisco Systems Confidential 2 Border Gateway Protocol (BGP) Introduction to BGP BGP Peer Relationship BGP Attributes Applying Policy with BGP Putting it all

More information

BGP Attributes and Policy Control

BGP Attributes and Policy Control BGP Attributes and Policy Control ISP/IXP `2005, Cisco Systems, Inc. All rights reserved. 1 Agenda BGP Attributes BGP Path Selection Applying Policy 2 BGP Attributes The tools available for the job `2005,

More information

BGP Configuration. BGP Overview. Introduction to BGP. Formats of BGP Messages. Header

BGP Configuration. BGP Overview. Introduction to BGP. Formats of BGP Messages. Header Table of Contents BGP Configuration 1 BGP Overview 1 Introduction to BGP 1 Formats of BGP Messages 1 BGP Path Attributes 4 BGP Route Selection 8 Configuring BGP 8 Configuration Prerequisites 8 Configuration

More information

BGP Best External. Finding Feature Information

BGP Best External. Finding Feature Information The feature provides the network with a backup external route to avoid loss of connectivity of the primary external route. The feature advertises the most preferred route among those received from external

More information

H3C MSR Series Routers

H3C MSR Series Routers H3C MSR Series Routers Layer 3 - IP Routing Configuration Guide(V7) Hangzhou H3C Technologies Co., Ltd. http://www.h3c.com Software version: MSR-CMW710-R0007 Document version: 6W100-20140320 Copyright

More information

ibgp Multipath Load Sharing

ibgp Multipath Load Sharing ibgp Multipath Load haring Feature History Release 12.2(2)T 12.2(14) Modification This feature was introduced. This feature was integrated into. This feature module describes the ibgp Multipath Load haring

More information

MPLS VPN--Inter-AS Option AB

MPLS VPN--Inter-AS Option AB The feature combines the best functionality of an Inter-AS Option (10) A and Inter-AS Option (10) B network to allow a Multiprotocol Label Switching (MPLS) Virtual Private Network (VPN) service provider

More information

Route Policy Language. Set Object

Route Policy Language. Set Object Route Policy Language as-path-set name [set elements] end-set Set Object Route Policy Object route-policy name [policy statements] community-set name [set elements] end-set AS Path Set Community Set extcommunity-set

More information

Laura McDonnell 11 th June 2008

Laura McDonnell 11 th June 2008 Laura McDonnell 11 th June 2008 Background Why? How? Problems encountered? What next? 7 PoP sites 29 Connected Sites Including Kent Schools Network 5 HE s KM Core BT wavestream circuits (DWDM) 2.5Gbps

More information

Module 4 BGP-LS Configuration Lab

Module 4 BGP-LS Configuration Lab APNIC SDN Workshop Lab Module 4 BGP-LS Configuration Lab Objective: All the routers are pre-configured with basic interface, OSPF and BGP configuration according to the following topology diagram. As part

More information

BGP Enhancements for IPv6. ISP Training Workshops

BGP Enhancements for IPv6. ISP Training Workshops BGP Enhancements for IPv6 ISP Training Workshops Adding IPv6 to BGP RFC4760 Defines Multi-protocol Extensions for BGP4 Enables BGP to carry routing information of protocols other than IPv4 e.g. MPLS, IPv6,

More information

HP Routing Switch Series

HP Routing Switch Series HP 12500 Routing Switch Series MPLS Configuration Guide Part number: 5998-3414 Software version: 12500-CMW710-R7128 Document version: 6W710-20121130 Legal and notice information Copyright 2012 Hewlett-Packard

More information

Rev External BGP

Rev External BGP Rev. 00.. External BGP c c n a c o o k b o o k. c o m C O N C E P T S AS (Autonomous System) A network under a single administrative control, like a single company or a single ISP. ASN (AS Number) used

More information

Networkers 2001, Australia

Networkers 2001, Australia Networkers 2001, Australia March 28-30, Brisbane 1 Troubleshooting BGP Phil Smith Presentation_ID 2001, Cisco Systems, Inc. 2 BGP in Large Scale Networks Scalable Stable Simple 3 Avoid the Problem in the

More information

Operation Manual BGP. Table of Contents

Operation Manual BGP. Table of Contents Table of Contents Table of Contents... 1-1 1.1 BGP/MBGP Overview... 1-1 1.1.1 Introduction to BGP... 1-1 1.1.2 BGP Message Types... 1-2 1.1.3 BGP Routing Mechanism... 1-2 1.1.4 MBGP... 1-3 1.1.5 BGP Peer

More information

Step 1: IP Configuration: On R1: On R2: On R3: R1(config)#int s1/2 R1(config-if)#ip addr R1(config-if)#no shu

Step 1: IP Configuration: On R1: On R2: On R3: R1(config)#int s1/2 R1(config-if)#ip addr R1(config-if)#no shu Step 1: IP Configuration: n R1: R1(config)#int s1/2 R1(config-if)#ip addr 12.1.1.1 255.255.255.0 R1(config-if)#no shu R1(config-if)#int lo0 R1(config-if)#ip addr 1.1.1.1 255.0.0.0 R1(config-if)#int lo1

More information

IPv6 Tunnel through an IPv4 Network

IPv6 Tunnel through an IPv4 Network IPv6 Tunnel through an IPv4 Network Document ID: 25156 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Network Diagram Configurations (Manual IPv6 Mode) Configurations

More information

BGP Attributes and Policy Control

BGP Attributes and Policy Control BGP Attributes and Policy Control ISP/IXP Workshops 1 Agenda BGP Attributes BGP Path Selection Applying Policy 2 BGP Attributes The tools available for the job 3 What Is an Attribute?... Next Hop......

More information

Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED

Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED Chapter 6 Lab 6-3, Configuring IBGP and EBGP Sessions, Local Preference, and MED Topology Objectives Background For IBGP peers to correctly exchange routing information, use the next-hop-self command with

More information

Chapter 17 BGP4 Commands

Chapter 17 BGP4 Commands Chapter 17 BGP4 Commands NOTE: This chapter describes commands in the BGP configuration level, which is present on HP devices that support IPv4 only. For information about BGP commands and configuration

More information

MPLS VPN Inter-AS Option AB

MPLS VPN Inter-AS Option AB First Published: December 17, 2007 Last Updated: September 21, 2011 The feature combines the best functionality of an Inter-AS Option (10) A and Inter-AS Option (10) B network to allow a Multiprotocol

More information

2016/09/07 08:37 1/5 Internal BGP Lab. Set up Internal BGP (ibgp) within the each Group autonomous system to carry routing information within the AS.

2016/09/07 08:37 1/5 Internal BGP Lab. Set up Internal BGP (ibgp) within the each Group autonomous system to carry routing information within the AS. 2016/09/07 08:37 1/5 Internal BGP Lab Internal BGP Lab Introduction The purpose of this exercise is to: Set up Internal BGP (ibgp) within the each Group autonomous system to carry routing information within

More information

Configuration and Management of Networks 2012

Configuration and Management of Networks 2012 Configuring BGP with default routing Topology Objectives Background Instructions Configure BGP to exchange routing information with two ISPs. The International Travel Agency (ITA) relies extensively on

More information

HP 5920 & 5900 Switch Series

HP 5920 & 5900 Switch Series HP 5920 & 5900 Switch Series MPLS Configuration Guide Part number: 5998-4676a Software version: Release 23xx Document version: 6W101-20150320 Legal and notice information Copyright 2015 Hewlett-Packard

More information

BGP. Attributes 2005/03/11. (C) Herbert Haas

BGP. Attributes 2005/03/11. (C) Herbert Haas BGP Attributes (C) Herbert Haas 2005/03/11 Attribute Types Well-known Optional Mandatory Discretionary Non-Transitive Transitive ORIGIN (1) AS_PATH (2) NEXT_HOP (3) LOCAL_PREFERENCE (5) ATOMIC_AGGREGATE

More information

Configuring Advanced BGP

Configuring Advanced BGP CHAPTER 6 This chapter describes how to configure advanced features of the Border Gateway Protocol (BGP) on the Cisco NX-OS switch. This chapter includes the following sections: Information About Advanced

More information

Connecting to a Service Provider Using External BGP

Connecting to a Service Provider Using External BGP Connecting to a Service Provider Using External BGP First Published: May 2, 2005 Last Updated: August 21, 2007 This module describes configuration tasks that will enable your Border Gateway Protocol (BGP)

More information

Layer3 VPN with OSPF Protocol between CE-PE

Layer3 VPN with OSPF Protocol between CE-PE MPLS Layer3 VPN with OSPF Protocol between CE-PE Disclaimer This Configuration Guide is designed to assist members to enhance their skills in particular technology area. While every effort has been made

More information

Route Leaking in MPLS/VPN Networks

Route Leaking in MPLS/VPN Networks Route Leaking in MPLS/VPN Networks Document ID: 47807 Contents Introduction Prerequisites Requirements Components Used Conventions Configure Route Leaking from a Global Routing Table into a VRF and Route

More information

BGP Support for Next-Hop Address Tracking

BGP Support for Next-Hop Address Tracking The feature is enabled by default when a supporting Cisco software image is installed. BGP next-hop address tracking is event driven. BGP prefixes are automatically tracked as peering sessions are established.

More information

H3C S6520XE-HI Switch Series

H3C S6520XE-HI Switch Series H3C S6520XE-HI Switch Series EVPN Command Reference New H3C Technologies Co., Ltd. http://www.h3c.com.hk Software version: Release 1108 Document version: 6W100-20171228 Copyright 2017, New H3C Technologies

More information

Configuring Internal BGP Features

Configuring Internal BGP Features This module describes how to configure internal Border Gateway Protocol (BGP) features. Internal BGP (ibgp) refers to running BGP on networking devices within one autonomous system. BGP is an interdomain

More information

BGP Nonstop Routing was made a default feature.

BGP Nonstop Routing was made a default feature. Border Gateway Protocol (BGP) is an Exterior Gateway Protocol (EGP) that allows you to create loop-free interdomain routing between autonomous systems. An autonomous system is a set of routers under a

More information