Link to home
Start Free TrialLog in
Avatar of sedberg1
sedberg1

asked on

Audit changes to network settings on Server 2008 R2

I'm running 2008 R2 Standard server as part of a domain with 2008 R2 DFL and FFL.  I'd like to audit changes to any type of network settings that someone might change on the server.

Can this be done natively with the OS?  If so, how would I set this up?
ASKER CERTIFIED SOLUTION
Avatar of Tony Massa
Tony Massa
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi, You can enable the Directory Service Changes feature, which was introduced in Windows 2008. This has the added benefit of recording both the current and previous values of an attribute when a modification occurs.

Warning: If you configure this setting in Group Policy, this is covered in the new auditing section as "DS Access". You should use either the new auditing settings or the older auditing section, but not both. When settings in the new auditing section are used, any settings in the old section may be ignored.

New location:

Computer Configuration > Windows Settings > Security Settings > Advanced Audit Policy Configuration

Old Location:

Computer Configuration > Windows Settings > Security Settings > Local Policies > Audit Policy.

It is possible to configure this using the auditpol.exe command, however if that method is used, it should be performed as a Computer startup script to ensure that the settings are in effect when the computer restarts. This is the command:

auditpol /set /subcategory:"directory service changes" /success:enable
You also need to enable auditing in AD Users and Computers:

Run Active Directory Users and Computers.

Right-click the organizational unit (OU) (or any object) for which you want to enable auditing, and then click Properties.

Click the Security tab, click Advanced, and then click the Auditing tab.

Click Add, and under Enter the object name to select, type Authenticated Users (or any other security principal), and then click OK.

In Apply onto, click Descendant User objects (or any other objects).

Under Access, select the Successful check box for Write all properties.

Click OK until you exit the property sheet for the OU or other object.

More information:

AD DS Auditing Step-by-Step Guide
http://technet.microsoft.com/en-us/library/cc731607%28v=ws.10%29.aspx

Which Versions of Windows Support Advanced Audit Policy Configuration?
http://technet.microsoft.com/en-us/library/dd692792(WS.10).aspx

" Using both the basic audit policy settings under Local Policies\Audit Policy and the advanced settings under Advanced Audit Policy Configuration can cause unexpected results. Therefore, the two sets of audit policy settings should not be combined. If you use Advanced Audit Policy Configuration settings, you should enable the Audit: Force audit policy subcategory settings (Windows Vista or later) to override audit policy category settings policy setting under Local Policies\Security Options. This will prevent conflicts between similar settings by forcing basic security auditing to be ignored."