Linux-VServer International Conference on Open Source #10

Networking issue

Services on host server

We suggest not to run any services on your host server. If you need to run services on the host server you will have to tell them to only bind to the ip address of the host server.

Examples:

If you want to use ssh for remote administration of the root server, you will have to tell the ssh daemon process to only bind to the ip address of the root server.

In /etc/ssh/sshd_config inside the root server put:

ListenAddress host.server.IP.address 

and restart sshd

For inetd you can install xinetd.

Add to start of /etc/xinetd.conf:

defaults
{
bind = host.server.IP.address 
}
Copyright © 2005 Taiwan Debian Users Group