What are the advantages and disadvantages of distributed autonomous site deployment?

What will be an ideal response?


The distributed autonomous site deployment has two advantages. First, because authentication is performed locally it does not rely on a remote network connection to perform this function. This means that if the remote connection is not properly functioning, then authentication can not properly occur. Second, additional RADIUS servers can be added to the remote site to handle any increase in the number of users. This is because not all authentication databases can be easily replicated. However, a disadvantage is that it may not be appropriate for authentication systems other than LDAP or Microsoft Active Directory that are not easily replicated.

Computer Science & Information Technology

You might also like to view...

Assume the file Alphabet.txt contains 26 records, the lowercase letters of the alphabet in ascending order. What is stored in Target.txt after the following code is executed?

``` Dim letter As String Dim sr As IO.StreamReader = IO.File.OpenText("lphabet.txt" Do While Not sr.EndOfStream Dim sw As IO.StreamWriter = IO.File.CreateText("arget.txt" letter = sr.ReadLine sw.WriteLine(letter) sw.Close() Loop sr.Close() ``` (A) The alphabet in descending order. (B) The alphabet in ascending order. (C) a (D) z

Computer Science & Information Technology

Tables are a good source for data in a lookup field

Indicate whether the statement is true or false

Computer Science & Information Technology

FeedBurner provides the ____ of the referring pages from which users accessed the single blog post.

A. IP addresses B. names C. URLs D. e-mail addresses

Computer Science & Information Technology

Two of the most popular versions of UNIX to come out of the education market were created at the University of California at Berkeley: ____.

A. Berkeley Standard Distribution (BSD) version and System V B. Linux and System V C. Berkeley Standard Distribution (BSD) version and Linux D. System V and GNU

Computer Science & Information Technology