思科模拟器中如何限制路由器访问TFTP,其他不限制?
发布网友
发布时间:2022-04-23 01:15
我来回答
共1个回答
热心网友
时间:2023-10-09 21:19
假设tftp服务器的IP地址为 192.168.1.200/24
假设要控制的网段为192.168.0.0/24
假设路由器与tftp服务器的接口为fastethernet0/0,那么写如下ACL
enable
configure terminal
access-list 101 deny udp 192.168.0.0 0.0.0.255 host 192.168.1.200 eq tftp
access-list 101 permit ip any any
interface fastethernet0/0
ip access-group 101 out