Is it possible to allow specific user or IP to bypass squidguard?grub2: how to bypass “press any key”?bypass firewall with Openvpn + SquidAllow specific linux user to bind to port 443Squid: how to block a website, but allow access to certain foldersallow just running of two specific programs (scripts) for user's accountAllow specific port through iptablesHow to find specific RPi image?Allow non-root user to use timedatectlsquid with urlpath_regex not working with httpsSquid block non-proxy user
Why does Kotter return in Welcome Back Kotter?
Why can't I see bouncing of a switch on an oscilloscope?
How do I create uniquely male characters?
Mage Armor with Defense fighting style (for Adventurers League bladeslinger)
Do VLANs within a subnet need to have their own subnet for router on a stick?
What is the offset in a seaplane's hull?
Why not use SQL instead of GraphQL?
Why are electrically insulating heatsinks so rare? Is it just cost?
Test if tikzmark exists on same page
Fencing style for blades that can attack from a distance
What do the dots in this tr command do: tr .............A-Z A-ZA-Z <<< "JVPQBOV" (with 13 dots)
Modeling an IPv4 Address
Can a Warlock become Neutral Good?
What are the differences between the usage of 'it' and 'they'?
Why do I get two different answers for this counting problem?
Arthur Somervell: 1000 Exercises - Meaning of this notation
What does it mean to describe someone as a butt steak?
Font hinting is lost in Chrome-like browsers (for some languages )
Theorems that impeded progress
Risk of getting Chronic Wasting Disease (CWD) in the United States?
How does one intimidate enemies without having the capacity for violence?
Approximately how much travel time was saved by the opening of the Suez Canal in 1869?
How to format long polynomial?
Have astronauts in space suits ever taken selfies? If so, how?
Is it possible to allow specific user or IP to bypass squidguard?
grub2: how to bypass “press any key”?bypass firewall with Openvpn + SquidAllow specific linux user to bind to port 443Squid: how to block a website, but allow access to certain foldersallow just running of two specific programs (scripts) for user's accountAllow specific port through iptablesHow to find specific RPi image?Allow non-root user to use timedatectlsquid with urlpath_regex not working with httpsSquid block non-proxy user
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I configured a raspberry as a little server. In particular I installed DHCP, squid proxy and squidGuard for log the network activity which pass through my raspberry. Actually i have a black list on squidGuard which denies the access to gamble websites.
My current OS version: Linux raspberrypi 4.14.98-v7+ #1200 SMP Tue Feb 12 20:27:48 GMT 2019 armv7l GNU/Linux.
Squid: Version 3.5.23, SquidGuard: 1.5 Berkeley DB 5.3.28: (September 9, 2013).
My squid.conf file:
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
redirect_program /usr/bin/squidGuard
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_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost manager
http_access deny manager
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 3128
cache_dir ufs /var/spool/squid 1000 16 256
coredump_dir /var/spool/squid
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|?) 0 0% 0
refresh_pattern . 0 20% 4320
My squidGuard.conf file:
dbhome /var/lib/squidguard/db
logdir /var/log/squidguard
time workhours
weekly mtwhf 08:00 - 16:30
date *-*-01 08:00 - 16:30
src admin
ip 1.2.3.4 1.2.3.5
user root foo bar
within workhours
src foo-clients
ip 172.16.2.32-172.16.2.100 172.16.2.100 172.16.2.200
src bar-clients
ip 172.16.4.0/26
dest good
dest local
dest porn
dest gamble
domainlist gamble/domains
urllist gamble/urls
acl
admin
pass any
foo-clients within workhours
pass good !in-addr !porn any
else
pass any
bar-clients
pass local none
default
pass !gamble any
redirect http://admin.foo.bar.de/cgi-bin/blocked.cgi?
clientaddr=%a&clientname=%n
&clientuser=%i&clientgroup=%s&targetgroup=%t&url=%u
After all of these infos, for example there is user A and user B, A can visit gamble websites whereas B not.
Is there any way to achieve this result using squid/squidGuard? But i don't want that user A bypass the proxy, only allow him to surf on gamble websites.
linux debian raspberry-pi squid
New contributor
add a comment |
I configured a raspberry as a little server. In particular I installed DHCP, squid proxy and squidGuard for log the network activity which pass through my raspberry. Actually i have a black list on squidGuard which denies the access to gamble websites.
My current OS version: Linux raspberrypi 4.14.98-v7+ #1200 SMP Tue Feb 12 20:27:48 GMT 2019 armv7l GNU/Linux.
Squid: Version 3.5.23, SquidGuard: 1.5 Berkeley DB 5.3.28: (September 9, 2013).
My squid.conf file:
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
redirect_program /usr/bin/squidGuard
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_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost manager
http_access deny manager
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 3128
cache_dir ufs /var/spool/squid 1000 16 256
coredump_dir /var/spool/squid
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|?) 0 0% 0
refresh_pattern . 0 20% 4320
My squidGuard.conf file:
dbhome /var/lib/squidguard/db
logdir /var/log/squidguard
time workhours
weekly mtwhf 08:00 - 16:30
date *-*-01 08:00 - 16:30
src admin
ip 1.2.3.4 1.2.3.5
user root foo bar
within workhours
src foo-clients
ip 172.16.2.32-172.16.2.100 172.16.2.100 172.16.2.200
src bar-clients
ip 172.16.4.0/26
dest good
dest local
dest porn
dest gamble
domainlist gamble/domains
urllist gamble/urls
acl
admin
pass any
foo-clients within workhours
pass good !in-addr !porn any
else
pass any
bar-clients
pass local none
default
pass !gamble any
redirect http://admin.foo.bar.de/cgi-bin/blocked.cgi?
clientaddr=%a&clientname=%n
&clientuser=%i&clientgroup=%s&targetgroup=%t&url=%u
After all of these infos, for example there is user A and user B, A can visit gamble websites whereas B not.
Is there any way to achieve this result using squid/squidGuard? But i don't want that user A bypass the proxy, only allow him to surf on gamble websites.
linux debian raspberry-pi squid
New contributor
add a comment |
I configured a raspberry as a little server. In particular I installed DHCP, squid proxy and squidGuard for log the network activity which pass through my raspberry. Actually i have a black list on squidGuard which denies the access to gamble websites.
My current OS version: Linux raspberrypi 4.14.98-v7+ #1200 SMP Tue Feb 12 20:27:48 GMT 2019 armv7l GNU/Linux.
Squid: Version 3.5.23, SquidGuard: 1.5 Berkeley DB 5.3.28: (September 9, 2013).
My squid.conf file:
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
redirect_program /usr/bin/squidGuard
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_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost manager
http_access deny manager
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 3128
cache_dir ufs /var/spool/squid 1000 16 256
coredump_dir /var/spool/squid
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|?) 0 0% 0
refresh_pattern . 0 20% 4320
My squidGuard.conf file:
dbhome /var/lib/squidguard/db
logdir /var/log/squidguard
time workhours
weekly mtwhf 08:00 - 16:30
date *-*-01 08:00 - 16:30
src admin
ip 1.2.3.4 1.2.3.5
user root foo bar
within workhours
src foo-clients
ip 172.16.2.32-172.16.2.100 172.16.2.100 172.16.2.200
src bar-clients
ip 172.16.4.0/26
dest good
dest local
dest porn
dest gamble
domainlist gamble/domains
urllist gamble/urls
acl
admin
pass any
foo-clients within workhours
pass good !in-addr !porn any
else
pass any
bar-clients
pass local none
default
pass !gamble any
redirect http://admin.foo.bar.de/cgi-bin/blocked.cgi?
clientaddr=%a&clientname=%n
&clientuser=%i&clientgroup=%s&targetgroup=%t&url=%u
After all of these infos, for example there is user A and user B, A can visit gamble websites whereas B not.
Is there any way to achieve this result using squid/squidGuard? But i don't want that user A bypass the proxy, only allow him to surf on gamble websites.
linux debian raspberry-pi squid
New contributor
I configured a raspberry as a little server. In particular I installed DHCP, squid proxy and squidGuard for log the network activity which pass through my raspberry. Actually i have a black list on squidGuard which denies the access to gamble websites.
My current OS version: Linux raspberrypi 4.14.98-v7+ #1200 SMP Tue Feb 12 20:27:48 GMT 2019 armv7l GNU/Linux.
Squid: Version 3.5.23, SquidGuard: 1.5 Berkeley DB 5.3.28: (September 9, 2013).
My squid.conf file:
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
redirect_program /usr/bin/squidGuard
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_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost manager
http_access deny manager
http_access allow localnet
http_access allow localhost
http_access deny all
http_port 3128
cache_dir ufs /var/spool/squid 1000 16 256
coredump_dir /var/spool/squid
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|?) 0 0% 0
refresh_pattern . 0 20% 4320
My squidGuard.conf file:
dbhome /var/lib/squidguard/db
logdir /var/log/squidguard
time workhours
weekly mtwhf 08:00 - 16:30
date *-*-01 08:00 - 16:30
src admin
ip 1.2.3.4 1.2.3.5
user root foo bar
within workhours
src foo-clients
ip 172.16.2.32-172.16.2.100 172.16.2.100 172.16.2.200
src bar-clients
ip 172.16.4.0/26
dest good
dest local
dest porn
dest gamble
domainlist gamble/domains
urllist gamble/urls
acl
admin
pass any
foo-clients within workhours
pass good !in-addr !porn any
else
pass any
bar-clients
pass local none
default
pass !gamble any
redirect http://admin.foo.bar.de/cgi-bin/blocked.cgi?
clientaddr=%a&clientname=%n
&clientuser=%i&clientgroup=%s&targetgroup=%t&url=%u
After all of these infos, for example there is user A and user B, A can visit gamble websites whereas B not.
Is there any way to achieve this result using squid/squidGuard? But i don't want that user A bypass the proxy, only allow him to surf on gamble websites.
linux debian raspberry-pi squid
linux debian raspberry-pi squid
New contributor
New contributor
edited 2 days ago
Rui F Ribeiro
41.9k1483142
41.9k1483142
New contributor
asked 2 days ago
Leonardo BassiLeonardo Bassi
12
12
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Leonardo Bassi is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f510441%2fis-it-possible-to-allow-specific-user-or-ip-to-bypass-squidguard%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Leonardo Bassi is a new contributor. Be nice, and check out our Code of Conduct.
Leonardo Bassi is a new contributor. Be nice, and check out our Code of Conduct.
Leonardo Bassi is a new contributor. Be nice, and check out our Code of Conduct.
Leonardo Bassi is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f510441%2fis-it-possible-to-allow-specific-user-or-ip-to-bypass-squidguard%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown