> I'm getting an error with the following:
>
> all_web = "{" $web1 $albums "}"
Should be:
all_web = "{ $web1, $albums }"
> pass in quick proto tcp from any to $all_web port = { 80 443 } keep state
Shoul be:
pass in quick proto tcp from any to $all_web port { 80, 443 } keep state
or better:
in tables section:
services = "{ 80, 443 }"
in filter rules section:
pass in quick proto tcp from any to $all_web port $services keep state
>
> Problem appears to be with the list of ports. If I change "{ 80 443 }" to
> just "80", it passes fine. Do lists not work with ports?