2017-04-21 3 views

Antwort

3

Sie können die folgende Konfiguration versuchen, das gewünschte Ergebnis zu erhalten:

#Will set the ACL if path matches 
acl allowed_url path_reg */mypages/* 

#Based on the previouslt set ACL , we can reject or allow connections 
#Accept/whitelist if matches 
tcp_request connection accept if allowed_url 
#Reject if not 
tcp_request connection reject if !allowed_url 

Es gibt anderen Pfad ACL-Richtlinien übereinstimmt, gefunden Path-directives .Verwendung diejenige, die am besten in Ihrem Fall paßt.

+0

das ist sehr hilfreich. Danke. –

Verwandte Themen