Debian 开启 root ssh 登录,及IP修改
- 实用技巧
- 2024-04-17
- 49热度
- 0评论
root ssh 登录
开启 root ssh 登录
sudo vim /etc/ssh/sshd_config
修改:
PermitRootLogin yes
重启 sshd
/etc/init.d/ssh restart 或 systemctl restart sshd
关闭防火墙
ufw disable
修改 ip
备份 interfaces
sudo cp /etc/network/interfaces /etc/network/interfacesbak
编辑文件并设置静态 IP 地址,如下所示,
sudo vim /etc/network/interfaces
用下面显示的方式替换 'allow-htplug enp0s3' 行,并将 dhcp 参数更改为 static。以下是我的示例文件,根据您的环境更改接口名称和 IP 详细信息。
auto enp0s3
iface enp0s3 inet static
address 192.168.1.240/24
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 8.8.8.8
保存并关闭文件。
为了使上述更改生效,重新启动网络服务
sudo systemctl restart networking.service
现在,运行 ip 命令以验证 IP 地址,
ip add show