Linux

如何在ubuntu介面配置文件中填寫網路行?

  • March 26, 2010

我必須配置一個 ubuntu hardy 伺服器網路介面。

服務主機告訴我這是機器的網路數據:

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

我只使用第一個 IP 地址。我將使用 111.111.200.74 更新 /etc/hosts 文件,但我仍然不確定 /etc/network/interfaces 文件應該如何。這是我的計劃:

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

如您所見,我不知道如何建構網路線路。我將如何計算網路線路的數據,結果如何?

(我更改了子網的前 2 個八位字節,在實際設置中它們不是“111.111”。)

*編輯:*這就是我將使用的,從下面接受的答案建構:

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

只要您的網路遮罩和地址正確,您就應該可以忽略它。

如果您想填寫,也有一些線上計算器,例如subnet-calculator.com 。

在您目前的範例中,它包含在“111.111.200.72/29”中。“/29”是編碼的子網遮罩,“111.111.200.72”是網路ip

引用自:https://serverfault.com/questions/126535