Created
October 8, 2017 09:11
-
-
Save krishnachaitanya7/414d214f411fb59323f1476fee8627ab to your computer and use it in GitHub Desktop.
Used for allowing tunneled SSH connection requests. Future Work to be implemented in Dante
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
acl SSL_ports port 443 | |
acl Safe_ports port 80 # http | |
acl Safe_ports port 21 # ftp | |
acl Safe_ports port 443 # https | |
acl Safe_ports port 70 # gopher | |
acl Safe_ports port 210 # wais | |
acl Safe_ports port 1025-65535 # unregistered ports | |
acl Safe_ports port 280 # http-mgmt | |
acl Safe_ports port 488 # gss-http | |
acl Safe_ports port 591 # filemaker | |
acl Safe_ports port 777 # multiling http | |
acl CONNECT method CONNECT | |
http_port 3128 | |
acl localnet src 127.0.0.1 # RFC1918 possible internal network | |
acl mohan src 10.32.32.46 | |
http_access allow Safe_ports | |
http_access allow localnet | |
http_access allow mohan | |
dns_nameservers 10.16.25.13 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment