Hi misc,
I'm interested to know if it's possible to abstract address pools such
that I could do something like one of the following:
------
table <pool> { ($ext_if1 $ext_gw1), ($ext_if2 $ext_gw2) }
...
pass in log on $int_if \
route-to { ($ext_if1 $ext_gw1), ($ext_if2 $ext_gw2) } round-robin \
inet proto icmp from <net_int> to any icmp-type $icmp_types
------
or even just
------
$pool="{ ($ext_if1 $ext_gw1), ($ext_if2 $ext_gw2) }"
...
pass in log on $int_if \
route-to $pool round-robin \
inet proto icmp from <net_int> to any icmp-type $icmp_types
------
I'm think this may not be possible at the moment since either approach
gives me a syntax error and I can't find any references to this in the
FAQ or the man page.
Cheers
Dave