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