溫馨提示×

ubuntu子網(wǎng)掩碼怎么設(shè)置

小億
501
2023-11-14 15:00:35

在Ubuntu系統(tǒng)中,可以使用以下命令來設(shè)置子網(wǎng)掩碼:

  1. 打開終端(快捷鍵:Ctrl + Alt + T)。
  2. 輸入以下命令來編輯網(wǎng)絡(luò)接口配置文件(請注意替換<interface>為實際的網(wǎng)絡(luò)接口名稱,例如eth0):
    sudo nano /etc/network/interfaces
    
  3. 在文件中找到與所需網(wǎng)絡(luò)接口相關(guān)的配置行。通常,它看起來類似于:
    iface <interface> inet static
    address <ip_address>
    netmask <netmask>
    gateway <gateway_address>
    
  4. netmask行中,將<netmask>替換為所需的子網(wǎng)掩碼。例如,如果你想要設(shè)置子網(wǎng)掩碼為255.255.255.0,可以這樣寫:
    netmask 255.255.255.0
    
  5. 按下Ctrl + X鍵,然后按Y鍵保存并退出編輯器。
  6. 重啟網(wǎng)絡(luò)接口,使新的子網(wǎng)掩碼生效??梢允褂靡韵旅睿?pre class="hljs">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)掩碼值。

0