您好,登錄后才能下訂單哦!
小編給大家分享一下Ubuntu16.04中網(wǎng)絡(luò)配置的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
安裝Ubuntu
操作系統(tǒng)之后,為了通過Xshell
連接主機(jī),或者連接其他主機(jī)。需要進(jìn)行如下網(wǎng)絡(luò)配置和ssh服務(wù)配置。
sudo vi /etc/network/interfaces
,在其中找到對應(yīng)網(wǎng)卡進(jìn)行修改
輸入以下內(nèi)容
auto ens33 iface ens33 inet static # 靜態(tài)ip,不采用DHCP動(dòng)態(tài)分配 address 192.168.90.142 # 配置ip netmask 255.255.255.0 # 子網(wǎng)掩碼 gateway 192.168.90.2 # 網(wǎng)關(guān)
接下來配置dns
打開配置文件進(jìn)行修改sudo vi /etc/resolv.conf
,輸入以下內(nèi)容:
nameserver 192.168.90.2 # 這里我設(shè)置為VMWare那塊虛擬網(wǎng)卡
這是因?yàn)?systemctl network restart
之后,發(fā)現(xiàn)網(wǎng)絡(luò)并沒配置好,所以只能重啟sudo reboot
重啟之后,使用ifconfig
與ping ip
來測試網(wǎng)絡(luò)是否連通。
重啟完成后,安裝并配置SSH服務(wù)
ps -e | grep ssh
如果返回為空 那么證明ssh并沒有安裝
這里使用阿里云的配置,在/etc/apt/source.list
中修改為以下內(nèi)容:
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
以阿里云為新apt源進(jìn)行更新,sudo apt-get update
sudo apt-get install -y ssh
安裝完成后,ssh 本身的主機(jī)
進(jìn)行測試
配置ssh 允許其他主機(jī)可以用root 賬號登錄。修改配置文件vi /etc/ssh/sshd_config
,修改授權(quán)信息為:
PermitRootLogin yes
重啟ssh服務(wù) sudo service ssh restart
,在其他主機(jī)上通過SSH
來進(jìn)行登錄
以上是“Ubuntu16.04中網(wǎng)絡(luò)配置的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。