1. AnnounceFlags
점검내용(한) | 기준내용(한) | 기준 | CI 정보 수집 방법 | 출력SAMPLE |
{TARGET} |
NTP 옵션 확인 | 전후 동일 | 동일 | C:\>reg query "HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Config" /v AnnounceFlags | HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config AnnounceFlags REG_DWORD 0xa |
NTP 옵션 확인
https://technet.microsoft.com/en-us/library/cc773263(v=ws.10).aspx
AnnounceFlags
Registry path
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config
Version
Windows XP, Windows Vista, Windows 7, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, and Windows Server 2008 R2
This entry controls whether this computer is marked as a reliable time server. A computer is not marked as reliable unless it is also marked as a time server.
이 항목은 이 컴퓨터가 신뢰할 수 있는 타임 서버로 표시되어 있는지 여부를 제어한다. 또한 타임서버가 아닌 경우에는 신뢰할 수 있는 걸로 마킹되지도 않는다.
- 0x00 Not a time server
- 0x01 Always time server
- 0x02 Automatic time server
- 0x04 Always reliable time server
- 0x08 Automatic reliable time server
The default value for domain members is 10. The default value for stand-alone clients and servers is 10.
-> 위에 플래그에 어떻게 5/10이 없는데 5/10을 설정할 수 있느냐? 바로 비트연산을 하기 때문에 가능.
http://www.experts-exchange.com/Hardware/Servers/Q_23905283.html
AnnounceFlags is just a value that encodes the 4 settings above in 4 bits. Bitwise operations are documented as well.
A bitwise OR of numbers that are powers of 2 is identical with adding them:
8d + 2d = 10d = 1010b = 1000b OR 0010b
Bitwise operation
http://en.wikipedia.org/wi
See the example below for 5 and 10.
'Windows > 윈도우 공통' 카테고리의 다른 글
[스크랩] Active Directory 기술 요약 (0) | 2015.09.15 |
---|---|
화면보호기 Group Policy 로 적용방법 (0) | 2015.08.18 |
[스크랩] wmic으로 S/N , 메모리 갯수 확인! (0) | 2015.05.12 |
ipsec ip 필터 목록 내보내기 (접근제어 목록 내보내기) (0) | 2015.04.20 |
V3 스마트업데이트시 이미 실행중입니다 가 뜰 때 (0) | 2015.04.16 |