首页 电脑网络 电脑知识 正文

acl访问控制列表实验

acl访问控制列表实验 实验拓扑图如上 www.2cto.com 1.配置IP地址R1与R3 Loopback0=x.x.x.x/24 IP=192.168.yx.x/242.用rip宣告,测通信 3. R1与R3配置VTY与特权口令cisco,测试能否TELNET配置R1R1(config)#i

acl访问控制列表实验   acl访问控制列表实验
  实验拓扑图如上     www.zhishiwu.com   1.配置IP地址R1与R3   Loopback0=x.x.x.x/24    IP=192.168.yx.x/24 2.用rip宣告,测通信   3. R1与R3配置VTY与特权口令cisco,测试能否TELNET 配置R1 R1(config)#int s0/3/0 R1(config-if)#clo rat 64000 R1(config-if)#ip add 192.168.21.1 255.255.255.0 R1(config-if)#no sh R1(config-if)#exit R1(config)#int l 0 R1(config-if)#ip add 1.1.1.1 255.255.255.0 R1(config-if)#exit R1(config)#router rip  R1(config-router)#net 1.0.0.0 R1(config-router)#net 192.168.21.0 R1(config-router)#exit R1(config)#ena pass cisco R1(config)#line vty 0 4 R1(config-line)#pass cisco R1#tel 3.3.3.3 Trying 3.3.3.3 ...   User Access Verification Password:  R3>en(R1telnetR3成功) Password:  R3# 配置R2 R2(config)#int s0/3/1 R2(config-if)#cl ra 64000 R2(config-if)#no sh R2(config-if)#ip add 192.168.32.2 255.255.255.0 R2(config-if)#int s0/3/0 R2(config-if)#no sh R2(config-if)#ip add 192.168.21.2 255.255.255.0 R2(config-if)#exit R2(config)#router rip R2(config-router)#net 192.168.21.0 R2(config-router)#net 192.168.32.0 配置R3 R3(config)#int s0/3/0 R3(config-if)#no sh %LINK-5-CHANGED: Interface Serial0/3/0, changed state to up R3(config-if)# R3(config-if)# %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/3/0, changed state to up R3(config-if)#ip add 192.168.32.3 255.255.255.0 R3(config-if)#int l 0 %LINK-5-CHANGED: Interface Loopback0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up R3(config-if)# R3(config-if)# ip add 3.3.3.3 255.255.255.0 R3(config-if)#exit R3(config)#router rip R3(config-router)#net 192.168.32.0 R3(config-router)#net 3.0.0.0 R3(config)#ena pass cisco R3(config)#line vty 0 4 R3(config-line)#pass cisco R3(config-line)# 4.禁止R2访问R1:(R3能否PING通R1的s0//3/0.反之)   查看通信    清除路由表信息或邻居   R1--pingR2/R3,查看连通,为什么PIng不通(刚开始能够ping通,因为路由表没有更新,清理路由表之后ping不通因为acl)
  在R1上面配置 R1(config)#access-list 1 deny 192.168.21.2 R1(config)#access-list 1 deny 192.168.32.2 R1(config)#access-list 1 per any R1(config)#int s0/3/0 R1(config-if)#ip acc R1(config-if)#ip access-group 1 in R1(config-if)#exi R1(config)#exi R1#sh ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area        * - candidate default, U - per-user static route, o - ODR        P - periodic downloaded static route Gateway of last resort is not set      1.0.0.0/24 is subnetted, 1 subnets C       1.1.1.0 is directly connected, Loopback0 R    3.0.0.0/8 [120/2] via 192.168.21.2, 00:00:35, Serial0/3/0 C    192.168.21.0/24 is directly connected, Serial0/3/0 R    192.168.32.0/24 [120/1] via 192.168.21.2, 00:00:35, Serial0/3/0 R1#clear ip route * R1#sh ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP        D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2        E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP        i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area        * - candidate default, U - per-user static route, o - ODR        P - periodic downloaded static route Gateway of last resort is not set      1.0.0.0/24 is subnetted, 1 subnets C       1.1.1.0 is directly connected, Loopback0 C    192.168.21.0/24 is directly connected, Serial0/3/0 R3#ping 1.1.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 62/62/63 ms R3#ping 1.1.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds: ..... Success rate is 0 percent (0/5
  5.(删除前ACL配置)禁止R1 telnet R3使用扩展, R3配置 R1#conf t Enter configuration commands, one per line.  End with CNTL/Z. R1(config)#no acc R1(config)#no access-list 1 R3(config)#access-list 101 deny tcp host 1.1.1.1 host 192.168.32.3 eq 23 R3(config)#acc 101 deny tcp ho 192.168.21.1 ho 192.168.32.3 ea 23 ^ % Invalid input detected at '^' marker.   R3(config)#acc 101 deny tcp ho 192.168.21.1 ho 192.168.32.3 eq 23 R3(config)#acc 101 per ip any any R3(config)#int s0/3/0 R3(config-if)#ip acc R3(config-if)#ip access-group 101 in R1#tel 192.168.32.3 Trying 192.168.32.3 ... % Connection timed out; remote host not responding  
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)

本文转载自互联网,如有侵权,联系删除

本文地址:https://www.peigen.net/post/10598.html

相关推荐

板栗怎么私信主播?

板栗直播可以看直播,想必有一些用户已经知道,如果遇见自己喜欢的主播,我们该怎么私信主播呢?为此,小编特意查询资料,把板栗如何私信主播的方法分享给大家。 1)打开板栗,点击打开要私信的直播,接着点击左上...

电脑知识 2024-11-30 0 138

e兼职APP怎么进行身份认证?

e兼职app下载最靠谱的大学生兼职,帮助大学生提升技能,借用靠谱企业的力量培育大学生的社会经验与专业技能,最快5秒内找到心仪的兼职,大众点评最好的兼职软件。不过这么好用的软件,在使用前需要进行身份验证...

电脑知识 2024-11-30 0 141

口碑农场邀请码怎么获取

口碑农场是口碑app中新增加的一个玩法。口碑农场邀请码怎么获取?想要获得口碑农场的邀请码,具体该怎么操作?下面就是口碑农场邀请码获取教程,一起来看一下。...

电脑知识 2024-11-30 0 132

伙星app怎么更换主页封面?

伙星是一款关于相机相关的应用,能够让用户来制作各种好玩的、搞笑的照片,并且还有着许许多多的特效,能够让你看到很多很好玩的内容,除了这些,用户可以在里面进行拍照和漂流瓶交友等,那么在伙星app中要怎么更...

电脑知识 2024-11-30 0 118

会声会影怎么添加背景音乐?

会声会影2018是一款强大的照片|图片|视频制作、剪辑软件,具有多种的视频编辑功能和制作动画效果。但是如果想要让自己制作的视频有意思,背景音乐一定少不了,下面,小编就为大家介绍下会声会影添加背景音乐方...

电脑知识 2024-11-30 0 136

如何制作高质量的PPT?

如何制作高质量的PPT?不管是对于一个学生、老师还是上班族Word、PPT、表格这三个办公软件都是必修的技能了。我们如何将这些做得优秀?如何脱衣而出?所以呀今天我们就先来讨论一下如何制作PPT。如果...

电脑知识 2024-11-30 0 122

感谢您的支持