一、前言 最近需要在虛擬機當中裝個 的系統,但是在虛擬機安裝的時候,並不像 那樣能一步步的進行配置,因此導致裝好後的虛擬機是動態IP地址。而該虛擬機要作為測試伺服器來使用,所以要將IP地址設置為靜態IP。 二、環境 系統:Ubuntu Server 16.04 虛擬機:VM 15.X 三、解決方案 ...
一、前言
最近需要在虛擬機當中裝個Ubuntu Server 16.04
的系統,但是在虛擬機安裝的時候,並不像Ubuntu Server 18.04
那樣能一步步的進行配置,因此導致裝好後的虛擬機是動態IP地址。而該虛擬機要作為測試伺服器來使用,所以要將IP地址設置為靜態IP。
二、環境
- 系統:Ubuntu Server 16.04
- 虛擬機:VM 15.X
三、解決方案
1. 查看IP信息
通過命令行查看當前IP信息。
ifconfig
# 輸出結果如下:
ens33 Link encap:Ethernet HWaddr 00:0c:29:98:5f:81
inet addr:192.168.4.246 Bcast:192.168.4.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe98:5f81/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:28536 errors:0 dropped:0 overruns:0 frame:0
TX packets:17938 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:3741540 (3.7 MB) TX bytes:2286437 (2.2 MB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:193 errors:0 dropped:0 overruns:0 frame:0
TX packets:193 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:16356 (16.3 KB) TX bytes:16356 (16.3 KB)
2. 安裝vim
在新安裝的系統當中,預設安裝vi
編輯器,但是本人覺得這個編輯器的操作沒有vim
熟悉,因此要安裝vim
編輯器。
# 先更新apt-get源
sudo apt-get update
# 安裝vim
sudo apt-get install vim
3. 修改配置
打開修改文件
修改/etc/network/interfaces
文件。註意:是interfaces
,有s。
sudo vim /etc/network/interfaces
修改文件
在打開的文件中,如果是動態IP,如下所示:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto ens33
iface ens33 inet dhcp
如果要修改為靜態IP,則輸入如下代碼:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto ens33
iface ens33 inet static
address 192.168.4.246
netmask 255.255.255.0
gateway 192.168.4.1
dns-nameservers 8.8.8.8
註意:如果已經有網卡ens33
,則按對應名稱編寫即可。
配置說明:
- auto ens33:使用的網路介面
- iface ens33 inet static:ens33這個介面,使用靜態IP設置
- address 192.168.4.256:設置IP地址
- netmask 255.255.255.0:設置子網掩碼
- gateway 192.168.4.1:設置網關
- dns-nameservers 8.8.8.8:設置DNS伺服器地址
修改完之後,按ESC
鍵,然後輸入:qw
即可保存並關閉文件。
4. 重啟系統
在網上找到的一些教程當中,要使用刷新IP的命令,但是我發現有些時候那些命令沒法使用。
因此,最簡單的方法就是直接重啟系統。
sudo reboot
四、測試是否OK
執行命令
ping [區域網IP] | [外網IP] | [具體功能變數名稱]
- 如果能訪問區域網的其他IP,說明IP設置正常
- 如果能訪問外網IP,說明IP設置正常,否則就是DNS問題
- 如果能訪問具體外網功能變數名稱,說明IP設置正常,否則就是DNS問題