1.查看网卡状态 ,启用网卡
Ip a
ifconfig enp2s0 up
ip link set eth0 up
配置网卡信息,注意空格
1.vim /etc/netplan/00-installer-config.yaml
network:
ethernets:
ens160:
dhcp4: false
addresses:
- 10.0.70.180/24
routes:
- to: default
via: 10.0.70.254
nameservers:
addresses:
- 10.0.80.11
version: 2
2.netplan apply
3.reboot
https://zhuanlan.zhihu.com/p/547522662 开启SSH
1 安装ssh服务
// 安装ssh服务
apt-get install openssh-server
// 开启防火墙ssh的服务端口
ufw allow ssh
// 查看ssh服务状态
systemctl status ssh
// 关闭ssh服务
systemctl stop ssh
// 开启ssh服务
systemctl start ssh
// 重启ssh服务
systemctl restart ssh
// 设置开启自启
sudo systemctl enable ssh
// 关闭开机自启
sudo systemctl disable ssh
2 修改ssh登录配置
vim /etc/ssh/sshd_config
将port 22前面的#去掉
将PermitRootLogin prohibit-password那一行修改为PermitRootLogin yes
网友评论