ACL访问控制列表实验

杀马特。学长 韩版系。学妹 提交于 2019-11-26 05:16:47

ACL访问控制列表实验知识点:

http://blog.csdn.net/qq_39414668/article/details/79532063

标准访问控制列表:

拓扑图:

实验拓扑图

实验步骤:

1.给PC0和服务器配IP、掩码、网关
2.配置路由器——接口配IP、掩码、设置ACL、将ACL应用在端口上
enable
configure terminal
interface fa0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
interface fa0/1
ip address 192.168.3.2 255.255.255.0
no shutdown
exit
access-list 1 deny 192.168.1.2
interface fa0/1
ip access-group 1 out

扩展访问控制列表实验:

拓扑图:

拓扑图

实验步骤:

1.给PC0和服务器配IP、掩码、网关
2.配置路由器——接口配IP、掩码、设置ACL、将ACL应用在端口上
enable
configure terminal
interface fa0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
interface fa0/1
ip address 192.168.3.2 255.255.255.0
no shutdown
exit
access-list 100 permit tcp host 192.168.1.2 host 192.168.3.2 eq www
access-list 100 deny icmp host 192.168.1.2 host 192.168.3.2 echo
interface fa0/0
ip access-group 100 in

完整实验:
https://download.csdn.net/download/qq_39414668/10286987

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!