ubuntu16 04 靜態IP配置

2021-08-20 08:36:05 字數 1153 閱讀 1998

ubuntu16.04 配置靜態ip

準備工作:

0.ifconfig -a先得知一下自己機器的當前網路配置資訊。

wangyetao@linux_u1604:~/.config$ ifconfig -a

enp2s0 link encap:乙太網 硬體位址 48:4d:7e:aa:f8:20

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

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

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

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

接收位元組:623583731 (623.5 mb) 傳送位元組:42402945 (42.4 mb)

lo link encap:本地環迴

up loopback running mtu:65536 躍點數:1

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

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

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

接收位元組:652255192 (652.2 mb) 傳送位元組:652255192 (652.2 mb)

wangyetao@linux_u1604:~/.config$

1.新增修改網路介面檔案。vi /etc/network/inte***ces

auto enp2s0

iface enp2s0 inet static

address 192.168.2.23    

netmask 255.255.255.0

gateway 192.168.2.1

dns-nameserver 8.8.8.8

vi /etc/resolv.conf

# 新增

nameserver 192.168.2.1

vi /etc/resolvconf/resolv.conf.d/base

# 新增

nameserver 192.168.2.1

/etc/init.d/network restart

2.重啟網路。sudo /etc/init.d/networking restart

Ubuntu 16 04 修改為靜態IP

一.首先你得知道你的網絡卡叫什麼ifconfig比如我的叫enp0s3 類似的比如eth0,eth1等等 二.修改配置檔案sudo gedit etc network inte ces新增以下內容 auto enp0s3 iface enp0s3 inet static address 192.16...

ubuntu16 04設定靜態ip方法

auto ens33 使用的網路介面,之前查詢介面是為了這裡 iface ens33 inet static ens33這個介面,使用靜態ip設定 address 192.168.2.136 設定ip位址為192.168.2.136 netmask 255.255.255.0 設定子網掩碼 gate...

Ubuntu16 04修改靜態ip位址

第一步 先獲取網絡卡名稱,輸入ifconfig,如下圖,我們的網絡卡名稱為 ens33 第二步 修改網絡卡配置檔案sudo vim etc network inte ces 第三步 修改dns配置 配置dns,編輯配置檔案 etc resolv.conf,增加如下內容 第四部 重啟網路服務 sudo...