centos设置允许访问的ip

参考:

https://www.lmlphp.com/user/64466/article/item/1159141/

https://blog.csdn.net/yangjiehuan/article/details/9253855

https://blog.csdn.net/qq_36746838/article/details/132298722

https://www.cnblogs.com/zhongguiyao/p/14082004.html

对服务器ssh登录限制:

vim /etc/ssh/sshd_config

在尾部加一行(允许所有ip登录)

AllowUsers root@*

或者(允许192.11.11.
AllowUsers root@192.11.11.

或者(允许192.11.
AllowUsers root@192.11.

/etc/init.d/sshd restart

如果已经开通ssh权限,ssh依然报错:

ssh: connect to host x.x.x.x port 22: Connection timed out

需要用telnet检查22端口是否通

如果22端口不通,需要检查原因*(比如vpn限制,防火墙限制,等等)

修改root用户ssh密码:

sudo passwd root

account locked due to failed logins...:

想办法用其他方法登录到该服务器上,执行如下命令:

pam_tally2 --user=root --reset

对服务器服务访问限制:

vim /etc/hosts.allow

最后一行添加(允许所有主机ssh登录)

sshd: ALL ##允许所有ip主机均能连接本机

service xinetd restart

相关推荐
二十雨辰1 分钟前
[linux]docker基础
linux·运维·docker
Jason-河山36 分钟前
【自动化更新,让商品信息跳舞】——利用API返回值的幽默编程之旅
运维·自动化
饮浊酒40 分钟前
Linux操作系统 ------(3.文本编译器Vim)
linux·vim
lihuhelihu1 小时前
第3章 CentOS系统管理
linux·运维·服务器·计算机网络·ubuntu·centos·云计算
哲讯智能科技1 小时前
SAP Business One市场价格解析
运维·sap·erp
矛取矛求1 小时前
Linux系统性能调优技巧
linux
山东布谷科技官方1 小时前
布谷直播源码部署服务器关于数据库配置的详细说明
运维·服务器·数据库·直播系统源码·直播源码·直播系统搭建·直播软件开发
One_Blanks1 小时前
渗透测试-Linux基础(1)
linux·运维·安全
Perishell1 小时前
无人机避障——大疆与Airsim中的角速度信息订阅获取
linux·动态规划·无人机
爱吃喵的鲤鱼1 小时前
linux进程的状态之环境变量
linux·运维·服务器·开发语言·c++