I have to configure an ubuntu hardy server network interface.
The service hoster told me that this is the network data for the machine:
IP Range: 111.111.200.74 to 111.111.200.78
Netmask: 255.255.255.248
Broadcast: 111.111.200.79
Gateway: 111.111.200.73
Subnet: 111.111.200.72/29
I am only using the first IP address. I will update the /etc/hosts file with 111.111.200.74, but I am still unsure how the /etc/network/interfaces file should be. This is my plan:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 111.111.200.74
netmask 255.255.255.248
network 111.111.200.???
broadcast 111.111.200.79
gateway 111.111.200.73
As you can see I don't know how to build the network line. How would I calculate the data for the network line and what is the result?
(I changed the first 2 octets of the subnet, they are not "111.111" in the real setup.)
Edit: This is what I will use, constructed from the accepted answer below:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 111.111.200.74
netmask 255.255.255.248
# the following line is optional/redundant,
# because address and netmask are given above:
network 111.111.200.72
broadcast 111.111.200.79
gateway 111.111.200.73
you should be able to leave that out as long as your netmask and address are correct.
There are also online calculators like subnet-calculator.com if you want to fill it in.
In your current example it's included in "111.111.200.72/29". "/29" is the encoded subnetmask, "111.111.200.72" is the network ip