Ubuntu配置和修改IP位址

2021-07-02 05:13:03 字數 829 閱讀 1493

1、修改配置檔案/etc/network/inte***ces

root@ubuntu:

~#vim /etc/network/inte***ces

新增以下內容:

auto eth0#設定自動啟動eth0介面

iface eth0 inet static#配置靜態ip

address 192.168.0.235#ip位址

netmask 255.255.252.0#子網掩碼

gateway 192.168.0.100#預設閘道器

#nameserver 8.8.8.8#當地dns伺服器(用ipconfig /all 檢視本地dns,第乙個dns是預設的,共有2個dns)

2、修改dns

root@ubuntu:

~#vim/etc/resolve.conf

nameserver 8.8.8.8 #當地dns伺服器(用ipconfig /all 檢視本地dns,第乙個dns是預設的,共有2個dns)

3、重啟網路,使配置生效

root@ubuntu:~#/etc/init.d/networking restart

4、檢視ip是否配置成功 

root@ubuntu:~#ifconfig

Ubuntu配置和修改IP位址

習慣了使用redhat和centos,今天客戶要修改ubuntu的ip位址,怎麼著配置檔案也找不到,也沒有setup圖形配置程式,只能谷歌了一下,問題解決了,在此做一下備忘。1 修改配置檔案 etc network inte ces sudo vim etc network inte ces新增以下...

ubuntu配置和修改IP位址

習慣了使用redhat和centos,今天客戶要修改ubuntu的ip位址,怎麼著配置檔案也找不到,也沒有setup圖形配置程式,只能谷歌了一下,問題解決了,在此做一下備忘。1 修改配置檔案 etc network inte ces sudo vim etc network inte ces新增以下...

Ubuntu配置和修改IP位址

1 修改配置檔案 etc network inte ces root ubuntu sudo gedit etc network inte ces 新增以下內容 auto eth0 設定自動啟動eth0介面 iface eth0 inet static 配置靜態ip address 192.168....