Is there a way to programmatically add hosts to the local name resolver under Linux?

I would rather avoid fiddling with /etc/hosts dynamically...

Example: add the name foo and bind it to the local port 127.1.2.3

Use Case: I have an application installed locally accessible through a web browser. I'd like the application to be accessible through a local URI.

link|improve this question

I'd say this is serverfault material – Vinko Vrsalovic Oct 16 '09 at 21:16
It relates to how to perform this task programatically, so SO is right in my opinion. – Noldorin Oct 16 '09 at 21:24
Binding a host name to a host:port? Does that mean you want connections to foo on ANY port to connect to localhost:9999 instead? If so, you'll need more than DNS config. – Harold L Oct 16 '09 at 21:24
2  
The problem is that he's asking about how to modify DNS records dynamically, which has nothing to do directly with programming. So this is a serverfault question in disguise. In fact, given his edit of trying to map ip:port to a name, it seems that he could use some serverfault reading :-) – Vinko Vrsalovic Oct 16 '09 at 21:32
2  
@Jean-Lou: Just edit the /etc/hosts file programmatically. Save a copy when you begin and if you fail, restore the copy. For such a trivial use that should be more than enough. Everything else will be killing flies with lasers – Vinko Vrsalovic Oct 19 '09 at 7:18
show 2 more comments
feedback

4 Answers

up vote 4 down vote accepted

add the name foo and bind it to the local port 127.0.0.1:9999

What is it that you want? You can add foo 127.0.0.1 to hosts or do the equivalent in your nameserver, but a connection to foo on port 1234 will always go to 127.0.0.1:1234 -- it's not possible to redirect that to port 9999 based on name, which is lost by the time connect is called.

On Linux you can add IPs to the loopback device (i.e. ip addr add 127.1.2.3 dev lo), and then use iptables to change all connections destined for 127.1.2.3:1234 to instead go to 127.0.0.1:9999, but I can't tell from your question if that the observable behavior you want.

link|improve this answer
feedback

If you'll only add hosts, a pretty safe way to do it is

echo -e "ip.add.re.ss\thostname" >> /etc/hosts

Now, if you want to remove them it starts getting hairy. I suspect you also want to remove them.

If this is the case you can use Dynamic DNS, for example, BIND has the nsupdate tool to update zone files:

       $ nsupdate
       > update delete oldhost.example.com A
       > update add newhost.example.com 86400 A 172.16.1.1
       > send

This does the following:

Any A records for oldhost.example.com are deleted. And an A record for newhost.example.com with IP address 172.16.1.1 is added. The newly-added record has a 1 day TTL (86400 seconds).

link|improve this answer
Could I be binding the name "foo" to the local address 127.0.0.1 on port 9999 for example? – jldupont Oct 16 '09 at 21:21
1  
DNS maps IP addresses to names, ports are not part of IP addresses. So, no. – Vinko Vrsalovic Oct 16 '09 at 21:29
@vinko: forgot that little detail... you are so right. – jldupont Oct 16 '09 at 21:55
@vinko: How do you get nsupdate to only update the local dns cache and not try to communicate with others name servers? – jldupont Oct 17 '09 at 0:47
You cannot: dynamic update updates a zone, not a cache. Updating the cache cannot be done by standard ways (each resolver may have its own proprietary way, which one do you use?) – bortzmeyer Oct 19 '09 at 7:08
show 1 more comment
feedback

The google search term you want is "DDNS" for "Dynamic DNS". That's a technology for dynamically adding records to DNS servers, which sounds like exactly what you want. I'm pretty sure the bind in most lunix distros supports it, but you may need to read up on how to configure it.

link|improve this answer
feedback

I'll be going with a recent discovery: multicast-dns using the Avahi package. An example can be found here.

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.