ubuntu 16.04 网络配置及ssh 连接问题

前端之家收集整理的这篇文章主要介绍了ubuntu 16.04 网络配置及ssh 连接问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. 网卡配置:需要切换到root,sudo -s

    vim /etc/network/interfaces

具体配置:

auto lo

auto ens33

iface ens33 inet static

address 192.168.50.104

netmask 255.255.255.0

gateway 192.168.40.200

dns-nameserver 218.85.152.99


2.安装完成后,ssh 若无法连接,需要安装下openssh-server

sudo apt-get install openssh-server.

3.安装完成后,即可使用ssh 远程连接

原文链接:https://www.f2er.com/ubuntu/356509.html

猜你在找的Ubuntu相关文章