Ubuntu設定靜態ip

2021-09-25 12:34:53 字數 1608 閱讀 7833

檢視網絡卡名稱

ip route show
返回下面

default via 192.168.2.1 dev enp2s0  proto static  metric 100 

169.254.0.0/16 dev enp2s0 scope link metric 1000

192.168.2.0/24 dev enp2s0 proto kernel scope link src 192.168.2.100 metric 100

enp2s0 就是網絡卡名稱

修改網路配置

sudo vim /etc/network/inte***ces
新增下面內容

auto enp2s0

iface enp2s0 inet static

address 192.168.2.200

netmask 255.255.255.0

gateway 192.168.2.1

dns-nameserver 8.8.8.8 =

>dns伺服器位址,設定為靜態ip需要手動配置該引數,根據實際需求配置

上面enp2s0根據實際網絡卡名稱填寫,因為需要修改配置所以需要獲取管理員許可權進行修改

重啟網絡卡服務

sudo /etc/init.d/networking restart
檢視當前裝置網路資訊

ifconfig
返回資訊

enp2s0    link encap:乙太網  硬體位址 00:e0:4c:68:00:77  

up broadcast running multicast mtu:1500 躍點數:1

接收資料報:110 錯誤:0 丟棄:0 過載:0 幀數:0

傳送資料報:172 錯誤:0 丟棄:0 過載:0 載波:0

碰撞:0 傳送佇列長度:1000

接收位元組:11633 (11.6 kb) 傳送位元組:23170 (23.1 kb)

lo link encap:本地環迴

up loopback running mtu:65536 躍點數:1

接收資料報:165 錯誤:0 丟棄:0 過載:0 幀數:0

傳送資料報:165 錯誤:0 丟棄:0 過載:0 載波:0

碰撞:0 傳送佇列長度:1000

接收位元組:12075 (12.0 kb) 傳送位元組:12075 (12.0 kb)

enp2s0網絡卡資訊可以看到,ip位址已經變成之前設定的靜態ip位址

sudo

reboot

測試ping網域名稱

ping www.baidu.com
如果能夠正常ping網域名稱說明dns伺服器配置沒問題

ubuntu設定靜態ip

ubuntu10.04設定靜態ip 2010 12 20 09 39 step1 設定ip vi etc network inte ces 檔案內容修改為 auto eth0 iface eth0 inet static address 192.168.1.2 gateway 192.168.1.1...

ubuntu設定靜態ip

ubuntu設定靜態ip 找到檔案並作如下修改 sudo vi etc network inte ces修改如下部分 auto eth0 iface eth0 inet static address 192.168.0.117 gateway 192.168.0.1 這個位址你要確認下 閘道器是不是...

ubuntu設定靜態ip

當dhcp伺服器出問題的時候,不能自動分配ip,就需要我們手動設定靜態ip 1 vim etc network inte ces 個人不是很習慣用vim,可以換成gedit就和記事本一樣操作啦 2 修改檔案內容如下 我的不叫eth0,是enp2s0,輸入ifconfig看第乙個 auto eth0 ...