vote up 2 vote down star

I have some cross platform DNS client code that I use for doing end to end SMTP and on windows I can find the current DNS server ip addresses by looking in the registry. On the Mac I can probably use the SystemConfiguration framework as mentioned in the first answer, however the exact method of doing so is not immediately obvious.

For instance SCDynamicStoreCopyDHCPInfo returns some of the dynamic DHCP related data but not the DNS server addresses.

flag

3 Answers

vote up 0 vote down check

They are also available from /etc/resolv.conf

link|flag
vote up 4 vote down

You can use the SystemConfiguration framework. It's in C.

Update: apparently the rest of the web is harder to use than I thought. Search for the key "State:/Network/Service/ServiceID/DNS" where ServiceID is the ID of the service.

link|flag
Ok, I've initially trying SCDynamicStoreCopyDHCPInfo and that gets me the current IP address and netmask + a few other things I don't understand, but not the DNS servers. Is there any chance you can be more specific? – fret Nov 5 '08 at 23:28
vote up 0 vote down

You could read from /etc/resolv.conf.

link|flag

Your Answer

Get an OpenID
or

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