...
The set routing prefix-list ipv4 ip4 command creates an IPv4 prefix list or an entry in an IPv4 prefix list.
The delete routing prefix-list ipv4 ip4 command deletes an IPv4 prefix list or an entry from an IPv4 prefix list.
...
Command Syntax
set routing prefix-list ipv4 ip4 <ip-prefix-name> [seq <sequence-number>]{deny|permit} {<ipv4/prefixlen> | any} [ge <greater-equal-value>] [le <less-equal-value>]
delete routing prefix-list ipv4 ip4 <ip-prefix-name>[seq <sequence-number>] <ipv4/prefixlen> [ge <greater-equal-value>] [le <less-equal-value>]
...
Configure the IP prefix list named p1 to permit only the routes with the mask length ranging from 17 8 to 18 16 on the network segment 1035.0.0.0/8.
Code Block |
---|
admin@Xorplus# set routing prefix-list ipv4ip4 p1 10permit prefix 35.0.0.0/8 ge 17 le 18 admin@Xorplus# set routing prefix-list ipv4 p1 action permit16 admin@Xorplus# commit |