Ubuntu簡單網路配置

2021-09-30 05:38:30 字數 861 閱讀 9190

通過路由器dhcp client table列表中檢視發現安裝ubuntu server的這台機子並未加入網路,於是在這台機子上執行命令:

$ifconfig

返回結果中只有lo,沒有eth0,可能和安裝時跳過網路配置有關,只需要簡單配置一下即可讓這台機子正常加入網路。

$sudo pico /etc/network/inte***ces

這就會啟動簡單文字編輯器來編輯linux網路配置檔案

在這裡你應該會看到如下內容:

auth lo

iface lo inet loopback

這個正是lo回環,需要讓這台執行ubuntu server的機子通過dhcp獲得ip來加入網路,那麼只需要在上面的lo回環的配置內容下面加入:

auth eth0

iface eth0 inet dhcp

按下ctrl+o組合鍵即可儲存,按下ctrl+x退出。

讓網路配置檔案生效有兩個辦法:

1、重啟ubuntu:

$sudo reboot

2、重啟網路元件:

$sudo /etc/init.d/networking restart

只要顯示reconfiguring network inte***ces... [ok]

即成功重啟網路元件。

如果並不是通過dhcp來獲得ip而是需要手動指定ip(比如192.168.1.1)並且指定閘道器(如192.168.1.254),那麼如此配置:

auth eth0

iface eth0 inet static

address 192.168.1.11

netmask 255.255.255.0

gateway 192.168.1.1

ubuntu 網路配置

進入網路配置檔案 sudo vi etc network inte ces 在這裡你應該會看到如下內容 auth lo iface lo inet loopback 這個正是 lo回環,我需要讓這台執行 ubuntu server 的機子通過 dhcp 獲得ip 來加入網路,那麼我只需要在上面的 l...

Ubuntu 網路配置

1 sudo vi etc network inte ces 更改配置為 autoeth0 ifaceeth0 inet static address 192.168.3.90 gateway 192.168.3.1 netmask 255.255.255.0 sudo etc init.d net...

ubuntu 網路配置

檢查網路配置命令 ifconfig 4 如果以dhcp方式配置網絡卡,則改為 auto eth0 iface eth0 inet dhcp 也可以在命令列下直接輸入下面的命令來獲取位址 sudo dhclient eth0 5 配置dns伺服器的位址,最多可以使用3個dns伺服器 sudo vi e...