Advertisement
albspirit86

bypass single LAN ip

Oct 15th, 2014
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #bypass url
  2. acl bypass_ssl dstdomain .onlinebank.com
  3. acl bypass_ssl dstdomain .anotherbank.com
  4. ssl_bump none bypass_ssl
  5. ssl_bump server-first all
  6.  
  7. or bypass single LAN ip
  8. #client100
  9. acl bypass_ssl src 192.168.0.100
  10. ssl_bump none bypass_ssl
  11. ssl_bump server-first all
  12.  
  13. #client1
  14. acl bypass_ssl src 192.168.0.100
  15. ssl_bump none bypass_ssl
  16. ssl_bump server-first all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement