网络系统集成实验--配置 IPv6 ACL

题目

http://www.qdc.cn/a/xibushezhi/jisuanji/sikewangyuan/ConnectNet6_zh_1/course/files/4.3.2.6%20Packet%20Tracer%20-%20Configuring%20IPv6%20ACLs.pdf

拓扑

配置过程

1
2
3
4
5
6
7
8
9
10
11
R1>en
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)# ipv6 access-list BLOCK_HTTP
R1(config-ipv6-acl)#deny tcp any host 2001:DB8:1:30::30 eq www
R1(config-ipv6-acl)#deny tcp any host 2001:DB8:1:30::30 eq 443
R1(config-ipv6-acl)#permit ip any any
R1(config-ipv6-acl)#ex
R1(config)#int g0/1
R1(config-if)#ipv6 traffic-filter BLOCK_HTTP in
R1(config-if)#

·

1
2
3
4
5
6
7
8
9
R3>en
R3#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R3(config)#ipv6 access-list BLOCK_ICMP
R3(config-ipv6-acl)#deny icmp any any
R3(config-ipv6-acl)#permit ip any any
R3(config-ipv6-acl)#ex
R3(config-if)#inter g0/0
R3(config-if)#ipv6 traffic-filter BLOCK_ICMP out
------------- 本文结束 感谢您的阅读-------------