You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Filter Syntax

Routing filter rule implements script-like syntax. Example below is a quick demonstration of routing filter that matches prefixes with prefix length greater than 24 from subnet 192.168.1.0/24 and increments default distance by 1. If there is no match then subtract default distance by one.

/routing filter rule 
  add chain=myChain 
  rule="if (dst==192.168.1.0/24 && dst-len>24) {set distance +1; accept} else {set distance -1; accept}"


Filter rule may consist of multiple matchers and actions:

if ( [matchers] ) { [actions] } else { [actions] }


There are two types of properties:

  • only readable - ones that value is only readable and cannot be rewritten, these properties can be used only by matchers
  • readable/writable - ones that value is readable and writeable, used by filter actions and also can be used by matchers

Readable properties can be matched by other readable properties or constant values using boolean operators. 

[matchers]:
[prop readable] [bool operator] [prop readable]

[actions]:
[action] [prop writeable] [value]

Boolean operator is not used if there is only one possible operation.

Example without boolean operator:

if ( protocol connected ) { accept }

Example with boolean operator:

if ( bgp-med < 30 ) { accept }

With readable flag properties, matcher is used without specified boolean operator and without value

if ( ospf-dn ) { reject }

List of only readable properties:

PropertyOperatorsValueDescription
Numeric properties
dst-len

Destination prefix length
bgp-path-len


bgp-input-local-as


bgp-input-remote-as


bgp-output-local-as


bgp-output-remote-as


ospf-metric


ospf-tag


rip-metric


rip-tag


Flag properties
active


bgp-atomic-aggregate


bgp-communities-empty


bgp-ext-communities-empty


bgp-large-communities-empty


bgp-network


ospf-dn


Prefix properties
dst


ospf-fwd


bgp-input-local-addr


bgp-input-remote-addr


bgp-output-local-addr


bgp-output-remote-addr


List of writable properties:

PropertyOperatorsTypeDescription
Numeric properties
distance


scope


scope-target


bgp-weight


bgp-med

BGP MED local to the router. 
bgp-out-med

BGP MED to be sent to remote peer. Should be used in output chain
bgp-local-pref


bgp-igp-metric


bgp-path-peer-prepend

Prepend last received remote peers ASN. If prefix is originated from the router, then this parameter will not do anything on the routers output, because ASN does not exist yet.


If used as matcher in BGP input, it is possible to filter prefixes exceeding certain number of prepends. For example, if remote peer prepends its ASN 5 times, but we want to allow max 4 times prepended ASN, then we can use: "if (bgp-path-peer-prepend > 4) {reject}"


This parameter also overrides any prepends received from remote peer, for example, if remote peer prepended its AS 3 times, we can remove this prepend by setting "bgp-path-peer-prepend 1" in BGP input

bgp-path-prepend

Prepend routers ASN, should be used in BGP output.
ospf-ext-metric


ospf-ext-tag


rip-ext-metric


rip-ext-tag


Flag properties
ospf-ext-dn


blackhole


use-te-nexthop


Other properties
gw
ipv4/6 address
gw-interface
interface_name
gw-check
none|arp|icmp|bfd|bfd-mh
pref-src
ipv4/6 address
bgp-origin
igp|egp|incomplete
ospf-ext-fwd
ipv4/6 address
ospf-ext-type
type1|type2
comment
string
bgp-communites
inline_community_set | set_name
bgp-ext-communities


bgp-large-communities


Commands

CommandParamsDescription
accept
accept matched prefix
reject
reject matched prefix
return
return to parent chain
jumpjump chain_namejump to specified chain
unsetunset prop_nameused to unset value of the following properties:
pref-src|bgp-med|bgp-out-med|bgp-local-pref
append
append at the end of the list
filter

delete

set

rpki-verifyrpki-verify rpki_group_nameEnable RPKI verification in current chain from specified RPKI group.
Syntax
[matcher] (all can be prefixed with 'not' to negate
bgp-communities|bgp-communities-ext|bgp-communities-large
	equal|any|includes|subset
		{inline set}	
	equal-set|any-set|includes-set|subset-set
		{set name}
	any-regexp|subset-regexp
		{regexp}
comment
	text|find|regexp
		{string}
chain
	{chain name}
vrf
	{vrf}
rtab
	{rtab}
gw-interface
	{interface}
gw-check
	none|arp|icmp|bfd|bfd-mh	
afi
	ipv4|ipv6|l2vpn|l2vpn-cisco|vpnv4|vpnv6
		,...
protocol
	connected|static|bgp|ospf|rip|dhcp|fantasy|modem|vpn
		,...
bpg-origin
	igp|egp|incomplete
		,...
bgp-as-path
	{regexp}
rpki
	valid|invalid|unknown
ospf-type
	intra|inter|ext1|ext2|nssa1|nssa2
ospf-ext-type
	type1|type2
[num prop readable]
	in
		{int..int}|{int-int}
	==|!=|<=|>=|<|>
		{int}
	[num prop readable]
[prfx prop readable]
	!=|==|in
		{address 46/}
[flag prop readable]


[block]
if ([matcher] &&/|| ...) { [block] } [ else {[block]} ]
accept|reject|return
jump {chain name}
unset
	pref-src|bgp-med|bgp-out-med|bgp-local-pref
append
	comment
		{string}
	bgp-communities|bgp-communities-ext|bgp-communities-large
		{inline community set}|{set name}
filter
	bgp-communities|bgp-communities-ext|bgp-communities-large
	regexp
	    {regexp}
	{inline community set}|{set name}
delete
	bgp-communities
		regexp
			{regexp}
		{inline community set}|{set name}
		wk|other
			,...
	bgp-communities-ext
		regexp
			{regexp}
		{inline community set}|{set name}
		rt|soo|other
			,...
	bgp-communities-large
		regexp
			{regexp}
		{inline community set}|{set name}
		all
set
	[num prop writable]
	[+|-][num prop readable]|[num prop writable]
	gw
		{address 46i}
	gw-interface
		{interface}
	gw-check
		none|arp|icmp|bfd|bfd-mh	
	pref-src
		{address 46}
	bgp-origin
		igp|egp|incomplete
	ospf-ext-fwd
		{address 46}
	ospf-ext-type
		type1|type2
	comment
		{string}
	bgp-communities
		{inline community set}|{set name}
	bgp-communities-ext
		{inline community set}|{set name}
	bgp-communities-large
		{inline community set}|{set name}
rpki-verify 
	{rpki group name}



Property Reference

/routing/filter/chain

Dynamic list of filter rule chains that can be referenced in bgp/ospf configuration.

Read-only properties:

PropertyDescription
dynamic (yes | no)
inactive (yes | no)
name (string)

/routing/filter/community-ext-set

Allows to configure sets of extended communities to be easily reused in multiple filter configurations. Community sets can be used for both matching and appending/setting.

PropertyDescription
comment (string; Default: )
communities (list of ext communities; Default: )

List of extended communities expressed as raw integer value or in typed format: "type:value", where type can be:

  • rt - route target
  • soo -  site of origin

Value depends on the type, for more info on RT and SoO values ask google.

disabled (yes | no)
name (integer [string; Default: )Reference name.
regexp (string)Regexp matcher to match communities. Community set with only regexp parameter cannot be used to append communities.

/routing/filter/community-large-set

Allows to configure sets of large communities to be easily reused in multiple filter configurations. Community sets can be used for both matching and appending/setting.

PropertyDescription
comment (string; Default: )
communities (list of large communities; Default: )

List of large communities expressed in following format: "admin:value1:value2", where each section can be integer [0..4294967295].

disabled (yes | no)
name (integer [string; Default: )Reference name.
regexp (string)Regexp matcher to match communities. Community set with only regexp parameter cannot be used to append communities.

/routing/filter/community-set

Allows to configure sets of communities to be easily reused in multiple filter configurations. Community sets can be used for both matching and appending/setting.

PropertyDescription
comment (string; Default: )
communities (list of communities; Default: )

List of communities expressed either as well known name or in following format: "as:number", where each section can be integer [0..65535].

Accepted well known names:

accept-own     graceful-shutdown  no-advertise         no-llgr         route-filter-6      
accept-own-nh  internet           no-export            no-peer         route-filter-xlate-4
blackhole      llgr-stale         no-export-subconfed  route-filter-4  route-filter-xlate-6

disabled (yes | no)
name (integer [string; Default: )Reference name.
regexp (string)Regexp matcher to match communities. Community set with only regexp parameter cannot be used to append communities.

/routing/filter/num-set

Set of integer numbers that can be reused for number matching between multiple filter rules.

PropertyDescription
comment (string; Default: )
disabled (yes | no)
name (integer [string; Default: )Reference name.
range (start-[end]:: integer[0..4294967295])Range of numbers in numset

/routing/filter/rule

xx.

PropertyDescription
chain (string; Default: )Reference name of the chain
comment (string; Default: )
disabled (yes | no)
rule (string)Accepts script like syntax to match and set route attribute and reject or accept prefixes.


/routing/filter/select-chain

Dynamic list of filter select chains that can be referenced in bgp/ospf configuration.

Read-only properties:

PropertyDescription
dynamic (yes | no)
inactive (yes | no)
name (string)


/routing/filter/select-rule

xx.

  • No labels