Using a /29
Go to solution
Solved by CWP,
So what you want to do is have your server take up the entire .170 - .174, as if, to the Internet, there are 5 servers in that range?
If so, you will need to use subethernet designations virtual network interfaces. My memory of that is faded, but under Linux, it should be eth0:0, eth0:1, etc. and assigning each an IP address.
EDIT: From http://linuxconfig.org/configuring-virtual-network-interfaces-in-linux,
iface eth0 inet static address 10.8.0.170 netmask 255.255.255.248iface eth0:0 inet static address 10.8.0.171 netmask 255.255.255.248iface eth0:1 inet static address 10.8.0.172 netmask 255.255.255.248iface eth0:2 inet static address 10.8.0.173 netmask 255.255.255.248iface eth0:3 inet static address 10.8.0.174 netmask 255.255.255.248There is some logic somewhere (either inside the network stack or in the program/daemon itself) that allows you to only bind to 0.0.0.0 or {list of assigned IP addresses}. This ensures that typos are not made in the configuration, as well as allowing the network stack to be aware that it is responsible for more IP addresses.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now