This is a discussion on Solaris pfil startup script... within the IPFilter forums, part of the System Security and Security Related category; The startup script should look like this if you've downloaded and installed an unmodified version: iflist="`echo /etc/...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
The startup script should look like this if you've downloaded and installed an unmodified version: iflist="`echo /etc/hostname.*[0-9] 2>/dev/null`" if [ "$iflist" != '/etc/hostname.*[0-9]' ] ; then ( y=xxx x=$IFS for i in /etc/hostname.*[0-9]; do ORIGIFS="$IFS" IFS="$IFS." set -- $i IFS="$ORIGIFS" ifname="$2" if [ $ifname != $y ] ; then y=$ifname fixif $ifname fi done ) fi The only change required here, to stop virtual interfaces (:#) being a problem is to change the line IFS="$IFS." to IFS="$IFS.:" Comments, anyone ? Darren |