ubuntu設定靜態ip

2021-08-18 10:28:28 字數 505 閱讀 1297

當dhcp伺服器出問題的時候,不能自動分配ip,就需要我們手動設定靜態ip

1、vim /etc/network/inte***ces(個人不是很習慣用vim,可以換成gedit就和記事本一樣操作啦)

2、修改檔案內容如下:(我的不叫eth0,是enp2s0,輸入ifconfig看第乙個)

auto eth0

iface eth0 inet static

address 192.168.0.124

netmask 255.255.255.0

gateway 192.168.0.1

broadcast 192.168.0.255

3、配置dns解析器,vim /etc/reslov.conf,輸入

nameserver 8.8.8.8 (8.8.8.8谷歌的dns解析器,可能比較慢)

nameserver 114.114.114.114

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

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

檢視網絡卡名稱 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 d...