My Account Subscribe Help About
Sign In | Register FREE
Sunday, April 12, 2026
Iran chose 'not to accept our terms', US VP Vance says after negotiationsMore than 500 arrests at Palestine Action protestFaisal Islam: Why the government is relaxed about Chinese car imports'We need real peace': Easter truce fails to lift grim mood in war-torn UkraineWe spoke to the man making viral Lego-style AI videos for Iran. Experts say it's powerful propaganda'It's a special thing to be on Planet Earth': Artemis crew welcomed home in HoustonFrom blast off to splashdown: My days following Nasa's historic mission to the MoonBalamory is back - Miss Hoolie and PC Plum lift the lid on what to expectI've been a sex educator for six years. Why did I start doubting my contraception choices?The prophet and the mysterious death of Charmain SpeirsMessy and unpredictable: What I learned from election tour of the UKThe Papers: 'Le Humiliation' and 'US and Iran start historic peace talks'Hungarians decide whether to end 16 years of Orbán rule and elect rivalMcIlroy can't stop riding Augusta rollercoaster as final Masters round beckonsGolden eagles' return to English skies gets government backingScottish election 2026: How tax and welfare are shaping the voteCoachella kicks off with Sabrina Carpenter and surprise guestsI'm the only medic on the island – but I wish I'd brought some trousersGirl's 'mammoth' bone find may be 500,000 years oldCouple hitchhike to their wedding ceremonyThe construction boss who built a new life after three years in prisonBBC News appArtemis II: Return to the MoonUS-Iran Peace Talks + Artemis II ReturnsUnpack all the latest drama from Race Across the WorldHow young men's lives are influenced by the manosphereJuddering McIlroy simply can't stop riding Masters rollercoasterThe decade-long struggle to get AJ & Fury together'Big punch in the face' - could Arsenal really blow title from here?England far from perfect but Red Roses machine marches on
FDN » Active Directory » Understanding Active Directory

Understanding Active Directory

Understanding Active Directory

Active Directory (AD) is the directory service included with Windows 2000 Server. It stores information about objects on the network — users, computers, printers, groups, and organizational units — and makes this information available to administrators and applications.

Core Concepts

  • Domain: The basic unit of organization in AD. A domain is a logical grouping of objects that share a common directory database and security policies. Example: corp.flamenet.io.
  • Domain Controller (DC): A server that hosts a copy of the AD database and processes authentication requests. Every domain must have at least one DC.
  • Organizational Unit (OU): A container within a domain used to organize objects. OUs can be nested and have Group Policy Objects (GPOs) applied to them.
  • Forest: The top-level container in AD. A forest contains one or more domains that share a common schema and global catalog. The first domain created becomes the forest root.
  • Tree: A hierarchy of domains that share a contiguous DNS namespace. For example, corp.flamenet.io and dev.corp.flamenet.io form a tree.

LDAP

Active Directory is accessed using LDAP (Lightweight Directory Access Protocol) on TCP port 389 (or 636 for LDAPS). Every object in AD has a distinguished name (DN) that uniquely identifies it:

CN=John Smith,OU=Users,OU=Sales,DC=corp,DC=flamenet,DC=io

Global Catalog

The Global Catalog (GC) is a partial, read-only copy of all objects in the forest. It runs on TCP port 3268. The GC is used for cross-domain searches, universal group membership resolution, and user principal name (UPN) logon.

Replication

AD uses multi-master replication: changes made on any DC are replicated to all other DCs. Intrasite replication occurs within 15 seconds. Intersite replication follows site link schedules and can be compressed to save bandwidth.

« Back to Active Directory « Back to FDN