嗷嗷大佬:
自己用的,操作比较简单
有时候临时开个机子用来测试之类的,就这么使
先上网页的SSH
先切到root用户
- sudo -i
装wget
- apt install -y wget
- #或者
- yum install -y wget
然后下载脚本
- wget git.io/openssh.sh
执行脚本
- #默认设置root密码为1234qwer
- bash openssh.sh
- #指定密码
- bash openssh.sh 密码
直接一键操作
1234qwer改为你要设置的密码
不加这个参数用默认的密码也行(不建议)
debian
- apt install -y wget && \
- bash <(wget -qO- git.io/openssh.sh) 1234qwer
centos
- yum install -y wget && \
- bash <(wget -qO- git.io/openssh.sh) 1234qwer
推荐这样复制,粘贴后接着输入要设置的密码
zgs大佬:
麻烦
切root
- sudo -i
设密码
- passwd
依次输入代码
- sed -i ‘s/PermitRootLogin no/PermitRootLogin yes/g’ /etc/ssh/sshd_config
- sed -i ‘s/PasswordAuthentication no/PasswordAuthentication yes/g’ /etc/ssh/sshd_config
重启完事
- reboot
llmwxt大佬:
谢谢大佬分享技术,帮顶!
wifitry大佬:
感谢分享,zsbd
hcyme大佬:
个把月才折腾一次,web继续
嗷嗷大佬:
麻烦
切root
这可比记一个git.io/openssh.sh麻烦多了
nico大佬:
这是干啥的啊,直接service sshd stop不香吗
KK1024大佬:
收藏 zsbd
柯林斯大佬:
不懂这个,帮大佬顶
huang1dede大佬:
这可比记一个git.io/openssh.sh麻烦多了
我用证书,更方便,不用记.
评论前必须登录!
注册