Travis H. wrote:
set skip on interface
Skip all PF processing on interface. This can be useful on loopback
interfaces where filtering, normalization, queueing, etc, are not
required. This option can be used multiple times. By default this option
is not set.
I tried various ways of specifying two interfaces on that line... it
doesn't work.
set skip on { lo sis0 }
will skip on all loopback interfaces and the sis0 interface.
If you look at the manpage:
set skip on _ifspec_
the BNF defines _ifspec_ as:
ifspec = ( [ "!" ] interface-name ) | "{" interface-list "}"
Looks like the FAQ is not updated.
~~MJ