改SSH端口号和IP段访问
vi /etc/ssh/sshd_config 改port
拒绝所有的ssh 登录 /etc/hosts.deny 添加:sshd:ALL
修改:/etc/hosts.allow
sshd:10.74.61.3 #允许特定的一个IP ssh 登录
sshd:10.74.133.0/255.255.255.0 #允许10.74.133.0 网段的地址 ssh 登录
netstat -antup |grep pid
netstat -ntlp 看开放的端口
systemctl stop firewalld
find / -name tomcat
cat /etc/redhat-release 看版本
同步远程文件到本地
rsync -e 'ssh -p 2222' -avzP --partial root@120.27.31.54:/home/traffic/file /home/trafficBak
netstat -nptl|grep 873 关防火墙
555