How to fill in the network line in the ubuntu interfaces config file?
Posted
by matnagel
on Server Fault
See other posts from Server Fault
or by matnagel
Published on 2010-03-26T09:18:14Z
Indexed on
2010/03/26
9:23 UTC
Read the original article
Hit count: 328
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.)
© Server Fault or respective owner