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.

Show Page Sections

Confederation Commands

protocols bgp <asn> parameters confederation identifier <asn>

Defines a BGP confederation.

set protocols bgp asn parameters confederation identifier asn
delete protocols bgp asn parameters confederation identifier asn
show protocols bgp asn parameters confederation
bgp asn
The number of the AS in which this router resides. The number ranges from 1 through 4294967295.
identifier asn
The AS number of the BGP confederation. The numbers range from 1 through 4294967295.

Configuration mode


protocols {
    bgp asn {
        parameters {
            confederation {
                identifier asn
            }
        }
    }
}

Use the set form of this command to create a BGP confederation.

Use the delete form of this command to remove the BGP confederation.

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

protocols bgp <asn> parameters confederation peers <asn>

Defines the AS that make up a BGP confederation.

set protocols bgp asn parameters confederation peers asn
delete protocols bgp asn parameters confederation peers asn
show protocols bgp asn parameters confederation
bgp asn
The number of the AS in which this router resides. The number ranges from 1 through 4294967295.
peers asn
The subautonomous systems that make up BGP confederation. The numbers range from 1 through 4294967295. Multiple AS can be specified in a space-separated list.

Configuration mode


protocols {
    bgp asn {
        parameters {
            confederation {
                peers asn
            }
        }
    }
}

Use the set form of this command to list the subautonomous systems that to be the members of a BGP confederation. To a peer outside the confederation, the confederation appears as a single autonomous system.

Use the delete form of this command to remove an AS from a confederation.

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