RESTAPI Manual
Routing Protocols
BGP/BGP4+
58 min
border gateway protocol urls summary urls summary url get post patch put delete /rest/v1/running/as path access lists/{name}/{sequence number} y y n y y /rest/v1/running/bgp/{vrf name} y y y n y /rest/v1/running/bgp/{vrf name}/global y n y n n /rest/v1/running/bgp/{vrf name}/global/ipv4 unicast/aggregate route/{prefix} y y y n y /rest/v1/running/bgp/{vrf name}/global/ipv4 unicast/networks/{prefix} y y y n y /rest/v1/running/bgp/{vrf name}/global/ipv4 unicast/redistribution/{route type} y y y n y /rest/v1/running/bgp/{vrf name}/global/ipv6 unicast/aggregate route/{prefix} y y y n y /rest/v1/running/bgp/{vrf name}/global/ipv6 unicast/networks/{prefix} y y y n y /rest/v1/running/bgp/{vrf name}/global/ipv6 unicast/redistribution/{route type} y y y n y /rest/v1/running/bgp/{vrf name}/global/l2vpn evpn y n y n n /rest/v1/running/bgp/{vrf name}/neighbors/{address or interface} y y y n y /rest/v1/running/bgp/{vrf name}/peer groups/{name} y y y n y /rest/v1/running/community aliases/{name} y y y n y /rest/v1/running/community lists/{name}/{sequence number} y y n y y /rest/v1/running/extended community lists/{name}/{sequence number} y y n y y /rest/v1/running/extended numbered community lists/{list number}/{sequence number} y y n y y /rest/v1/running/numbered community lists/{list number}/{sequence number} y y n y y /rest/v1/rpc/show bgp community list n y n n n /rest/v1/rpc/show bgp l2vpn evpn n y n n n /rest/v1/rpc/show bgp neighbors n y n n n /rest/v1/rpc/show bgp peer group n y n n n /rest/v1/rpc/show bgp statistics n y n n n /rest/v1/rpc/show bgp summary n y n n n /rest/v1/rpc/show bgp vrf all n y n n n /rest'/v1/rpc/show evpn vni n y n n n /rest/v1/rpc/show ip bgp n y n n n examples examples show bgp community list show bgp community list post https //{switch ip}/rest/v1/rpc/show bgp community list { "vrf" "vrftest", "community list" "comm test" } show bgp l2vpn evpn show bgp l2vpn evpn post https //{switch ip}/rest/v1/rpc/show bgp l2vpn evpn { "vrf" "vrftest" } show bgp neighbors show bgp neighbors post https //{switch ip}/rest/v1/rpc/show bgp neighbors { "vrf" "vrftest", "address" "10 0 0 1" } show bgp peer group show bgp peer group post https //{switch ip}/rest/v1/rpc/show bgp peer group { "address" "2000 1", "advertised routes" null, "advertised route map" "rmap1" } show bgp statistics show bgp statistics post https //{switch ip}/rest/v1/rpc/show bgp statistics { "vrf" "vrftest" } show bgp summary show bgp summary post https //{switch ip}/rest/v1/rpc/show bgp summary { "established" null } show bgp vrf all show bgp vrf all post https //{switch ip}/rest/v1/rpc/show bgp vrf all show evpn vni show evpn vni post https //{switch ip}/rest/v1/rpc/show evpn vni { "vni" 10010 } show ip bgp show ip bgp post https //{switch ip}/rest/v1/rpc/show ip bgp { "vrf" "vrftest", "address" "10 0 0 1" } get all bgp configurations get all bgp configurations get https //{switch ip}/rest/v1/running/bgp modify bgp global configuration for a vrf modify bgp global configuration for a vrf patch https //{switch ip}/rest/v1/running/bgp/vrf1/global { "ipv4 unicast" { "networks" \[{"prefix" "1 2 3 4/32"}], }, "ipv6 unicast" { "networks" \[{"prefix" "2001\ db8 /32"}], }, "l2vpn evpn" { "advertise all vni" "false", } } modify bgp global l2vpn evpn configuration for a vrf modify bgp global l2vpn evpn configuration for a vrf patch rest/v1/running/bgp/vrf1/global/l2vpn evpn { "advertise all vni" "true" } create an ipv4 aggregate route create an ipv4 aggregate route post https //{switch ip}/rest/v1/running/bgp/{vrf name}/global/ipv4 unicast/aggregate route { "prefix" "200 0 0 0/24" } create an ipv4 network create an ipv4 network post https //{switch ip}/rest/v1/running/bgp/vrf1/global/ipv4 unicast/networks { "prefix" "30 0 0 1/24", "backdoor" "true" } create an ipv4 redistribution create an ipv4 redistribution post https //{switch ip}/rest/v1/running/bgp/vrf1/global/ipv4 unicast/redistribution { "route type" "static", "metric" 100 } create an ipv6 aggregate route create an ipv6 aggregate route post https //{switch ip}/rest/v1/running/bgp/{vrf name}/global/ipv6 unicast/aggregate route { "prefix" "2002 0/64" } create an ipv6 network create an ipv6 network post https //{switch ip}/rest/v1/running/bgp/vrf1/global/ipv6 unicast/networks { "prefix" "3ab /24", "backdoor" "true" } create an ipv6 redistribution create an ipv6 redistribution post https //{switch ip}/rest/v1/running/bgp/vrf1/global/ipv6 unicast/redistribution { "route type" "static", "metric" 100 } create a bgp neighbor create a bgp neighbor post https //{switch ip}/rest/v1/running/bgp/vrf1/neighbors { "address or interface" "1 1 1 1", "remote as" 65105, "ebgp multihop" { "enabled" "true", "multihop ttl" 255, }, "graceful restart" "true", "ipv4 unicast" { "default originate" "true", "default originate route map" "rmap6", "next hop self" "false", }, "ipv6 unicast" { "enable" "true", } } modify a bgp neighbor modify a bgp neighbor patch https //{switch ip}/rest/v1/running/bgp/vrf1/neighbors/1 1 1 1 { "remote as" 65106 } delete a bgp neighbor delete a bgp neighbor delete https //{switch ip}/rest/v1/running/bgp/vrf1/neighbors/11 11 11 11 create a bgp peer group create a bgp peer group post https //{switch ip}/rest/v1/running/bgp/vrf1/peer groups { "name" "pg3", "solo" "true", "ebgp multihop" { "disable connected check" "true", }, "bfd" { "enable" "true" }, "ipv4 unicast" { "allow own as count" 10, "next hop self" "true", "route map import" "rmap2" }, "ipv6 unicast" { "enable" "true" } } modify a bgp peer group modify a bgp peer group patch https //{switch ip}/rest/v1/running/bgp/vrf1/peer groups/pg1 { "ipv4 listen range" \["10 1 1 0/24","20 1 1 0/24"], "ipv6 listen range" \["2001\ db8 1 /64","2001\ db8 2 /64"] } create an extended community list create an extended community list post https //{switch ip}/rest/v1/running/extended community lists \[ { "name" "test", "sequence number" 1, "set type" "expanded", "match action" "permit", "community member" "65121" } ] create an extended numbered community list create an extended numbered community list post https //{switch ip}/rest/v1/running/extended numbered community lists \[ { "list number" 101, "sequence number" 1, "match action" "permit", "community member" "65121" } ] create a community list create a community list post https //{switch ip}/rest/v1/running/community lists \[ { "name" "test", "sequence number" 1, "set type" "expanded", "match action" "permit", "community member" "65121" } ] create a numbered community list create a numbered community list post https //{switch ip}/rest/v1/running/numbered community lists \[ { "list number" 101, "sequence number" 1, "match action" "permit", "community member" "65121" } ] create a community alias create a community alias post https //{switch ip}/rest/v1/running/community aliases \[ { "name" "65123 12", "alias" "test" } ] create an as path access list create an as path access list post https //{switch ip}/rest/v1/running/as path access lists \[ { "name" "test", "sequence number" 1, "match action" "permit", "as path set member" "65121" } ] properties descriptions properties descriptions bgp instance global bgp instance global tree diagrams + rw bgp \| + rw bgp instance \[vrf name] \| + rw vrf name \| + rw global \| | + rw as number \| | + rw router id? \| | + rw med config \| | | + rw max med onstart up time? \| | | + rw max med onstart up value? \| | + rw route selection \| | | + rw multipath relax? \| | | + rw multi path as set? \| | + rw graceful shutdown? \| | + rw default shutdown? \| | + rw ebgp requires policy? \| | + rw always compare med? \| | + rw dynamic neighbors limit? \| | + rw reject as sets? \| | + rw admin shutdown? \| | + rw admin shutdown message? \| | + rw route map delay time? \| | + rw graceful restart? \| | + rw graceful restart restart time? \| | + rw default ipv4 unicast? \| | + rw default ipv6 unicast? \| | + rw default l2vpn evpn? \| | + rw ipv4 unicast \| | | + rw networks \[prefix] \| | | | + rw prefix \| | | | + rw backdoor? \| | | | + rw route map? \| | | + rw aggregate route \[prefix] \| | | | + rw prefix \| | | | + rw as set? \| | | | + rw summary only? \| | | | + rw route map export? \| | | | + rw origin? \| | | | + rw match med? \| | | | + rw suppress map? \| | | + rw ebgp maximum paths? \| | | + rw ibgp maximum paths? \| | | + rw ibgp cluster length list? \| | | + rw redistribution \[route type] \| | | | + rw route type \| | | | + rw metric? \| | | | + rw route map import? \| | | + rw distance \| | | | + rw ebgp distance? \| | | | + rw ibgp distance? \| | | | + rw local distance? \| | | + rw route map export? \| | | + rw import vrf \| | | + rw import vrf route map? \| | + rw ipv6 unicast \| | | + rw networks \[prefix] \| | | | + rw prefix \| | | | + rw backdoor? \| | | | + rw route map? \| | | + rw aggregate route \[prefix] \| | | | + rw prefix \| | | | + rw as set? \| | | | + rw summary only? \| | | | + rw route map export? \| | | | + rw origin? \| | | | + rw match med? \| | | | + rw suppress map? \| | | + rw ebgp maximum paths? \| | | + rw ibgp maximum paths? \| | | + rw ibgp cluster length list? \| | | + rw redistribution \[route type] \| | | | + rw route type \| | | | + rw metric? \| | | | + rw route map import? \| | | + rw distance \| | | | + rw ebgp distance? \| | | | + rw ibgp distance? \| | | | + rw local distance? \| | | + rw route map export? \| | | + rw import vrf \| | | + rw import vrf route map? \| | + rw l2vpn evpn \| | + rw advertise all vni? \| | + rw advertise default gateway? \| | + rw advertise svi ip? \| | + rw advertise pip? \| | + rw advertise pip ip? \| | + rw advertise pip mac? \| | + rw default originate ipv4? \| | + rw default originate ipv6? \| | + rw advertise ipv4 unicast? \| | + rw advertise ipv6 unicast? \| | + rw route distinguisher? \| | + rw rt import list \| | + rw rt export list table of properties name required type/range description bgp m path only node, has no configurable value top level configuration for the bgp router vrf name m "default" vrf name (sub property of bgp) name of the vrf instance global m (sub property of bgp) path only node, has no configurable value as number m 0 4294967295 (sub property of global) local autonomous system number router id o a b c d (sub property of global) router id of the bgp router med config m (sub property of global) path only node, has no configurable value max med onstart up time o 5 86400 (sub property of med config) tells the router to announce routes with med value, this med value is applicable for this duration during start up max med onstart up value o 0 4294967295 (sub property of med config) tells the router to announce routes with this med value this med value is applicable for start up time default value 4294967294 route selection m (sub property of global) path only node, has no configurable value grouping for route selection configuration multipath relax o "true" "false" (sub property of route selection) allow load sharing across routes that have different as paths default value "false" multi path as set co "true" "false" (sub property of route selection) only applicable when multipath relax = "true" multi path with as set, when set to "true" it adds as set information for aggregate routes, when set to "false" it prevents as set generation default value "false" graceful shutdown o "true" "false" (sub property of global) enable graceful shutdown feature default value "false" default shutdown o "true" "false" (sub property of global) apply administrative shutdown to newly configured peers default value "false" ebgp requires policy o "true" "false" (sub property of global) when set to "true" bgp speaker requires in and out policy for ebgp peers (rfc8212) default value "true" always compare med o "true" "false" (sub property of global) when set to "true" bgp always compares med attribute across different neighboring ases default value "false" dynamic neighbors limit o 1 65535 (sub property of global) maximum number of bgp dynamic neighbors that can be created reject as sets o "true" "false" (sub property of global) reject as set in bgp updates default value "false" admin shutdown o "true" "false" (sub property of global) shutdown bgp default value "false" admin shutdown message o string (sub property of global) shutdown message route map delay time o 0 600 (sub property of global) route map delay default value 5 graceful restart o "true" "false" (sub property of global) enable bgp graceful restart default value "false" graceful restart restart time o 0 4095 (sub property of global) time to wait before restarting the bgp session default value 120 default ipv4 unicast o "true" "false" (sub property of global) default value "true" default ipv6 unicast o "true" "false" (sub property of global) default value "false" default l2vpn evpn o "true" "false" (sub property of global) default value "false" ipv4 unicast m (sub property of global) path only node, has no configurable value ipv4 unicast configuration options networks m (sub property of ipv4 unicast) path only node, has no configurable value a list of network routes prefix m a b c d/m (sub property of networks) ipv4 destination prefix backdoor o "true" "false" (sub property of networks) specify a bgp backdoor route default value "false" route map o string (sub property of networks) route map to apply to network route aggregate route m (sub property of ipv4 unicast) path only node, has no configurable value a list of aggregated routes prefix m a b c d/m (sub property of aggregate route) ipv4 destination prefix as set o "true" "false" (sub property of aggregate route) when set to "true" as set path information is generated for aggregate address when set to "false" as set path information is not generated default value "false" summary only o "true" "false" (sub property of aggregate route) when set to "true" it advertise only the aggregate route and suppress the advertisement of all the component routes when set to "false" all more specific routes summarized by the aggregate route are advertised default value "false" route map export o string (sub property of aggregate route) route map to apply to aggregate route origin o "igp" "egp" "incomplete" "unspecified" (sub property of aggregate route) bgp origin type default value "unspecified" match med o "true" "false" (sub property of aggregate route) when set to "true" aggregate route matches only med default value "false" suppress map o string (sub property of aggregate route) suppress more specific routes specified in route map ebgp maximum paths o 0 65535 (sub property of ipv4 unicast) maximum number of parallel paths to consider when using bgp multi path for ebgp the default is to use a single path default value 256 ibgp maximum paths o 0 65535 (sub property of ipv4 unicast) maximum number of parallel paths to consider when using bgp multi path for ibgp the default is to use a single path default value 256 ibgp cluster length list co "true" "false" (sub property of ipv4 unicast) only applicable when ibgp maximum paths != 0 when set to "true" route with the shortest cluster list length is used the cluster list reflects the ibgp reflection path the route has taken it's the part of route selection algo default value "false" redistribution m (sub property of ipv4 unicast) path only node, has no configurable value route type m route types (sub property of redistribution) protocol route type metric o 0 4294967295 (sub property of redistribution) metric for redistributed routes route map import o string (sub property of redistribution) distance m (sub property of ipv4 unicast) path only node, has no configurable value ebgp distance o 1 255 (sub property of distance) administrative distance for ebgp routes ibgp distance o 1 255 (sub property of distance) administrative distance for ibgp routes local distance o 1 255 (sub property of distance) administrative distance for locally originated routes route map export o string (sub property of ipv4 unicast) route map for route advertisement import vrf o "default" vrf name (sub property of ipv4 unicast) import vrf for the address family import vrf route map o string (sub property of ipv4 unicast) import vrf route map for the address family ipv6 unicast m (sub property of global) path only node, has no configurable value ipv6 unicast configuration options networks m (sub property of ipv6 unicast) path only node, has no configurable value a list of network routes prefix m xx\ xx\ xx\ xx\ xx\ xx\ xx\ xx/m (sub property of networks) ipv6 destination prefix backdoor o "true" "false" (sub property of networks) specify a bgp backdoor route default value "false" route map o string (sub property of networks) route map to apply to network route aggregate route m (sub property of ipv6 unicast) path only node, has no configurable value a list of aggregated routes prefix m xx\ xx\ xx\ xx\ xx\ xx\ xx\ xx/m (sub property of aggregate route) ipv6 destination prefix as set o "true" "false" (sub property of aggregate route) when set to "true" as set path information is generated for aggregate address when set to "false" as set path information is not generated default value "false" summary only o "true" "false" (sub property of aggregate route) when set to "true" it advertise only the aggregate route and suppress the advertisement of all the component routes when set to "false" all more specific routes summarized by the aggregate route are advertised default value "false" route map export o string (sub property of aggregate route) route map to apply to aggregate route origin o "igp" "egp" "incomplete" "unspecified" (sub property of aggregate route) bgp origin type default value "unspecified" match med o "true" "false" (sub property of aggregate route) when set to "true" aggregate route matches only med default value "false" suppress map o string (sub property of aggregate route) suppress more specific routes specified in route map ebgp maximum paths o 0 65535 (sub property of ipv6 unicast) maximum number of parallel paths to consider when using bgp multi path for ebgp the default is to use a single path default value 256 ibgp maximum paths o 0 65535 (sub property of ipv6 unicast) maximum number of parallel paths to consider when using bgp multi path for ibgp the default is to use a single path default value 256 ibgp cluster length list co "true" "false" (sub property of ipv6 unicast) only applicable when ibgp maximum paths != 0 when set to "true" route with the shortest cluster list length is used the cluster list reflects the ibgp reflection path the route has taken it's the part of route selection algo default value "false" redistribution m (sub property of ipv6 unicast) path only node, has no configurable value route type m route types (sub property of redistribution) protocol route type metric o 0 4294967295 (sub property of redistribution) metric for redistributed routes route map import o string (sub property of redistribution) distance m (sub property of ipv6 unicast) path only node, has no configurable value ebgp distance o 1 255 (sub property of distance) administrative distance for ebgp routes ibgp distance o 1 255 (sub property of distance) administrative distance for ibgp routes local distance o 1 255 (sub property of distance) administrative distance for locally originated routes route map export o string (sub property of ipv6 unicast) route map for route advertisement import vrf o "default" vrf name (sub property of ipv6 unicast) import vrf for the address family import vrf route map o string (sub property of ipv6 unicast) import vrf route map for the address family l2vpn evpn m (sub property of global) path only node, has no configurable value bgp evpn configuration options advertise all vni o "true" "false" (sub property of l2vpn evpn) advertise all vni default value "false" advertise default gateway o "true" "false" (sub property of l2vpn evpn) advertise default gateway default value "false" advertise svi ip o "true" "false" (sub property of l2vpn evpn) advertise svi ip note that you should not enable both the advertise svi ip and the advertise default gw at the same time default value "false" advertise pip o "true" "false" (sub property of l2vpn evpn) advertise pip default value "true" advertise pip ip o a b c d (sub property of l2vpn evpn) advertise pip mac o a\ b c\ d e\ f (sub property of l2vpn evpn) default originate ipv4 o "true" "false" (sub property of l2vpn evpn) advertise default route default value "false" default originate ipv6 o "true" "false" (sub property of l2vpn evpn) advertise default route default value "false" advertise ipv4 unicast o "true" "false" (sub property of l2vpn evpn) advertise ipv4 unicast default value "false" advertise ipv6 unicast o "true" "false" (sub property of l2vpn evpn) advertise ipv6 unicast default value "false" route distinguisher o string (sub property of l2vpn evpn) route distinguisher rt import list o string (sub property of l2vpn evpn) route target import list rt export list o string (sub property of l2vpn evpn) route target export list bgp instance neighbors bgp instance neighbors tree diagrams + rw bgp \| + rw bgp instance \[vrf name] \| + rw vrf name \| + rw neighbors \| | + rw neighbor \[address or interface] \| | + rw address or interface \| | + rw peer group name? \| | + rw remote as type? \| | + rw remote as? \| | + rw local as? \| | + rw no prepend? \| | + rw replace as? \| | + rw description? \| | + rw password? \| | + rw solo? \| | + rw as path loop detect? \| | + rw tcp mss? \| | + rw local address? \| | + rw ebgp multihop \| | | + rw enabled? \| | | + rw multihop ttl? \| | | + rw disable connected check? \| | + rw bfd \| | | + rw enable? \| | | + rw check ctrlplane failure? \| | | + rw profile? \| | + rw admin status? \| | + rw admin shutdown message? \| | + rw graceful restart? \| | + rw graceful restart helper? \| | + rw ipv4 unicast \| | | + rw enable? \| | | + rw default enable? \| | | + rw allow own as? \| | | + rw allow own as count? \| | | + rw allow own origin as? \| | | + rw default originate? \| | | + rw default originate route map? \| | | + rw next hop self? \| | | + rw next hop self force? \| | | + rw route reflector client? \| | | + rw soft reconfiguration? \| | | + rw route map import? \| | | + rw route map export? \| | | + rw as override? \| | + rw ipv6 unicast \| | | + rw enable? \| | | + rw default enable? \| | | + rw allow own as? \| | | + rw allow own as count? \| | | + rw allow own origin as? \| | | + rw default originate? \| | | + rw default originate route map? \| | | + rw next hop self? \| | | + rw next hop self force? \| | | + rw route reflector client? \| | | + rw soft reconfiguration? \| | | + rw route map import? \| | | + rw route map export? \| | | + rw as override? \| | + rw l2vpn evpn \| | + rw enable? \| | + rw default enable? \| | + rw allow own as? \| | + rw allow own as count? \| | + rw allow own origin as? \| | + rw next hop self? \| | + rw next hop self force? \| | + rw route reflector client? \| | + rw soft reconfiguration? \| | + rw route map import? \| | + rw route map export? table of properties name required type/range description bgp m path only node, has no configurable value top level configuration for the bgp router vrf name m "default" vrf name (sub property of bgp) name of the vrf instance neighbors m (sub property of bgp) path only node, has no configurable value address or interface m "a b c d xx\ xx\ xx\ xx\ xx\ xx\ xx\ xx" interface name (sub property of neighbors) neighbor's address or interface name peer group name o peer group name (sub property of neighbors) peer group of the bgp neighbor remote as type o "internal" "external" (sub property of neighbors) remote as o 0 4294967295 (sub property of neighbors) the remote autonomous system number received in the bgp open message local as o 1 4294967295 (sub property of neighbors) the local autonomous system number that is to be used when establishing sessions with the remote peer or peer group, if this differs from the global bgp router autonomous system number no prepend co "true" "false" (sub property of neighbors) only applicable when local as != 0 do not prepend local as to updates from ebgp peers when set to "true" it will not prepend local as to updates when set to "false" it will prepend local as to updates default value "false" replace as o "true" "false" (sub property of neighbors) do not prepend local as to updates from ibgp peers default value "false" description o string (sub property of neighbors) description of the neighbor password o a string that represents a credential, such as a password or a key for ospf/bgp sessions (sub property of neighbors) actual password solo o "true" "false" (sub property of neighbors) solo peer part of its own update group default value "false" as path loop detect o "true" "false" (sub property of neighbors) as path loop detection default value "false" tcp mss o 0 65535 (sub property of neighbors) tcp mss value local address o "a b c d xx\ xx\ xx\ xx\ xx\ xx\ xx\ xx" interface name (sub property of neighbors) local address for the bgp connection ebgp multihop m (sub property of neighbors) path only node, has no configurable value ebgp multi hop parameters for the bgp group enabled o "true" "false" (sub property of ebgp multihop) when enabled the referenced group or neighbors are permitted to be indirectly connected including cases where the ttl can be decremented between the bgp peers default value "false" multihop ttl o 1 255 (sub property of ebgp multihop) time to live value to use when packets are sent to the referenced group or neighbors and ebgp multihop is enabled disable connected check o "true" "false" (sub property of ebgp multihop) when set to "true" it enforces ebgp neighbors perform multihop default value "false" bfd m (sub property of neighbors) path only node, has no configurable value enable o "true" "false" (sub property of bfd) bfd support default value "false" check ctrlplane failure co "true" "false" (sub property of bfd) only applicable when enable = "true" link dataplane status with bgp control plane default value "false" profile co string (sub property of bfd) only applicable when enable = "true" bfd profile name admin status o "true" "false" (sub property of neighbors) when set to "true", bgp shutdown communication is enabled admin shutdown message co string (sub property of neighbors) only applicable when admin status = "true" shutdown message graceful restart o "true" "false" (sub property of neighbors) enable or disable the graceful restart capability setting this value to "true" enables the graceful restart and helper both at peer level setting this value to "false" disables graceful restart and helper mode the peer will inherit global configuration default value "false" graceful restart helper o "true" "false" (sub property of neighbors) setting this value to "true" enables helper mode for the peer setting this value to "false" disables the helper mode the peer will inherit global configuration default value "false" ipv4 unicast m (sub property of neighbors) path only node, has no configurable value ipv4 unicast configuration options enable o "true" "false" (sub property of ipv4 unicast) enable the neighbor default value "true" default enable o "true" "false" (sub property of ipv4 unicast) enable default ipv4 unicast default value "true" allow own as o "true" "false" (sub property of ipv4 unicast) when set to "true" only accept my as in the as path default value "false" allow own as count o 1 10 (sub property of ipv4 unicast) specify the number of occurrences of the local bgp speaker's as that can occur within the as path before it is rejected allow own origin as o "true" "false" (sub property of ipv4 unicast) when set to "true" only accept my as in the as path if the route was originated in my as this is mutually exclusive with allow own as count default value "false" default originate o "true" "false" (sub property of ipv4 unicast) if set to "true", send the default route to the neighbour(s) default value "false" default originate route map o string (sub property of ipv4 unicast) route map to specify criteria to originate default next hop self o "true" "false" (sub property of ipv4 unicast) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" next hop self force o "true" "false" (sub property of ipv4 unicast) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" route reflector client o "true" "false" (sub property of ipv4 unicast) configure a neighbor as route reflector client default value "false" soft reconfiguration o "true" "false" (sub property of ipv4 unicast) allow inbound soft reconfiguration for this neighbor default value "false" route map import o string (sub property of ipv4 unicast) route map export o string (sub property of ipv4 unicast) as override o "true" "false" (sub property of ipv4 unicast) when set to "true" it will override the as number in the received bgp update with the local as number default value "false" ipv6 unicast m (sub property of neighbors) path only node, has no configurable value ipv6 unicast configuration options enable o "true" "false" (sub property of ipv6 unicast) enable the neighbor default value "false" default enable o "true" "false" (sub property of ipv6 unicast) enable default ipv6 unicast default value "false" allow own as o "true" "false" (sub property of ipv6 unicast) when set to "true" only accept my as in the as path default value "false" allow own as count o 1 10 (sub property of ipv6 unicast) specify the number of occurrences of the local bgp speaker's as that can occur within the as path before it is rejected allow own origin as o "true" "false" (sub property of ipv6 unicast) when set to "true" only accept my as in the as path if the route was originated in my as this is mutually exclusive with allow own as count default value "false" default originate o "true" "false" (sub property of ipv6 unicast) if set to "true", send the default route to the neighbour(s) default value "false" default originate route map o string (sub property of ipv6 unicast) route map to specify criteria to originate default next hop self o "true" "false" (sub property of ipv6 unicast) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" next hop self force o "true" "false" (sub property of ipv6 unicast) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" route reflector client o "true" "false" (sub property of ipv6 unicast) configure a neighbor as route reflector client default value "false" soft reconfiguration o "true" "false" (sub property of ipv6 unicast) allow inbound soft reconfiguration for this neighbor default value "false" route map import o string (sub property of ipv6 unicast) route map export o string (sub property of ipv6 unicast) as override o "true" "false" (sub property of ipv6 unicast) when set to "true" it will override the as number in the received bgp update with the local as number default value "false" l2vpn evpn m (sub property of neighbors) path only node, has no configurable value bgp evpn configuration options enable o "true" "false" (sub property of l2vpn evpn) enable the neighbor default value "false" default enable o "true" "false" (sub property of l2vpn evpn) enable default l2vpn evpn default value "false" allow own as o "true" "false" (sub property of l2vpn evpn) when set to "true" only accept my as in the as path default value "false" allow own as count o 1 10 (sub property of l2vpn evpn) specify the number of occurrences of the local bgp speaker's as that can occur within the as path before it is rejected allow own origin as o "true" "false" (sub property of l2vpn evpn) when set to "true" only accept my as in the as path if the route was originated in my as this is mutually exclusive with allow own as count default value "false" next hop self o "true" "false" (sub property of l2vpn evpn) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" next hop self force o "true" "false" (sub property of l2vpn evpn) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" route reflector client o "true" "false" (sub property of l2vpn evpn) configure a neighbor as route reflector client default value "false" soft reconfiguration o "true" "false" (sub property of l2vpn evpn) allow inbound soft reconfiguration for this neighbor default value "false" route map import o string (sub property of l2vpn evpn) route map export o string (sub property of l2vpn evpn) bgp instance peer groups bgp instance peer groups tree diagrams + rw bgp \| + rw bgp instance \[vrf name] \| + rw vrf name \| + rw peer groups \| + rw peer group \[name] \| + rw name \| + rw ipv4 listen range \| + rw ipv6 listen range \| + rw remote as type? \| + rw remote as? \| + rw local as? \| + rw no prepend? \| + rw replace as? \| + rw description? \| + rw password? \| + rw solo? \| + rw as path loop detect? \| + rw tcp mss? \| + rw local address? \| + rw ebgp multihop \| | + rw enabled? \| | + rw multihop ttl? \| | + rw disable connected check? \| + rw bfd \| | + rw enable? \| | + rw check ctrlplane failure? \| | + rw profile? \| + rw admin status? \| + rw admin shutdown message? \| + rw graceful restart? \| + rw graceful restart helper? \| + rw ipv4 unicast \| | + rw enable? \| | + rw default enable? \| | + rw allow own as? \| | + rw allow own as count? \| | + rw allow own origin as? \| | + rw default originate? \| | + rw default originate route map? \| | + rw next hop self? \| | + rw next hop self force? \| | + rw route reflector client? \| | + rw soft reconfiguration? \| | + rw route map import? \| | + rw route map export? \| | + rw as override? \| + rw ipv6 unicast \| | + rw enable? \| | + rw default enable? \| | + rw allow own as? \| | + rw allow own as count? \| | + rw allow own origin as? \| | + rw default originate? \| | + rw default originate route map? \| | + rw next hop self? \| | + rw next hop self force? \| | + rw route reflector client? \| | + rw soft reconfiguration? \| | + rw route map import? \| | + rw route map export? \| | + rw as override? \| + rw l2vpn evpn \| + rw enable? \| + rw default enable? \| + rw allow own as? \| + rw allow own as count? \| + rw allow own origin as? \| + rw next hop self? \| + rw next hop self force? \| + rw route reflector client? \| + rw soft reconfiguration? \| + rw route map import? \| + rw route map export? table of properties name required type/range description bgp m path only node, has no configurable value top level configuration for the bgp router vrf name m "default" vrf name (sub property of bgp) name of the vrf instance peer groups m (sub property of bgp) path only node, has no configurable value name m string (sub property of peer groups) name of the bgp peer group ipv4 listen range o a b c d/m (sub property of peer groups) configure bgp dynamic neighbors listen range ipv6 listen range o xx\ xx\ xx\ xx\ xx\ xx\ xx\ xx/m (sub property of peer groups) configure bgp dynamic neighbors listen range remote as type o "internal" "external" (sub property of peer groups) remote as o 0 4294967295 (sub property of peer groups) the remote autonomous system number received in the bgp open message local as o 1 4294967295 (sub property of peer groups) the local autonomous system number that is to be used when establishing sessions with the remote peer or peer group, if this differs from the global bgp router autonomous system number no prepend co "true" "false" (sub property of peer groups) only applicable when local as != 0 do not prepend local as to updates from ebgp peers when set to "true" it will not prepend local as to updates when set to "false" it will prepend local as to updates default value "false" replace as o "true" "false" (sub property of peer groups) do not prepend local as to updates from ibgp peers default value "false" description o string (sub property of peer groups) description of the neighbor password o a string that represents a credential, such as a password or a key for ospf/bgp sessions (sub property of peer groups) actual password solo o "true" "false" (sub property of peer groups) solo peer part of its own update group default value "false" as path loop detect o "true" "false" (sub property of peer groups) as path loop detection default value "false" tcp mss o 0 65535 (sub property of peer groups) tcp mss value local address o "a b c d xx\ xx\ xx\ xx\ xx\ xx\ xx\ xx" interface name (sub property of peer groups) local address for the bgp connection ebgp multihop m (sub property of peer groups) path only node, has no configurable value ebgp multi hop parameters for the bgp group enabled o "true" "false" (sub property of ebgp multihop) when enabled the referenced group or neighbors are permitted to be indirectly connected including cases where the ttl can be decremented between the bgp peers default value "false" multihop ttl o 1 255 (sub property of ebgp multihop) time to live value to use when packets are sent to the referenced group or neighbors and ebgp multihop is enabled disable connected check o "true" "false" (sub property of ebgp multihop) when set to "true" it enforces ebgp neighbors perform multihop default value "false" bfd m (sub property of peer groups) path only node, has no configurable value enable o "true" "false" (sub property of bfd) bfd support default value "false" check ctrlplane failure co "true" "false" (sub property of bfd) only applicable when enable = "true" link dataplane status with bgp control plane default value "false" profile co string (sub property of bfd) only applicable when enable = "true" bfd profile name admin status o "true" "false" (sub property of peer groups) when set to "true", bgp shutdown communication is enabled admin shutdown message co string (sub property of peer groups) only applicable when admin status = "true" shutdown message graceful restart o "true" "false" (sub property of peer groups) enable or disable the graceful restart capability setting this value to "true" enables the graceful restart and helper both at peer level setting this value to "false" disables graceful restart and helper mode the peer will inherit global configuration default value "false" graceful restart helper o "true" "false" (sub property of peer groups) setting this value to "true" enables helper mode for the peer setting this value to "false" disables the helper mode the peer will inherit global configuration default value "false" ipv4 unicast m (sub property of peer groups) path only node, has no configurable value ipv4 unicast configuration options enable o "true" "false" (sub property of ipv4 unicast) enable the neighbor default value "true" default enable o "true" "false" (sub property of ipv4 unicast) enable default ipv4 unicast default value "true" allow own as o "true" "false" (sub property of ipv4 unicast) when set to "true" only accept my as in the as path default value "false" allow own as count o 1 10 (sub property of ipv4 unicast) specify the number of occurrences of the local bgp speaker's as that can occur within the as path before it is rejected allow own origin as o "true" "false" (sub property of ipv4 unicast) when set to "true" only accept my as in the as path if the route was originated in my as this is mutually exclusive with allow own as count default value "false" default originate o "true" "false" (sub property of ipv4 unicast) if set to "true", send the default route to the neighbour(s) default value "false" default originate route map o string (sub property of ipv4 unicast) route map to specify criteria to originate default next hop self o "true" "false" (sub property of ipv4 unicast) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" next hop self force o "true" "false" (sub property of ipv4 unicast) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" route reflector client o "true" "false" (sub property of ipv4 unicast) configure a neighbor as route reflector client default value "false" soft reconfiguration o "true" "false" (sub property of ipv4 unicast) allow inbound soft reconfiguration for this neighbor default value "false" route map import o string (sub property of ipv4 unicast) route map export o string (sub property of ipv4 unicast) as override o "true" "false" (sub property of ipv4 unicast) when set to "true" it will override the as number in the received bgp update with the local as number default value "false" ipv6 unicast m (sub property of peer groups) path only node, has no configurable value ipv6 unicast configuration options enable o "true" "false" (sub property of ipv6 unicast) enable the neighbor default value "false" default enable o "true" "false" (sub property of ipv6 unicast) enable default ipv6 unicast default value "false" allow own as o "true" "false" (sub property of ipv6 unicast) when set to "true" only accept my as in the as path default value "false" allow own as count o 1 10 (sub property of ipv6 unicast) specify the number of occurrences of the local bgp speaker's as that can occur within the as path before it is rejected allow own origin as o "true" "false" (sub property of ipv6 unicast) when set to "true" only accept my as in the as path if the route was originated in my as this is mutually exclusive with allow own as count default value "false" default originate o "true" "false" (sub property of ipv6 unicast) if set to "true", send the default route to the neighbour(s) default value "false" default originate route map o string (sub property of ipv6 unicast) route map to specify criteria to originate default next hop self o "true" "false" (sub property of ipv6 unicast) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" next hop self force o "true" "false" (sub property of ipv6 unicast) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" route reflector client o "true" "false" (sub property of ipv6 unicast) configure a neighbor as route reflector client default value "false" soft reconfiguration o "true" "false" (sub property of ipv6 unicast) allow inbound soft reconfiguration for this neighbor default value "false" route map import o string (sub property of ipv6 unicast) route map export o string (sub property of ipv6 unicast) as override o "true" "false" (sub property of ipv6 unicast) when set to "true" it will override the as number in the received bgp update with the local as number default value "false" l2vpn evpn m (sub property of peer groups) path only node, has no configurable value bgp evpn configuration options enable o "true" "false" (sub property of l2vpn evpn) enable the neighbor default value "false" default enable o "true" "false" (sub property of l2vpn evpn) enable default l2vpn evpn default value "false" allow own as o "true" "false" (sub property of l2vpn evpn) when set to "true" only accept my as in the as path default value "false" allow own as count o 1 10 (sub property of l2vpn evpn) specify the number of occurrences of the local bgp speaker's as that can occur within the as path before it is rejected allow own origin as o "true" "false" (sub property of l2vpn evpn) when set to "true" only accept my as in the as path if the route was originated in my as this is mutually exclusive with allow own as count default value "false" next hop self o "true" "false" (sub property of l2vpn evpn) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" next hop self force o "true" "false" (sub property of l2vpn evpn) when set to "true", ebgp learned routes are announced with the local speaker's nexthop default value "false" route reflector client o "true" "false" (sub property of l2vpn evpn) configure a neighbor as route reflector client default value "false" soft reconfiguration o "true" "false" (sub property of l2vpn evpn) allow inbound soft reconfiguration for this neighbor default value "false" route map import o string (sub property of l2vpn evpn) route map export o string (sub property of l2vpn evpn) bgp extended community lists bgp extended community lists tree diagrams + rw extended community lists \| + rw extended community list \[name sequence number] \| + rw name \| + rw sequence number \| + rw set type \| + rw match action? \| + rw community member? table of properties name required type/range description extended community lists m path only node, has no configurable value name m string (sub property of extended community lists) name of extended community sequence number m 0 4294967295 "auto" (sub property of extended community lists) the sequence number of the extcommunity list entry, "auto" will automatically fill in the missing seq set type m "standard" "expanded" (sub property of extended community lists) it tells the parser whether the community strings that follow are simple exact values (standard) or regex patterns (expanded) match action o "deny" "permit" (sub property of extended community lists) it sets the action for this entry permit lets the route through, deny drops it default value "permit" community member o string (sub property of extended community lists) literal extended community string(s) to be matched or denied bgp extended numbered community lists bgp extended numbered community lists tree diagrams + rw extended numbered community lists \| + rw extended numbered community list \[list number sequence number] \| + rw list number \| + rw sequence number \| + rw set type? \| + rw match action? \| + rw community member? table of properties name required type/range description extended numbered community lists m path only node, has no configurable value list number m 1 500 (sub property of extended numbered community lists) numeric identifier (1 500) that can be assign to an extended community list sequence number m 0 4294967295 "auto" (sub property of extended numbered community lists) the sequence number of the extcommunity list entry, "auto" will automatically fill in the missing seq set type o "standard" "expanded" (sub property of extended numbered community lists) it tells the parser whether the community strings that follow are simple exact values (standard) or regex patterns (expanded) match action o "deny" "permit" (sub property of extended numbered community lists) it sets the action for this entry permit lets the route through, deny drops it default value "permit" community member o string (sub property of extended numbered community lists) literal extended community string(s) to be matched or denied bgp community lists bgp community lists tree diagrams + rw community lists \| + rw community list \[name sequence number] \| + rw name \| + rw sequence number \| + rw set type \| + rw match action? \| + rw community member? table of properties name required type/range description community lists m path only node, has no configurable value name m string (sub property of community lists) name of community list sequence number m 0 4294967295 "auto" (sub property of community lists) the sequence number of the community list entry, "auto" will automatically fill in the missing seq set type m "standard" "expanded" (sub property of community lists) it tells the parser whether the community strings that follow are simple exact values (standard) or regex patterns (expanded) match action o "deny" "permit" (sub property of community lists) it sets the action for this entry permit lets the route through, deny drops it default value "permit" community member o string (sub property of community lists) literal community string(s) to be matched or denied bgp numbered community lists bgp numbered community lists tree diagrams + rw numbered community lists \| + rw numbered community list \[list number sequence number] \| + rw list number \| + rw sequence number \| + rw set type? \| + rw match action? \| + rw community member? table of properties name required type/range description numbered community lists m path only node, has no configurable value list number m 1 500 (sub property of numbered community lists) numeric identifier (1 500) that can be assign to an community list sequence number m 0 4294967295 "auto" (sub property of numbered community lists) the sequence number of the community list entry, "auto" will automatically fill in the missing seq set type o "standard" "expanded" (sub property of numbered community lists) it tells the parser whether the community strings that follow are simple exact values (standard) or regex patterns (expanded) match action o "deny" "permit" (sub property of numbered community lists) it sets the action for this entry permit lets the route through, deny drops it default value "permit" community member o string (sub property of numbered community lists) literal community string(s) to be matched or denied bgp community aliases bgp community aliases tree diagrams + rw community aliases \| + rw community alias \[name] \| + rw name \| + rw alias table of properties name required type/range description community aliases m path only node, has no configurable value name m string (sub property of community aliases) official community value that bgp will recognise in packets alias m string (sub property of community aliases) short mnemonic word created to represent that value inside configuration commands, making scripts easier to read and maintain bgp as path access lists bgp as path access lists tree diagrams + rw as path access lists + rw as path access list \[name sequence number] + rw name + rw sequence number + rw match action? + rw as path set member? table of properties name required type/range description as path access lists m path only node, has no configurable value name m string (sub property of as path access lists) human readable string that uniquely identifies an as path filter instance sequence number m 0 4294967295 "auto" (sub property of as path access lists) the sequence number of the as path access list entry, "auto" will automatically fill in the missing seq match action o "deny" "permit" (sub property of as path access lists) decides whether a route whose as path matches the entry is accepted or discarded default value "permit" as path set member o string (sub property of as path access lists) the regular expression pattern that the implementation applies against the received as path string show bgp summary show bgp summary tree diagrams + x show bgp summary \| + w input \| | + w vrf? \| | + w (established failed)? \| | + (established) \| | | + w established? \| | + (failed) \| | + w failed? \| + ro output \| + ro data? table of properties name required type/range description show bgp summary m path only node, has no configurable value show bgp summary information vrf o "default" vrf name (sub property of input) name of vrf instance established o empty (sub property of input) mutually exclusive with \ failed display established neighbors failed o empty (sub property of input) mutually exclusive with \ established display failed neighbors data ro \<anydata> (sub property of output) show bgp neighbors show bgp neighbors tree diagrams + x show bgp neighbors \| + w input \| | + w vrf? \| | + w address? \| | + w (info options)? \| | + (prefix counts) \| | | + w prefix counts? \| | + (advertised routes) \| | | + w advertised routes? \| | | + w advertised route map? \| | + (received routes) \| | | + w received routes? \| | | + w received route map? \| | + (filtered routes) \| | | + w filtered routes? \| | | + w filtered route map? \| | + (bestpath routes) \| | | + w bestpath routes? \| | + (received prefix filter) \| | | + w received prefix filter? \| | + (flap statistics) \| | | + w flap statistics? \| | + (dampened routes) \| | | + w dampened routes? \| | + (routes) \| | + w routes? \| + ro output \| + ro data? table of properties name required type/range description show bgp neighbors m path only node, has no configurable value show bgp neighbors information vrf o "default" vrf name (sub property of input) name of vrf instance address o a b c d xx\ xx\ xx\ xx\ xx\ xx\ xx\ xx (sub property of input) neighbor's address prefix counts o empty (sub property of input) mutually exclusive with \ advertised routes \ advertised route map \ received routes \ received route map \ filtered routes \ filtered route map \ bestpath routes \ received prefix filter \ flap statistics \ dampened routes \ routes display detailed prefix count information advertised routes o empty (sub property of input) mutually exclusive with \ prefix counts \ received routes \ received route map \ filtered routes \ filtered route map \ bestpath routes \ received prefix filter \ flap statistics \ dampened routes \ routes display advertised routes advertised route map o string (sub property of input) mutually exclusive with \ prefix counts \ received routes \ received route map \ filtered routes \ filtered route map \ bestpath routes \ received prefix filter \ flap statistics \ dampened routes \ routes route map to modify the attributes received routes o empty (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ filtered routes \ filtered route map \ bestpath routes \ received prefix filter \ flap statistics \ dampened routes \ routes display received routes received route map o string (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ filtered routes \ filtered route map \ bestpath routes \ received prefix filter \ flap statistics \ dampened routes \ routes route map to modify the attributes filtered routes o empty (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ received routes \ received route map \ bestpath routes \ received prefix filter \ flap statistics \ dampened routes \ routes display filtered routes filtered route map o string (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ received routes \ received route map \ bestpath routes \ received prefix filter \ flap statistics \ dampened routes \ routes route map to modify the attributes bestpath routes o empty (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ received routes \ received route map \ filtered routes \ filtered route map \ received prefix filter \ flap statistics \ dampened routes \ routes display bestpath routes received prefix filter o empty (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ received routes \ received route map \ filtered routes \ filtered route map \ bestpath routes \ flap statistics \ dampened routes \ routes prefix filter to display flap statistics o empty (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ received routes \ received route map \ filtered routes \ filtered route map \ bestpath routes \ received prefix filter \ dampened routes \ routes display flap statistics dampened routes o empty (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ received routes \ received route map \ filtered routes \ filtered route map \ bestpath routes \ received prefix filter \ flap statistics \ routes display dampened routes routes o empty (sub property of input) mutually exclusive with \ prefix counts \ advertised routes \ advertised route map \ received routes \ received route map \ filtered routes \ filtered route map \ bestpath routes \ received prefix filter \ flap statistics \ dampened routes display routes data ro \<anydata> (sub property of output) show ip bgp show ip bgp tree diagrams + x show ip bgp \| + w input \| | + w vrf? \| | + w address? \| | + w (path options)? \| | + (bestpath) \| | | + w bestpath? \| | + (multipath) \| | + w multipath? \| + ro output \| + ro data? table of properties name required type/range description show ip bgp m path only node, has no configurable value vrf o "default" vrf name (sub property of input) name of vrf instance address o a b c d xx\ xx\ xx\ xx\ xx\ xx\ xx\ xx (sub property of input) neighbor's address bestpath o empty (sub property of input) mutually exclusive with \ multipath display bestpath information multipath o empty (sub property of input) mutually exclusive with \ bestpath display multipath information data ro \<anydata> (sub property of output) show bgp community list show bgp community list tree diagrams + x show bgp community list \| + w input \| | + w vrf? \| | + w (community list)? \| | + (number) \| | | + w number? \| | + (name) \| | + w name? \| + ro output \| + ro data? table of properties name required type/range description show bgp community list m path only node, has no configurable value vrf o "default" vrf name (sub property of input) name of vrf instance number o 0 4294967295 (sub property of input) mutually exclusive with \ name community list number name o string (sub property of input) mutually exclusive with \ number community list name data ro \<anydata> (sub property of output) show bgp peer group show bgp peer group tree diagrams + x show bgp peer group \| + w input \| | + w vrf? \| | + w name? \| + ro output \| + ro data? table of properties name required type/range description show bgp peer group m path only node, has no configurable value vrf o "default" vrf name (sub property of input) name of vrf instance name o string (sub property of input) peer group name data ro \<anydata> (sub property of output) show bgp statistics show bgp statistics tree diagrams + x show bgp statistics \| + w input \| | + w vrf? \| + ro output \| + ro data? table of properties name required type/range description show bgp statistics m path only node, has no configurable value vrf o "default" vrf name (sub property of input) name of vrf instance data ro \<anydata> (sub property of output) show bgp l2vpn evpn show bgp l2vpn evpn tree diagrams + x show bgp l2vpn evpn \| + w input \| | + w vrf? \| + ro output \| + ro data? table of properties name required type/range description show bgp l2vpn evpn m path only node, has no configurable value vrf o "default" vrf name (sub property of input) name of vrf instance data ro \<anydata> (sub property of output) show evpn vni show evpn vni tree diagrams + x show evpn vni \| + w input \| | + w vni? \| + ro output \| + ro data? table of properties name required type/range description show evpn vni m path only node, has no configurable value vni o 0 4294967295 (sub property of input) vni number data ro \<anydata> (sub property of output) show bgp vrf all show bgp vrf all tree diagrams + x show bgp vrf all + ro output + ro data? table of properties name required type/range description show bgp vrf all m path only node, has no configurable value data ro \<anydata> (sub property of output)
