Product Info

Table Of Contents
Infinet Wireless: Technical Documentation – InfiMAN Evolution
Operation & Administration – 119
Primitives Description
dst net net True if the IPv4 destination address of the packet has a network
number of "net"
src net net True if the IPv4 source address of the packet has a network number of
"net"
net net True if either the IPv4 source or destination address of the packet has a
network number of "net"
net net mask netmask True if the IPv4 address matches net with the specific netmask. May be
qualified with "src" or "dst"
net net/len True if the IPv4 address matches net with a netmask "len" bits wide
May be qualified with "src" or "dst"
dst port port True if the packet is ip/tcp, ip/udp and has a destination port value of
"port"
src port port True if the packet has a source port value of "port"
port port True if either the source or destination port of the packet is "port"
dst portrange port1-port2 True if the packet is ip/tcp, ip/udp and has a destination port value
between "port1" and "port2"
"port1" and "port2" are interpreted in the same fashion as the port
parameter for "port"
src portrange port1-port2 True if the packet has a source port value between "port1" and "port2"
portrange port1-port2 True if either the source or destination port of the packet is between
"port1" and "port2"
Any of the above port or port range expressions can be prefixed with
the keywords, tcp or udp, as in: “tcp src port port
This matches only tcp packets whose source port is "port"
less length True if the packet has a length less than or equal to "length"
This is equivalent to: “len <= length
greater length True if the packet has a length greater than or equal to "length"
This is equivalent to: “len >= length