Odds and Ends September 23, 2005 at 1:49 pm

Advanced Configd Configuration

When dealing with funky network issues it’s handy to be able to tweak configd a bit to see what’s going on. We have an older article on configd that explains more of what it does, but here are some quick thoughts on getting more debugging and other options out of configd on 10.4.While the concept of configuring the daemon responsible for dynamic configuration in the OS might be uniquely circular, it might come in handy. Note:

/System/Library/SystemConfiguration/IPConfiguration.bundle/Resources/IPConfiguration.xml

I haven’t had a lot of luck tweaking some of the settings (I’ve tried

<code>    &amp;lt;key&amp;gt;LinkInactiveWaitTimeSeconds&amp;lt;/key&amp;gt;
    &amp;lt;integer&amp;gt;4&amp;lt;/integer&amp;gt;
    &amp;lt;key&amp;gt;MaximumRetryTimeSeconds&amp;lt;/key&amp;gt;
    &amp;lt;integer&amp;gt;8&amp;lt;/integer&amp;gt;
</code>

)

…but

<code>    &amp;lt;key&amp;gt;DHCPAcceptsBOOTP&amp;lt;/key&amp;gt;
    &amp;lt;false/&amp;gt;
    &amp;lt;key&amp;gt;DHCPAllocateLinkLocalAtRetryCount&amp;lt;/key&amp;gt;
    &amp;lt;integer&amp;gt;2&amp;lt;/integer&amp;gt;
    &amp;lt;key&amp;gt;DHCPFailureConfiguresLinkLocal&amp;lt;/key&amp;gt;
    &amp;lt;true/&amp;gt;
</code>

all seem like they might be useful to someone and

<code>    &amp;lt;key&amp;gt;Verbose&amp;lt;/key&amp;gt;
    &amp;lt;false/&amp;gt;
</code>

has been exceedingly useful in diagnosing issues pertaining to network-related boot hangs.

Leave a reply

You must be logged in to post a comment.