home

Supported platforms

Vyatta documentation

Learn how to install, configure, and operate the Vyatta Network Operating System (Vyatta NOS) and Orchestrator, which help drive our virtual networking and physical platforms portfolio.

protocols bgp <asn> peer-group <name> address-family ipv4-unicast capability orf

Advertises support for Outbound Route Filtering (ORF) for updating BGP capabilities advertised and received from this peer group.

set protocols bgp asn peer-group name address-family ipv4-unicast capability orf { prefix-list [ receive | send ] }
delete protocols bgp asn peer-group name address-family ipv4-unicast capability orf [ prefix-list [ receive | send ] ]
show protocols bgp asn peer-group name address-family ipv4-unicast

By default, the session is brought up with minimal capability on both sides.

asn
The number for the AS in which this router resides. The number ranges from 1 through 4294967295.
name
The peer group name.
prefix-list
Advertise prefix-list ORF capability to this peer group.
receive
Advertise the ability to receive the ORF from this peer group.
send
Advertise the capability to send the ORF to this peer group.

Configuration mode


protocols {
    bgp asn {
        peer-group name {
            address-family {
                ipv4-unicast {
                    capability {
                        orf {
                            prefix-list {
                                receive
                                send
                            }
                        }
                    }
                }
            }
        }
    }
}

In general, BGP-4 requires that if a BGP speaker receives an OPEN message with an unrecognized optional parameters, the speaker must terminate BGP peering. This makes it difficult to introduce new capabilities into the protocol. The Capabilities parameter allows graceful negotiation of BGP capabilities without requiring a peer to terminate peering.

This command specifies use of BGP Outbound Route Filtering (ORF) to send and receive capabilities. Using ORF minimizes the number of BGP updates that are sent between peer routers.

Use the set form of this command to specify BGP ORF capabilities to be used in capability negotiation.

Use the delete form of this command to remove the ORF capability.

Use the show form of this command to view BGP peer group configuration settings.