1.临时配置IP地址

ifconfig eth0 192.168.1.53/24                #配置临时IP
route add default gw 192.168.1.1            #配置默认路由
echo nameserver 8.8.8.8 > /etc/resolv.conf   #配置DNS服务器

2.永久IP

vim /etc/network/interfaces
#添加以下内容
auto eth0
#iface eth0 inet dhcp  #把原文件中这一行注释掉
iface eth0 inet static  #配置ehh0 使用静态地址
address 192.168.1.53
netmask 255.255.255.0
gateway 192.168.1.1


vim /etc/resolv.conf   #在文档最后插入DNS地址
nameserver 8.8.8.8

systemctl restart networking   #重启网络服务
/etc/init.d/networking restart

3.配置sshd服务并使用xshell连接

 3.1 允许root用户登录sshd服务

    

vim /etc/ssh/sshd_config
#修改以下内容第32行和第37行

本地网络配置_IP


重启ssh服务

/etc/init.d/ssh restart  
或 
systemctl restart ssh

配置sshd服务开机启动

update-rc.d ssh enable



xshell 连接不上  


确认静态ip在虚拟机网络分配的ip范围内

本地网络配置_vim_02