Restricting extranet access
We need to restrict access to part of our hosted extranet Web server using logon IDs and passwords. The hosting service uses Apache Web servers. The documentation says we can set up Apache to require passwords for our Web pages by using .htaccess files and htpasswd. We can upload files and log on using Secure Socket Shell, but need help configuring the site to require passwords.
If the Apache Web server software is configured by your provider to allow directory-level user access control using Basic Authentication, you can control access to pages in your site by placing a .htaccess file in each protected directory. If you call it DOThtaccess on your Windows system, you can use the FTP command "put DOThtaccess .htaccess" to upload it to the Unix host running Apache. A .htaccess file is shown here:
AuthType Basic
AuthUserFile /path/To/myUsers.htpasswd
AuthName "mySpace Name"
Require valid-user
When the Web server finds this file in a directory, it will restrict access to users whose passwords are stored in the AuthUserFile listed. Use the htpasswd command from your Web host shell account to create the password files referred to in the .htaccess files. Create the first account with the command "htpasswd -c myFile first user". Additional users are added with the command "htpasswd myFile nextuser".
» posted by ITworld staff
Network World
Symantec Backup Exec 12 and Backup Exec System Recovery 8 deliver industry leading Windows data protection and system recovery. Download this whitepaper to find out the top reasons to upgrade and how to get continuous data protection and complete system recovery.
Data and system loss — from a hard drive failure, malicious attack, natural disaster, or simple human error — can happen anytime. Don’t leave your business vulnerable. Make sure you have a secure recovery strategy in place. Symantec's latest backup and system recovery technology can efficiently restore critical applications, individual emails and documents and even restore your entire system in minutes in the event of a loss.
Businesses face a growing challenge to ensure that the IT environment is properly protected. Backup Exec 12 integrates with other applications in the Symantec family of products, to complement your current data protection strategy, keep your data securely backed up and make it recoverable when you need it most.







