Hi szóval nekem ez a doku nem egyértelmű, az elején csak directed és inband, azután either tr or non-tr mode. szóval hogyisvanez? less /usr/share/zorp/pylib/Zorp/Http.py Using parent proxies There are two things to be checked to use parent proxies. First you have to pick a router which makes the proxy connect to the parent proxy. The two possibilities are InbandRouter(), or DirectedRouter(). The second thing to set is the parent_proxy and parent_proxy_port attribute in the HttpProxy instance. Setting these attributes results in proxy requests to be emitted to the target server in either transparent or non-transparent mode. The parent proxy attributes can be set in both the configuration phase (e.g. config() event), and later on a per-request basis. Example (Sample for using parent proxies in HTTP) class MyHttp(HttpProxy): def config(self): HttpProxy.config(self) self.parent_proxy = "proxy.example.com" self.parent_proxy_port = 3128 --- a konfighoz még ennyit: Service("intra_http", VirIntraHttp, router=TransparentRouter()) ------------------------------------------------------- Sziasztok! zorp gpl 2.0.8. kérdés: lehet-e olyat, hogy a zorp elkapja transparent proxyjával és továbbítja egy másik localhoston lévő proxynak? May 19 12:13:45 zorp intra[15992]: (noname/nosession): Error parsing policy file; filename='/etc/ zorp/policy.py' May 19 12:13:45 zorp intra[15992]: (noname/nosession): Error booting & parsing policy; May 19 12:13:45 intra[16252]: (Log thread): File "/etc/zorp/policy.py", line 297 May 19 12:13:45 intra[16252]: (Log thread): self.parent_proxy = "127.0.0.1" May 19 12:13:45 intra[16252]: (Log thread): ^ May 19 12:13:45 intra[16252]: (Log thread): SyntaxError: invalid syntax May 19 12:13:48 intra[15992]: (noname/nosession): Error loading initial policy, exiting; konfig: class PPIntraHttp(HttpProxyURIFilter): matcher=RegexpFileMatcher('/etc/zorp/http.deny', '/etc/zorp/http.ignore') def config(self): HttpProxyURIFilter.config(self) self.transparent_mode = TRUE self.parent_proxy = "127.0.0.1" self.parent_proxy_port = 8080