...
The set protocols bgp ipv4-unicast network bgp network command specifies the IPv4/IPv6 networks to be advertised by the Border Gateway Protocol (BGP) routing processes. route-map is optional which can be used to specify a route map to apply to the prefixes advertised by this specific network statement.
The delete protocols bgp ipv4-unicast network network command removes an entry from the routing table.
...
set protocols bgp [vrf <vrf-name>] ipv4-unicast {ipv4-unicast|ipv6-unicast} network <ipv4/prefixlen> [label-index<label-index>|route-map <ROUTE-MAP-NAME>]
delete protocols bgp [vrf <vrf-name>] ipv4 {ipv4-unicast|ipv6-unicast} network <ipv4/prefixlen> [label-index<label-index>|route-map <ROUTE-MAP-NAME>]
...
Parameter | Description |
vrf <vrf-name> | Optional. Specifies a VRF name. The value is a string. It’s a user-defined VRF set by the command set ip vrf <vrf-name> [description <string>]. |
{ipv4-unicast|ipv6-unicast} | Required. Specifies the IP address family type. |
<ipv4/prefixlen> | Specifies the IPv4 network with mask. For example: 1.1.1.10/24 |
label-index <label-index> | Optional parameter. Specifies a route label. |
route-map <ROUTE-MAP-NAME> | Optional parameter. Specifies a route map to apply to the prefixes advertised by this specific network statement. |
...