Operating System - HP-UX
1846720 Members
3644 Online
110256 Solutions
New Discussion

icmp redirect messages on HP-UX 11.00 box

 
Serguei Tokovenko
Occasional Contributor

icmp redirect messages on HP-UX 11.00 box

How can I disable processing icmp redirect messages on HP-UX 11.00 box (s800 server).
1 REPLY 1
John Poff
Honored Contributor

Re: icmp redirect messages on HP-UX 11.00 box

Hello,

You can use 'ndd' to set the 'ip_send_redirects' variable which will turn it on or off. Try this (as root) to see how it is set:

ndd -get /dev/ip ip_send_redirects


To turn it off:

ndd -set /dev/ip ip_send_redirects 0


JP