Ubuntu16.04 網絡配置

Ubuntu 網絡配置

安裝Ubuntu操做系統以後,爲了經過Xshell鏈接主機,或者鏈接其餘主機。須要進行以下網絡配置和ssh服務配置。shell

1 網絡配置

1.1 修改網絡配置信息

sudo vi /etc/network/interfaces,在其中找到對應網卡進行修改ubuntu

輸入如下內容網絡

auto ens33
iface ens33 inet static # 靜態ip,不採用DHCP動態分配
address 192.168.90.142 # 配置ip
netmask 255.255.255.0 # 子網掩碼
gateway 192.168.90.2  # 網關

接下來配置dnsssh

打開配置文件進行修改sudo vi /etc/resolv.conf,輸入如下內容:測試

nameserver 192.168.90.2 # 這裏我設置爲VMWare那塊虛擬網卡

1.2 重啓機器

這是由於 systemctl network restart 以後,發現網絡並沒配置好,因此只能重啓sudo reboot 重啓以後,使用ifconfigping ip來測試網絡是否連通。阿里雲

2 安裝並配置SSH服務

重啓完成後,安裝並配置SSH服務操作系統

2.1 安裝SSH服務

2.1.1 首先檢查ssh服務是否安裝

ps -e | grep ssh 若是返回爲空 那麼證實ssh並無安裝rest

2.1.2 配置apt源

這裏使用阿里雲的配置,在/etc/apt/source.list中修改成如下內容:code

deb http://mirrors.aliyun.com/ubuntu/ xenial main
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main

deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main

deb http://mirrors.aliyun.com/ubuntu/ xenial universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates universe

deb http://mirrors.aliyun.com/ubuntu/ xenial-security main
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main
deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security universe

2.1.3 更新apt資源

​ 以阿里云爲新apt源進行更新,sudo apt-get updateserver

2.1.4 安裝ssh服務

sudo apt-get install -y ssh

​ 安裝完成後,ssh 自己的主機進行測試

2.2 配置SSH服務

配置ssh 容許其餘主機能夠用root 帳號登陸。修改配置文件vi /etc/ssh/sshd_config ,修改受權信息爲:

PermitRootLogin yes

重啓ssh服務 sudo service ssh restart,在其餘主機上經過SSH來進行登陸

相關文章
相關標籤/搜索