2

How to add a line like:

    search somesuffix.com

to /etc/resolv.conf on Network Manager startup in Ubuntu?

Swoogan
  • 2,007
  • 1
  • 13
  • 21
Alex
  • 2,287
  • 5
  • 32
  • 41

1 Answers1

1

NetworkManager uses dhclient for DHCP leases, and you would be better off using dhclient hooks to change /etc/resolv.conf

You're probably running dhcp3-client on Ubuntu, I think it's the default with 8.10 and 9.04 at least.

If you are, your configuration file is in /etc/dhcp3/dhclient.conf

You can specify, per-interface modifications to /etc/resolv.conf

e.g.

interface "wlan0" {
    supersede domain-name "int.domain.com domain.com";
}

That will generate an /etc/resolv.conf with:

domain int.domain.com
search int.domain.com domain.com

man 5 dhclient.conf for more info.

Philip Reynolds
  • 9,751
  • 1
  • 32
  • 33