强制youtube通过squid中的cache_peer缓存

时间:2013-11-07 22:04:03

标签: proxy youtube squid peer

我想强制squid代理使用与Youtube相关的代理缓存对等体。

我的主要鱿鱼服务器在服务器A上,它是一个非常简单的设置,几乎没有规则,一切都是授权的。

服务器A通过OpenVPN链接到服务器B.服务器B也有一个squid代理设置并运行良好(使用ssh隧道测试,没问题)。

在服务器A上我添加了这些规则:

acl youtube_videos_regx url_regex -i ^http://[^/]+\.youtube\.com/videoplayback\?
acl youtube_videos_regx url_regex ^http://(.*?)/get_video\?
acl youtube_videos_regx url_regex ^http://(.*?)/videodownload\?
acl youtube_videos_regx url_regex ^http://(.*?)/videoplayback\?
acl youtube_videos dstdomain .youtube.com
acl youtube_videos dstdomain .youtube-nocookie.com
acl youtube_videos dstdomain .googlevideo.com
acl youtube_videos dstdomain .ytimg.com
cache_peer 10.4.0.1 parent 3128 0 proxy-only no-query connect-timeout=5
cache_peer_access 10.4.0.1 allow youtube_videos
cache_peer_access 10.4.0.1 allow youtube_videos_regx
cache_peer_access 10.4.0.1 deny all

但这似乎不起作用:

1383861430.377    578 192.168.0.103 TCP_MISS/200 192976 GET http://r9---sn-5hn7ym7e.googlevideo.com/videoplayback? - HIER_DIRECT/208.117.250.14 application/octet-stream
1383861430.636    935 192.168.0.103 TCP_MISS/200 238032 GET http://r9---sn-5hn7ym7e.googlevideo.com/videoplayback? - HIER_DIRECT/208.117.250.14 application/octet-stream
1383861430.642   2353 192.168.0.103 TCP_MISS/200 238032 GET http://r9---sn-5hn7ym7e.googlevideo.com/videoplayback? - HIER_DIRECT/208.117.250.14 application/octet-stream
1383861432.467    617 192.168.0.103 TCP_MISS/200 192976 GET http://r9---sn-5hn7ym7e.googlevideo.com/videoplayback? - HIER_DIRECT/208.117.250.14 application/octet-stream

有时它有效:

1383860987.725    125 192.168.0.103 TCP_MISS/204 353 GET http://r20---sn-5hn7ym7r.googlevideo.com/generate_204 - FIRSTUP_PARENT/10.4.0.1 text/html

可能是因为数据类型?

如果是这样,我不知道要添加什么样的规则。

提前致谢。

1 个答案:

答案 0 :(得分:2)

好的,我找到了解决问题的方法。

我只需将其添加到我的配置文件中:

never_direct allow youtube_videos
never_direct allow youtube_videos_regx

这2行,强制鱿鱼不使用直接连接到我的2 acl。