赞
踩
系统:、
Ubuntu18.10
配置静态ip的设置需要修改的文件
第一步:vi /etc/network/interfaces内容
interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto ens33
iface ens33 inet static
address 192.168.110.120 //与虚拟机WMnet8同属于一个网段
gateway 192.168.110.2 //查看NET设置里面的网关地址
netmask 255.255.255.0
dns-nameserver 8.8.8.8
第二步:vi /etc/systemd/resolved.conf
将DNS改为 DNS=8.8.8.8
遇到的坑:
Password authentication failed, Please verify that the username and passwd are correct.
方法:1、修改/etc/ssh/sshd_config的PasswordAuthentication项为yes
2、修改 /etc/ssh/sshd_config中”PremitRootLogin"中禁止了Root的登录权限
#PermitRootLogin prohibit-password
PermitRootLogin yes
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。