ubuntu16 10固定ip配置

2021-07-28 05:41:06 字數 1298 閱讀 7544

netstat -r //檢視路由表

ifconfig   //檢視所有埠的配置

ethtool enp2s0  //檢視網路埠的詳細資訊

sudo /etc/init.d/networking restart //重啟網路服務,配置完成後重啟才能生效

a以下為臨時設定××××××××××××××××××××××××××××××

//調整速度

sudo ethtool -s enp2s0 autoneg off speed 10 duplex full

//設定ip,掩碼

sudo ifconfig enp2s0  219.216.***.*** netmask 255.255.255.0 up

設定閘道器

sudo route add default gw 219.216.***.***

//  dns

sudo vi /etc/resolv.conf

search chotim.com

nameserver 202.118.66.6

b永久設定××××××××××××××××××××××××××××

1,永久ip設定sudo gedit /etc/network/inte***ces

靜態ip無法鏈結無線網,和dns無關

靜態ip

auto enp2s0

iface enp2s0 inet static

address 219.216.***.***

netmask 255.255.255.0

gateway 219.216.***.***

動態ip

auto enp2s0

iface enp2s0 inet dhcp

2, 永久dns設定sudo gedit /etc/resolvconf/resolv.conf.d/base

只要新增dns位址即可

nameserver 202.118.66.6

修改過永久dns後不行,就檢視臨時dns是否修改

sudo vi /etc/resolv.conf

nameserver: *********

執行下面兩個命令,啟用新設定

$sudo ifdown enp2s0

$sudo ifup enp2s0

3,永久速度(暫時沒找到,只能把命令新增到啟動指令碼中/etc/rc.local )

sudo ethtool -s enp2s0 autoneg off speed 100 duplex full

意思:有線網絡卡enp2s0 關閉自動協商,全雙工,速度100。

Ubuntu 16 10 解決 DNS 解析失敗

這段時間在ubuntu16.10上使用chrome瀏覽網頁時經常會出現乙個奇怪的情況,就是突然會dns解析失敗,但是並不是所有網域名稱都解析失敗,僅僅只是部分網域名稱以及它的子網域名稱解析失敗,然後過個幾分鐘就會恢復正常,剛開始以為是網路問題,之後愈演愈烈,實在受不了,搜尋後發現可能是由於ubunt...

Vmware安裝完Ubuntu16 10後重啟失敗

在vmware裡安裝完ubuntu16.10,啟動時出現 smbus host controller not enabled 錯誤提示,進不到圖形介面。網上搜了一下,解決辦法是在圖形介面裡進終端視窗,編輯blacklist.conf檔案,禁止i2c piix4驅動的載入。但現在系統還沒載入完,進不去...

在Ubuntu16 10下搭建mantis平台

1.用vmware安裝 ubuntu 16.04.1 desktop amd64.iso 1.1.選擇最佳的software updates 1.2.重啟ubuntu 3.參考 ubuntu 16.10搭建mantis伺服器 基於php7.0 3.1.安裝軟體包 apache伺服器安裝 sudo a...