We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The conf.apf says:
IFACE_TRUSTED=""
It appears that comma separated is not actually supported however. There's no error, but it just doesn't work.
files/firewall does: if [ ! "$IFACE_TRUSTED" == "" ]; then for i in echo $IFACE_TRUSTED; do
echo $IFACE_TRUSTED
which doesn't take comma separated into account, and I don't see any place else that tries to.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The conf.apf says:
Trusted Network interface(s); all traffic on defined interface(s) will by-pass
ALL firewall rules, format is white space or comma separated list.
IFACE_TRUSTED=""
It appears that comma separated is not actually supported however. There's no error, but it just doesn't work.
files/firewall does:
if [ ! "$IFACE_TRUSTED" == "" ]; then
for i in
echo $IFACE_TRUSTED
; dowhich doesn't take comma separated into account, and I don't see any place else that tries to.
The text was updated successfully, but these errors were encountered: