User Management OverviewFor a totally password protected site ( typical for remote management applications), it is desirable to have multiple user IDs with multiple security levels. The web server would have known users, who would enter passwords to obtain web server access. In addition, individual pages or groups of pages on the web server may have special security requirements. Access AuthenticationWhenever a web browser attempts to access a page on a server that requires a user ID and password, a browser and server dialog begins that is called "Access Authentication". Two kinds of Access Authentication are used: Basic (BAA) and Digest (DAA). The web browser presentation for Digest Access Authentication is the same as for Basic Access Authentication: the user typically is prompted for a user ID and password before obtaining access to a URL. The difference between the two is behind the scenes. In the case of Basic Access, passwords are sent as clear text. Digest Access is different in that a "digest" is sent, typically created by the RSA Data Security, Inc. MD5 Message-Digest Algorithm that takes the user ID, the password and a "realm value" as arguments. In WebServer 2.1, both types of Access Authentication are supported. URL pages can have an "Access Method" associated with them that determines how the page is accessed. These are as follows:
UsersThe user management configuration database contains a user table containing user records with these data elements:
User GroupsThe user management configuration database contains a table for user groups with the following data elements:
URL Access LimitsThe user management configuration database contains a table for URL access limits. Access Limits are used when certain directories or URL pages on the web site have exceptionally secure access limits. If a directory has an access limit associated with it, its contents will have the same access limit as the directory, unless there is a specific access limit for a specific page. Access Limits have these data elements: URL Name - defines the file path of the web page or directory User Management and Access to URLsWhen a page is requested, WebServer will check to see if there is a URL Access Limit assigned for the requested page. If an Access Limit is found, then the following checks are made: If no user group is assigned to the access limit, then the default access method takes effect. In this case, the web server takes these actions:
If there is a user group assigned to the access limit, then the previous actions would be taken, but would use the group's access method for the requested page.
|