diff options
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/cmd/ipf/svc/ipfilter | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/src/cmd/ipf/svc/ipfilter b/usr/src/cmd/ipf/svc/ipfilter index 3b25428c99..f11f9b0c05 100644 --- a/usr/src/cmd/ipf/svc/ipfilter +++ b/usr/src/cmd/ipf/svc/ipfilter @@ -42,7 +42,10 @@ checkpfil() fi realnic=`/sbin/ifconfig -a modlist 2>/dev/null | grep -c pfil` if [ $realnic -eq 0 ] ; then - logmsg "pfil not configured for firewall/NAT operation" + logmsg "pfil not plumbed on any network interfaces." + logmsg "No network traffic will be filtered." + logmsg "See ipfilter(5) for more information." + exit $SMF_EXIT_ERR_CONFIG fi PFILCHECKED=yes } |