In Solaris 10 I can configure (and audit) the arp_cleanup_interval variable using the following command:

$ ndd -get /dev/arp arp_cleanup_interval
300000

In Solaris 11 (Express and Release) the same command returns an "Unknown property" error:

$ ndd -get /dev/arp arp_cleanup_interval
operation failed: Unknown property

Does anyone know if this variable has changed, or been removed from Solaris 11?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Yes, they were removed, by the IP Datapath Refactoring project described in this mail thread from the architecture review.

link|improve this answer
feedback

Try using the command:

 ndd /dev/arp \?

to get a list of all the parameters that are supported. BTW, this information is contained in the man page for ndd.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.