Describe the enterprise root CA.

What will be an ideal response?


An enterprise root CA is a CA that is fully integrated with Active Directory and that is at the top of all CAs used in the CA hierarchical infrastructure. There must be one root CA in any CA infrastructure. The enterprise root is used in an enterprise that typically houses multiple servers and that uses Active Directory group policy to help manage how digital certificates are issued to users and computers in a domain. The enterprise root supports the use of smart cards for accessing the domain. Certificates and lists of certificates that have been revoked (certificate revocation lists or CRLs) can be published to Active Directory, which means this information can be replicated among DCs. Also, the names of certificates and certification information can be created from user data already in Active Directory, such as user account and security group information. The use of certificates can be based on certificate templates and certificate holders can be set up through autoenrollment, which significantly reduces the work of the certificate administrator.

Computer Science & Information Technology

You might also like to view...

Using the Animation painter takes up extra time.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Show the output of the following code.

``` #include using namespace std; class Parent { public: virtual void f() { cout << "invoke f from Parent" << endl; } }; class Child: public Parent { public: void f() { cout << "invoke f from Child" << endl; } }; void p(Parent a) { a.f(); } int main() { Parent a; a.f(); p(a); Child b; b.f(); p(b); return 0; } ```

Computer Science & Information Technology

When creating a chart, best practices indicate that you first consider ________

A) how quickly it needs to be created B) who will be viewing the chart C) the basic design of the chart D) the data

Computer Science & Information Technology

Which of the following CSS selector returns the option button that is checked within the protection field?

A. input[name="protection"]:checked   B. name[input="protection"]:checked C. name[input="checked"]:protection D. input[name="checked"]:protection

Computer Science & Information Technology