> Подскажите, пожалуйста,
> Как на Cisco 871 заблокировать скачивание определённых типов файлов, например mp3, exe?
> Есть такая возможность?Лучше FreeBSD Squid 3.5.10 Squid думаю
acl blocked_files urlpath_regex -i "/usr/local/etc/squid/special_files/blocked_files.txt"
http_access allow static !blocked_files
blocked_files.txt
в нутри файла txt
\.exe$
Cisco
Router(config)# ip cef
Router(config)#class-map match-any bad-traffic
Router(config-cmap)# match protocol http url "*readme.exe*"
Router(config-cmap)# match protocol http mime "*readme.exe*"
Router(config)#class-map match-all nbar
Router(config)# policy-map mark-bad-traffic
Router(config-pmap)# class bad-traffic
Router(config-pmap)# set ip dscp 1
Router(config)# interface serial 0/0
Router(config-if)#service-policy input mark-bad-traffic
Router(config)# access-list 190 deny ip any any dscp 1
Router(config)# access-list 190 permit ip any any
Router(config)# interface GigabitEthernet 0/0
Router(config-if)# ip access-group 190 out