ubuntu網路設定

2021-06-16 22:48:51 字數 1353 閱讀 7970

主要檔案:/etc/network/inte***ces,這裡是ip、閘道器、掩碼等的一些配置;/etc/resolv.conf這個檔案儲存dns的有關資訊

主要命令:sudo /etc/init.d/networking restart重啟網路,使配置檔案的配置生效;

通過配置檔案配置

1)配置ip閘道器:sudo gedit /etc/network/inte***ces 裡面新增

dhcp的:

auto lo

iface lo inet loopback

auto eth0

iface eth0 inet dhcp

靜態ip的:

auto lo

iface lo inet loopback

#上面的是回環

#網絡卡eth0的配置

auto eth0

#staic 靜態ip

iface eth0 inet

static

address

192.168

.1.5

netmask

255.255

.255.0

gateway

192.168

.1.1

#network 192.168.3.0

#broadcast 192.168.3.255

#後面兩條是網路號和廣播號,這個可以由其它資訊計算,因此無需設定

這裡還可以配置第二ip(虛擬ip)

auto eth0:1

iface eth0:1

inet

static

address

192.168

.1.60

netmask

255.255

.255.0

#network x.x.x.x

#broadcast x.x.x.x

gateway x.x

.x.x

2)配置dns: sudo gedit /etc/resolv.conf

nameserver 

202.107

.117.11

3)主機名:sudo gedit /etc/hostname 裡面輸入主機名。預設有個主機名,因此這個不是必須的。

4)重啟網路:sudo /etc/init.d/networking restart

也可以重啟網絡卡:

sudo ifconfig eth0 down 

sudo ifconfig eth0 up

重啟網絡卡對別的網絡卡無影響,更推薦一些。

ubuntu網路設定

a,ubuntu系列網路配置資訊儲存在 etc network inte ces中 b,dns資訊儲存在 ect resolv.conf中.note 如果只是臨時性的改變ip位址,則不用修改inte ces檔案,只用ifconfig即可,不過當系統重啟後,系統會恢復inte ces中的配置.ifco...

ubuntu 設定網路

1.以dhcp方式配置網絡卡 編輯檔案 etc network inte ces sudo vi etc network inte ces 並用下面的行來替換有關eth0的行 the primary network inte ce use dhcp to find our address auto ...

ubuntu 網路設定

1,本地 無線 vmware選擇橋接模式,配置相關ip與dns,ip與本地ip在同一網段,root ubuntu cat etc network inte ces auto eth0 iface eth0 inet static address 192.168.0.199 gateway 192.1...