i have a resolv.conf like below on my mac

search example.net
nameserver 8.8.8.8
nameserver 8.8.4.4

i can use not dot included prefixes and search domain works as expected. for example "ssh test" connects to "test.example.net". but i need to be able to connect to "test.vpn" and "test.cli" and they need to resolve as "test.vpn.example.net" and "test.cli.example.net" respectively.

on linux, and before max osx lion, i had no problem on this. but with mac lion, when i try to connect to test.vpn, it ignores to add search domain to hostname and tries to resolve test.vpn.

any ideas?

link|improve this question
i've find the this article support.apple.com/kb/HT4845 explaining the situation, but how can i ovveride this new behavior – Emre Odabaş Feb 10 at 12:16
feedback

1 Answer

up vote 0 down vote accepted

ok, find a workaround for this at http://www.eigenspace.org/2011/07/fixing-osx-lion-dns-search-domains/

shortly:


Make a backup of /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist

sudo cp /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist ~/com.apple.mDNSResponder.plist.original

Edit com.apple.mDNSResponder.plist — its a plain text file, so I used vim but you can use whatever text editor you have handy. Don’t forget to use sudo.

sudo vim /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist

Add <string>-AlwaysAppendSearchDomains</string> after line 16

  <key>ProgramArguments</key>
    <array>
        <string>/usr/sbin/mDNSResponder</string>
        <string>-launchd</string>
            <string>-AlwaysAppendSearchDomains</string>
    </array>

Now unload and reload the mDNSResponder service:

sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist
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.