On Wed, Oct 01, 2003 at 05:25:42PM -0400, Russell P. Sutherland wrote:
> But here's a snippet from my real "problem":
> classB2 = "143.150.0.0/16"
> classB3 = "143.151.0.0/16"
>
> res_net = "{" $classB3 $classB2 "}"
>
> classB2 = "143.150.0.0/16"
> classB3 = "143.151.0.0/16"
> classB23 = "143.150.0.0/15"
> ./asd.conf:16: syntax error
This is a known issue in the parser. Use:
classB2 = '"143.150.0.0/16"'
classB3 = '"143.151.0.0/16"'
res_net = "{" $classB3 $classB2 "}"
This should probably go into the pf FAQ or smth (if it's not already
there).