服务器:3台
克隆虚拟机
配置网络:
#删除一个文件-->这个和网卡的UUID进行删除
[root@Node1 ~]#rm -rf /etc/udev/rules.d/70-persistent-net.rules
#修改网卡配置文件
[root@Node1 ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens32
TYPE=Ethernet
BOOTPROTO=static
NAME=ens32
DEVICE=ens32
ONBOOT=yes
IPADDR=192.168.75.131 #修改网卡-->记得把UUID都删掉
PREFIX=24
GATEWAY=192.168.75.2
DNS1=114.114.114.114
关闭防火墙与selinux
[root@Node1 ~]# systemctl stop firewalld &&systemctl disable firewalld
[root@Node1 ~]# sed -i "s#SELINUX=enforcing#SELINUX=disabled#g" /etc/selinux/config
设置主机名以及重启
[root@Node1 ~]# hostnamectl set-hostname LJW --static
[root@Node1 ~]# su -
[root@LJW ~]# reboot
作用:是一个开源的网络探测和安全扫描程序
语法:nmap+选项+ip
选项:
#扫描本机IP
[root@LJW ~]# nmap 127.0.0.1
Starting Nmap 6.40 ( http://nmap.org ) at 2023-07-13 14:27 CST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.0000030s latency).
Not shown: 998 closed ports
PORT STATE SERVICE
22/tcp open ssh
25/tcp open smtp
Nmap done: 1 IP address (1 host up) scanned in 0.06 seconds
作用:能实现一个纯文本界面的WWW浏览器
语法:elinks+ 选项 + IP
选项:
#安装elinks工具
[root@LJW ~]# yum -y install elinks
#直接访问ip
[root@LJW ~]# elinks 192.168.75.131
介绍:
安装组件:
[root@LJW ~]# ls /mnt/cdrom/Packages/openssh-*
/mnt/cdrom/Packages/openssh-7.4p1-16.el7.x86_64.rpm #核心文件
/mnt/cdrom/Packages/openssh-askpass-7.4p1-16.el7.x86_64.rpm #支持对话窗口,显示x系统
/mnt/cdrom/Packages/openssh-clients-7.4p1-16.el7.x86_64.rpm #客户端
/mnt/cdrom/Packages/openssh-keycat-7.4p1-16.el7.x86_64.rpm #私钥、公钥相关
/mnt/cdrom/Packages/openssh-server-7.4p1-16.el7.x86_64.rpm #服务器软件包
#查看服务状态
[root@LJW ~]# systemctl status sshd
.........
#安装相对应的组件
[root@LJW ~]# yum -y install openssh*
sshd服务的管理
sshd服务到的配置文件说明
ssh 主机名@远程主机名或者IP地址 -p 端口号
ssh -l [远程主机用户名] [远程服务器主机名或IP 地址] -p port
#创建一个用户-->用于ssh登录
[root@LJW ~]# useradd liangjiawei
[root@LJW ~]# echo 1 | passwd --stdin liangjiawei
#登录
[root@LJW ~]# ssh [email protected] -p 22
The authenticity of host '192.168.75.131 (192.168.75.131)' can't be established.
ECDSA key fingerprint is SHA256:Crx9dyaKjSYIokQ0bnJYaSkvyzcN9RiuGhkb58BnBrA.
ECDSA key fingerprint is MD5:b9:b5:b3:c4:51:31:3b:e1:1b:fd:42:5b:91:7a:c4:aa.
Are you sure you want to continue connecting (yes/no)? yes #这里确认是登陆
[email protected]'s password:
#查看登陆的人是谁
[liangjiawei@LJW ~]$ whoami
liangjiawei
[liangjiawei@LJW ~]$ pwd
/home/liangjiawei
如果一旦登陆成功了,信息将会记录在本服务器的.ssh/的目录下
#查看一下信息
[root@LJW ~]# ls .ssh/known_hosts
.ssh/known_hosts
[root@LJW ~]# cat .ssh/known_hosts
192.168.75.131 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFlDc1WbjEQ02MaMmDVx+iJIIeL5CBf2NgB2yPSNUuttnte3jxjFJaqhxzvSraZ8LwMBmV+PR+TmkXTVGHjtg9w=
#格式就是:记录登陆的IP,和记录密码-->密码是经过算法进行的
#如果使用xshell登陆
[c:\~]$ ssh [email protected]
Connecting to 192.168.75.131:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.
WARNING! The remote SSH server rejected X11 forwarding request.
Last login: Sat Jul 15 10:46:42 2023 from 192.168.75.131
[liangjiawei@LJW ~]$
#信息同样会记录到这个文件当中
ssh的配置文件路径:
#先启动ssh服务
[root@LJW ~]# systemctl start sshd
#探测一下本机的网络情况
[root@LJW ~]# nmap 127.0.0.1
Starting Nmap 6.40 ( http://nmap.org ) at 2023-07-15 11:01 CST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.0000030s latency).
Not shown: 998 closed ports
PORT STATE SERVICE
22/tcp open ssh
25/tcp open smtp
Nmap done: 1 IP address (1 host up) scanned in 0.42 seconds
#最后再查看一下端口情况
[root@LJW ~]# netstat -antlup | grep sshd
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 6346/sshd
tcp 0 0 192.168.75.131:22 192.168.75.1:65187 ESTABLISHED 6662/sshd: liangjia
tcp 0 0 192.168.75.131:22 192.168.75.1:54755 ESTABLISHED 6608/sshd: root@pts
tcp6 0 0 :::22 :::* LISTEN 6346/sshd
修改配置文件就可以达到某些功能
#在操作配置文件前,建议最好是备份一个
[root@LJW ~]# cp -a /etc/ssh/sshd_config{,.bak}
#修改配置文件-->修改登录的端口号
[root@LJW ~]# vim /etc/ssh/sshd_config
........
#在默认的端口号下面直接添加一个端口号
17 #Port 22
18 Port 2222
........
#然后保存退出-->重启服务
[root@LJW ~]# systemctl restart sshd
#尝试使用2222号端口登录
[root@LJW ~]# ssh [email protected] -p 2222
[email protected]'s password:
Last login: Sat Jul 15 10:55:34 2023 from 192.168.75.1
[liangjiawei@LJW ~]$
#修改配置文件
[root@LJW ~]# vim /etc/ssh/sshd_config
..........
32 SyslogFacility AUTHPRIV-->这里就是指定了日志类型
#而这个文件就定义了AUTHPRIV这种类型的日志存放在哪儿
[root@LJW ~]# vim /etc/rsyslog.conf
...........
57 authpriv.* /var/log/secure
#因此sshd服务的日志文件就在/var/log/secure
[root@LJW ~]# tail -2 /var/log/secure
Jul 15 11:27:02 LJW sshd[6727]: Disconnected from 192.168.75.131 port 37958
Jul 15 11:27:02 LJW sshd[6725]: pam_unix(sshd:session): session closed for user liangjiawei
#修改配置文件
[root@LJW ~]# vim /etc/ssh/sshd_config
..........
38 PermitRootLogin yes #把#取消,实现进制root远程登录
........
#重启服务
[root@LJW ~]# systemctl restart sshd
#然后到这里为止,你是没法使用root登录,只能通过普通用户登录;
[root@LJW ~]# ssh [email protected]
#把需要提醒的信息给到/etc/motd文件
[root@LJW ~]# echo "Your Operation is Recordls" > /etc/motd
#然后重新登录
[root@LJW ~]# ssh [email protected]
[email protected]'s password:
Last login: Sat Jul 15 11:08:11 2023 from 192.168.75.131
Your Operation is Recordls
#修改配置文件
[root@LJW ~]# vim /etc/ssh/sshd_config
..............
79 GSSAPIAuthentication yes
...........
115 #UseDNS yes
/etc/hosts.allow文件
/etc/hosts.deny文件
若果一个ip出现在两个文件当中,以允许的文件为基准
#书写规则
[root@LJW ~]# vim /etc/hosts.allow
.....#在末行里边添加
sshd:192.168.75.1 #可以是网段也可以是具体的IP
[root@LJW ~]# vim /etc/hosts.deny
.....#禁止整个网段
all:192.168.75
原理:ssh登陆使用秘钥文件进行登陆,结合PAM模块,实现双因子登陆
#去到75.131客户端上输入
[root@Node1 ~]# ssh-keygen #这个是生成公钥文件的命令
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): #这里就是指定密钥文件的默认路径
Enter passphrase (empty for no passphrase): #这里的passphrase 密码是对生成的私匙文件(/root/.ssh/id_dsa)的保护口令,如果不设置可以回车。
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:IHLZssiRCKWPcqtT+P6xQ6Xp6giKoR1GWbB6PwXK+J4 root@Node1
The key's randomart image is:
+---[RSA 2048]----+
|..o |
|.o + o |
|o = B o |
| B O =.. |
|=.@ .+. S |
|o=.o+. |
|oo=o+ |
|*B.oo+ |
|*+Eoo. |
+----[SHA256]-----+
[root@Node1 ~]#
#这里查看一下密钥文件
[root@Node1 ~]# ls .ssh/
id_rsa id_rsa.pub known_hosts
#使用命令把公钥文件给到服务器端
[root@Node1 ~]# ssh-copy-id -i 192.168.75.130
[email protected]'s password:
Number of key(s) added: 1
Now try logging into the machine, with: "ssh '192.168.75.130'"
and check to make sure that only the key(s) you wanted were added.
#这里就能够完成依赖密钥登陆
[root@Node1 ~]# ssh 192.168.75.130
Last login: Wed Feb 16 20:31:54 2022 from node0
请注意你的操作
[root@node0 ~]#
#那么如果端口号改变了应该如何指定端口号?
[root@Node1 ~]# ssh-copy-id -i "-p 222 [email protected]"
fail2ban软件的官方地址:http://www.fail2ban.org
服务器端准备好软件包
[root@node0 ~]# cd /usr/local/src/
[root@node0 src]# ls
fail2ban-0.8.14.tar.gz
#解压软件包
[root@node0 src]# tar -xf fail2ban-0.8.14.tar.gz
[root@node0 src]# ls
fail2ban-0.8.14
#一个陌生的软件包如何安装,-->每个软件包的安装肯定会有readme这类型的文件;
[root@node0 src]# cd fail2ban-0.8.14/
[root@node0 fail2ban-0.8.14]# ls README.md
README.md
[root@node0 fail2ban-0.8.14]# vim README.md
.......................
To install, just do:
tar xvfj fail2ban-0.8.12.tar.bz2
cd fail2ban-0.8.12
python setup.py install
...................
#从教程上面可以看到是用python来安装的,-->那么我们python的环境就需要大于2.4的版本
[root@node0 fail2ban-0.8.14]# python -V
Python 2.7.5
#这里就可以进行安装部署了
#这里一定要注意路径,进入到fail2ban的目录文件里边操作
[root@node0 fail2ban-0.8.14]# python setup.py install
....
#安装好了就要查看一下有没有报错
[root@node0 fail2ban-0.8.14]# echo $?
0
安装好了fail2ban,查看一下配置文件
[root@node0 fail2ban-0.8.14]# ls /etc/fail2ban/
action.d fail2ban.conf fail2ban.d filter.d jail.conf jail.d
#这里简单了解一下fail2ban的主要文件
[root@node0 fail2ban-0.8.14]# ll /etc/fail2ban/
总用量 32
drwxr-xr-x 2 root root 4096 2月 16 23:15 action.d #动作文件,默认的文件,设置iptables以及mail等动作的文件
-rw-rw-r-- 1 root root 1525 8月 20 2014 fail2ban.conf #这里定义了fail2ban的日志几倍、日志位置以及sock套接字文件
drwxr-xr-x 2 root root 6 2月 16 23:15 fail2ban.d #条件文件夹,内含默认文件。过滤日志关键内容设置
drwxr-xr-x 2 root root 4096 2月 16 23:15 filter.d
-rw-rw-r-- 1 root root 19316 8月 20 2014 jail.conf #主要配置文件,模块化。主要设置启用ban动作的服务及动作阀值
drwxr-xr-x 2 root root 6 2月 16 23:15 jail.d #这里也可以生效的文件夹
安装好了fail2ban的软件,那么我们如何知道启动脚本是哪一个?
#在这么多的源码文件中,我们也不知道如何找到启动的脚本,因此有个知识点需要掌握;
#凡是启动的脚本都含有开机自动的指令,就会有chkconfig这类似的选项
[root@node0 fail2ban-0.8.14]# grep chkconfig ./* -R --color
./files/redhat-initd:# chkconfig: - 92 08
#这里能够查找出来,于是我们就可以把源码的启动脚本复制到/etc/init.d/的目录下
[root@node0 fail2ban-0.8.14]# cp ./files/redhat-initd /etc/init.d/fail2ban
[root@node0 fail2ban-0.8.14]# ll /etc/init.d/fail2ban
-rwxr-xr-x 1 root root 2141 2月 16 23:25 /etc/init.d/fail2ban
#到这里就代表fail2ban基本完成安装
jail.conf的配置如下
#要养成良好的习惯,修改配置文件最好是备份
[root@node0 ~]# cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.conf.bak
#打开配置文件
[root@node0 ~]# vim /etc/fail2ban/jail.conf
.............
27 [DEFAULT] #这里是全局配置
32 ignoreip = 127.0.0.1/8 #这里是忽略的ip李彪,不受限制,指定本机环回地址不受限制
41 bantime = 600 #这里是屏蔽时间,默认是秒,600s=10分钟
45 findtime = 600 #这里代表的是这个时间段内,超过规定的次数就会被ban
48 maxretry = 3 #这里指的是最多的连接次数
61 backend = auto #这里是日志修改的检测机制,有gamin、poling、auto三种
...........
94 [ssh-iptables] #这里开始就是单个服务的设置,我们要找到ssh这个服务-->或者自己写也行
96 enabled =true #这里是是否激活选项
97 filter = sshd #这里是锅炉规则的filter的名字,这里对应的是filter.d目录下的sshd.conf文件
98 action = iptables[name=SSH, port=ssh, protocol=tcp]
99 sendmail-whois[name=SSH, dest=[email protected], sender=[email protected], sendername="Fail2 Ban"]
#这里就是动作的设定相关参数,对应的文件也是action.d/iptables.conf文件
#这里面包含,iptables的规则,针对的服务是ssh,端口也是ssh,也可以改为22端口,protocol协议是tcp
#邮件设定:设置邮件、等参数
100 logpath = /var/log/sshd.log #这里是检测系统的登陆日志文件,fail2ban是监控日志而触发的报警,因此这里要写ssh的日志文件保存的位置/var/log/secure
101 maxretry = 5 #这个是最大的密码验证时效的次数
102 bantime = 3600 #禁止用户1小时访问主机
103 findtime = 300 #这里是5分钟内出现规定次数就开始ban
#然后启动服务
[root@node0 ~]# /etc/init.d/fail2ban start
Starting fail2ban (via systemctl): [ 确定 ]
[root@node0 ~]#
#然后清空一下日志文件查看
[root@node0 ~]# > /var/log/secure
#最后使用75.131登陆查看-->
[root@Node1 ~]# ssh [email protected]
[email protected]'s password:
Permission denied, please try again.
[email protected]'s password:
Permission denied, please try again.
[email protected]'s password:
Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
#再次登陆就不能了
[root@Node1 ~]# ssh [email protected]
ssh: connect to host 192.168.75.130 port 22: Connection refused
#回到服务器端查看iptables的规则链
[root@node0 ~]# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
fail2ban-SSH tcp -- anywhere anywhere tcp dpt:ssh
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain fail2ban-SSH (1 references)
target prot opt source destination
REJECT all -- 192.168.75.131 anywhere reject-with icmp-port-unreachable
RETURN all -- anywhere anywhere
#还可以使用fail2ban的客户啊短来查看
#查看规则链是否生效
[root@node0 ~]# fail2ban-client status
Status
|- Number of jail: 1
`- Jail list: ssh-iptables
#这里就可以查看一下具体的一条规则链,然后如果看到ban的ip就证明实验成功
[root@node0 ~]# fail2ban-client status ssh-iptables
Status for the jail: ssh-iptables
|- filter
| |- File list: /var/log/secure
| |- Currently failed: 0
| `- Total failed: 3
`- action
|- Currently banned: 1
| `- IP list: 192.168.75.131
`- Total banned: 1
#最后查看一下fail2ban的日志文件
[root@node0 ~]# tail /var/log/fail2ban.log
........
2022-02-17 00:18:16,349 fail2ban.actions[7655]: WARNING [ssh-iptables] Ban 192.168.75.131
实验过程中需要注意的几个点