Skip to main content

Active Directory Components

Active Directory is a central repository of Objects. We can define objects in two groups:
Container Objects (Which can contain some object) & Leaf Object (Can’t contain and other object)

Some of the common container objects are below:

--> 
Domain: Logical grouping of network resources including Users, Groups, Devices, Services and all objects that constructs AD.

--> 
Tree: Logical grouping of network resources and devices and contain one or more domain. It should be configured in a parent-child relationship and should be use a common namespace.

--> 
Forest: Largest container object within Active Directory and it's a fundamental security boundary. It contains one or more tree. A user can access resources across an entire Active Directory forest using a single logon/password combination.

--> 
Organization Unit (OU): An OU in a container that represents a logical grouping of resources that have similar security or administrative guidelines. It is also used for Delegation and Applying Security Policy.

Some of the common Leaf objects are below:

--> User: A user is an object, that is a security principal in the Active Directory. A user can log on to the network with these credentials and access permissions can be granted to users.

--> Contact: A contact object is an account that does not have any security permissions. You cannot log on to the network as a contact. Contacts are typically used to represent external users for the purpose of e-mail.

--> Service: An operating system object to perform a specific task or function. For example DHCP.EXE makes a server capable of providing IP to other devices in the network.

Active Directory Schemaone of the most important component of the Active Directory that define "The Object and The Attribute". In other word we can say "Active Directory Schema is a combination of Object Classes and Object Attributes. In other words we can say "An Object Class defines the set of mandatory and optional attributes it can have".

Let's take an example of creating a new user, it will be the type/object class of user which defines, that the attributes like CN, samAccountName, ObjectCategory, ObjectClass are mandatory and attribute like accountExpire, Title, e-mail etc are optional for an user object.



Home

Comments

Popular posts from this blog

  Azure Architect Interview Questions and Answers   What is Reapply and Redeploy in Azure? In Azure, Reapply and Redeploy are two different operations used to troubleshoot and fix issues with virtual machines (VMs). Here's what each does: 1. Reapply Purpose : Resets the VM's state and reapplies the VM properties (like networking settings) without redeploying it. When to use : If the VM is running but experiencing issues with configuration settings, extensions, or networking. 2. Redeploy Purpose : Moves the VM to a new host in Azure while keeping its existing settings. When to use : If the VM is stuck in an unresponsive state or cannot be connected to. Command (Azure CLI) : Key Differences Feature Reapply Redeploy What it does Refreshes VM settings Moves VM to a new host Impact No downtime (usually) VM is ...

PKI Lab Setup

Resource Forest Active Directory Domain Service – DC01 Root Certificate Authority (Offline) – RCA01 Issuing Certificate Authority – ICA01 Client Server – WS01 Account Forest ADC01 AWS01 ------------------------------------------------------------------------------------------------------------------------------------------------------ Step 1 – Installing the Domain Controller Step 2 – Installing the Root Certificate Authority Ø   Install the AD CS Role on the server (RCA01) Ø   Configure the AD CS Role ü   Click – Configure Active Directory Certificate Service on the Destination Server ü   Click Next – If you have logged in with Administration Account or Choose the Account which will be responsible for CA ü   Select Role Service to configure – For my case I am selecting only Certification Authority ü   Select Standalone CA – As this will be offline CA on a work group machine ü   Select Root CA – As this will be the Root CA Server ü ...

PKI (Public Key Infrastructure)

Public Key Infrastructure A Public Key Infrastructure is basically a setup where we can generate Digital Certificates and manage Public-Key encryption . This setup consist of a set of Hardware & Software, role and policies to create, manage, distribute, use and revoke the Digital Certificate. The purpose of a Digital Certificate is to Encrypt the Data so that an authorized person can Decrypt the data. Whenever we are using an encryption and send a data from one end to another end, we need two keys. Public Key & Private Key . Public Key is use for encrypt for the data and Private Key is use for decrypt the Data. An encryption ensure the security layer but it does not ensure that only the right person is decrypting the Data. Any person having the Private Key can decrypt the data. So here we need PKI to ensure that only the right person is having the Private Key. PKI identify and authenticate the Public Key owner. Check the LAB Setup which brief you a PKI infrastructure for m...