PF pf.conf list dot product

Is it possible to expand:

Code:
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port { 2000
  3000 4000 5000 } -> { 127.0.2.1 127.0.3.1 127.0.4.1 127.0.5.1 }

to

Code:
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port 2000 -> 127.0.2.1
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port 3000 -> 127.0.3.1
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port 4000 -> 127.0.4.1
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port 5000 -> 127.0.5.1

instead of the default:

Code:
table <anonymous_0> { 127.0.2.1, 127.0.3.1, 127.0.4.1, 127.0.5.1 }
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port 2000 -> <anonymous_0>
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port 3000 -> <anonymous_0>
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port 4000 -> <anonymous_0>
rdr pass on $ext_if proto tcp from any to ($ext_if:network) port 5000 -> <anonymous_0>

??
 
Back
Top