在Ubuntu系統(tǒng)中,可以使用以下命令來設(shè)置子網(wǎng)掩碼:
<interface>
為實際的網(wǎng)絡(luò)接口名稱,例如eth0):sudo nano /etc/network/interfaces
iface <interface> inet static
address <ip_address>
netmask <netmask>
gateway <gateway_address>
netmask
行中,將<netmask>
替換為所需的子網(wǎng)掩碼。例如,如果你想要設(shè)置子網(wǎng)掩碼為255.255.255.0,可以這樣寫:netmask 255.255.255.0
sudo systemctl restart networking
或者sudo service networking restart
注意:在某些Ubuntu版本中,可能需要使用ifup
命令來重新啟動網(wǎng)絡(luò)接口,例如:sudo ifup <interface>
完成上述步驟后,子網(wǎng)掩碼將被設(shè)置為所需的值。你可以通過運(yùn)行以下命令來驗證設(shè)置是否成功:
ifconfig <interface>
其中,<interface>
是你想要檢查的網(wǎng)絡(luò)接口名稱。在輸出中,你將看到Mask
字段顯示設(shè)置的子網(wǎng)掩碼值。