Ubuntu16 04 網路配置

2021-09-28 15:21:10 字數 1609 閱讀 2152

安裝ubuntu作業系統之後,為了通過xshell連線主機,或者連線其他主機。需要進行如下網路配置和ssh服務配置。

sudo vi /etc/network/inte***ces,在其中找到對應網絡卡進行修改

輸入以下內容

auto ens33

iface ens33 inet static # 靜態ip,不採用dhcp動態分配

address 192.168.90.142 # 配置ip

netmask 255.255.255.0 # 子網掩碼

gateway 192.168.90.2 # 閘道器

接下來配置dns

開啟配置檔案進行修改sudo vi /etc/resolv.conf,輸入以下內容:

nameserver 192.168.90.2 # 這裡我設定為vmware那塊虛擬網絡卡

這是因為systemctl network restart之後,發現網路並沒配置好,所以只能重啟sudo reboot重啟之後,使用ifconfigping ip來測試網路是否連通。

重啟完成後,安裝並配置ssh服務

ps -e | grep ssh如果返回為空 那麼證明ssh並沒有安裝

這裡使用阿里雲的配置,在/etc/apt/source.list中修改為以下內容:

deb  xenial main

deb-src xenial main

deb xenial-updates main

deb-src xenial-updates main

deb xenial universe

deb-src xenial universe

deb xenial-updates universe

deb-src xenial-updates universe

deb xenial-security main

deb-src xenial-security main

deb xenial-security universe

deb-src xenial-security universe

​ 以阿里雲為新apt源進行更新,sudo apt-get update

sudo apt-get install -y ssh

​ 安裝完成後,ssh 本身的主機進行測試

配置ssh 允許其他主機可以用root 賬號登入。修改配置檔案vi /etc/ssh/sshd_config,修改授權資訊為:

permitrootlogin yes
重啟ssh服務sudo service ssh restart,在其他主機上通過ssh來進行登入

Ubuntu 16 04網路配置

安裝完ubuntu 16.04後,配置靜態網路 vim etc network inte cesauto eth0 iface eth0 inet static address x.x.x.x netmask x.x.x.x gateway x.x.x.x配置完成,重啟網路服務 etc init.d...

Ubuntu16 04網路配置

ubuntu16.04網路配置 一 設定網路 1 windows 開啟cmd 輸入 ipconfig all 可以看到 修改為靜態ip 二 ubuntu修改網路為靜態ip 設定虛擬機器為橋接模式 1.開啟ubuntu的 etc network inte ces sudo gedit etc netw...

Vmware下Ubuntu16 04網路配置

1.編輯配置檔案 sudo vi etc network inte ces 2.修改配置檔案中引數值,以自身情況填寫 auto eth0 iface eth0 inet static address 192.168.123.34 靜態的ip位址 netmask 255.255.255.0 子網掩碼 ...