Squid - Radius auth
In this example a squid installation will use RADIUS “squid_radius_auth” Squid RADIUS authentication helper to authenticate users. Get last version of squid radius auth helper at: http://www.squid-cache.org/contrib/squid_radius_auth/ Download: [leo@srv01 leo]# wget http://www.squid-cache.org/contrib/squid_radius_auth/squid_radius_auth-1.10.tar.gz Extract: [leo@srv01 leo]# tar -xvf squid_radius_auth-1.10.tar.gz Go to directory: [leo@srv01 leo]# cd squid_radius_auth-1.10 Compile: [leo@srv01 squid_radius_auth-1.10]# make gcc -O2 -Wall -g -c -o squid_rad_auth.o squid_rad_auth.c gcc -O2 -Wall -g -c md5.c gcc -O2 -Wall -g -c util.c gcc -g -o squid_radius_auth squid_rad_auth.o md5.o util.o Now the installation, for my needs, I wanna keep binary into /usr/lib/squid/ and configuration file into /etc/squid/ and I don’t wanna take man files then edit Make.inc like this: ...