[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-users] cobalt-users@xxxxxxxxxxxxxxx



Hello:

I hope this makes sense.

Which is the best init script to start this type of call in a firewall
script:

for f in /proc/sys/net/ipv4/conf/all/send_redirects; do
        echo 0 > $f
    done

or

if [ -e /proc/sys/net/ipv4/conf/all/rp_filter ]; then
       echo -n "Setting up IP spoofing protection..."
       for f in /proc/sys/net/ipv4/conf/*/rp_filter; do
           echo 1 > $f

I'm assuming I need enable them in a startup script.

joann

--who really wishes someone would write an ipchains for dummies---