I'm a Linux newbie and struggled with installing IPPlan external authentication to a Cisco TACACS server. I wanted to pass on a couple of instructions on how I got this to work.
Running Apache/2.2.4 on Ubuntu
apt-get install libapache2-mod-auth-radius
**Add the following in /etc/apache2/apache2.conf
<Directory /var/www/ipplan/user>
AllowOverride AuthConfig
AuthBasicAuthoritative Off
</Directory>
**Add the following in /etc/apache2/httpd.conf
AddRadiusAuth <radius server ip address>:1645 <shared secret> 5:3
**Modify /var/www/ipplan/config.php in AUTHENTICATION section
**Create .htaccess file in /var/www/ipplan/user/ with the following:
AuthType Basic
AuthName "Radius Authentication for Local Host"
AuthBasicAuthoritative Off
AuthRadiusAuthoritative on
AuthRadiusCookieValid 5
AuthRadiusActive On
require valid-user
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm a Linux newbie and struggled with installing IPPlan external authentication to a Cisco TACACS server. I wanted to pass on a couple of instructions on how I got this to work.
Running Apache/2.2.4 on Ubuntu
apt-get install libapache2-mod-auth-radius
**Add the following in /etc/apache2/apache2.conf
<Directory /var/www/ipplan/user>
AllowOverride AuthConfig
AuthBasicAuthoritative Off
</Directory>
**Add the following in /etc/apache2/httpd.conf
AddRadiusAuth <radius server ip address>:1645 <shared secret> 5:3
**Modify /var/www/ipplan/config.php in AUTHENTICATION section
define("AUTH_VAR", 'REMOTE_USER');
define("AUTH_INTERNAL", FALSE);
**Create .htaccess file in /var/www/ipplan/user/ with the following:
AuthType Basic
AuthName "Radius Authentication for Local Host"
AuthBasicAuthoritative Off
AuthRadiusAuthoritative on
AuthRadiusCookieValid 5
AuthRadiusActive On
require valid-user
Hi
and how would you do it on Win32 with Apache 2.2?