Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

Is it possible to add a list of hosts that are only specific to a certain user? Perhaps a user-specific hosts file?

This mechanism should also complement the entries in the /etc/hosts file.

share|improve this question

4 Answers

up vote 11 down vote accepted

As far as I know there isn't. The easiest way to do what I think you want is to write an LD_PRELOAD library that overrides gethostbyname() and related functions.

share|improve this answer
3  
Hard to believe there isn't such library yet. – Piotr Findeisen Aug 21 '12 at 9:08

Beside the LD_PRELOAD tricks. A simple alternative that may work on a few systems would be to binary-edit a copy of the system library that handles hostname resolution to replace /etc/hosts with a path of your own.

For instance, on Linux:

If you're not using nscd, copy libnss_files.so to some location of your own like:

mkdir -p -- ~/lib &&
cp /lib/x86_64-linux-gnu/libnss_files.so.2 ~/lib

Binary-edit the copy to replace /etc/hosts in there to something the same length like /tmp/hosts.

perl -pi -e 's:/etc/hosts:/tmp/hosts:g' ~/lib/libnss_files.so.2

Edit /tmp/hosts to add the entry you want. And use

export LD_LIBRARY_PATH=~/lib

for nss_files to look in /tmp/hosts instead of /etc/hosts.

Instead of /tmp/hosts, you could also make it /dev/fd//3, and do

exec 3< ~/hosts

For instance which would allow different commands to use different hosts files.

If nscd is installed and running, you can bypass it by doing the same trick, but this time for libc.so.6 and replace the path to the nscd socket (something like /var/run/nscd/socket) with some nonexistent path.

share|improve this answer

Not sure if this would help you, but I came here looking for a way to add saved "hosts" somewhere that was easily accessible to only my user.

I basically needed to be able to ssh into certain boxes on our work network, which only has one entry point.

What I did was add alias's to my .bashrc file.

For example, if you added:

alias jrfbox 'ssh jason@1912.168.6.6'

at the bottom of the ~/.bashrc (~ is your home directory), then after you logout and login again, you can type "jrfbox" hit enter, and it will connect.

share|improve this answer
2  
If you're interesting specifically in the SSH case, you should see man ssh_config. – Nick May 6 at 18:08

AFAIK, There is nothing like that, and there is no reason to have something like that. There is a design problem if an admin think that he need a hosts file per user. Think about it: You can't hide a host just because you don't have it in /etc/hosts, you're reading more files when the system is initialized and maybe the difference between 2 users will be up to 5 hosts.

The right question is: Is there a good reason to want something like that?

Maybe the answer will say what kind of utility you really want

EDIT - Maybe this is a good conclusion: if you use your own domain as a domain name server (in DNS), you have just 1 table to map domains in the server. DNS does not work at user-level.

share|improve this answer
2  
You're right, I suppose I should explain the problem and this may present a better solution. – redspike Apr 1 '11 at 14:32
@redspike: It's not clear from the question whether it is meant that the admin should override the hosts for a specific user, or whether a user should be able to extend the host aliases without any help from the admin. I thought rather that redspike is asking about the latter situation; this answer is about the first situation I describe... – imz -- Ivan Zakharyaschev Apr 1 '11 at 14:43
2  
There are various tool-specific configuration mechanisms to create shortcuts for hostnames, see e.g. ssh_config(5) or git-push(1) for [url "<actual url base>"] in Git configuration. – imz -- Ivan Zakharyaschev Apr 1 '11 at 14:47
@redspike, then you should chage the question to fit the answer you really need – D4RIO Apr 1 '11 at 16:18
1  
-1 for telling the OP what question he has to post – miracle173 Dec 5 '12 at 5:20
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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