1752525 Members
4678 Online
108788 Solutions
New Discussion

ndd param change

 
SOLVED
Go to solution
Kuntal Gupta
Frequent Advisor

ndd param change

Dear HPUX lovers,

 

OS: HP UX 11.31 V3

 

I want to set "ip_send_source_quench" to  0.

 

I think the command for this is:

 

#ndd -set /dev/ip ip_send_source_quench 0

 

Is the the change will be permanent?

 

To make the change permanent waht should be done?

 

nddconf does contain any entry for ip_send_source_quench.

 

ndd -f shows the param.

 

Regards...

 

Kuntal

2 REPLIES 2
Matti_Kurkela
Honored Contributor
Solution

Re: ndd param change

If you just change the setting with the ndd command, the change will not be permanent: when the system is rebooted, the default value will be used again.

 

To make it permanent, you must add the setting to /etc/rc.config.d/nddconf in the form of three lines:

TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_send_source_quench
NDD_VALUE[0]=0

 Note: if the /etc/rc.config.d/nddconf file already has some other settings configured, you should replace [0] in the above lines with the number of the highest-numbered existing setting +1.

MK
Kuntal Gupta
Frequent Advisor

Re: ndd param change

Thanks MK, it worked.

 

Regards...

 

Kuntal