Displaying 5 results from an estimated 5 matches for "ncsa_us".
Did you mean:
ncsa's
2007 Mar 28
0
How to limit a user to access a few sites. (SOLVED)
...for your help all the given to me. Finally, I got it done.
Binding an ip address to an username with SQUID and limiting access
of some users with their ips to a few sites
rules added to squid.conf file
external_acl_type ip_user %SRC %LOGIN /usr/lib/squid/ip_user_check -f
/etc/squid/ip.conf
acl ncsa_users proxy_auth REQUIRED
acl ip_users external ip_user %SRC %LOGIN
acl clientips src 192.168.101.28 192.168.101.29 192.168.101.30
acl allowedsites url_regex -i "/etc/squid/allowedsites.txt"
http_access deny !ncsa_users
http_access deny !ip_users
http_access deny clientips !allowedsites
ht...
2007 Mar 26
2
How to limit a user to access a few sites.
...But Instead,
I want them to allow to access a few sites scuh as google.com,cnn.com,
bbc.com. I want to limit in that way.
I have wriiten below rules. But those users still can access all the sites.
external_acl_type ip_user %SRC %LOGIN %DST /usr/lib/squid/ip_user_check -f
/etc/squid/ip.conf
acl ncsa_users proxy_auth REQUIRED
acl ip_users external ip_user %SRC %LOGIN %DST
http_access deny !ncsa_users
http_access deny !ip_users
http_access allow ip_users
http_access allow ncsa_users
my ip.conf file is like this.
[root at worldnet squid]# cat /etc/squid/ip.conf
192.168.101.25 indunil .google.com...
2007 Mar 24
1
Binding an ip address to an username with SQUID passwod file
...rogramme. Below are line that I have added to
squid.conf file.
auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/squid_passwd
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
auth_param basic casesensitive off
acl ncsa_users proxy_auth REQUIRED
http_access allow ncsa_users
We are currently browsing internet with usernames and passwords. But the
problem is a user can access internet from all the workstation with his
username and password. I do not need it. I only want a user to access
internet from his machine.
Sol...
2014 Jun 11
2
squid proxy, https and apple store
...lient.
Squid is configured using ncsa_auth and I can access https and http
websites without a problem.
But the app store app is not logging in. I do get
==> /var/log/squid/cache.log <==
2014/06/11 13:23:10| The request CONNECT p12-buy.itunes.apple.com:443 is
DENIED, because it matched 'ncsa_users'
2014/06/11 13:23:10| The reply for CONNECT p12-buy.itunes.apple.com:443
is ALLOWED, because it matched 'ncsa_users'
2014/06/11 13:23:10| The request CONNECT p12-buy.itunes.apple.com:443 is
ALLOWED, because it matched 'CONNECT'
in my squid logfile.
Any hints or suggestions...
2007 Mar 26
0
Binding an ip address to an username with SQUID passwod file (SOLVED)
...param basic
> > program /usr/lib/squid/ncsa_auth /etc/squid/squid_passwd
> > auth_param basic children 5
> > auth_param basic realm Squid proxy-caching web server
> > auth_param basic credentialsttl 2 hours
> > auth_param basic casesensitive off
> >
> > acl ncsa_users proxy_auth REQUIRED
> > http_access allow ncsa_users
> >
> > We are currently browsing internet with usernames and passwords. But
> > the problem is a user can access internet from all the workstation
> > with his username and password. I do not need it. I only want...