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:
      <Directory /home/httpd/cgi-bin>  
          AllowOverride None  
          Options None  
          AuthName "Restricted"  
          AuthType Basic  
          AuthUserFile /var/ipcop/auth/users  
          Require user admin  
          <Files index.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
          <Files credits.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
          <Files dial.cgi>  
              Require user admin dial  
          </Files>  
      </Directory>

and change it to be

      <Directory /home/httpd/cgi-bin>  
          AllowOverride None  
          Options None  
          AuthName "Restricted"  
          AuthType Basic  
          AuthUserFile /var/ipcop/auth/users  
          Require user admin  
          <Files index.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
          <Files credits.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
          <Files dial.cgi>  
              Require user admin dial  
          </Files>  
          <Files XYZ.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
      </Directory>

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
faq/advanced/webaccess.txt · Last modified: 2008/09/21 02:09 by ds531