ACL访问控制列表——扩展访问控制列表(实操!!!)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ACL访问控制列表——扩展访问控制列表(实操!!!)相关的知识,希望对你有一定的参考价值。

实验环境

  • 一台Linux系统做服务器
  • 两台pc机
    Linux:192.168.100.100
    win10:192.168.1.2
    win10-2:192.168.2.2

实验需求

  • 允许win10访问Linux的web服务
  • 禁止win10访问Linux的其他服务
  • 允许win10访问win10-2主机

实验拓扑图

技术图片

1,打开Linux服务器,安装http和vsftp两个服务

[root@localhost ~]# yum install vsftpd -y   ##安装vsftp服务
[root@localhost ~]# yum install httpd -y    ##安装http服务

2,修改Linux服务器的网卡信息,固定Ip为192.168.100.100,并且重新启动网卡

[root@localhost~]# vim /etc/sysconfig/network-scripts/ifcfg-ens33
##修改网卡信息
[root@localhost ~]# service network restart   ##重启网卡

技术图片

3,将Linux和两台win10分别连接vmnet三个网卡上

Linux服务器

技术图片

win10

技术图片

win10-2

技术图片

4,分别给win10和win10-2配置一个固定的IP地址和网关

win10配置固定ip和网关

技术图片

win10-2配置固定ip和网关

技术图片

5,打开Linux服务器编辑网站内容并开启http服务

[root@localhost ~]# cd /var/www/html/   ##切换到网站的站点中
[root@localhost html]# vim index.html    ##编辑网站信息
[root@localhost html]# systemctl start httpd  ##开启网站服务
[root@localhost html]# systemctl stop firewalld.service   ##关闭防火墙
[root@localhost html]# setenforce 0   ##关闭增强型功能
[root@localhost html]# systemctl start vsftpd   ##开启vsftp服务
[root@localhost html]# cd /var/ftp  ##切换到ftp站点目录下
[root@localhost ftp]# echo "this is test ftp" > ftp.txt  ##创建一个测试文件

技术图片

[root@localhost html]# netstat -ntap | egrep ‘(21|80)‘   
##查看两个服务的端口,看服务服务有没有正常启动

技术图片

6,配置R1路由器,测试pc机能否访问Linux服务器

R1#conf t  ##全局模式
R1(config)#int f0/0   ##进入接口f0/0
R1(config-if)#ip add 192.168.1.1 255.255.255.0  ##配置网关
R1(config-if)#no shut   ##开启接口
R1(config-if)#int f0/1
R1(config-if)#ip add 192.168.100.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#int f1/0
R1(config-if)#ip add 192.168.2.1 255.255.255.0
R1(config-if)#no shut

用win10访问Linux服务

技术图片
技术图片

7,打开R1路由器配置扩展访问控制列表

R1(config)#access-list 100 permit tcp host 192.168.1.2 host 192.168.100.100 eq www
##允许win10访问Linux服务器的网站服务
R1(config)#access-list 100 deny ip host 192.168.1.2 host 192.168.100.100
##禁止win10访问Linux服务
R1(config)#access-list 100 permit ip host 192.168.1.2 192.168.2.0 0.0.0.255
##允许win10访问2.0网段的机器
R1(config)#do show access-li  ##查看控制访问列表
R1(config)#int f0/0   ##进入f0/0接口
R1(config-if)#ip access-group 100 in  应用于接口

8,测试win10能否访问Linux的网站服务,能不能访问2.0网段

访问Linux服务器的web服务

技术图片

访问Linux服务的ftp服务

技术图片

访问2.0网段的主机

技术图片

谢谢阅读!!!

以上是关于ACL访问控制列表——扩展访问控制列表(实操!!!)的主要内容,如果未能解决你的问题,请参考以下文章

ACL 访问控制列表

ACL(访问控制列表)的分类和作用?

ACL(access control list)访问控制列表(理论篇)

ACL(访问控制列表)详解

ACL扩展访问控制列表详解

acl访问控制列表