====== How do I allow an unauthenticated user to access more IPCOP web interface pages? ======
* Login to IPCOP using putty or WinSCP (remember SSH on IPCOP is port 222 not 22)
* Edit /etc/httpd/conf/http.conf
* Find the following:
AllowOverride None
Options None
AuthName "Restricted"
AuthType Basic
AuthUserFile /var/ipcop/auth/users
Require user admin
Satisfy Any
Allow from All
Satisfy Any
Allow from All
Require user admin dial
and change it to be
AllowOverride None
Options None
AuthName "Restricted"
AuthType Basic
AuthUserFile /var/ipcop/auth/users
Require user admin
Satisfy Any
Allow from All
Satisfy Any
Allow from All
Require user admin dial
Satisfy Any
Allow from All
where XYZ is the page you want to allow access. If you want to add multiple pages, use multiple blocks.
* Restart Apache or reboot IPCOP