Adds, deletes, or updates a BGP peer instance.
device-ip,vrf-name:ipv4-listen-range,peer-group-name,listen-limit
.
For example: 10.x.x.x,red:11::22/127
. The listen-limit
value is optional.peer-add
operations, enter a string in the following format: device-ip,vrf-name:ipv4-neighbor,remote-as
. For example:
10.x.x.x,red:10.20.30.40,5000
. The remote-as
value
is not required for peer-delete
operations.device-ip,vrf-name:ipv4-neighbor,bfd-enable(true/false),bfd-interval,bfd-min-rx,bfd-multiplier
.
For example: 10.x.x.x,red:10.20.30.40,true,100,200,5
. BFD parameters are
optional for peer-add
operations and not required for peer-delete
operations.remove-private-as
setting on or off per BGP peer group,
created for external connectivity, in the following format: <device-ip,vrf-name:neighbor-ip,true|false
. For example:
10.20.246.15,ten1vrf1:10.20.30.40,true
.default-originate
setting for the IPv4
unicast neighbor, with a string in the following format:
device-ip,vrf-name:neighbor-ip,true/false
. For example:
10.20.246.15,ten1vrf1:10.20.30.40,true
.default-originate
setting for the IPv4
unicast neighbor, with a string in the following format:
device-ip,vrf-name:neighbor-ip,route-map
. For example:
10.20.246.16,ten1vrf1:10.20.30.40,rmap1
.device-ip,vrf-name:ipv4-neighbor,next-hop-self(true/false/always)
.
For example: 10.x.x.x,red:10.y.y.y,true
.device-ip,vrf-name:ipv4-neighbor,update-source-ip
. For
example: 10.x.x.x,red:10.y.y.y,11.x.x.x
.device-ip,vrf-name:neighbor-ip,route-map-name
. For example:
10.20.246.15,ten1vrf1:10.20.30.40,rmap1
. IPv4 Unicast Neighbor md5-password in the format
device-ip,vrf-name:ipv4-neighbor,ipv4-md5-password
.
Example for encrypted/password containing special characters:
--ipv4-uc-nbr-md5-password
device-ip,vrf-name:ipv4-neighbor,'$9$MCgKGaNt6OASX68/7TC6Lw=='
false
.This example adds a peer to instance B2.
$ efa tenant service bgp peer update --name B2 --tenant tenant11 --operation peer-add --ipv6-uc-nbr 10.20.216.15,blue11:18::1,98100 --ipv4-uc-nbr 10.20.216.16,blue11:1.1.1.12,95001 BGP service updated successfully.
This example deletes a BGP peer for the specified VRF (red) in the bgpservice1 instance for tenant1.
$ efa tenant service bgp peer update --name bgpservice1 --tenant tenant1 --operation peer-delete --ipv4-uc-nbr 10.24.80.134,red:10.20.30.40
$ efa tenant service bgp peer update --name ten1bgppeer1 --tenant ten1 --operation peer-add --ipv4-uc-nbr 10.20.246.15,ten1vrf1:10.20.30.50,50000 --ipv4-uc-nbr-bfd 10.20.246.15,ten1vrf1:10.20.30.50,true --ipv4-uc-nbr-remove-private-as 10.20.246.15,ten1vrf1:10.20.30.50,true --ipv4-uc-nbr 10.20.246.16,ten1vrf1:10.20.30.50,50000 --ipv4-uc-nbr-bfd 10.20.246.16,ten1vrf1:10.20.30.50,true --ipv4-uc-nbr-remove-private-as 10.20.246.16,ten1vrf1:10.20.30.50,false
$ efa tenant service bgp peer update --name ten1bgppeer1 --tenant ten1 --operation peer-add --ipv4-uc-nbr 10.20.246.15,ten1vrf1:10.20.30.50,50000 --ipv4-uc-nbr-bfd 10.20.246.15,ten1vrf1:10.20.30.50,true --ipv4-uc-nbr-default-originate 10.20.246.15,ten1vrf1:10.20.30.50,true --ipv4-uc-nbr-default-originate-route-map 10.20.246.15,ten1vrf1:10.20.30.50,rmap2 --ipv4-uc-nbr 10.20.246.16,ten1vrf1:10.20.30.50,50000 --ipv4-uc-nbr-bfd 10.20.246.16,ten1vrf1:10.20.30.50,true --ipv4-uc-nbr-default-originate 10.20.246.16,ten1vrf1:10.20.30.50,false
$ efa tenant service bgp peer update --name ten1bgppeer1 --tenant ten1 --operation peer-add --ipv4-uc-nbr 10.20.246.15,ten1vrf1:10.20.30.50,50000 --ipv4-uc-nbr-bfd 10.20.246.15,ten1vrf1:10.20.30.50,true --ipv4-uc-nbr-route-map 10.20.246.15,ten1vrf1:10.20.30.50,rmap2,in --ipv4-uc-nbr 10.20.246.16,ten1vrf1:10.20.30.50,50000 --ipv4-uc-nbr-bfd 10.20.246.16,ten1vrf1:10.20.30.50,true --ipv4-uc-nbr-route-map 10.20.246.16,ten1vrf1:10.20.30.50,rmap2,out