Hi Stephen,
You can specify a port range for a match condition. For example, to match on TCP ports 120-150, you could do the following:
entry allow_tcp_range { if { protocol tcp; destination-port 120-150; } then { permit; } }
You can also use '<', '>', '<=', and '>=' in policy files as well. For example,
entry deny_udp_>1024 { if { protocol udp; destination-port > 1024; } then { deny; } }
-Brandon