Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

Navigation

Examples: Configuring BGP on Logical Systems

Understanding BGP

BGP is an exterior gateway protocol (EGP) that is used to exchange routing information among routing devices in different autonomous systems (ASs). BGP routing information includes the complete route to each destination. BGP uses the routing information to maintain a database of network reachability information, which it exchanges with other BGP systems. BGP uses the network reachability information to construct a graph of AS connectivity, which enables BGP to remove routing loops and enforce policy decisions at the AS level.

Multiprotocol BGP (MBGP) extensions enable BGP to support IP version 6 (IPv6). MBGP defines the attributes MP_REACH_NLRI and MP_UNREACH_NLRI, which are used to carry IPv6 reachability information. Network layer reachability information (NLRI) update messages carry IPv6 address prefixes of feasible routes.

BGP allows for policy-based routing. You can use routing policies to choose among multiple paths to a destination and to control the redistribution of routing information.

BGP uses TCP as its transport protocol, using port 179 for establishing connections. Running over a reliable transport protocol eliminates the need for BGP to implement update fragmentation, retransmission, acknowledgment, and sequencing.

The Junos OS routing protocol software supports BGP version 4. This version of BGP adds support for Classless Interdomain Routing (CIDR), which eliminates the concept of network classes. Instead of assuming which bits of an address represent the network by looking at the first octet, CIDR allows you to explicitly specify the number of bits in the network address, thus providing a means to decrease the size of the routing tables. BGP version 4 also supports aggregation of routes, including the aggregation of AS paths.

This section discusses the following topics:

Autonomous Systems

An autonomous system (AS) is a set of routing devices that are under a single technical administration and normally use a single interior gateway protocol and a common set of metrics to propagate routing information within the set of routing devices. To other ASs, an AS appears to have a single, coherent interior routing plan and presents a consistent picture of what destinations are reachable through it.

AS Paths and Attributes

The routing information that BGP systems exchange includes the complete route to each destination, as well as additional information about the route. The route to each destination is called the AS path, and the additional route information is included in path attributes. BGP uses the AS path and the path attributes to completely determine the network topology. Once BGP understands the topology, it can detect and eliminate routing loops and select among groups of routes to enforce administrative preferences and routing policy decisions.

External and Internal BGP

BGP supports two types of exchanges of routing information: exchanges among different ASs and exchanges within a single AS. When used among ASs, BGP is called external BGP (EBGP) and BGP sessions perform inter-AS routing. When used within an AS, BGP is called internal BGP (IBGP) and BGP sessions perform intra-AS routing. Figure 1 illustrates ASs, IBGP, and EBGP.

Figure 1: ASs, EBGP, and IBGP

ASs, EBGP, and IBGP

A BGP system shares network reachability information with adjacent BGP systems, which are referred to as neighbors or peers.

BGP systems are arranged into groups. In an IBGP group, all peers in the group—called internal peers—are in the same AS. Internal peers can be anywhere in the local AS and do not have to be directly connected to one another. Internal groups use routes from an IGP to resolve forwarding addresses. They also propagate external routes among all other internal routing devices running IBGP, computing the next hop by taking the BGP next hop received with the route and resolving it using information from one of the interior gateway protocols.

In an EBGP group, the peers in the group—called external peers—are in different ASs and normally share a subnet. In an external group, the next hop is computed with respect to the interface that is shared between the external peer and the local routing device.

Multiple Instances of BGP

You can configure multiple instances of BGP at the following hierarchy levels:

  • [edit routing-instances routing-instance-name protocols]
  • [edit logical-systems logical-system-name routing-instances routing-instance-name protocols]

Multiple instances of BGP are primarily used for Layer 3 VPN support.

IGP peers and external BGP (EBGP) peers (both nonmultihop and multihop) are all supported for routing instances. BGP peering is established over one of the interfaces configured under the routing-instances hierarchy.

Note: When a BGP neighbor sends BGP messages to the local routing device, the incoming interface on which these messages are received must be configured in the same routing instance that the BGP neighbor configuration exists in. This is true for neighbors that are a single hop away or multiple hops away.

Routes learned from the BGP peer are added to the instance-name.inet.0 table by default. You can configure import and export policies to control the flow of information into and out of the instance routing table.

For Layer 3 VPN support, configure BGP on the provider edge (PE) router to receive routes from the customer edge (CE) router and to send the instances’ routes to the CE router if necessary. You can use multiple instances of BGP to maintain separate per-site forwarding tables for keeping VPN traffic separate on the PE router.

You can configure import and export policies that allow the service provider to control and rate-limit traffic to and from the customer.

You can configure an EBGP multihop session for a VRF routing instance. Also, you can set up the EBGP peer between the PE and CE routers by using the loopback address of the CE router instead of the interface addresses.

Example: Configuring Internal BGP Peering Sessions on Logical Systems

This example shows how to configure internal BGP peer sessions on logical systems.

Requirements

In this example, no special configuration beyond device initialization is required.

Overview

In this example, you configure internal BGP (IBGP) peering sessions.

In the sample network, the devices in AS 17 are fully meshed in the group internal-peers. The devices have loopback addresses 192.168.6.5, 192.163.6.4, and 192.168.40.4.

Figure 2 shows a typical network with internal peer sessions.

Figure 2: Typical Network with IBGP Sessions

Typical
Network with IBGP Sessions

Configuration

CLI Quick Configuration

To quickly configure this example, copy the following commands, paste them into a text file, remove any line breaks, change any details necessary to match your network configuration, and then copy and paste the commands into the CLI at the [edit] hierarchy level.

set logical-systems A interfaces lt-0/1/0 unit 1 description to-Bset logical-systems A interfaces lt-0/1/0 unit 1 encapsulation ethernetset logical-systems A interfaces lt-0/1/0 unit 1 peer-unit 2set logical-systems A interfaces lt-0/1/0 unit 1 family inet address 10.10.10.1/30set logical-systems A interfaces lo0 unit 1 family inet address 192.168.6.5/32set logical-systems A protocols bgp group internal-peers type internalset logical-systems A protocols bgp group internal-peers local-address 192.168.6.5set logical-systems A protocols bgp group internal-peers export send-directset logical-systems A protocols bgp group internal-peers neighbor 192.163.6.4set logical-systems A protocols bgp group internal-peers neighbor 192.168.40.4set logical-systems A protocols ospf area 0.0.0.0 interface lo0.1 passiveset logical-systems A protocols ospf area 0.0.0.0 interface lt-0/1/0.1set logical-systems A policy-options policy-statement send-direct term 2 from protocol directset logical-systems A policy-options policy-statement send-direct term 2 then acceptset logical-systems A routing-options router-id 192.168.6.5set logical-systems A routing-options autonomous-system 17set logical-systems B interfaces lt-0/1/0 unit 2 description to-Aset logical-systems B interfaces lt-0/1/0 unit 2 encapsulation ethernetset logical-systems B interfaces lt-0/1/0 unit 2 peer-unit 1set logical-systems B interfaces lt-0/1/0 unit 2 family inet address 10.10.10.2/30set logical-systems B interfaces lt-0/1/0 unit 5 description to-Cset logical-systems B interfaces lt-0/1/0 unit 5 encapsulation ethernetset logical-systems B interfaces lt-0/1/0 unit 5 peer-unit 6set logical-systems B interfaces lt-0/1/0 unit 5 family inet address 10.10.10.5/30set logical-systems B interfaces lo0 unit 2 family inet address 192.163.6.4/32set logical-systems B protocols bgp group internal-peers type internalset logical-systems B protocols bgp group internal-peers local-address 192.163.6.4set logical-systems B protocols bgp group internal-peers export send-directset logical-systems B protocols bgp group internal-peers neighbor 192.168.40.4set logical-systems B protocols bgp group internal-peers neighbor 192.168.6.5set logical-systems B protocols ospf area 0.0.0.0 interface lo0.2 passiveset logical-systems B protocols ospf area 0.0.0.0 interface lt-0/1/0.2set logical-systems B protocols ospf area 0.0.0.0 interface lt-0/1/0.5set logical-systems B policy-options policy-statement send-direct term 2 from protocol directset logical-systems B policy-options policy-statement send-direct term 2 then acceptset logical-systems B routing-options router-id 192.163.6.4set logical-systems B routing-options autonomous-system 17set logical-systems C interfaces lt-0/1/0 unit 6 description to-Bset logical-systems C interfaces lt-0/1/0 unit 6 encapsulation ethernetset logical-systems C interfaces lt-0/1/0 unit 6 peer-unit 5set logical-systems C interfaces lt-0/1/0 unit 6 family inet address 10.10.10.6/30set logical-systems C interfaces lo0 unit 3 family inet address 192.168.40.4/32set logical-systems C protocols bgp group internal-peers type internalset logical-systems C protocols bgp group internal-peers local-address 192.168.40.4set logical-systems C protocols bgp group internal-peers export send-directset logical-systems C protocols bgp group internal-peers neighbor 192.163.6.4set logical-systems C protocols bgp group internal-peers neighbor 192.168.6.5set logical-systems C protocols ospf area 0.0.0.0 interface lo0.3 passiveset logical-systems C protocols ospf area 0.0.0.0 interface lt-0/1/0.6set logical-systems C policy-options policy-statement send-direct term 2 from protocol directset logical-systems C policy-options policy-statement send-direct term 2 then acceptset logical-systems C routing-options router-id 192.168.40.4set logical-systems C routing-options autonomous-system 17

Device A

Step-by-Step Procedure

The following example requires you to navigate various levels in the configuration hierarchy. For information about navigating the CLI, see Using the CLI Editor in Configuration Mode in the CLI User Guide.

To configure internal BGP peer sessions on Device A:

  1. Configure the interfaces.
    [edit logical-systems A interfaces lt-0/1/0 unit 1]user@R1# set description to-Buser@R1# set encapsulation ethernetuser@R1# set peer-unit 2user@R1# set family inet address 10.10.10.1/30user@R1# set family inet address 192.168.6.5/32user@R1# upuser@R1# up[edit logical-systems A interfaces]user@R1# set lo0 unit 1 family inet address 192.168.6.5/32user@R1# exit[edit]user@R1# edit logical-systems B interfaces lt-0/1/0[edit logical-systems B interfaces lt-0/1/0]user@R1# set unit 2 description to-Auser@R1# set unit 2 encapsulation ethernetuser@R1# set unit 2 peer-unit 1user@R1# set unit 2 family inet address 10.10.10.2/30user@R1# set unit 5 description to-Cuser@R1# set unit 5 encapsulation ethernetuser@R1# set unit 5 peer-unit 6user@R1# set family inet address 10.10.10.5/30user@R1# up[edit logical-systems B interfaces]user@R1# set lo0 unit 2 family inet address 192.163.6.4/32user@R1# exit[edit]user@R1# edit logical-systems C interfaces lt-0/1/0 unit 6[edit logical-systems C interfaces lt-0/1/0 unit 6]set description to-Bset encapsulation ethernetset peer-unit 5set family inet address 10.10.10.6/30user@R1# upuser@R1# up[edit logical-systems C interfaces]set lo0 unit 3 family inet address 192.168.40.4/32
  2. Configure BGP.

    On Logical System A, the neighbor statements are included for both Device B and Device C, even though Logical System A is not directly connected to Device C.

    [edit logical-systems A protocols bgp group internal-peers]user@R1# set type internaluser@R1# set local-address 192.168.6.5user@R1# set export send-directuser@R1# set neighbor 192.163.6.4user@R1# set neighbor 192.168.40.4
    [edit logical-systems B protocols bgp group internal-peers]user@R1# set type internaluser@R1# set local-address 192.163.6.4user@R1# set export send-directuser@R1# set neighbor 192.168.40.4user@R1# set neighbor 192.168.6.5
    [edit logical-systems C protocols bgp group internal-peers]user@R1# set type internaluser@R1# set local-address 192.168.40.4user@R1# set export send-directuser@R1# set neighbor 192.163.6.4user@R1# set neighbor 192.168.6.5
  3. Configure OSPF.
    [edit logical-systems A protocols ospf area 0.0.0.0]user@R1# set interface lo0.1 passiveuser@R1# set interface lt-0/1/0.1
    [edit logical-systems A protocols ospf area 0.0.0.0]user@R1# set interface lo0.2 passiveuser@R1# set interface lt-0/1/0.2user@R1# set interface lt-0/1/0.5
    [edit logical-systems A protocols ospf area 0.0.0.0]user@R1# set interface lo0.3 passiveuser@R1# set interface lt-0/1/0.6
  4. Configure a policy that accepts direct routes.

    Other useful options for this scenario might be to accept routes learned through OSPF or local routes.

    [edit logical-systems A policy-options policy-statement send-direct term 2]user@R1# set from protocol directuser@R1# set then accept
    [edit logical-systems B policy-options policy-statement send-direct term 2]user@R1# set from protocol directuser@R1# set then accept
    [edit logical-systems C policy-options policy-statement send-direct term 2]user@R1# set from protocol directuser@R1# set then accept
  5. Configure the router ID and the autonomous system (AS) number.
    [edit logical-systems A routing-options]user@R1# set router-id 192.168.6.5user@R1# set autonomous-system 17
    [edit logical-systems B routing-options]user@R1# set router-id 192.163.6.4user@R1# set autonomous-system 17
    [edit logical-systems C routing-options]user@R1# set router-id 192.168.40.4user@R1# set autonomous-system 17

Results

From configuration mode, confirm your configuration by entering the show logical-systems command. If the output does not display the intended configuration, repeat the configuration instructions in this example to correct it.

user@R1# show logical-systems
A {interfaces {lt-0/1/0 {unit 1 {description to-B;encapsulation ethernet;peer-unit 2;family inet {address 10.10.10.1/30;}}}lo0 {unit 1 {family inet {address 192.168.6.5/32;}}}}protocols {bgp {group internal-peers {type internal;local-address 192.168.6.5;export send-direct;neighbor 192.163.6.4;neighbor 192.168.40.4;}}ospf {area 0.0.0.0 {interface lo0.1 {passive;}interface lt-0/1/0.1;}}}policy-options {policy-statement send-direct {term 2 {from protocol direct;then accept;}}}routing-options {router-id 192.168.6.5;autonomous-system 17;}}
B {interfaces {lt-0/1/0 {unit 2 {description to-A;encapsulation ethernet;peer-unit 1;family inet {address 10.10.10.2/30;}}unit 5 {description to-C;encapsulation ethernet;peer-unit 6;family inet {address 10.10.10.5/30;}}}lo0 {unit 2 {family inet {address 192.163.6.4/32;}}}}protocols {bgp {group internal-peers {type internal;local-address 192.163.6.4;export send-direct;neighbor 192.168.40.4;neighbor 192.168.6.5;}}ospf {area 0.0.0.0 {interface lo0.2 {passive;}interface lt-0/1/0.2;interface lt-0/1/0.5;}}}policy-options {policy-statement send-direct {term 2 {from protocol direct;then accept;}}}routing-options {router-id 192.163.6.4;autonomous-system 17;}}
C {interfaces {lt-0/1/0 {unit 6 {description to-B;encapsulation ethernet;peer-unit 5;family inet {address 10.10.10.6/30;}}}lo0 {unit 3 {family inet {address 192.168.40.4/32;}}}}protocols {bgp {group internal-peers {type internal;local-address 192.168.40.4;export send-direct;neighbor 192.163.6.4;neighbor 192.168.6.5;}}ospf {area 0.0.0.0 {interface lo0.3 {passive;}interface lt-0/1/0.6;}}}policy-options {policy-statement send-direct {term 2 {from protocol direct;then accept;}}}routing-options {router-id 192.168.40.4;autonomous-system 17;}}

If you are done configuring the device, enter commit from configuration mode.

Verification

Confirm that the configuration is working properly.

Verifying BGP Neighbors

Purpose

Verify that BGP is running on configured interfaces and that the BGP session is active for each neighbor address.

Action

From the operational mode, enter the show bgp neighbor command.

user@R1> show bgp neighbor logical-system A
Peer: 192.163.6.4+179 AS 17    Local: 192.168.6.5+58852 AS 17   
  Type: Internal    State: Established    Flags: <Sync>
  Last State: OpenConfirm   Last Event: RecvKeepAlive
  Last Error: None
  Export: [ send-direct ] 
  Options: <Preference LocalAddress Refresh>
  Local Address: 192.168.6.5 Holdtime: 90 Preference: 170
  Number of flaps: 0
  Peer ID: 192.163.6.4     Local ID: 192.168.6.5       Active Holdtime: 90
  Keepalive Interval: 30         Peer index: 0   
  BFD: disabled, down
  NLRI for restart configured on peer: inet-unicast
  NLRI advertised by peer: inet-unicast
  NLRI for this session: inet-unicast
  Peer supports Refresh capability (2)
  Restart time configured on the peer: 120
  Stale routes from peer are kept for: 300
  Restart time requested by this peer: 120
  NLRI that peer supports restart for: inet-unicast
  NLRI that restart is negotiated for: inet-unicast
  NLRI of received end-of-rib markers: inet-unicast
  NLRI of all end-of-rib markers sent: inet-unicast
  Peer supports 4 byte AS extension (peer-as 17)
  Peer does not support Addpath
  Table inet.0 Bit: 10000
    RIB State: BGP restart is complete
    Send state: in sync
    Active prefixes:              0
    Received prefixes:            3
    Accepted prefixes:            3
    Suppressed due to damping:    0
    Advertised prefixes:          2
  Last traffic (seconds): Received 16   Sent 1    Checked 63  
  Input messages:  Total 15713  Updates 4       Refreshes 0     Octets 298622
  Output messages: Total 15690  Updates 2       Refreshes 0     Octets 298222
  Output Queue[0]: 0

Peer: 192.168.40.4+179 AS 17   Local: 192.168.6.5+56466 AS 17   
  Type: Internal    State: Established    Flags: <Sync>
  Last State: OpenConfirm   Last Event: RecvKeepAlive
  Last Error: None
  Export: [ send-direct ] 
  Options: <Preference LocalAddress Refresh>
  Local Address: 192.168.6.5 Holdtime: 90 Preference: 170
  Number of flaps: 0
  Peer ID: 192.168.40.4    Local ID: 192.168.6.5       Active Holdtime: 90
  Keepalive Interval: 30         Peer index: 1   
  BFD: disabled, down
  NLRI for restart configured on peer: inet-unicast
  NLRI advertised by peer: inet-unicast
  NLRI for this session: inet-unicast
  Peer supports Refresh capability (2)
  Restart time configured on the peer: 120
  Stale routes from peer are kept for: 300
  Restart time requested by this peer: 120
  NLRI that peer supports restart for: inet-unicast
  NLRI that restart is negotiated for: inet-unicast
  NLRI of received end-of-rib markers: inet-unicast
  NLRI of all end-of-rib markers sent: inet-unicast
  Peer supports 4 byte AS extension (peer-as 17)
  Peer does not support Addpath
  Table inet.0 Bit: 10000
    RIB State: BGP restart is complete
    Send state: in sync
    Active prefixes:              0
    Received prefixes:            2
    Accepted prefixes:            2
    Suppressed due to damping:    0
    Advertised prefixes:          2
  Last traffic (seconds): Received 15   Sent 22   Checked 68  
  Input messages:  Total 15688  Updates 2       Refreshes 0     Octets 298111
  Output messages: Total 15688  Updates 2       Refreshes 0     Octets 298184
  Output Queue[0]: 0

Verifying BGP Groups

Purpose

Verify that the BGP groups are configured correctly.

Action

From the operational mode, enter the show bgp group command.

user@A> show bgp group logical-system A
Group Type: Internal    AS: 17                     Local AS: 17
  Name: internal-peers  Index: 0                   Flags: <Export Eval>
  Export: [ send-direct ] 
  Holdtime: 0
  Total peers: 2        Established: 2
  192.163.6.4+179
  192.168.40.4+179
  inet.0: 0/5/5/0

Groups: 1  Peers: 2    External: 0    Internal: 2    Down peers: 0   Flaps: 0
Table          Tot Paths  Act Paths Suppressed    History Damp State    Pending
inet.0                 5          0          0          0          0          0

Verifying BGP Summary Information

Purpose

Verify that the BGP configuration is correct.

Action

From the operational mode, enter the show bgp summary command.

user@A> show bgp summary logical-system A
Groups: 1 Peers: 2 Down peers: 0
Table          Tot Paths  Act Paths Suppressed    History Damp State    Pending
inet.0                 5          0          0          0          0          0
Peer                     AS      InPkt     OutPkt    OutQ   Flaps Last Up/Dwn State|#Active/Received/Accepted/Damped...
192.163.6.4              17      15723      15700       0       0 4d 22:13:15 0/3/3/0              0/0/0/0
192.168.40.4             17      15698      15699       0       0 4d 22:13:11 0/2/2/0              0/0/0/0

Verifying That BGP Routes Are Installed in the Routing Table

Purpose

Verify that the export policy configuration is working.

Action

From the operational mode, enter the show route protocol bgp command.

user@A> show route protocol bgp logical-system A
inet.0: 7 destinations, 12 routes (7 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both

10.10.10.0/30       [BGP/170] 4d 11:05:55, localpref 100, from 192.163.6.4
                      AS path: I
                    > to 10.10.10.2 via lt-0/1/0.1
10.10.10.4/30       [BGP/170] 4d 11:05:55, localpref 100, from 192.163.6.4
                      AS path: I
                    > to 10.10.10.2 via lt-0/1/0.1
                    [BGP/170] 4d 11:03:10, localpref 100, from 192.168.40.4
                      AS path: I
                    > to 10.10.10.2 via lt-0/1/0.1
192.163.6.4/32      [BGP/170] 4d 11:05:55, localpref 100, from 192.163.6.4
                      AS path: I
                    > to 10.10.10.2 via lt-0/1/0.1
192.168.40.4/32     [BGP/170] 4d 11:03:10, localpref 100, from 192.168.40.4
                      AS path: I
                    > to 10.10.10.2 via lt-0/1/0.1

Example: Configuring External BGP on Logical Systems with IPv6 Interfaces

This example shows how to configure external BGP (EBGP) point-to-point peer sessions on logical systems with IPv6 interfaces.

Requirements

In this example, no special configuration beyond device initialization is required.

Overview

Junos OS supports EBGP peer sessions by means of IPv6 addresses. An IPv6 peer session can be configured when an IPv6 address is specified in the neighbor statement. This example uses EUI-64 to generate IPv6 addresses that are automatically applied to the interfaces. An EUI-64 address is an IPv6 address that uses the IEEE EUI-64 format for the interface identifier portion of the address (the last 64 bits).

Note: Alternatively, you can configure EBGP sessions using manually assigned 128-bit IPv6 addresses.

If you use 128-bit link-local addresses for the interfaces, you must include the local-interface statement. This statement is valid only for 128-bit IPv6 link-local addresses and is mandatory for configuring an IPv6 EBGP link-local peer session.

Configuring EBGP peering using link-local addresses is only applicable for directly connected interfaces. There is no support for multihop peering.

After your interfaces are up, you can use the show interfaces terse command to view the EUI-64-generated IPv6 addresses on the interfaces. You must use these generated addresses in the BGP neighbor statements. This example demonstrates the full end-to-end procedure.

In this example, Frame Relay interface encapsulation is applied to the logical tunnel (lt) interfaces. This is a requirement because only Frame Relay encapsulation is supported when IPv6 addresses are configured on the lt interfaces.

Figure 3 shows a network with BGP peer sessions. In the sample network, Router R1 has five logical systems configured. Device E in autonomous system (AS) 17 has BGP peer sessions to a group of peers called external-peers. Peers A, B, and C reside in AS 22. This example shows the step-by-step configuration on Logical System A and Logical System E.

Figure 3: Typical Network with BGP Peer Sessions

Typical Network
with BGP Peer Sessions

Configuration

CLI Quick Configuration

To quickly configure this example, copy the following commands, paste them into a text file, remove any line breaks, change any details necessary to match your network configuration, and then copy and paste the commands into the CLI at the [edit] hierarchy level.

Device A

set logical-systems A interfaces lt-0/1/0 unit 1 description to-Eset logical-systems A interfaces lt-0/1/0 unit 1 encapsulation frame-relayset logical-systems A interfaces lt-0/1/0 unit 1 dlci 1set logical-systems A interfaces lt-0/1/0 unit 1 peer-unit 25set logical-systems A interfaces lt-0/1/0 unit 1 family inet6 address 2001:db8:0:1::/64 eui-64set logical-systems A interfaces lo0 unit 1 family inet6 address 2001:db8::1/128set logical-systems A protocols bgp group external-peers type externalset logical-systems A protocols bgp group external-peers peer-as 17set logical-systems A protocols bgp group external-peers neighbor 2001:db8:0:1:2a0:a502:0:19daset logical-systems A routing-options router-id 1.1.1.1set logical-systems A routing-options autonomous-system 22

Device B

set logical-systems B interfaces lt-0/1/0 unit 6 description to-Eset logical-systems B interfaces lt-0/1/0 unit 6 encapsulation frame-relayset logical-systems B interfaces lt-0/1/0 unit 6 dlci 6set logical-systems B interfaces lt-0/1/0 unit 6 peer-unit 5set logical-systems B interfaces lt-0/1/0 unit 6 family inet6 address 2001:db8:0:2::/64 eui-64set logical-systems B interfaces lo0 unit 2 family inet6 address 2001:db8::2/128set logical-systems B protocols bgp group external-peers type externalset logical-systems B protocols bgp group external-peers peer-as 17set logical-systems B protocols bgp group external-peers neighbor 2001:db8:0:2:2a0:a502:0:5daset logical-systems B routing-options router-id 2.2.2.2set logical-systems B routing-options autonomous-system 22

Device C

set logical-systems C interfaces lt-0/1/0 unit 10 description to-Eset logical-systems C interfaces lt-0/1/0 unit 10 encapsulation frame-relayset logical-systems C interfaces lt-0/1/0 unit 10 dlci 10set logical-systems C interfaces lt-0/1/0 unit 10 peer-unit 9set logical-systems C interfaces lt-0/1/0 unit 10 family inet6 address 2001:db8:0:3::/64 eui-64set logical-systems C interfaces lo0 unit 3 family inet6 address 2001:db8::3/128set logical-systems C protocols bgp group external-peers type externalset logical-systems C protocols bgp group external-peers peer-as 17set logical-systems C protocols bgp group external-peers neighbor 2001:db8:0:3:2a0:a502:0:9daset logical-systems C routing-options router-id 3.3.3.3set logical-systems C routing-options autonomous-system 22

Device D

set logical-systems D interfaces lt-0/1/0 unit 7 description to-Eset logical-systems D interfaces lt-0/1/0 unit 7 encapsulation frame-relayset logical-systems D interfaces lt-0/1/0 unit 7 dlci 7set logical-systems D interfaces lt-0/1/0 unit 7 peer-unit 21set logical-systems D interfaces lt-0/1/0 unit 7 family inet6 address 2001:db8:0:4::/64 eui-64set logical-systems D interfaces lo0 unit 4 family inet6 address 2001:db8::4/128set logical-systems D protocols bgp group external-peers type externalset logical-systems D protocols bgp group external-peers peer-as 17set logical-systems D protocols bgp group external-peers neighbor 2001:db8:0:4:2a0:a502:0:15daset logical-systems D routing-options router-id 4.4.4.4set logical-systems D routing-options autonomous-system 79

Device E

set logical-systems E interfaces lt-0/1/0 unit 5 description to-Bset logical-systems E interfaces lt-0/1/0 unit 5 encapsulation frame-relayset logical-systems E interfaces lt-0/1/0 unit 5 dlci 6set logical-systems E interfaces lt-0/1/0 unit 5 peer-unit 6set logical-systems E interfaces lt-0/1/0 unit 5 family inet6 address 2001:db8:0:2::/64 eui-64set logical-systems E interfaces lt-0/1/0 unit 9 description to-Cset logical-systems E interfaces lt-0/1/0 unit 9 encapsulation frame-relayset logical-systems E interfaces lt-0/1/0 unit 9 dlci 10set logical-systems E interfaces lt-0/1/0 unit 9 peer-unit 10set logical-systems E interfaces lt-0/1/0 unit 9 family inet6 address 2001:db8:0:3::/64 eui-64set logical-systems E interfaces lt-0/1/0 unit 21 description to-Dset logical-systems E interfaces lt-0/1/0 unit 21 encapsulation frame-relayset logical-systems E interfaces lt-0/1/0 unit 21 dlci 7set logical-systems E interfaces lt-0/1/0 unit 21 peer-unit 7set logical-systems E interfaces lt-0/1/0 unit 21 family inet6 address 2001:db8:0:4::/64 eui-64set logical-systems E interfaces lt-0/1/0 unit 25 description to-Aset logical-systems E interfaces lt-0/1/0 unit 25 encapsulation frame-relayset logical-systems E interfaces lt-0/1/0 unit 25 dlci 1set logical-systems E interfaces lt-0/1/0 unit 25 peer-unit 1set logical-systems E interfaces lt-0/1/0 unit 25 family inet6 address 2001:db8:0:1::/64 eui-64set logical-systems E interfaces lo0 unit 5 family inet6 address 2001:db8::5/128set logical-systems E protocols bgp group external-peers type externalset logical-systems E protocols bgp group external-peers peer-as 22set logical-systems E protocols bgp group external-peers neighbor 2001:db8:0:1:2a0:a502:0:1daset logical-systems E protocols bgp group external-peers neighbor 2001:db8:0:2:2a0:a502:0:6daset logical-systems E protocols bgp group external-peers neighbor 2001:db8:0:3:2a0:a502:0:adaset logical-systems E protocols bgp group external-peers neighbor 2001:db8:0:4:2a0:a502:0:7da peer-as 79set logical-systems E routing-options router-id 5.5.5.5set logical-systems E routing-options autonomous-system 17

Step-by-Step Procedure

The following example requires you to navigate various levels in the configuration hierarchy. For information about navigating the CLI, see Using the CLI Editor in Configuration Mode in the CLI User Guide.

To configure the BGP peer sessions:

  1. Run the show interfaces terse command to verify that the physical router has a logical tunnel (lt) interface.
    user@R1> show interfaces terse
    Interface               Admin Link Proto    Local                 Remote
    ...
    lt-0/1/0                up    up  
    ...
  2. On Logical System A, configure the interface encapsulation, peer-unit number, and DLCI to reach Logical System E.
    user@R1> set cli logical-system ALogical system: A[edit]user@R1:A> editEntering configuration mode[edit]user@R1:A# edit interfaces[edit interfaces]user@R1:A# set lt-0/1/0 unit 1 encapsulation frame-relayuser@R1:A# set lt-0/1/0 unit 1 dlci 1user@R1:A# set lt-0/1/0 unit 1 peer-unit 25
  3. On Logical System A, configure the network address for the link to Peer E, and configure a loopback interface.
    [edit interfaces]user@R1:A# set lt-0/1/0 unit 1 description to-Euser@R1:A# set lt-0/1/0 unit 1 family inet6 address 2001:db8:0:1::/64 eui-64user@R1:A# set lo0 unit 1 family inet6 address 2001:db8::1/128
  4. On Logical System E, configure the interface encapsulation, peer-unit number, and DLCI to reach Logical System A.
    user@R1> set cli logical-system ELogical system: E[edit]user@R1:E> editEntering configuration mode[edit]user@R1:E# edit interfaces[edit interfaces]user@R1:E# set lt-0/1/0 unit 25 encapsulation frame-relayuser@R1:E# set lt-0/1/0 unit 25 dlci 1user@R1:E# set lt-0/1/0 unit 25 peer-unit 1
  5. On Logical System E, configure the network address for the link to Peer A, and configure a loopback interface.
    [edit interfaces]user@R1:E# set lt-0/1/0 unit 25 description to-Auser@R1:E# set lt-0/1/0 unit 25 family inet6 address 2001:db8:0:1::/64 eui-64user@R1:E# set lo0 unit 5 family inet6 address 2001:db8::5/128
  6. Run the show interfaces terse command to see the IPv6 addresses that are generated by EUI-64.

    The 2001 addresses are used in this example in the BGP neighbor statements.

    Note: The fe80 addresses are link-local addresses and are not used in this example.

    user@R1:A> show interfaces terse
    Interface               Admin Link Proto    Local                 Remote
    Logical system: A
    
    betsy@tp8:A> show interfaces terse 
    Interface               Admin Link Proto    Local                 Remote
    lt-0/1/0               
    lt-0/1/0.1              up    up   inet6    2001:db8:0:1:2a0:a502:0:1da/64
                                                fe80::2a0:a502:0:1da/64
    lo0                    
    lo0.1                   up    up   inet6    2001:db8::1     
                                                fe80::2a0:a50f:fc56:1da
    user@R1:E> show interfaces terse
    Interface               Admin Link Proto    Local                 Remote
    lt-0/1/0               
    lt-0/1/0.25             up    up   inet6    2001:db8:0:1:2a0:a502:0:19da/64
                                                fe80::2a0:a502:0:19da/64
    lo0                    
    lo0.5                   up    up   inet6    2001:db8::5     
                                                fe80::2a0:a50f:fc56:1da
  7. Repeat the interface configuration on the other logical systems.

Configuring the External BGP Sessions

Step-by-Step Procedure

The following example requires you to navigate various levels in the configuration hierarchy. For information about navigating the CLI, see Using the CLI Editor in Configuration Mode in the CLI User Guide.

To configure the BGP peer sessions:

  1. On Logical System A, create the BGP group, and add the external neighbor address.
    [edit protocols bgp group external-peers]user@R1:A# set neighbor 2001:db8:0:1:2a0:a502:0:19da
  2. On Logical System E, create the BGP group, and add the external neighbor address.
    [edit protocols bgp group external-peers]user@R1:E# set neighbor 2001:db8:0:1:2a0:a502:0:1da
  3. On Logical System A, specify the autonomous system (AS) number of the external AS.
    [edit protocols bgp group external-peers]user@R1:A# set peer-as 17
  4. On Logical System E, specify the autonomous system (AS) number of the external AS.
    [edit protocols bgp group external-peers]user@R1:E# set peer-as 22
  5. On Logical System A, set the peer type to EBGP.
    [edit protocols bgp group external-peers]user@R1:A# set type external
  6. On Logical System E, set the peer type to EBGP.
    [edit protocols bgp group external-peers]user@R1:E# set type external
  7. On Logical System A, set the autonomous system (AS) number and router ID.
    [edit routing-options]user@R1:A# set router-id 1.1.1.1user@R1:A# set autonomous-system 22
  8. On Logical System E, set the AS number and router ID.
    [edit routing-options]user@R1:E# set router-id 5.5.5.5user@R1:E# set autonomous-system 17
  9. Repeat these steps for Peers A, B, C, and D.

Results

From configuration mode, confirm your configuration by entering the show logical-systems command. If the output does not display the intended configuration, repeat the instructions in this example to correct the configuration.

[edit]user@R1# show logical-systems
A {interfaces {lt-0/1/0 {unit 1 {description to-E;encapsulation frame-relay;dlci 1;peer-unit 25;family inet6 {address 2001:db8:0:1::/64 {eui-64;}}}}lo0 {unit 1 {family inet6 {address 2001:db8::1/128;}}}}protocols {bgp {group external-peers {type external;peer-as 17;neighbor 2001:db8:0:1:2a0:a502:0:19da;}}routing-options {router-id 1.1.1.1;autonomous-system 22;}}B {interfaces {lt-0/1/0 {unit 6 {description to-E;encapsulation frame-relay;dlci 6;peer-unit 5;family inet6 {address 2001:db8:0:2::/64 {eui-64;}}}}lo0 {unit 2 {family inet6 {address 2001:db8::2/128;}}}}protocols {bgp {group external-peers {type external;peer-as 17;neighbor 2001:db8:0:2:2a0:a502:0:5da;}}routing-options {router-id 2.2.2.2;autonomous-system 22;}}C {interfaces {lt-0/1/0 {unit 10 {description to-E;encapsulation frame-relay;dlci 10;peer-unit 9;family inet6 {address 2001:db8:0:3::/64 {eui-64;}}}}lo0 {unit 3 {family inet6 {address 2001:db8::3/128;}}}}protocols {bgp {group external-peers {type external;peer-as 17;neighbor 2001:db8:0:3:2a0:a502:0:9da;}}}routing-options {router-id 3.3.3.3;autonomous-system 22;}}D {interfaces {lt-0/1/0 {unit 7 {description to-E;encapsulation frame-relay;dlci 7;peer-unit 21;family inet6 {address 2001:db8:0:4::/64 {eui-64;}}}}lo0 {unit 4 {family inet6 {address 2001:db8::4/128;}}}}protocols {bgp {group external-peers {type external;peer-as 17;neighbor 2001:db8:0:4:2a0:a502:0:15da;}}routing-options {router-id 4.4.4.4;autonomous-system 79;}}E {interfaces {lt-0/1/0 {unit 5 {description to-B;encapsulation frame-relay;dlci 6;peer-unit 6;family inet6 {address 2001:db8:0:2::/64 {eui-64;}}}unit 9 {description to-C;encapsulation frame-relay;dlci 10;peer-unit 10;family inet6 {address 2001:db8:0:3::/64 {eui-64;}}}unit 21 {description to-D;encapsulation frame-relay;dlci 7;peer-unit 7;family inet6 {address 2001:db8:0:4::/64 {eui-64;}}}unit 25 {description to-A;encapsulation frame-relay;dlci 1;peer-unit 1;family inet6 {address 2001:db8:0:1::/64 {eui-64;}}}}lo0 {unit 5 {family inet6 {address 2001:db8::5/128;}}}}protocols {bgp {group external-peers {type external;peer-as 22;neighbor 2001:db8:0:1:2a0:a502:0:1da;neighbor 2001:db8:0:2:2a0:a502:0:6da;neighbor 2001:db8:0:3:2a0:a502:0:ada;neighbor 2001:db8:0:4:2a0:a502:0:7da {peer-as 79;}}}}routing-options {router-id 5.5.5.5;autonomous-system 17;}}

If you are done configuring the device, enter commit from configuration mode.

Verification

Confirm that the configuration is working properly.

Verifying BGP Neighbors

Purpose

Verify that BGP is running on configured interfaces and that the BGP session is active for each neighbor address.

Action

From operational mode, run the show bgp neighbor command.

user@R1:E> show bgp neighbor
Peer: 2001:db8:0:1:2a0:a502:0:1da+54987 AS 22 Local: 2001:db8:0:1:2a0:a502:0:19da+179 AS 17   
  Type: External    State: Established    Flags: <Sync>
  Last State: OpenConfirm   Last Event: RecvKeepAlive
  Last Error: Open Message Error
  Options: <Preference PeerAS Refresh>
  Holdtime: 90 Preference: 170
  Number of flaps: 0
  Error: 'Open Message Error' Sent: 20 Recv: 0
  Peer ID: 1.1.1.1         Local ID: 5.5.5.5           Active Holdtime: 90
  Keepalive Interval: 30         Peer index: 0   
  BFD: disabled, down
  Local Interface: lt-0/1/0.25                      
  NLRI for restart configured on peer: inet6-unicast
  NLRI advertised by peer: inet6-unicast
  NLRI for this session: inet6-unicast
  Peer supports Refresh capability (2)
  Stale routes from peer are kept for: 300
  Peer does not support Restarter functionality
  NLRI that restart is negotiated for: inet6-unicast
  NLRI of received end-of-rib markers: inet6-unicast
  NLRI of all end-of-rib markers sent: inet6-unicast
  Peer supports 4 byte AS extension (peer-as 22)
  Peer does not support Addpath
  Table inet6.0 Bit: 10000
    RIB State: BGP restart is complete
    Send state: in sync
    Active prefixes:              0
    Received prefixes:            0
    Accepted prefixes:            0
    Suppressed due to damping:    0
    Advertised prefixes:          0
  Last traffic (seconds): Received 7    Sent 18   Checked 81  
  Input messages:  Total 1611   Updates 1       Refreshes 0     Octets 30660
  Output messages: Total 1594   Updates 0       Refreshes 0     Octets 30356
  Output Queue[0]: 0

Peer: 2001:db8:0:2:2a0:a502:0:6da+179 AS 22 Local: 2001:db8:0:2:2a0:a502:0:5da+55502 AS 17   
  Type: External    State: Established    Flags: <Sync>
  Last State: OpenConfirm   Last Event: RecvKeepAlive
  Last Error: Open Message Error
  Options: <Preference PeerAS Refresh>
  Holdtime: 90 Preference: 170
  Number of flaps: 0
  Error: 'Open Message Error' Sent: 26 Recv: 0
  Peer ID: 2.2.2.2         Local ID: 5.5.5.5           Active Holdtime: 90
  Keepalive Interval: 30         Peer index: 2   
  BFD: disabled, down
  Local Interface: lt-0/1/0.5                       
  NLRI for restart configured on peer: inet6-unicast
  NLRI advertised by peer: inet6-unicast
  NLRI for this session: inet6-unicast
  Peer supports Refresh capability (2)
  Stale routes from peer are kept for: 300
  Peer does not support Restarter functionality
  NLRI that restart is negotiated for: inet6-unicast
  NLRI of received end-of-rib markers: inet6-unicast
  NLRI of all end-of-rib markers sent: inet6-unicast
  Peer supports 4 byte AS extension (peer-as 22)
  Peer does not support Addpath
  Table inet6.0 Bit: 10000
    RIB State: BGP restart is complete
    Send state: in sync
    Active prefixes:              0
    Received prefixes:            0
    Accepted prefixes:            0
    Suppressed due to damping:    0
    Advertised prefixes:          0
  Last traffic (seconds): Received 15   Sent 8    Checked 8   
  Input messages:  Total 1610   Updates 1       Refreshes 0     Octets 30601
  Output messages: Total 1645   Updates 0       Refreshes 0     Octets 32417
  Output Queue[0]: 0

Peer: 2001:db8:0:3:2a0:a502:0:ada+55983 AS 22 Local: 2001:db8:0:3:2a0:a502:0:9da+179 AS 17   
  Type: External    State: Established    Flags: <Sync>
  Last State: OpenConfirm   Last Event: RecvKeepAlive
  Last Error: None
  Options: <Preference PeerAS Refresh>
  Holdtime: 90 Preference: 170
  Number of flaps: 0
  Peer ID: 3.3.3.3         Local ID: 5.5.5.5           Active Holdtime: 90
  Keepalive Interval: 30         Peer index: 3   
  BFD: disabled, down
  Local Interface: lt-0/1/0.9                       
  NLRI for restart configured on peer: inet6-unicast
  NLRI advertised by peer: inet6-unicast
  NLRI for this session: inet6-unicast
  Peer supports Refresh capability (2)
  Stale routes from peer are kept for: 300
  Peer does not support Restarter functionality
  NLRI that restart is negotiated for: inet6-unicast
  NLRI of received end-of-rib markers: inet6-unicast
  NLRI of all end-of-rib markers sent: inet6-unicast
  Peer supports 4 byte AS extension (peer-as 22)
  Peer does not support Addpath
  Table inet6.0 Bit: 10000
    RIB State: BGP restart is complete
    Send state: in sync
    Active prefixes:              0
    Received prefixes:            0
    Accepted prefixes:            0
    Suppressed due to damping:    0
    Advertised prefixes:          0
  Last traffic (seconds): Received 21   Sent 21   Checked 67  
  Input messages:  Total 1610   Updates 1       Refreshes 0     Octets 30641
  Output messages: Total 1587   Updates 0       Refreshes 0     Octets 30223
  Output Queue[0]: 0

Peer: 2001:db8:0:4:2a0:a502:0:7da+49255 AS 79 Local: 2001:db8:0:4:2a0:a502:0:15da+179 AS 17   
  Type: External    State: Established    Flags: <Sync>
  Last State: OpenConfirm   Last Event: RecvKeepAlive
  Last Error: None
  Options: <Preference PeerAS Refresh>
  Holdtime: 90 Preference: 170
  Number of flaps: 0
  Peer ID: 4.4.4.4         Local ID: 5.5.5.5           Active Holdtime: 90
  Keepalive Interval: 30         Peer index: 1   
  BFD: disabled, down
  Local Interface: lt-0/1/0.21                      
  NLRI for restart configured on peer: inet6-unicast
  NLRI advertised by peer: inet6-unicast
  NLRI for this session: inet6-unicast
  Peer supports Refresh capability (2)
  Stale routes from peer are kept for: 300
  Peer does not support Restarter functionality
  NLRI that restart is negotiated for: inet6-unicast
  NLRI of received end-of-rib markers: inet6-unicast
  NLRI of all end-of-rib markers sent: inet6-unicast
  Peer supports 4 byte AS extension (peer-as 79)
  Peer does not support Addpath
  Table inet6.0 Bit: 10000
    RIB State: BGP restart is complete
    Send state: in sync
    Active prefixes:              0
    Received prefixes:            0
    Accepted prefixes:            0     
    Suppressed due to damping:    0
    Advertised prefixes:          0
  Last traffic (seconds): Received 6    Sent 17   Checked 25  
  Input messages:  Total 1615   Updates 1       Refreshes 0     Octets 30736
  Output messages: Total 1593   Updates 0       Refreshes 0     Octets 30337
  Output Queue[0]: 0

Meaning

IPv6 unicast network layer reachability information (NLRI) is being exchanged between the neighbors.

Verifying BGP Groups

Purpose

Verify that the BGP groups are configured correctly.

Action

From operational mode, run the show bgp group command.

user@R1:E> show bgp group
Group Type: External                               Local AS: 17
  Name: external-peers  Index: 0                   Flags: <>
  Holdtime: 0
  Total peers: 4        Established: 4
  2001:db8:0:1:2a0:a502:0:1da+54987
  2001:db8:0:2:2a0:a502:0:6da+179
  2001:db8:0:3:2a0:a502:0:ada+55983
  2001:db8:0:4:2a0:a502:0:7da+49255
  inet6.0: 0/0/0/0

Groups: 1  Peers: 4    External: 4    Internal: 0    Down peers: 0   Flaps: 0
Table          Tot Paths  Act Paths Suppressed    History Damp State    Pending
inet6.0                0          0          0          0          0          0
inet6.2                0          0          0          0          0          0

Meaning

The group type is external, and the group has four peers.

Verifying BGP Summary Information

Purpose

Verify that the BGP that the peer relationships are established.

Action

From operational mode, run the show bgp summary command.

user@R1:E> show bgp summary
Groups: 1 Peers: 4 Down peers: 0
Table          Tot Paths  Act Paths Suppressed    History Damp State    Pending
inet6.0                0          0          0          0          0          0
inet6.2                0          0          0          0          0          0
Peer                     AS      InPkt     OutPkt    OutQ   Flaps Last Up/Dwn State|#Active/Received/Accepted/Damped...
2001:db8:0:1:2a0:a502:0:1da          22       1617       1600       0       0    12:07:00 Establ
  inet6.0: 0/0/0/0
2001:db8:0:2:2a0:a502:0:6da          22       1616       1651       0       0    12:06:56 Establ
  inet6.0: 0/0/0/0
2001:db8:0:3:2a0:a502:0:ada          22       1617       1594       0       0    12:04:32 Establ
  inet6.0: 0/0/0/0
2001:db8:0:4:2a0:a502:0:7da          79       1621       1599       0       0    12:07:00 Establ
  inet6.0: 0/0/0/0

Meaning

The Down peers: 0 output shows that the BGP peers are in the established state.

Checking the Routing Table

Purpose

Verify that the inet6.0 routing table is populated with local and direct routes.

Action

From operational mode, run the show route command.

user@R1:E> show route
inet6.0: 15 destinations, 18 routes (15 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both

2001:db8::5/128    *[Direct/0] 12:41:18
                    > via lo0.5
2001:db8:0:1::/64  *[Direct/0] 14:40:01
                    > via lt-0/1/0.25
2001:db8:0:1:2a0:a502:0:19da/128
                   *[Local/0] 14:40:01
                      Local via lt-0/1/0.25
2001:db8:0:2::/64  *[Direct/0] 14:40:02
                    > via lt-0/1/0.5
2001:db8:0:2:2a0:a502:0:5da/128
                   *[Local/0] 14:40:02
                      Local via lt-0/1/0.5
2001:db8:0:3::/64  *[Direct/0] 14:40:02
                    > via lt-0/1/0.9
2001:db8:0:3:2a0:a502:0:9da/128
                   *[Local/0] 14:40:02
                      Local via lt-0/1/0.9
2001:db8:0:4::/64  *[Direct/0] 14:40:01
                    > via lt-0/1/0.21
2001:db8:0:4:2a0:a502:0:15da/128
                   *[Local/0] 14:40:01
                      Local via lt-0/1/0.21
fe80::/64          *[Direct/0] 14:40:02
                    > via lt-0/1/0.5
                    [Direct/0] 14:40:02
                    > via lt-0/1/0.9
                    [Direct/0] 14:40:01
                    > via lt-0/1/0.21
                    [Direct/0] 14:40:01
                    > via lt-0/1/0.25
fe80::2a0:a502:0:5da/128
                   *[Local/0] 14:40:02
                      Local via lt-0/1/0.5
fe80::2a0:a502:0:9da/128
                   *[Local/0] 14:40:02
                      Local via lt-0/1/0.9
fe80::2a0:a502:0:15da/128
                   *[Local/0] 14:40:01
                      Local via lt-0/1/0.21
fe80::2a0:a502:0:19da/128
                   *[Local/0] 14:40:01
                      Local via lt-0/1/0.25
fe80::2a0:a50f:fc56:1da/128
                   *[Direct/0] 12:41:18
                    > via lo0.5

Meaning

The inet6.0 routing table contains local and direct routes. To populate the routing table with other types of routes, you must configure routing policies.

Example: Configuring BFD on Internal BGP Peer Sessions

This example shows how to configure internal BGP (IBGP) peer sessions with the Bidirectional Forwarding Detection (BFD) protocol to detect failures in a network.

Requirements

No special configuration beyond device initialization is required before you configure this example.

Overview

The minimum configuration to enable BFD on IBGP sessions is to include the bfd-liveness-detection minimum-interval statement in the BGP configuration of all neighbors participating in the BFD session. The minimum-interval statement specifies the minimum transmit and receive intervals for failure detection. Specifically, this value represents the minimum interval after which the local routing device transmits hello packets as well as the minimum interval that the routing device expects to receive a reply from a neighbor with which it has established a BFD session. You can configure a value from 1 through 255,000 milliseconds.

Optionally, you can specify the minimum transmit and receive intervals separately using the transmit-interval minimum-interval and minimum-receive-interval statements. For information about these and other optional BFD configuration statements, see bfd-liveness-detection.

Note: BFD is an intensive protocol that consumes system resources. Specifying a minimum interval for BFD less than 100 ms for Routing Engine-based sessions and less than 10 ms for distributed BFD sessions can cause undesired BFD flapping.

Depending on your network environment, these additional recommendations might apply:

  • For large-scale network deployments with a large number of BFD sessions, specify a minimum interval of 300 ms for Routing Engine-based sessions and 100 ms for distributed BFD sessions.
  • For very large-scale network deployments with a large number of BFD sessions, contact Juniper Networks customer support for more information.
  • For BFD sessions to remain up during a Routing Engine switchover event when nonstop active routing (NSR) is configured, specify a minimum interval of 2500 ms for Routing Engine-based sessions. For distributed BFD sessions with NSR configured, the minimum interval recommendations are unchanged and depend only on your network deployment.

BFD is supported on the default routing instance (the main router), routing instances, and logical systems. This example shows BFD on logical systems.

Figure 4 shows a typical network with internal peer sessions.

Figure 4: Typical Network with IBGP Sessions

Typical Network with IBGP Sessions

Configuration

CLI Quick Configuration

To quickly configure this example, copy the following commands, paste them into a text file, remove any line breaks, change any details necessary to match your network configuration, and then copy and paste the commands into the CLI at the [edit] hierarchy level.

Device A

set logical-systems A interfaces lt-1/2/0 unit 1 description to-B set logical-systems A interfaces lt-1/2/0 unit 1 encapsulation ethernet set logical-systems A interfaces lt-1/2/0 unit 1 peer-unit 2 set logical-systems A interfaces lt-1/2/0 unit 1 family inet address 10.10.10.1/30 set logical-systems A interfaces lo0 unit 1 family inet address 192.168.6.5/32 set logical-systems A protocols bgp group internal-peers type internal set logical-systems A protocols bgp group internal-peers traceoptions file bgp-bfd set logical-systems A protocols bgp group internal-peers traceoptions flag bfd detail set logical-systems A protocols bgp group internal-peers local-address 192.168.6.5 set logical-systems A protocols bgp group internal-peers export send-direct set logical-systems A protocols bgp group internal-peers bfd-liveness-detection minimum-interval 1000 set logical-systems A protocols bgp group internal-peers neighbor 192.163.6.4 set logical-systems A protocols bgp group internal-peers neighbor 192.168.40.4 set logical-systems A protocols ospf area 0.0.0.0 interface lo0.1 passive set logical-systems A protocols ospf area 0.0.0.0 interface lt-1/2/0.1 set logical-systems A policy-options policy-statement send-direct term 2 from protocol direct set logical-systems A policy-options policy-statement send-direct term 2 then accept set logical-systems A routing-options router-id 192.168.6.5 set logical-systems A routing-options autonomous-system 17

Device B

set logical-systems B interfaces lt-1/2/0 unit 2 description to-Aset logical-systems B interfaces lt-1/2/0 unit 2 encapsulation ethernetset logical-systems B interfaces lt-1/2/0 unit 2 peer-unit 1set logical-systems B interfaces lt-1/2/0 unit 2 family inet address 10.10.10.2/30set logical-systems B interfaces lt-1/2/0 unit 5 description to-Cset logical-systems B interfaces lt-1/2/0 unit 5 encapsulation ethernetset logical-systems B interfaces lt-1/2/0 unit 5 peer-unit 6set logical-systems B interfaces lt-1/2/0 unit 5 family inet address 10.10.10.5/30set logical-systems B interfaces lo0 unit 2 family inet address 192.163.6.4/32set logical-systems B protocols bgp group internal-peers type internalset logical-systems B protocols bgp group internal-peers local-address 192.163.6.4set logical-systems B protocols bgp group internal-peers export send-directset logical-systems B protocols bgp group internal-peers bfd-liveness-detection minimum-interval 1000set logical-systems B protocols bgp group internal-peers neighbor 192.168.40.4set logical-systems B protocols bgp group internal-peers neighbor 192.168.6.5set logical-systems B protocols ospf area 0.0.0.0 interface lo0.2 passiveset logical-systems B protocols ospf area 0.0.0.0 interface lt-1/2/0.2set logical-systems B protocols ospf area 0.0.0.0 interface lt-1/2/0.5set logical-systems B policy-options policy-statement send-direct term 2 from protocol directset logical-systems B policy-options policy-statement send-direct term 2 then acceptset logical-systems B routing-options router-id 192.163.6.4set logical-systems B routing-options autonomous-system 17

Device C

set logical-systems C interfaces lt-1/2/0 unit 6 description to-Bset logical-systems C interfaces lt-1/2/0 unit 6 encapsulation ethernetset logical-systems C interfaces lt-1/2/0 unit 6 peer-unit 5set logical-systems C interfaces lt-1/2/0 unit 6 family inet address 10.10.10.6/30set logical-systems C interfaces lo0 unit 3 family inet address 192.168.40.4/32set logical-systems C protocols bgp group internal-peers type internalset logical-systems C protocols bgp group internal-peers local-address 192.168.40.4set logical-systems C protocols bgp group internal-peers export send-directset logical-systems C protocols bgp group internal-peers bfd-liveness-detection minimum-interval 1000set logical-systems C protocols bgp group internal-peers neighbor 192.163.6.4set logical-systems C protocols bgp group internal-peers neighbor 192.168.6.5set logical-systems C protocols ospf area 0.0.0.0 interface lo0.3 passiveset logical-systems C protocols ospf area 0.0.0.0 interface lt-1/2/0.6set logical-systems C policy-options policy-statement send-direct term 2 from protocol directset logical-systems C policy-options policy-statement send-direct term 2 then acceptset logical-systems C routing-options router-id 192.168.40.4set logical-systems C routing-options autonomous-system 17

Configuring Device A

Step-by-Step Procedure

The following example requires that you navigate various levels in the configuration hierarchy. For information about navigating the CLI, see Using the CLI Editor in Configuration Mode in the CLI User Guide.

To configure Device A:

  1. Set the CLI to Logical System A.
    user@host> set cli logical-system A
  2. Configure the interfaces.
    [edit interfaces lt-1/2/0 unit 1]user@host:A# set description to-B user@host:A# set encapsulation ethernet user@host:A# set peer-unit 2 user@host:A# set family inet address 10.10.10.1/30
    [edit interfaces lo0 unit 1]user@host:A# set family inet address 192.168.6.5/32
  3. Configure BGP.

    The neighbor statements are included for both Device B and Device C, even though Device A is not directly connected to Device C.

    [edit protocols bgp group internal-peers]user@host:A# set type internal user@host:A# set local-address 192.168.6.5 user@host:A# set export send-direct user@host:A# set neighbor 192.163.6.4 user@host:A# set neighbor 192.168.40.4
  4. Configure BFD.
    [edit protocols bgp group internal-peers]user@host:A# set bfd-liveness-detection minimum-interval 1000

    You must configure the same minimum interval on the connecting peer.

  5. (Optional) Configure BFD tracing.
    [edit protocols bgp group internal-peers]user@host:A# set traceoptions file bgp-bfd user@host:A# set traceoptions flag bfd detail
  6. Configure OSPF.
    [edit protocols ospf area 0.0.0.0]user@host:A# set interface lo0.1 passive user@host:A# set interface lt-1/2/0.1
  7. Configure a policy that accepts direct routes.

    Other useful options for this scenario might be to accept routes learned through OSPF or local routes.

    [edit policy-options policy-statement send-direct term 2]user@host:A# set from protocol direct user@host:A# set then accept
  8. Configure the router ID and the autonomous system (AS) number.
    [edit routing-options]user@host:A# set router-id 192.168.6.5 user@host:A# set autonomous-system 17
  9. If you are done configuring the device, enter commit from configuration mode.
    Repeat these steps to configure Device B and Device C.

Results

From configuration mode, confirm your configuration by entering the show interfaces, show policy-options, show protocols, and show routing-options commands. If the output does not display the intended configuration, repeat the instructions in this example to correct the configuration.

user@host:A# show interfaces
lt-1/2/0 {unit 1 {description to-B;encapsulation ethernet;peer-unit 2;family inet {address 10.10.10.1/30;}}}
lo0 {unit 1 {family inet {address 192.168.6.5/32;}}}
user@host:A# show policy-options
policy-statement send-direct {term 2 {from protocol direct;then accept;}}
user@host:A# show protocols
bgp {group internal-peers {type internal;traceoptions {file bgp-bfd;flag bfd detail;}local-address 192.168.6.5;export send-direct;bfd-liveness-detection {minimum-interval 1000;}neighbor 192.163.6.4;neighbor 192.168.40.4;}}
ospf {area 0.0.0.0 {interface lo0.1 {passive;}interface lt-1/2/0.1;}}
user@host:A# show routing-optionsrouter-id 192.168.6.5;autonomous-system 17;

Verification

Confirm that the configuration is working properly.

Verifying That BFD Is Enabled

Purpose

Verify that BFD is enabled between the IBGP peers.

Action

From operational mode, enter the show bgp neighbor command. You can use the | match bfd filter to narrow the output.

user@host:A> show bgp neighbor | match bfd
Options: <BfdEnabled>
  BFD: enabled, up
  Trace file: /var/log/A/bgp-bfd size 131072 files 10
  Options: <BfdEnabled>
  BFD: enabled, up
  Trace file: /var/log/A/bgp-bfd size 131072 files 10

Meaning

The output shows that Logical System A has two neighbors with BFD enabled. When BFD is not enabled, the output displays BFD: disabled, down, and the <BfdEnabled> option is absent. If BFD is enabled and the session is down, the output displays BFD: enabled, down. The output also shows that BFD-related events are being written to a log file because trace operations are configured.

Verifying That BFD Sessions Are Up

Purpose

Verify that the BFD sessions are up, and view details about the BFD sessions.

Action

From operational mode, enter the show bfd session extensive command.

user@host:A> show bfd session extensive
                                                  Detect   Transmit
Address                  State     Interface      Time     Interval  Multiplier
192.163.6.4              Up                       3.000     1.000        3   
 Client BGP, TX interval 1.000, RX interval 1.000
 Session up time 00:54:40
 Local diagnostic None, remote diagnostic None
 Remote state Up, version 1
 Logical system 12, routing table index 25
 Min async interval 1.000, min slow interval 1.000
 Adaptive async TX interval 1.000, RX interval 1.000
 Local min TX interval 1.000, minimum RX interval 1.000, multiplier 3
 Remote min TX interval 1.000, min RX interval 1.000, multiplier 3
 Local discriminator 10, remote discriminator 9
 Echo mode disabled/inactive
 Multi-hop route table 25, local-address 192.168.6.5

                                                  Detect   Transmit
Address                  State     Interface      Time     Interval  Multiplier
192.168.40.4             Up                       3.000     1.000        3   
 Client BGP, TX interval 1.000, RX interval 1.000
 Session up time 00:48:03
 Local diagnostic None, remote diagnostic None
 Remote state Up, version 1
 Logical system 12, routing table index 25
 Min async interval 1.000, min slow interval 1.000
 Adaptive async TX interval 1.000, RX interval 1.000
 Local min TX interval 1.000, minimum RX interval 1.000, multiplier 3
 Remote min TX interval 1.000, min RX interval 1.000, multiplier 3
 Local discriminator 14, remote discriminator 13
 Echo mode disabled/inactive
 Multi-hop route table 25, local-address 192.168.6.5

2 sessions, 2 clients
Cumulative transmit rate 2.0 pps, cumulative receive rate 2.0 pps

Meaning

The TX interval 1.000, RX interval 1.000 output represents the setting configured with the minimum-interval statement. All of the other output represents the default settings for BFD. To modify the default settings, include the optional statements under the bfd-liveness-detection statement.

Viewing Detailed BFD Events

Purpose

View the contents of the BFD trace file to assist in troubleshooting, if needed.

Action

From operational mode, enter the file show /var/log/A/bgp-bfd command.

user@host:A> file show /var/log/A/bgp-bfd
Aug 15 17:07:25 trace_on: Tracing to "/var/log/A/bgp-bfd" started
Aug 15 17:07:26.492190 bgp_peer_init: BGP peer 192.163.6.4 (Internal AS 17) local address 192.168.6.5 not found.  Leaving peer idled
Aug 15 17:07:26.493176 bgp_peer_init: BGP peer 192.168.40.4 (Internal AS 17) local address 192.168.6.5 not found.  Leaving peer idled
Aug 15 17:07:32.597979 task_connect: task BGP_17.192.163.6.4+179 addr 192.163.6.4+179: No route to host
Aug 15 17:07:32.599623 bgp_connect_start: connect 192.163.6.4 (Internal AS 17): No route to host
Aug 15 17:07:36.869394 task_connect: task BGP_17.192.168.40.4+179 addr 192.168.40.4+179: No route to host
Aug 15 17:07:36.870624 bgp_connect_start: connect 192.168.40.4 (Internal AS 17): No route to host
Aug 15 17:08:04.599220 task_connect: task BGP_17.192.163.6.4+179 addr 192.163.6.4+179: No route to host
Aug 15 17:08:04.601135 bgp_connect_start: connect 192.163.6.4 (Internal AS 17): No route to host
Aug 15 17:08:08.869717 task_connect: task BGP_17.192.168.40.4+179 addr 192.168.40.4+179: No route to host
Aug 15 17:08:08.869934 bgp_connect_start: connect 192.168.40.4 (Internal AS 17): No route to host
Aug 15 17:08:36.603544 advertising receiving-speaker only capabilty to neighbor 192.163.6.4 (Internal AS 17)
Aug 15 17:08:36.606726 bgp_read_message: 192.163.6.4 (Internal AS 17): 0 bytes buffered
Aug 15 17:08:36.609119 Initiated BFD session to peer 192.163.6.4 (Internal AS 17): address=192.163.6.4 ifindex=0 ifname=(none) txivl=1000 rxivl=1000 mult=3 ver=255
Aug 15 17:08:36.734033 advertising receiving-speaker only capabilty to neighbor 192.168.40.4 (Internal AS 17)
Aug 15 17:08:36.738436 Initiated BFD session to peer 192.168.40.4 (Internal AS 17): address=192.168.40.4 ifindex=0 ifname=(none) txivl=1000 rxivl=1000 mult=3 ver=255
Aug 15 17:08:40.537552 BFD session to peer 192.163.6.4 (Internal AS 17) up
Aug 15 17:08:40.694410 BFD session to peer 192.168.40.4 (Internal AS 17) up

Meaning

Before the routes are established, the No route to host message appears in the output. After the routes are established, the last two lines show that both BFD sessions come up.

Viewing Detailed BFD Events After Deactivating and Reactivating a Loopback Interface

Purpose

Check to see what happens after bringing down a router or switch and then bringing it back up. To simulate bringing down a router or switch, deactivate the loopback interface on Logical System B.

Action

  1. From configuration mode, enter the deactivate logical-systems B interfaces lo0 unit 2 family inet command.
    user@host:A# deactivate logical-systems B interfaces lo0 unit 2 family inet
    user@host:A# commit
  2. From operational mode, enter the file show /var/log/A/bgp-bfd command.
    user@host:A> file show /var/log/A/bgp-bfd
    ...
    Aug 15 17:20:55.995648 bgp_read_v4_message:9747: NOTIFICATION received from 192.163.6.4 (Internal AS 17): code 6 (Cease) subcode 6 (Other Configuration Change)
    Aug 15 17:20:56.004508 Terminated BFD session to peer 192.163.6.4 (Internal AS 17)
    Aug 15 17:21:28.007755 task_connect: task BGP_17.192.163.6.4+179 addr 192.163.6.4+179: No route to host
    Aug 15 17:21:28.008597 bgp_connect_start: connect 192.163.6.4 (Internal AS 17): No route to host
  3. From configuration mode, enter the activate logical-systems B interfaces lo0 unit 2 family inet command.
    user@host:A# activate logical-systems B interfaces lo0 unit 2 family inet
    user@host:A# commit
  4. From operational mode, enter the file show /var/log/A/bgp-bfd command.
    user@host:A> file show /var/log/A/bgp-bfd
    ...
    Aug 15 17:25:53.623743 advertising receiving-speaker only capabilty to neighbor 192.163.6.4 (Internal AS 17)
    Aug 15 17:25:53.631314 Initiated BFD session to peer 192.163.6.4 (Internal AS 17): address=192.163.6.4 ifindex=0 ifname=(none) txivl=1000 rxivl=1000 mult=3 ver=255
    Aug 15 17:25:57.570932 BFD session to peer 192.163.6.4 (Internal AS 17) up

Example: Configuring EBGP Multihop Sessions on Logical Systems

This example shows how to configure an external BGP (EBGP) peer that is more than one hop away from the local router. This type of session is called a multihop EBGP session.

Requirements

In this example, no special configuration beyond device initialization is required.

Overview

When EBGP peers are not directly connected to each other, they must cross one or more non-BGP routing devices to reach each other. Configuring multihop EBGP enables the peers to pass through the other routing devices to form peer relationships and exchange update messages. This type of configuration is typically used when a Juniper Networks routing device needs to run EBGP with a third-party routing device that does not allow direct connection of the two EBGP peers. EBGP multihop enables a neighbor connection between two EBGP peers that do not have a direct connection.

The configuration to enable multihop EBGP sessions requires connectivity between the two EBGP peers. This example uses static routes to provide connectivity between the devices.

For directly connected EBGP sessions, physical addresses are typically used in the neighbor statements. For multihop EBGP, you must use loopback interface addresses, and specify the loopback interface address of the indirectly connected peer. In the use of loopback interfaces addresses, EBGP multihop is similar to internal BGP (IBGP).

Finally, you must add the multihop statement. Optionally, you can set a maximum time-to-live (TTL) value with the ttl statement. The TTL is carried in the IP header of BGP packets. If you do not specify a TTL value, the system’s default maximum TTL value is used. The default TTL value is 64 for multihop EBGP sessions. Another option is to retain the BGP next-hop value for route advertisements by including the no-nexthop-change statement.

Figure 5 shows a typical EBGP multihop network.

Device C and Device E have an established EBGP session. Device D is not a BGP-enabled device. All of the devices have connectivity via static routes.

Figure 5: Typical Network with EBGP Multihop Sessions

Typical Network with EBGP Multihop
Sessions

Configuration

CLI Quick Configuration

To quickly configure this example, copy the following commands, paste them into a text file, remove any line breaks, change any details necessary to match your network configuration, and then copy and paste the commands into the CLI at the [edit] hierarchy level.

Device C

set logical-systems C interfaces lt-1/2/0 unit 9 description to-Dset logical-systems C interfaces lt-1/2/0 unit 9 encapsulation ethernetset logical-systems C interfaces lt-1/2/0 unit 9 peer-unit 10set logical-systems C interfaces lt-1/2/0 unit 9 family inet address 10.10.10.9/30set logical-systems C interfaces lo0 unit 3 family inet address 192.168.40.4/32set logical-systems C protocols bgp group external-peers type externalset logical-systems C protocols bgp group external-peers multihop ttl 2set logical-systems C protocols bgp group external-peers local-address 192.168.40.4set logical-systems C protocols bgp group external-peers export send-staticset logical-systems C protocols bgp group external-peers peer-as 18set logical-systems C protocols bgp group external-peers neighbor 192.168.6.7set logical-systems C policy-options policy-statement send-static term 1 from protocol staticset logical-systems C policy-options policy-statement send-static term 1 then acceptset logical-systems C routing-options static route 10.10.10.14/32 next-hop 10.10.10.10set logical-systems C routing-options static route 192.168.6.7/32 next-hop 10.10.10.10set logical-systems C routing-options router-id 192.168.40.4set logical-systems C routing-options autonomous-system 17

Device D

set logical-systems D interfaces lt-1/2/0 unit 10 description to-Cset logical-systems D interfaces lt-1/2/0 unit 10 encapsulation ethernetset logical-systems D interfaces lt-1/2/0 unit 10 peer-unit 9set logical-systems D interfaces lt-1/2/0 unit 10 family inet address 10.10.10.10/30set logical-systems D interfaces lt-1/2/0 unit 13 description to-Eset logical-systems D interfaces lt-1/2/0 unit 13 encapsulation ethernetset logical-systems D interfaces lt-1/2/0 unit 13 peer-unit 14set logical-systems D interfaces lt-1/2/0 unit 13 family inet address 10.10.10.13/30set logical-systems D interfaces lo0 unit 4 family inet address 192.168.6.6/32set logical-systems D routing-options static route 192.168.40.4/32 next-hop 10.10.10.9set logical-systems D routing-options static route 192.168.6.7/32 next-hop 10.10.10.14set logical-systems D routing-options router-id 192.168.6.6

Device E

set logical-systems E interfaces lt-1/2/0 unit 14 description to-Dset logical-systems E interfaces lt-1/2/0 unit 14 encapsulation ethernetset logical-systems E interfaces lt-1/2/0 unit 14 peer-unit 13set logical-systems E interfaces lt-1/2/0 unit 14 family inet address 10.10.10.14/30set logical-systems E interfaces lo0 unit 5 family inet address 192.168.6.7/32set logical-systems E protocols bgp group external-peers multihop ttl 2set logical-systems E protocols bgp group external-peers local-address 192.168.6.7set logical-systems E protocols bgp group external-peers export send-staticset logical-systems E protocols bgp group external-peers peer-as 17set logical-systems E protocols bgp group external-peers neighbor 192.168.40.4set logical-systems E policy-options policy-statement send-static term 1 from protocol staticset logical-systems E policy-options policy-statement send-static term 1 then acceptset logical-systems E routing-options static route 10.10.10.8/30 next-hop 10.10.10.13set logical-systems E routing-options static route 192.168.40.4/32 next-hop 10.10.10.13set logical-systems E routing-options router-id 192.168.6.7set logical-systems E routing-options autonomous-system 18

Device C

Step-by-Step Procedure

The following example requires you to navigate various levels in the configuration hierarchy. For information about navigating the CLI, see Using the CLI Editor in Configuration Mode in the CLI User Guide.

To configure Device C:

  1. Set the CLI to Logical System C.
    user@host> set cli logical-system C
  2. Configure the interface to the directly-connected device (to-D), and configure the loopback interface.
    [edit interfaces lt-1/2/0 unit 9]user@host:C# set description to-Duser@host:C# set encapsulation ethernetuser@host:C# set peer-unit 10user@host:C# set family inet address 10.10.10.9/30
    [edit interfaces lo0 unit 3]user@host:C# set family inet address 192.168.40.4/32
  3. Configure an EBGP session with Logical System E.

    The neighbor statement points to the loopback interface on Logical System E.

    [edit protocols bgp group external-peers]user@host:C# set type externaluser@host:C# set local-address 192.168.40.4user@host:C# set export send-staticuser@host:C# set peer-as 18user@host:C# set neighbor 192.168.6.7
  4. Configure the multihop statement to enable Logical System C and Logical System E to become EBGP peers.

    Because the peers are two hops away from each other, the example uses the ttl 2 statement.

    [edit protocols bgp group external-peers]user@host:C# set multihop ttl 2
  5. Configure connectivity to Logical System E, using static routes.

    You must configure a route to both the loopback interface address and to the address on the physical interface.

    [edit logical-systems C routing-options]user@host:C# set static route 10.10.10.14/32 next-hop 10.10.10.10user@host:C# set static route 192.168.6.7/32 next-hop 10.10.10.10
  6. Configure the local router ID and the autonomous system (AS) number.
    [edit routing-options]user@host:C# set router-id 192.168.40.4user@host:C# set autonomous-system 17
  7. Configure a policy that accepts direct routes.

    Other useful options for this scenario might be to accept routes learned through OSPF or local routes.

    [edit policy-options policy-statement send-static term 1]user@host:C# set from protocol staticuser@host:C# set then accept

Results

From configuration mode, confirm your configuration by entering the show interfaces, show protocols, show policy-options, and show routing-options commands. If the output does not display the intended configuration, repeat the instructions in this example to correct the configuration.

user@host:C# show interfaces
lt-1/2/0 {unit 9 {description to-D;encapsulation ethernet;peer-unit 10;family inet {address 10.10.10.9/30;}}}
lo0 {unit 3 {family inet {address 192.168.40.4/32;}}}
user@host:C# show protocols
bgp {group external-peers {type external;multihop {ttl 2;}local-address 192.168.40.4;export send-static;peer-as 18;neighbor 192.168.6.7;}}
user@host:C# show policy-options
policy-statement send-static {term 1 {from protocol static;then accept;}}
user@host:C# show routing-options
static {route 10.10.10.14/32 next-hop 10.10.10.10;route 192.168.6.7/32 next-hop 10.10.10.10;}
router-id 192.168.40.4;autonomous-system 17;

If you are done configuring the device, enter commit from configuration mode. Repeat these steps for all BFD sessions in the topology.

Device D

Step-by-Step Procedure

The following example requires you to navigate various levels in the configuration hierarchy. For information about navigating the CLI, see Using the CLI Editor in Configuration Mode in the CLI User Guide.

To configure Device D:

  1. Set the CLI to Logical System D.
    user@host> set cli logical-system D
  2. Configure the interfaces to the directly-connected devices, and configure a loopback interface.
    [edit interfaces lt-1/2/0 unit 10]user@host:D# set description to-Cuser@host:D# set encapsulation ethernetuser@host:D# set peer-unit 9user@host:D# set family inet address 10.10.10.10/30
    [edit interfaces lt-1/2/0 unit 13]user@host:D# set description to-Euser@host:D# set encapsulation ethernetuser@host:D# set peer-unit 14user@host:D# set family inet address 10.10.10.13/30
    [edit interfaces lo0 unit 4]user@host:D# set family inet address 192.168.6.6/32
  3. Configure connectivity to the other devices using a static routes to the loopback interface addresses.

    On Logical System D, you do not need static routes to the physical addresses because Logical System D is directly connected to Logical System C and Logical System E.

    [edit routing-options]user@host:D# set static route 192.168.40.4/32 next-hop 10.10.10.9user@host:D# set static route 192.168.6.7/32 next-hop 10.10.10.14
  4. Configure the local router ID and the autonomous system (AS) number.
    [edit routing-options]user@host:D# set router-id 192.168.6.6

Results

From configuration mode, confirm your configuration by entering the show interfaces and show routing-options commands. If the output does not display the intended configuration, repeat the instructions in this example to correct the configuration.

user@host:D# show interfaces
lt-1/2/0 {unit 10 {description to-C;encapsulation ethernet;peer-unit 9;family inet {address 10.10.10.10/30;}}unit 13 {description to-E;encapsulation ethernet;peer-unit 14;family inet {address 10.10.10.13/30;}}}
lo0 {unit 4 {family inet {address 192.168.6.6/32;}}}
user@host:D# show protocols
user@host:D# show routing-options
static {route 192.168.40.4/32 next-hop 10.10.10.9;route 192.168.6.7/32 next-hop 10.10.10.14;}
router-id 192.168.6.6;

If you are done configuring the device, enter commit from configuration mode. Repeat these steps for all BFD sessions in the topology.

Device E

Step-by-Step Procedure

The following example requires you to navigate various levels in the configuration hierarchy. For information about navigating the CLI, see Using the CLI Editor in Configuration Mode in the CLI User Guide.

To configure Device E:

  1. Set the CLI to Logical System E.
    user@host> set cli logical-system E
  2. Configure the interface to the directly-connected device (to-D), and configure the loopback interface.
    [edit interfaces lt-1/2/0 unit 14]user@host:E# set description to-Duser@host:E# set encapsulation ethernetuser@host:E# set peer-unit 13user@host:E# set family inet address 10.10.10.14/30
    [edit interfaces lo0 unit 5]user@host:E# set family inet address 192.168.6.7/32
  3. Configure an EBGP session with Logical System E.

    The neighbor statement points to the loopback interface on Logical System C.

    [edit protocols bgp group external-peers]user@host:E# set local-address 192.168.6.7user@host:E# set export send-staticuser@host:E# set peer-as 17user@host:E# set neighbor 192.168.40.4
  4. Configure the multihop statement to enable Logical System C and Logical System E to become EBGP peers.

    Because the peers are two hops away from each other, the example uses the ttl 2 statement.

    [edit protocols bgp group external-peers]user@host:E# set multihop ttl 2
  5. Configure connectivity to Logical System E, using static routes.

    You must configure a route to both the loopback interface address and to the address on the physical interface.

    [edit routing-options]user@host:E# set static route 10.10.10.8/30 next-hop 10.10.10.13user@host:E# set static route 192.168.40.4/32 next-hop 10.10.10.13
  6. Configure the local router ID and the autonomous system (AS) number.
    [edit routing-options]user@host:E# set router-id 192.168.6.7user@host:E# set autonomous-system 18
  7. Configure a policy that accepts direct routes.

    Other useful options for this scenario might be to accept routes learned through OSPF or local routes.

    [edit policy-options policy-statement send-static term 1]user@host:E# set from protocol staticuser@host:E# set send-static then accept

Results

From configuration mode, confirm your configuration by entering the show interfaces, show protocols, show policy-options, and show routing-options commands. If the output does not display the intended configuration, repeat the instructions in this example to correct the configuration.

user@host:E# show interfaces
lt-1/2/0 {unit 14 {description to-D;encapsulation ethernet;peer-unit 13;family inet {address 10.10.10.14/30;}}}
lo0 {unit 5 {family inet {address 192.168.6.7/32;}}}
user@host:E# show protocols
bgp {group external-peers {multihop {ttl 2;}local-address 192.168.6.7;export send-static;peer-as 17;neighbor 192.168.40.4;}}
user@host:E# show policy-options
policy-statement send-static {term 1 {from protocol static;then accept;}}
user@host:E# show routing-options
static {route 10.10.10.8/30 next-hop 10.10.10.13;route 192.168.40.4/32 next-hop 10.10.10.13;}
router-id 192.168.6.7;autonomous-system 18;

If you are done configuring the device, enter commit from configuration mode.

Verification

Confirm that the configuration is working properly.

Verifying Connectivity

Purpose

Make sure that Device C can ping Device E, specifying the loopback interface address as the source of the ping request.

The loopback interface address is the source address that BGP will be using.

Action

From operational mode, enter the ping 10.10.10.14 source 192.168.40.4 command from Logical System C, and enter the ping 10.10.10.9 source 192.168.6.7 command from Logical System E.

user@host:C> ping 10.10.10.14 source 192.168.40.4
PING 10.10.10.14 (10.10.10.14): 56 data bytes
64 bytes from 10.10.10.14: icmp_seq=0 ttl=63 time=1.262 ms
64 bytes from 10.10.10.14: icmp_seq=1 ttl=63 time=1.202 ms
^C
--- 10.10.10.14 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max/stddev = 1.202/1.232/1.262/0.030 ms
user@host:E> ping 10.10.10.9 source 192.168.6.7
PING 10.10.10.9 (10.10.10.9): 56 data bytes
64 bytes from 10.10.10.9: icmp_seq=0 ttl=63 time=1.255 ms
64 bytes from 10.10.10.9: icmp_seq=1 ttl=63 time=1.158 ms
^C
--- 10.10.10.9 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max/stddev = 1.158/1.206/1.255/0.049 ms

Meaning

The static routes are working if the pings work.

Verifying the BGP Sessions Are Established

Purpose

Verify that the BGP sessions are up.

Action

From operational mode, enter the show bgp summary command.

user@host:C> show bgp summary
Groups: 1 Peers: 1 Down peers: 0
Table          Tot Paths  Act Paths Suppressed    History Damp State    Pending
inet.0                 2          0          0          0          0          0
Peer                     AS      InPkt     OutPkt    OutQ   Flaps Last Up/Dwn State|#Active/Received/Accepted/Damped...
192.168.6.7              18        147        147       0       1     1:04:27 0/2/2/0              0/0/0/0
user@host:E> show bgp summary
Groups: 1 Peers: 1 Down peers: 0
Table          Tot Paths  Act Paths Suppressed    History Damp State    Pending
inet.0                 2          0          0          0          0          0
Peer                     AS      InPkt     OutPkt    OutQ   Flaps Last Up/Dwn State|#Active/Received/Accepted/Damped...
192.168.40.4             17        202        202       0       1     1:02:18 0/2/2/0              0/0/0/0

Meaning

The output shows that both devices have one peer each. No peers are down.

Viewing Advertised Routes

Purpose

Checking to make sure that routes are being advertised by BGP.

Action

From operational mode, enter the show route advertising-protocol bgp neighbor command.

user@host:C> show route advertising-protocol bgp 192.168.6.7
inet.0: 5 destinations, 7 routes (5 active, 0 holddown, 0 hidden)
  Prefix                  Nexthop              MED     Lclpref    AS path
* 10.10.10.14/32          Self                                    I
* 192.168.6.7/32          Self                                    I
user@host:E> show route advertising-protocol bgp 192.168.40.4
inet.0: 5 destinations, 7 routes (5 active, 0 holddown, 0 hidden)
  Prefix                  Nexthop              MED     Lclpref    AS path
* 10.10.10.8/30           Self                                    I
* 192.168.40.4/32         Self                                    I

Meaning

The send-static routing policy is exporting the static routes from the routing table into BGP. BGP is advertising these routes between the peers because the BGP peer session is established.

Published: 2013-04-03

Published: 2013-04-03