(實用)Ubuntu Linux靜態IP網路配置

2021-09-08 22:08:05 字數 827 閱讀 6836

記錄備忘。

基於ubuntu 14.04 lts server.

首先檢視一下當前系統的網絡卡:

$ sudo iconfig

比如這裡我除了回環網路lo外,網路介面名為em1,下面就去給它配置網路。

$ sudo vim /etc/network/inte***ces

auto em1

iface em1 inet static

address ip_addr_here

gateway gateway_here

netmask netmask_here

dns-nameservers nameservers_1 nameserver_2 ...

2. 重啟網路或系統

$ sudo /etc/init.d/networking restart或$ 

sudo reboot

關於dns的設定,網上有很多教程是誤導人的!

通過修改/etc/resolv.conf檔案來設定dns伺服器只是臨時有效,修改該檔案確實能夠指定dns伺服器,但是一旦系統重啟,該檔案中設定的內容將被覆寫!

/etc/resolv.conf的注釋說明的非常清楚,/etc/resolv.conf中使用者新增的字段會被覆寫,覆寫的依據就是/etc/network/inte***ces檔案中"dns-nameservers"字段列出的dns伺服器位址。因此應優先選擇在/etc/network/inte***ces檔案中設定"dns-nameservers"欄位來設定dns,而不是修改/etc/resolv.conf檔案。這樣系統即使重啟,也能夠正確解析網域名稱。

Ubuntu Linux 實用工具

1 htop 提供更加美觀 更方面的程序監控工具,可用於替代top命令 sudo apt install htopsudo apt install axel3 tldr 可以取代man的詳細文件,顯示簡潔的介紹 sudo apt install tldr4 shellcheck shell指令碼靜態...

在Ubuntu Linux中設定靜態IP

ubuntu的網路配置資訊是儲存在 etc network inte ces 檔案中,使用vim開啟配置檔案,預設是自動獲取ip的配置.如下 the primary network inte ce auto eth0 iface eth0 inet dhcp 下面我們將其設定成靜態ip.第一步 遮蔽...

安全解除安裝Ubuntu Linux

由於在這台計算機裡有windows與linux雙系統並存,所以解除安裝linux的核心思想就是把系統引導權重新交給windows,然後釋放linux所占用的系統資源。具體方法也不難,關鍵是最重要的兩個字 安全。拿出xp的安裝光碟,啟動系統,進入故障恢復控制台。依次序鍵入這兩個命令 quotation...