1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
832:
833:
834:
835:
836:
837:
838:
839:
840:
841:
842:
843:
844:
845:
846:
847:
848:
849:
850:
851:
852:
853:
854:
855:
856:
857:
858:
859:
860:
861:
862:
863:
864:
865:
866:
867:
868:
869:
870:
871:
872:
873:
874:
875:
876:
877:
878:
879:
880:
881:
882:
883:
884:
885:
886:
887:
888:
889:
890:
891:
892:
893:
894:
895:
896:
897:
898:
899:
900:
901:
902:
903:
904:
905:
906:
907:
908:
909:
910:
911:
912:
913:
914:
915:
916:
917:
918:
919:
920:
921:
922:
923:
924:
925:
926:
927:
928:
929:
930:
931:
932:
933:
934:
935:
936:
937:
938:
939:
940:
941:
942:
943:
944:
945:
946:
947:
948:
949:
950:
951:
952:
953:
954:
955:
956:
957:
958:
959:
960:
961:
962:
963:
964:
965:
966:
967:
968:
969:
970:
971:
972:
973:
974:
975:
976:
977:
978:
979:
980:
981:
982:
983:
984:
985:
986:
987:
988:
989:
990:
991:
992:
993:
994:
995:
996:
997:
998:
999:
1000:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
1277:
1278:
1279:
1280:
1281:
1282:
1283:
1284:
1285:
1286:
1287:
1288:
1289:
1290:
1291:
1292:
1293:
1294:
1295:
1296:
1297:
1298:
1299:
1300:
1301:
1302:
1303:
1304:
1305:
1306:
1307:
1308:
1309:
1310:
1311:
1312:
1313:
1314:
1315:
1316:
1317:
1318:
1319:
1320:
1321:
1322:
1323:
1324:
1325:
1326:
1327:
1328:
1329:
1330:
1331:
1332:
1333:
1334:
1335:
1336:
1337:
1338:
1339:
1340:
1341:
1342:
1343:
1344:
1345:
1346:
1347:
1348:
1349:
1350:
1351:
1352:
1353:
1354:
1355:
1356:
1357:
1358:
1359:
1360:
1361:
1362:
1363:
1364:
1365:
1366:
1367:
1368:
1369:
1370:
1371:
1372:
1373:
1374:
1375:
1376:
1377:
1378:
1379:
1380:
1381:
1382:
1383:
1384:
1385:
1386:
1387:
1388:
1389:
1390:
1391:
1392:
1393:
1394:
1395:
1396:
1397:
1398:
1399:
1400:
1401:
1402:
1403:
1404:
1405:
1406:
1407:
1408:
1409:
1410:
1411:
1412:
1413:
1414:
1415:
1416:
1417:
1418:
1419:
1420:
1421:
1422:
1423:
1424:
1425:
1426:
1427:
1428:
1429:
1430:
1431:
1432:
1433:
1434:
1435:
1436:
1437:
1438:
1439:
1440:
1441:
1442:
1443:
1444:
1445:
1446:
1447:
1448:
1449:
1450:
1451:
1452:
1453:
1454:
1455:
1456:
1457:
1458:
1459:
1460:
1461:
1462:
1463:
1464:
1465:
1466:
1467:
1468:
1469:
1470:
1471:
1472:
1473:
1474:
1475:
1476:
1477:
1478:
1479:
1480:
1481:
1482:
1483:
1484:
1485:
1486:
1487:
1488:
1489:
1490:
1491:
1492:
1493:
1494:
1495:
1496:
1497:
1498:
1499:
1500:
1501:
1502:
1503:
1504:
1505:
1506:
1507:
1508:
1509:
1510:
1511:
1512:
1513:
1514:
1515:
1516:
1517:
1518:
1519:
1520:
1521:
1522:
1523:
1524:
1525:
1526:
1527:
1528:
1529:
1530:
1531:
1532:
1533:
1534:
1535:
1536:
1537:
1538:
1539:
1540:
1541:
1542:
1543:
1544:
1545:
1546:
1547:
1548:
1549:
1550:
1551:
1552:
1553:
1554:
1555:
1556:
1557:
1558:
1559:
1560:
1561:
1562:
1563:
1564:
1565:
1566:
1567:
1568:
1569:
1570:
1571:
1572:
1573:
1574:
1575:
1576:
1577:
1578:
1579:
1580:
1581:
1582:
1583:
1584:
1585:
1586:
1587:
1588:
1589:
1590:
1591:
1592:
1593:
1594:
1595:
1596:
1597:
1598:
1599:
1600:
1601:
1602:
1603:
1604:
1605:
1606:
1607:
1608:
1609:
1610:
1611:
1612:
1613:
1614:
1615:
1616:
1617:
1618:
1619:
1620:
1621:
1622:
1623:
1624:
1625:
1626:
1627:
1628:
1629:
1630:
1631:
1632:
1633:
1634:
1635:
1636:
1637:
1638:
1639:
1640:
1641:
1642:
1643:
1644:
1645:
1646:
1647:
1648:
1649:
1650:
1651:
1652:
1653:
1654:
1655:
1656:
1657:
1658:
1659:
1660:
1661:
1662:
1663:
1664:
1665:
1666:
1667:
1668:
1669:
1670:
1671:
1672:
1673:
1674:
1675:
1676:
1677:
1678:
1679:
1680:
1681:
1682:
1683:
1684:
1685:
1686:
1687:
1688:
1689:
1690:
1691:
1692:
1693:
1694:
1695:
1696:
1697:
1698:
1699:
1700:
1701:
1702:
1703:
1704:
1705:
1706:
1707:
1708:
1709:
1710:
1711:
1712:
1713:
1714:
1715:
1716:
1717:
1718:
1719:
1720:
1721:
1722:
1723:
1724:
1725:
1726:
1727:
1728:
1729:
1730:
1731:
1732:
1733:
1734:
1735:
1736:
1737:
1738:
1739:
1740:
1741:
1742:
1743:
1744:
1745:
1746:
1747:
1748:
1749:
1750:
1751:
1752:
1753:
1754:
1755:
1756:
1757:
1758:
1759:
1760:
1761:
1762:
1763:
1764:
1765:
1766:
1767:
1768:
1769:
1770:
1771:
1772:
1773:
1774:
1775:
1776:
1777:
1778:
1779:
1780:
1781:
1782:
1783:
1784:
1785:
1786:
1787:
1788:
1789:
1790:
1791:
1792:
1793:
1794:
1795:
1796:
1797:
1798:
1799:
1800:
1801:
1802:
1803:
1804:
1805:
1806:
1807:
1808:
1809:
1810:
1811:
1812:
1813:
1814:
1815:
1816:
1817:
1818:
1819:
1820:
1821:
1822:
1823:
1824:
1825:
1826:
1827:
1828:
1829:
1830:
1831:
1832:
1833:
1834:
1835:
1836:
1837:
1838:
1839:
1840:
1841:
1842:
1843:
1844:
1845:
1846:
1847:
1848:
1849:
1850:
1851:
1852:
1853:
1854:
1855:
1856:
1857:
1858:
1859:
1860:
1861:
1862:
1863:
1864:
1865:
1866:
1867:
1868:
1869:
1870:
1871:
1872:
1873:
1874:
1875:
1876:
1877:
1878:
1879:
1880:
1881:
1882:
1883:
1884:
1885:
1886:
1887:
1888:
1889:
1890:
1891:
1892:
1893:
1894:
1895:
1896:
1897:
1898:
1899:
1900:
1901:
1902:
1903:
1904:
1905:
1906:
1907:
1908:
1909:
1910:
1911:
1912:
1913:
1914:
1915:
1916:
1917:
1918:
1919:
1920:
1921:
1922:
1923:
1924:
1925:
1926:
1927:
1928:
1929:
1930:
1931:
1932:
1933:
1934:
1935:
1936:
1937:
1938:
1939:
1940:
1941:
1942:
1943:
1944:
1945:
1946:
1947:
1948:
1949:
1950:
1951:
1952:
1953:
1954:
1955:
1956:
1957:
1958:
1959:
1960:
1961:
1962:
1963:
1964:
1965:
1966:
1967:
1968:
1969:
1970:
1971:
1972:
1973:
1974:
1975:
1976:
1977:
1978:
1979:
1980:
1981:
1982:
1983:
1984:
1985:
1986:
1987:
1988:
1989:
1990:
1991:
1992:
1993:
1994:
1995:
1996:
1997:
1998:
1999:
2000:
2001:
2002:
2003:
2004:
2005:
2006:
2007:
2008:
2009:
2010:
2011:
2012:
2013:
2014:
2015:
2016:
2017:
2018:
2019:
2020:
2021:
2022:
2023:
2024:
2025:
2026:
2027:
2028:
2029:
2030:
2031:
2032:
2033:
2034:
2035:
2036:
2037:
2038:
2039:
2040:
2041:
2042:
2043:
2044:
2045:
2046:
2047:
2048:
2049:
2050:
2051:
2052:
2053:
2054:
2055:
2056:
2057:
2058:
2059:
2060:
2061:
2062:
2063:
2064:
2065:
2066:
2067:
2068:
2069:
2070:
2071:
2072:
2073:
2074:
2075:
2076:
2077:
2078:
2079:
2080:
2081:
2082:
2083:
2084:
2085:
2086:
2087:
2088:
2089:
2090:
2091:
2092:
2093:
2094:
2095:
2096:
2097:
2098:
2099:
2100:
2101:
2102:
2103:
2104:
2105:
2106:
2107:
2108:
2109:
2110:
2111:
2112:
2113:
2114:
2115:
2116:
2117:
2118:
2119:
2120:
2121:
2122:
2123:
2124:
2125:
2126:
2127:
2128:
2129:
2130:
2131:
2132:
2133:
2134:
2135:
2136:
2137:
2138:
2139:
2140:
2141:
2142:
2143:
2144:
2145:
2146:
2147:
2148:
2149:
2150:
2151:
2152:
2153:
2154:
2155:
2156:
2157:
2158:
2159:
2160:
2161:
2162:
2163:
2164:
2165:
2166:
2167:
2168:
2169:
2170:
2171:
2172:
2173:
2174:
2175:
2176:
2177:
2178:
2179:
2180:
2181:
2182:
2183:
2184:
2185:
2186:
2187:
2188:
2189:
2190:
2191:
2192:
2193:
2194:
2195:
2196:
2197:
2198:
2199:
2200:
2201:
2202:
2203:
2204:
2205:
2206:
2207:
2208:
2209:
2210:
2211:
2212:
2213:
2214:
2215:
2216:
2217:
2218:
2219:
2220:
2221:
2222:
2223:
2224:
2225:
2226:
2227:
2228:
2229:
2230:
2231:
2232:
2233:
2234:
2235:
2236:
2237:
2238:
2239:
2240:
2241:
2242:
2243:
2244:
2245:
2246:
2247:
2248:
2249:
2250:
2251:
2252:
2253:
2254:
2255:
2256:
2257:
2258:
2259:
2260:
2261:
2262:
2263:
2264:
2265:
2266:
2267:
2268:
2269:
2270:
2271:
2272:
2273:
2274:
2275:
2276:
2277:
2278:
2279:
2280:
2281:
2282:
2283:
2284:
2285:
2286:
2287:
2288:
2289:
2290:
2291:
2292:
2293:
2294:
2295:
2296:
2297:
2298:
2299:
2300:
2301:
2302:
2303:
2304:
2305:
2306:
2307:
2308:
2309:
2310:
2311:
2312:
2313:
2314:
2315:
2316:
2317:
2318:
2319:
2320:
2321:
2322:
2323:
2324:
2325:
2326:
2327:
2328:
2329:
2330:
2331:
2332:
2333:
2334:
2335:
2336:
2337:
2338:
2339:
2340:
2341:
2342:
2343:
2344:
2345:
2346:
2347:
2348:
2349:
2350:
2351:
2352:
2353:
2354:
2355:
2356:
2357:
2358:
2359:
2360:
2361:
2362:
2363:
2364:
2365:
2366:
2367:
2368:
2369:
2370:
2371:
2372:
2373:
2374:
2375:
2376:
2377:
2378:
2379:
2380:
2381:
2382:
2383:
2384:
2385:
2386:
2387:
2388:
2389:
2390:
2391:
2392:
2393:
2394:
2395:
2396:
2397:
2398:
2399:
2400:
2401:
2402:
2403:
2404:
2405:
2406:
2407:
2408:
2409:
2410:
2411:
2412:
2413:
2414:
2415:
2416:
2417:
2418:
2419:
2420:
2421:
2422:
2423:
2424:
2425:
2426:
2427:
2428:
2429:
2430:
2431:
2432:
2433:
2434:
2435:
2436:
2437:
2438:
2439:
2440:
2441:
2442:
2443:
2444:
2445:
2446:
2447:
2448:
2449:
2450:
2451:
2452:
2453:
2454:
2455:
2456:
2457:
2458:
2459:
2460:
2461:
2462:
2463:
2464:
2465:
2466:
2467:
2468:
2469:
2470:
2471:
2472:
2473:
2474:
2475:
2476:
2477:
2478:
2479:
2480:
2481:
2482:
2483:
2484:
2485:
2486:
2487:
2488:
2489:
2490:
2491:
2492:
2493:
2494:
2495:
2496:
2497:
2498:
2499:
2500:
2501:
2502:
2503:
2504:
2505:
2506:
2507:
2508:
2509:
2510:
2511:
2512:
2513:
2514:
2515:
2516:
2517:
2518:
2519:
2520:
2521:
2522:
2523:
2524:
2525:
2526:
2527:
2528:
2529:
2530:
2531:
2532:
2533:
2534:
2535:
2536:
2537:
2538:
2539:
2540:
2541:
2542:
2543:
2544:
2545:
2546:
2547:
2548:
2549:
2550:
2551:
2552:
2553:
2554:
2555:
2556:
2557:
2558:
2559:
2560:
2561:
2562:
2563:
2564:
2565:
2566:
2567:
2568:
2569:
2570:
2571:
2572:
2573:
2574:
2575:
2576:
2577:
2578:
2579:
2580:
2581:
2582:
2583:
2584:
2585:
2586:
2587:
2588:
2589:
2590:
2591:
2592:
2593:
2594:
2595:
2596:
2597:
2598:
2599:
2600:
2601:
2602:
2603:
2604:
2605:
2606:
2607:
2608:
2609:
2610:
2611:
2612:
2613:
2614:
2615:
2616:
2617:
2618:
2619:
2620:
2621:
2622:
2623:
2624:
2625:
2626:
2627:
2628:
2629:
2630:
2631:
2632:
2633:
2634:
2635:
2636:
2637:
2638:
2639:
2640:
2641:
2642:
2643:
2644:
2645:
2646:
2647:
2648:
2649:
2650:
2651:
2652:
2653:
2654:
2655:
2656:
2657:
2658:
2659:
2660:
2661:
2662:
2663:
2664:
2665:
2666:
2667:
2668:
2669:
2670:
2671:
2672:
2673:
2674:
2675:
2676:
2677:
2678:
2679:
2680:
2681:
2682:
2683:
2684:
2685:
2686:
2687:
2688:
2689:
2690:
2691:
2692:
2693:
2694:
2695:
2696:
2697:
2698:
2699:
2700:
2701:
2702:
2703:
2704:
2705:
2706:
2707:
2708:
2709:
2710:
2711:
2712:
2713:
2714:
2715:
2716:
2717:
2718:
2719:
2720:
2721:
2722:
2723:
2724:
2725:
2726:
2727:
2728:
2729:
2730:
2731:
2732:
2733:
2734:
2735:
2736:
2737:
2738:
2739:
2740:
2741:
2742:
2743:
2744:
2745:
2746:
2747:
2748:
2749:
2750:
2751:
2752:
2753:
2754:
2755:
2756:
2757:
2758:
2759:
2760:
2761:
2762:
2763:
2764:
2765:
2766:
2767:
2768:
2769:
2770:
2771:
2772:
2773:
2774:
2775:
2776:
2777:
2778:
2779:
2780:
2781:
2782:
2783:
2784:
2785:
2786:
2787:
2788:
2789:
2790:
2791:
2792:
2793:
2794:
2795:
2796:
2797:
2798:
2799:
2800:
2801:
2802:
2803:
2804:
2805:
2806:
2807:
2808:
2809:
2810:
2811:
2812:
2813:
2814:
2815:
2816:
2817:
2818:
2819:
2820:
2821:
2822:
2823:
2824:
2825:
2826:
2827:
2828:
2829:
2830:
2831:
2832:
2833:
2834:
2835:
2836:
2837:
2838:
2839:
2840:
2841:
2842:
2843:
2844:
2845:
2846:
2847:
2848:
2849:
2850:
2851:
2852:
2853:
2854:
2855:
2856:
2857:
2858:
2859:
2860:
2861:
2862:
2863:
2864:
2865:
2866:
2867:
2868:
2869:
2870:
2871:
2872:
2873:
2874:
2875:
2876:
2877:
2878:
2879:
2880:
2881:
2882:
2883:
2884:
2885:
2886:
2887:
2888:
2889:
2890:
2891:
2892:
2893:
2894:
2895:
2896:
2897:
2898:
2899:
2900:
2901:
2902:
2903:
2904:
2905:
2906:
2907:
2908:
2909:
2910:
2911:
2912:
2913:
2914:
2915:
2916:
2917:
2918:
2919:
2920:
2921:
2922:
2923:
2924:
2925:
2926:
2927:
2928:
2929:
2930:
2931:
2932:
2933:
2934:
2935:
2936:
2937:
2938:
2939:
2940:
2941:
2942:
2943:
2944:
2945:
2946:
2947:
2948:
2949:
2950:
2951:
2952:
2953:
2954:
2955:
2956:
2957:
2958:
2959:
2960:
2961:
2962:
2963:
2964:
2965:
2966:
2967:
2968:
2969:
2970:
2971:
2972:
2973:
2974:
2975:
2976:
2977:
2978:
2979:
2980:
2981:
2982:
2983:
2984:
2985:
2986:
2987:
2988:
2989:
2990:
2991:
2992:
2993:
2994:
2995:
2996:
2997:
2998:
2999:
3000:
3001:
3002:
3003:
3004:
3005:
3006:
3007:
3008:
3009:
3010:
3011:
3012:
3013:
3014:
3015:
3016:
3017:
3018:
3019:
3020:
3021:
3022:
3023:
3024:
3025:
3026:
3027:
3028:
3029:
3030:
3031:
3032:
3033:
3034:
3035:
3036:
3037:
3038:
3039:
3040:
3041:
3042:
3043:
3044:
3045:
3046:
3047:
3048:
3049:
3050:
3051:
3052:
3053:
3054:
3055:
3056:
3057:
3058:
3059:
3060:
3061:
3062:
3063:
3064:
3065:
3066:
3067:
3068:
3069:
3070:
3071:
3072:
3073:
3074:
3075:
3076:
3077:
3078:
3079:
3080:
3081:
3082:
3083:
3084:
3085:
3086:
3087:
3088:
3089:
3090:
3091:
3092:
3093:
3094:
3095:
3096:
3097:
3098:
3099:
3100:
3101:
3102:
3103:
3104:
3105:
3106:
3107:
3108:
3109:
3110:
3111:
3112:
3113:
3114:
3115:
3116:
3117:
3118:
3119:
3120:
3121:
3122:
3123:
3124:
3125:
3126:
3127:
3128:
3129:
3130:
3131:
3132:
3133:
3134:
3135:
3136:
3137:
3138:
3139:
3140:
3141:
3142:
3143:
3144:
3145:
3146:
3147:
3148:
3149:
3150:
3151:
3152:
3153:
3154:
3155:
3156:
3157:
3158:
3159:
3160:
3161:
3162:
3163:
3164:
3165:
3166:
3167:
3168:
3169:
3170:
3171:
3172:
3173:
3174:
3175:
3176:
3177:
3178:
3179:
3180:
3181:
3182:
3183:
3184:
3185:
3186:
3187:
3188:
3189:
3190:
3191:
3192:
3193:
3194:
3195:
3196:
3197:
3198:
3199:
3200:
3201:
3202:
3203:
3204:
3205:
3206:
3207:
3208:
3209:
3210:
3211:
3212:
3213:
3214:
3215:
3216:
3217:
3218:
3219:
3220:
3221:
3222:
3223:
3224:
3225:
3226:
3227:
3228:
3229:
3230:
3231:
3232:
3233:
3234:
3235:
3236:
3237:
3238:
3239:
3240:
3241:
3242:
3243:
3244:
3245:
3246:
3247:
3248:
3249:
3250:
3251:
3252:
3253:
3254:
3255:
3256:
3257:
3258:
3259:
3260:
3261:
3262:
3263:
3264:
3265:
|
[DCDIAG OUTPUT]
Domain Controller Diagnosis
Performing initial setup:
Done gathering initial info.
Doing initial required tests
Testing server: Ville\SERVEUR
Starting test: Connectivity
......................... SERVEUR passed test Connectivity
Doing primary tests
Testing server: Argenteuil\SERVEUR
Starting test: Replications
......................... SERVEUR passed test Replications
Starting test: NCSecDesc
......................... SERVEUR passed test NCSecDesc
Starting test: NetLogons
......................... SERVEUR passed test NetLogons
Starting test: Advertising
......................... SERVEUR passed test Advertising
Starting test: KnowsOfRoleHolders
......................... SERVEUR passed test KnowsOfRoleHolders
Starting test: RidManager
......................... SERVEUR passed test RidManager
Starting test: MachineAccount
......................... SERVEUR passed test MachineAccount
Starting test: Services
......................... SERVEUR passed test Services
Starting test: ObjectsReplicated
......................... SERVEUR passed test ObjectsReplicated
Starting test: frssysvol
......................... SERVEUR passed test frssysvol
Starting test: frsevent
......................... SERVEUR passed test frsevent
Starting test: kccevent
......................... SERVEUR passed test kccevent
Starting test: systemlog
An Error Event occured. EventID: 0x000016AD
Time Generated: 11/26/2007 11:54:50
Event String: The session setup from the computer PCA
An Error Event occured. EventID: 0xC0002719
Time Generated: 11/26/2007 12:10:30
(Event String could not be retrieved)
An Error Event occured. EventID: 0x00000457
Time Generated: 11/26/2007 12:39:29
(Event String could not be retrieved)
An Error Event occured. EventID: 0x00000457
Time Generated: 11/26/2007 12:39:31
(Event String could not be retrieved)
An Error Event occured. EventID: 0x00000457
Time Generated: 11/26/2007 12:39:31
(Event String could not be retrieved)
An Error Event occured. EventID: 0x00000457
Time Generated: 11/26/2007 12:39:31
(Event String could not be retrieved)
An Error Event occured. EventID: 0x00000457
Time Generated: 11/26/2007 12:39:31
(Event String could not be retrieved)
An Error Event occured. EventID: 0x00000457
Time Generated: 11/26/2007 12:39:32
(Event String could not be retrieved)
......................... SERVEUR failed test systemlog
Starting test: VerifyReferences
......................... SERVEUR passed test VerifyReferences
Running partition tests on : DomainDnsZones
Starting test: CrossRefValidation
......................... DomainDnsZones passed test CrossRefValidation
Starting test: CheckSDRefDom
......................... DomainDnsZones passed test CheckSDRefDom
Running partition tests on : ForestDnsZones
Starting test: CrossRefValidation
......................... ForestDnsZones passed test CrossRefValidation
Starting test: CheckSDRefDom
......................... ForestDnsZones passed test CheckSDRefDom
Running partition tests on : Schema
Starting test: CrossRefValidation
......................... Schema passed test CrossRefValidation
Starting test: CheckSDRefDom
......................... Schema passed test CheckSDRefDom
Running partition tests on : Configuration
Starting test: CrossRefValidation
......................... Configuration passed test CrossRefValidation
Starting test: CheckSDRefDom
......................... Configuration passed test CheckSDRefDom
Running partition tests on : societe
Starting test: CrossRefValidation
......................... societe passed test CrossRefValidation
Starting test: CheckSDRefDom
......................... societe passed test CheckSDRefDom
Running enterprise tests on : societe.priv
Starting test: Intersite
Doing intersite inbound replication test on site Ville:
......................... societe.priv passed test Intersite
Starting test: FsmoCheck
......................... societe.priv passed test FsmoCheck
[NETDIAG OUTPUT]
Gathering IPX configuration information.
Querying status of the Netcard drivers... Passed
Testing IpConfig - pinging the Primary WINS server... Passed
Testing IpConfig - pinging the Secondary WINS server... Passed
Testing Domain membership... Passed
Gathering NetBT configuration information.
Testing for autoconfiguration... Passed
Testing IP loopback ping... Passed
Testing default gateways... Passed
Enumerating local and remote NetBT name cache... Passed
Testing the WINS server
Local Area Connection 2
Sending name query to primary WINS server 192.0.1.233 - Passed
Sending name query to secondary WINS server 192.0.2.13 - Passed
Gathering Winsock information.
Testing DNS
PASS - All the DNS entries for DC are registered on DNS server '127.0.0.1' and other DCs also have some of the names registered.
PASS - All the DNS entries for DC are registered on DNS server '192.0.2.14' and other DCs also have some of the names registered.
Testing redirector and browser... Passed
Testing DC discovery.
Looking for a DC
Looking for a PDC emulator
Looking for an Active Directory DC
Gathering the list of Domain Controllers for domain 'DOM_SOCIETE'
Testing trust relationships... Passed
Testing Kerberos authentication... Passed
Testing LDAP servers in Domain DOM_SOCIETE ...
Gathering routing information
Gathering network statistics information.
Gathering configuration of bindings.
Gathering RAS connection information
Gathering Modem information
Gathering Netware information
Gathering IP Security information
Tests complete.
Computer Name: server
DNS Host Name: server.societe.priv
DNS Domain Name: societe.priv
System info : Microsoft Windows Server 2003 (Build 3790)
Processor : x86 Family 6 Model 15 Stepping 6, GenuineIntel
Hotfixes :
Installed? Name
Yes KB921503
Yes KB924667-v2
Yes KB925398_WMP64
Yes KB925876
Yes KB925902
Yes KB926122
Yes KB927891
Yes KB929123
Yes KB930178
Yes KB931784
Yes KB931836
Yes KB932168
Yes KB933360
Yes KB933566
Yes KB933566-IE7
Yes KB933729
Yes KB933854
Yes KB935839
Yes KB935840
Yes KB935966
Yes KB936021
Yes KB936357
Yes KB936782
Yes KB937143-IE7
Yes KB938127-IE7
Yes KB939653-IE7
Yes KB941202
Yes Q147222
No ServicePackUninstall
Netcard queries test . . . . . . . : Passed
Information of Netcard drivers:
---------------------------------------------------------------------------
Description: HP NC373i Multifunction Gigabit Server Adapter
Device: \DEVICE\{C4294D72-A993-4982-99BF-D297CA05513D}
Media State: Connected
Device State: Connected
Connect Time: 44 days, 22:39:43
Media Speed: 1 Gbps
Packets Sent: 181062121
Bytes Sent (Optional): 1616196240
Packets Received: 153553800
Directed Pkts Recd (Optional): 152046815
Bytes Received (Optional): 164151744
Directed Bytes Recd (Optional): 164151744
---------------------------------------------------------------------------
[PASS] - At least one netcard is in the 'Connected' state.
Per interface results:
Adapter : Local Area Connection 2
Adapter ID . . . . . . . . : {C4294D72-A993-4982-99BF-D297CA05513D}
Netcard queries test . . . : Passed
Adapter type . . . . . . . : Ethernet
Host Name. . . . . . . . . : server
Description. . . . . . . . : HP NC373i Multifunction Gigabit Server Adapter
Physical Address . . . . . : 00-1C-C4-12-4D-76
Dhcp Enabled . . . . . . . : No
DHCP ClassID . . . . . . . :
Autoconfiguration Enabled. : Yes
IP Address . . . . . . . . : 192.0.1.233
Subnet Mask. . . . . . . . : 255.255.255.0
Default Gateway. . . . . . : 192.0.1.1
Primary WINS Server. . . . : 192.0.1.233
Secondary WINS Server. . . : 192.0.2.13
Dns Servers. . . . . . . . : 127.0.0.1
192.0.2.14
IpConfig results . . . . . : Passed
Pinging the Primary WINS server 192.0.1.233 - reachable
Pinging the Secondary WINS server 192.0.2.13 - reachable
AutoConfiguration results. . . . . . : Passed
AutoConfiguration is not in use.
Default gateway test . . . : Passed
Pinging gateway 192.0.1.1 - reachable
At least one gateway reachable for this adapter.
NetBT name test. . . . . . : Passed
NetBT_Tcpip_{C4294D72-A993-4982-99BF-D297CA05513D}
server <00> UNIQUE REGISTERED
server <20> UNIQUE REGISTERED
DOM_SOCIETE <1C> GROUP REGISTERED
DOM_SOCIETE <00> GROUP REGISTERED
DOM_SOCIETE <1E> GROUP REGISTERED
DOM_SOCIETE <1D> UNIQUE REGISTERED
..__MSBROWSE__.<01> GROUP REGISTERED
[WARNING] At least one of the <00> 'WorkStation Service', <03> 'Messenger Service', <20> 'WINS' names is missing.
NetBios Resolution : via DHCP
Netbios Remote Cache Table
Name Type HostAddress Life [sec]
---------------------------------------------------------------
PC-HB <20> UNIQUE 192.0.1.144 392
PCC <20> UNIQUE 192.0.1.55 20
SERV-AD <20> UNIQUE 192.0.2.13 237
SERV-AD <00> UNIQUE 192.0.2.13 237
WINS service test. . . . . : Passed
Sending name query to primary WINS server 192.0.1.233 - Passed
Sending name query to secondary WINS server 192.0.2.13 - Passed
The test was successful. At least one WINS server was found.
IPX test : IPX is not installed on this machine.
Global results:
IP General configuration
LMHOSTS Enabled. . . . . . . . : Yes
DNS for WINS resolution. . . . : Enabled
Node Type. . . . . . . . . . . : Hybrid
NBT Scope ID . . . . . . . . . :
Routing Enabled. . . . . . . . : No
WINS Proxy Enabled . . . . . . : No
DNS resolution for NETBIOS . . : No
Domain membership test . . . . . . : Passed
Machine is a . . . . . . . . . : Domain Controller
Netbios Domain name. . . . . . : DOM_SOCIETE
Dns domain name. . . . . . . . : societe.priv
Dns forest name. . . . . . . . : societe.priv
Domain Guid. . . . . . . . . . : {7D981E2C-29C6-4E28-BFC1-B4466798B1E5}
Domain Sid . . . . . . . . . . : S-1-5-21-1517770871-1160580203-618671499
Logon User . . . . . . . . . . : admin
Logon Domain . . . . . . . . . : DOM_SOCIETE
NetBT transports test. . . . . . . : Passed
List of NetBt transports currently configured:
NetBT_Tcpip_{C4294D72-A993-4982-99BF-D297CA05513D}
1 NetBt transport currently configured.
Autonet address test . . . . . . . : Passed
PASS - you have at least one non-autoconfigured IP address
IP loopback ping test. . . . . . . : Passed
PASS - pinging IP loopback address was successful.
Your IP stack is most probably OK.
Default gateway test . . . . . . . : Passed
PASS - you have at least one reachable gateway.
NetBT name test. . . . . . . . . . : Passed
No NetBT scope defined
[WARNING] You don't have a single interface with the <00> 'WorkStation Service', <03> 'Messenger Service', <20> 'WINS' names defined.
Winsock test . . . . . . . . . . . : Passed
The number of protocols which have been reported : 12
Description: MSAFD Tcpip [TCP/IP]
Provider Version :2
Max message size : Stream Oriented
Description: MSAFD Tcpip [UDP/IP]
Provider Version :2
Description: RSVP UDP Service Provider
Provider Version :6
Description: RSVP TCP Service Provider
Provider Version :6
Max message size : Stream Oriented
Description: MSAFD NetBIOS [\Device\NetBT_Tcpip_{C4294D72-A993-4982-99BF-D297CA05513D}] SEQPACKET 0
Provider Version :2
Description: MSAFD NetBIOS [\Device\NetBT_Tcpip_{C4294D72-A993-4982-99BF-D297CA05513D}] DATAGRAM 0
Provider Version :2
Description: MSAFD NetBIOS [\Device\NetBT_Tcpip_{F916FF73-2795-4BAE-AAAC-2E0C62A287E3}] SEQPACKET 1
Provider Version :2
Description: MSAFD NetBIOS [\Device\NetBT_Tcpip_{F916FF73-2795-4BAE-AAAC-2E0C62A287E3}] DATAGRAM 1
Provider Version :2
Description: MSAFD NetBIOS [\Device\NetBT_Tcpip_{6442878D-FD64-4BBB-855E-C72A36CB8937}] SEQPACKET 2
Provider Version :2
Description: MSAFD NetBIOS [\Device\NetBT_Tcpip_{6442878D-FD64-4BBB-855E-C72A36CB8937}] DATAGRAM 2
Provider Version :2
Description: MSAFD NetBIOS [\Device\NetBT_Tcpip_{7785C844-3611-4597-B8A0-E96F2F91998A}] SEQPACKET 3
Provider Version :2
Description: MSAFD NetBIOS [\Device\NetBT_Tcpip_{7785C844-3611-4597-B8A0-E96F2F91998A}] DATAGRAM 3
Provider Version :2
Max UDP size : 65507 bytes
DNS test . . . . . . . . . . . . . : Passed
Interface {C4294D72-A993-4982-99BF-D297CA05513D}
DNS Domain:
DNS Servers: 127.0.0.1 192.0.2.14
IP Address: Expected registration with PDN (primary DNS domain name):
Hostname: server.societe.priv.
Authoritative zone: societe.priv.
Primary DNS server: server.societe.priv 192.0.1.233
Authoritative NS:192.0.1.233 192.0.2.13 192.0.2.14 192.0.2.237
Check the DNS registration for DCs entries on DNS server '127.0.0.1'
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 SERV-AD.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.7d981e2c-29c6-4e28-bfc1-b4466798b1e5.domains._msdcs.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.7d981e2c-29c6-4e28-bfc1-b4466798b1e5.domains._msdcs.societe.priv
DNS DATA =
SRV 0 100 389 server.societe.priv
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 SERV-AD.societe.priv
+------------------------------------------------------+
The Record is correct on DNS server '127.0.0.1'.
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.dc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.dc._msdcs.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 SERV-AD.societe.priv
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._tcp.dc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _kerberos._tcp.dc._msdcs.societe.priv
DNS DATA =
SRV 0 100 88 serverbis.societe.priv
SRV 0 100 88 SERV-AD.societe.priv
SRV 0 100 88 server.societe.priv
SRV 0 100 88 srv-exchange.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._tcp.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _kerberos._tcp.societe.priv
DNS DATA =
SRV 0 100 88 SERV-AD.societe.priv
SRV 0 100 88 srv-exchange.societe.priv
SRV 0 100 88 server.societe.priv
SRV 0 100 88 serverbis.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._udp.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _kerberos._udp.societe.priv
DNS DATA =
SRV 0 100 88 SERV-AD.societe.priv
SRV 0 100 88 srv-exchange.societe.priv
SRV 0 100 88 server.societe.priv
SRV 0 100 88 serverbis.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kpasswd._tcp.societe.priv.
DNS DATA =
SRV 0 100 464 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _kpasswd._tcp.societe.priv
DNS DATA =
SRV 0 100 464 SERV-AD.societe.priv
SRV 0 100 464 srv-exchange.societe.priv
SRV 0 100 464 server.societe.priv
SRV 0 100 464 serverbis.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kpasswd._udp.societe.priv.
DNS DATA =
SRV 0 100 464 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _kpasswd._udp.societe.priv
DNS DATA =
SRV 0 100 464 SERV-AD.societe.priv
SRV 0 100 464 srv-exchange.societe.priv
SRV 0 100 464 server.societe.priv
SRV 0 100 464 serverbis.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.ForestDnsZones.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.ForestDnsZones.societe.priv
DNS DATA =
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
SRV 0 100 389 SERV-AD.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.DomainDnsZones.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.DomainDnsZones.societe.priv
DNS DATA =
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
SRV 0 100 389 SERV-AD.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = societe.priv.
DNS DATA =
A 192.0.1.233
The record on DNS server 127.0.0.1 is:
DNS NAME = societe.priv
DNS DATA =
A 192.0.2.13
A 192.0.1.233
A 192.0.2.237
A 192.0.2.14
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = ForestDnsZones.societe.priv.
DNS DATA =
A 192.0.1.233
The record on DNS server 127.0.0.1 is:
DNS NAME = ForestDnsZones.societe.priv
DNS DATA =
A 192.0.2.13
A 192.0.2.237
A 192.0.2.14
A 192.0.1.233
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = DomainDnsZones.societe.priv.
DNS DATA =
A 192.0.1.233
The record on DNS server 127.0.0.1 is:
DNS NAME = DomainDnsZones.societe.priv
DNS DATA =
A 192.0.2.13
A 192.0.2.237
A 192.0.2.14
A 192.0.1.233
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.Ville._sites.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.Ville._sites.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._tcp.Ville._sites.dc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _kerberos._tcp.Ville._sites.dc._msdcs.societe.priv
DNS DATA =
SRV 0 100 88 server.societe.priv
SRV 0 100 88 serverbis.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.Ville._sites.dc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.Ville._sites.dc._msdcs.societe.priv
DNS DATA =
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._tcp.Ville._sites.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _kerberos._tcp.Ville._sites.societe.priv
DNS DATA =
SRV 0 100 88 srv-exchange.societe.priv
SRV 0 100 88 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.Ville._sites.ForestDnsZones.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.Ville._sites.ForestDnsZones.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.Ville._sites.DomainDnsZones.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.Ville._sites.DomainDnsZones.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.gc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 3268 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _ldap._tcp.gc._msdcs.societe.priv
DNS DATA =
SRV 0 100 3268 server.societe.priv
SRV 0 100 3268 SERV-AD.societe.priv
+------------------------------------------------------+
The Record is correct on DNS server '127.0.0.1'.
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = gc._msdcs.societe.priv.
DNS DATA =
A 192.0.1.233
The record on DNS server 127.0.0.1 is:
DNS NAME = gc._msdcs.societe.priv
DNS DATA =
A 192.0.1.233
A 192.0.2.13
+------------------------------------------------------+
The Record is different on DNS server '127.0.0.1'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '127.0.0.1', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _gc._tcp.societe.priv.
DNS DATA =
SRV 0 100 3268 server.societe.priv.
The record on DNS server 127.0.0.1 is:
DNS NAME = _gc._tcp.societe.priv
DNS DATA =
SRV 0 100 3268 SERV-AD.societe.priv
SRV 0 100 3268 server.societe.priv
+------------------------------------------------------+
The Record is correct on DNS server '127.0.0.1'.
PASS - All the DNS entries for DC are registered on DNS server '127.0.0.1' and other DCs also have some of the names registered.
Check the DNS registration for DCs entries on DNS server '192.0.2.14'
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.societe.priv
DNS DATA =
SRV 0 100 389 SERV-AD.societe.priv
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
SRV 0 100 389 serverbis.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.7d981e2c-29c6-4e28-bfc1-b4466798b1e5.domains._msdcs.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.7d981e2c-29c6-4e28-bfc1-b4466798b1e5.domains._msdcs.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 SERV-AD.societe.priv
SRV 0 100 389 server.societe.priv
SRV 0 100 389 serverbis.societe.priv
+------------------------------------------------------+
The Record is correct on DNS server '192.0.2.14'.
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.dc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.dc._msdcs.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 SERV-AD.societe.priv
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._tcp.dc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _kerberos._tcp.dc._msdcs.societe.priv
DNS DATA =
SRV 0 100 88 SERV-AD.societe.priv
SRV 0 100 88 server.societe.priv
SRV 0 100 88 srv-exchange.societe.priv
SRV 0 100 88 serverbis.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._tcp.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _kerberos._tcp.societe.priv
DNS DATA =
SRV 0 100 88 serverbis.societe.priv
SRV 0 100 88 SERV-AD.societe.priv
SRV 0 100 88 srv-exchange.societe.priv
SRV 0 100 88 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._udp.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _kerberos._udp.societe.priv
DNS DATA =
SRV 0 100 88 serverbis.societe.priv
SRV 0 100 88 SERV-AD.societe.priv
SRV 0 100 88 srv-exchange.societe.priv
SRV 0 100 88 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kpasswd._tcp.societe.priv.
DNS DATA =
SRV 0 100 464 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _kpasswd._tcp.societe.priv
DNS DATA =
SRV 0 100 464 serverbis.societe.priv
SRV 0 100 464 SERV-AD.societe.priv
SRV 0 100 464 srv-exchange.societe.priv
SRV 0 100 464 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kpasswd._udp.societe.priv.
DNS DATA =
SRV 0 100 464 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _kpasswd._udp.societe.priv
DNS DATA =
SRV 0 100 464 serverbis.societe.priv
SRV 0 100 464 SERV-AD.societe.priv
SRV 0 100 464 srv-exchange.societe.priv
SRV 0 100 464 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.ForestDnsZones.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.ForestDnsZones.societe.priv
DNS DATA =
SRV 0 100 389 SERV-AD.societe.priv
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.DomainDnsZones.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.DomainDnsZones.societe.priv
DNS DATA =
SRV 0 100 389 SERV-AD.societe.priv
SRV 0 100 389 serverbis.societe.priv
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = societe.priv.
DNS DATA =
A 192.0.1.233
The record on DNS server 192.0.2.14 is:
DNS NAME = societe.priv
DNS DATA =
A 192.0.1.233
A 192.0.2.14
A 192.0.2.13
A 192.0.2.237
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = ForestDnsZones.societe.priv.
DNS DATA =
A 192.0.1.233
The record on DNS server 192.0.2.14 is:
DNS NAME = ForestDnsZones.societe.priv
DNS DATA =
A 192.0.1.233
A 192.0.2.13
A 192.0.2.237
A 192.0.2.14
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = DomainDnsZones.societe.priv.
DNS DATA =
A 192.0.1.233
The record on DNS server 192.0.2.14 is:
DNS NAME = DomainDnsZones.societe.priv
DNS DATA =
A 192.0.1.233
A 192.0.2.13
A 192.0.2.237
A 192.0.2.14
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.Ville._sites.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.Ville._sites.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._tcp.Ville._sites.dc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _kerberos._tcp.Ville._sites.dc._msdcs.societe.priv
DNS DATA =
SRV 0 100 88 serverbis.societe.priv
SRV 0 100 88 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.Ville._sites.dc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.Ville._sites.dc._msdcs.societe.priv
DNS DATA =
SRV 0 100 389 server.societe.priv
SRV 0 100 389 serverbis.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _kerberos._tcp.Ville._sites.societe.priv.
DNS DATA =
SRV 0 100 88 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _kerberos._tcp.Ville._sites.societe.priv
DNS DATA =
SRV 0 100 88 srv-exchange.societe.priv
SRV 0 100 88 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.Ville._sites.ForestDnsZones.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.Ville._sites.ForestDnsZones.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.Ville._sites.DomainDnsZones.societe.priv.
DNS DATA =
SRV 0 100 389 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.Ville._sites.DomainDnsZones.societe.priv
DNS DATA =
SRV 0 100 389 srv-exchange.societe.priv
SRV 0 100 389 server.societe.priv
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _ldap._tcp.gc._msdcs.societe.priv.
DNS DATA =
SRV 0 100 3268 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _ldap._tcp.gc._msdcs.societe.priv
DNS DATA =
SRV 0 100 3268 server.societe.priv
SRV 0 100 3268 SERV-AD.societe.priv
+------------------------------------------------------+
The Record is correct on DNS server '192.0.2.14'.
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = gc._msdcs.societe.priv.
DNS DATA =
A 192.0.1.233
The record on DNS server 192.0.2.14 is:
DNS NAME = gc._msdcs.societe.priv
DNS DATA =
A 192.0.1.233
A 192.0.2.13
+------------------------------------------------------+
The Record is different on DNS server '192.0.2.14'.
DNS server has more than one entries for this name, usually this means there are multiple DCs for this domain.
Your DC entry is one of them on DNS server '192.0.2.14', no need to re-register.
+------------------------------------------------------+
The record on your DC is:
DNS NAME = _gc._tcp.societe.priv.
DNS DATA =
SRV 0 100 3268 server.societe.priv.
The record on DNS server 192.0.2.14 is:
DNS NAME = _gc._tcp.societe.priv
DNS DATA =
SRV 0 100 3268 SERV-AD.societe.priv
SRV 0 100 3268 server.societe.priv
+------------------------------------------------------+
The Record is correct on DNS server '192.0.2.14'.
PASS - All the DNS entries for DC are registered on DNS server '192.0.2.14' and other DCs also have some of the names registered.
Redir and Browser test . . . . . . : Passed
List of transports currently bound to the Redir
NetbiosSmb
NetBT_Tcpip_{C4294D72-A993-4982-99BF-D297CA05513D}
The redir is bound to 1 NetBt transport.
List of transports currently bound to the browser
NetBT_Tcpip_{C4294D72-A993-4982-99BF-D297CA05513D}
The browser is bound to 1 NetBt transport.
Mailslot test for DOM_SOCIETE* passed.
DC discovery test. . . . . . . . . : Passed
Find DC in domain 'DOM_SOCIETE':
Found this DC in domain 'DOM_SOCIETE':
DC. . . . . . . . . . . : \\server.societe.priv
Address . . . . . . . . : \\192.0.1.233
Domain Guid . . . . . . : {7D981E2C-29C6-4E28-BFC1-B4466798B1E5}
Domain Name . . . . . . : societe.priv
Forest Name . . . . . . : societe.priv
DC Site Name. . . . . . : Ville
Our Site Name . . . . . : Ville
Flags . . . . . . . . . : GC DS KDC TIMESERV WRITABLE DNS_DC DNS_DOMAIN DNS_FOREST CLOSE_SITE 0x8
Find PDC emulator in domain 'DOM_SOCIETE':
Found this PDC emulator in domain 'DOM_SOCIETE':
DC. . . . . . . . . . . : \\SERV-AD.societe.priv
Address . . . . . . . . : \\192.0.2.13
Domain Guid . . . . . . : {7D981E2C-29C6-4E28-BFC1-B4466798B1E5}
Domain Name . . . . . . : societe.priv
Forest Name . . . . . . : societe.priv
DC Site Name. . . . . . : Paris
Our Site Name . . . . . : Ville
Flags . . . . . . . . . : PDC emulator GC DS KDC TIMESERV GTIMESERV WRITABLE DNS_DC DNS_DOMAIN DNS_FOREST 0x8
Find Active Directory DC in domain 'DOM_SOCIETE':
Found this Active Directory DC in domain 'DOM_SOCIETE':
DC. . . . . . . . . . . : \\server.societe.priv
Address . . . . . . . . : \\192.0.1.233
Domain Guid . . . . . . : {7D981E2C-29C6-4E28-BFC1-B4466798B1E5}
Domain Name . . . . . . : societe.priv
Forest Name . . . . . . : societe.priv
DC Site Name. . . . . . : Ville
Our Site Name . . . . . : Ville
Flags . . . . . . . . . : GC DS KDC TIMESERV WRITABLE DNS_DC DNS_DOMAIN DNS_FOREST CLOSE_SITE 0x8
DC list test . . . . . . . . . . . : Passed
List of DCs in Domain 'DOM_SOCIETE':
server.societe.priv
SERV-AD.societe.priv
srv-exchange.societe.priv
serverbis.societe.priv
Trust relationship test. . . . . . : Passed
Test to ensure DomainSid of domain 'DOM_SOCIETE' is correct.
Secure channel for domain 'DOM_SOCIETE' is to '\\SERV-AD.societe.priv'.
Secure channel for domain 'DOM_SOCIETE' was successfully set to PDC emulator '\\SERV-AD.societe.priv'.
Kerberos test. . . . . . . . . . . : Passed
Cached Tickets:
LDAP test. . . . . . . . . . . . . : Passed
Do un-authenticated LDAP call to 'server.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121944.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 109 CN=NTDS Settings,CN=server,CN=Servers,CN=Ville,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 6 750408
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 32 server.societe.priv
Attr: ldapServiceName
Val: 53 societe.priv:[email protected]
Attr: serverName
Val: 92 CN=server,CN=Servers,CN=Ville,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 4 TRUE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Do NTLM authenticated LDAP call to 'server.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121944.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 109 CN=NTDS Settings,CN=server,CN=Servers,CN=Ville,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 6 750408
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 32 server.societe.priv
Attr: ldapServiceName
Val: 53 societe.priv:[email protected]
Attr: serverName
Val: 92 CN=server,CN=Servers,CN=Ville,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 4 TRUE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Do Negotiate authenticated LDAP call to 'server.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121944.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 109 CN=NTDS Settings,CN=server,CN=Servers,CN=Ville,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 6 750408
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 32 server.societe.priv
Attr: ldapServiceName
Val: 53 societe.priv:[email protected]
Attr: serverName
Val: 92 CN=server,CN=Servers,CN=Ville,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 4 TRUE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Registered Service Principal Names:
exchangeAB/server
exchangeAB/server.societe.priv
ldap/server.societe.priv/DomainDnsZones.societe.priv
ldap/server.societe.priv/ForestDnsZones.societe.priv
NtFrs-88f5d2bd-b646-11d2-a6d3-00c04fc9b232/server.societe.priv
DNS/server.societe.priv
GC/server.societe.priv/societe.priv
HOST/server.societe.priv/societe.priv
HOST/server.societe.priv/DOM_SOCIETE
ldap/cd818c55-7e8c-46d5-8cfb-241a2eaa72dc._msdcs.societe.priv
ldap/server.societe.priv/DOM_SOCIETE
ldap/server
ldap/server.societe.priv
ldap/server.societe.priv/societe.priv
E3514235-4B06-11D1-AB04-00C04FC2DCD2/cd818c55-7e8c-46d5-8cfb-241a2eaa72dc/societe.priv
HOST/server
HOST/server.societe.priv
Do un-authenticated LDAP call to 'SERV-AD.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121944.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 105 CN=NTDS Settings,CN=SERV-AD,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 7 2615831
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 33 SERV-AD.societe.priv
Attr: ldapServiceName
Val: 54 societe.priv:[email protected]
Attr: serverName
Val: 88 CN=SERV-AD,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 4 TRUE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Do NTLM authenticated LDAP call to 'SERV-AD.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121945.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 105 CN=NTDS Settings,CN=SERV-AD,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 7 2615831
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 33 SERV-AD.societe.priv
Attr: ldapServiceName
Val: 54 societe.priv:[email protected]
Attr: serverName
Val: 88 CN=SERV-AD,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 4 TRUE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Do Negotiate authenticated LDAP call to 'SERV-AD.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121945.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 105 CN=NTDS Settings,CN=SERV-AD,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 7 2615831
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 33 SERV-AD.societe.priv
Attr: ldapServiceName
Val: 54 societe.priv:[email protected]
Attr: serverName
Val: 88 CN=SERV-AD,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 4 TRUE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Registered Service Principal Names:
exchangeAB/server.societe.priv
exchangeAB/server
ldap/server.societe.priv/ForestDnsZones.societe.priv
ldap/server.societe.priv/DomainDnsZones.societe.priv
HOST/server.societe.priv/societe.priv
HOST/server.societe.priv/DOM_SOCIETE
ldap/cd818c55-7e8c-46d5-8cfb-241a2eaa72dc._msdcs.societe.priv
ldap/server.societe.priv/DOM_SOCIETE
ldap/server
ldap/server.societe.priv
ldap/server.societe.priv/societe.priv
GC/server.societe.priv/societe.priv
DNS/server.societe.priv
NtFrs-88f5d2bd-b646-11d2-a6d3-00c04fc9b232/server.societe.priv
E3514235-4B06-11D1-AB04-00C04FC2DCD2/cd818c55-7e8c-46d5-8cfb-241a2eaa72dc/societe.priv
HOST/server
HOST/server.societe.priv
Do un-authenticated LDAP call to 'srv-exchange.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121945.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 105 CN=NTDS Settings,CN=srv-exchange,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 7 2676066
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 33 srv-exchange.societe.priv
Attr: ldapServiceName
Val: 54 societe.priv:[email protected]
Attr: serverName
Val: 88 CN=srv-exchange,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 5 FALSE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Do NTLM authenticated LDAP call to 'srv-exchange.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121945.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 105 CN=NTDS Settings,CN=srv-exchange,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 7 2676066
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 33 srv-exchange.societe.priv
Attr: ldapServiceName
Val: 54 societe.priv:[email protected]
Attr: serverName
Val: 88 CN=srv-exchange,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 5 FALSE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Do Negotiate authenticated LDAP call to 'srv-exchange.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121945.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 105 CN=NTDS Settings,CN=srv-exchange,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 7 2676066
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 33 srv-exchange.societe.priv
Attr: ldapServiceName
Val: 54 societe.priv:[email protected]
Attr: serverName
Val: 88 CN=srv-exchange,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 5 FALSE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Registered Service Principal Names:
exchangeAB/server
exchangeAB/server.societe.priv
ldap/server.societe.priv/ForestDnsZones.societe.priv
ldap/server.societe.priv/DomainDnsZones.societe.priv
ldap/server.societe.priv/DOM_SOCIETE
ldap/server
ldap/server.societe.priv
ldap/server.societe.priv/societe.priv
GC/server.societe.priv/societe.priv
DNS/server.societe.priv
NtFrs-88f5d2bd-b646-11d2-a6d3-00c04fc9b232/server.societe.priv
ldap/cd818c55-7e8c-46d5-8cfb-241a2eaa72dc._msdcs.societe.priv
HOST/server.societe.priv/DOM_SOCIETE
HOST/server.societe.priv/societe.priv
E3514235-4B06-11D1-AB04-00C04FC2DCD2/cd818c55-7e8c-46d5-8cfb-241a2eaa72dc/societe.priv
HOST/server
HOST/server.societe.priv
Do un-authenticated LDAP call to 'serverbis.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121945.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 104 CN=NTDS Settings,CN=serverbis,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 6 899125
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 32 serverbis.societe.priv
Attr: ldapServiceName
Val: 53 societe.priv:[email protected]
Attr: serverName
Val: 87 CN=serverbis,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 5 FALSE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Do NTLM authenticated LDAP call to 'serverbis.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121945.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 104 CN=NTDS Settings,CN=serverbis,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 6 899125
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 32 serverbis.societe.priv
Attr: ldapServiceName
Val: 53 societe.priv:[email protected]
Attr: serverName
Val: 87 CN=serverbis,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 5 FALSE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Do Negotiate authenticated LDAP call to 'serverbis.societe.priv'.
Found 1 entries:
Attr: currentTime
Val: 17 20071126121945.0Z
Attr: subschemaSubentry
Val: 65 CN=Aggregate,CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: dsServiceName
Val: 104 CN=NTDS Settings,CN=serverbis,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: namingContexts
Val: 25 DC=societe,DC=priv
Val: 42 CN=Configuration,DC=societe,DC=priv
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Val: 43 DC=ForestDnsZones,DC=societe,DC=priv
Val: 43 DC=DomainDnsZones,DC=societe,DC=priv
Attr: defaultNamingContext
Val: 25 DC=societe,DC=priv
Attr: schemaNamingContext
Val: 52 CN=Schema,CN=Configuration,DC=societe,DC=priv
Attr: configurationNamingContext
Val: 42 CN=Configuration,DC=societe,DC=priv
Attr: rootDomainNamingContext
Val: 25 DC=societe,DC=priv
Attr: supportedControl
Val: 22 1.2.840.113556.1.4.319
Val: 22 1.2.840.113556.1.4.801
Val: 22 1.2.840.113556.1.4.473
Val: 22 1.2.840.113556.1.4.528
Val: 22 1.2.840.113556.1.4.417
Val: 22 1.2.840.113556.1.4.619
Val: 22 1.2.840.113556.1.4.841
Val: 22 1.2.840.113556.1.4.529
Val: 22 1.2.840.113556.1.4.805
Val: 22 1.2.840.113556.1.4.521
Val: 22 1.2.840.113556.1.4.970
Val: 23 1.2.840.113556.1.4.1338
Val: 22 1.2.840.113556.1.4.474
Val: 23 1.2.840.113556.1.4.1339
Val: 23 1.2.840.113556.1.4.1340
Val: 23 1.2.840.113556.1.4.1413
Val: 23 2.16.840.1.113730.3.4.9
Val: 24 2.16.840.1.113730.3.4.10
Val: 23 1.2.840.113556.1.4.1504
Val: 23 1.2.840.113556.1.4.1852
Val: 22 1.2.840.113556.1.4.802
Val: 23 1.2.840.113556.1.4.1907
Val: 23 1.2.840.113556.1.4.1948
Attr: supportedLDAPVersion
Val: 1 3
Val: 1 2
Attr: supportedLDAPPolicies
Val: 14 MaxPoolThreads
Val: 15 MaxDatagramRecv
Val: 16 MaxReceiveBuffer
Val: 15 InitRecvTimeout
Val: 14 MaxConnections
Val: 15 MaxConnIdleTime
Val: 11 MaxPageSize
Val: 16 MaxQueryDuration
Val: 16 MaxTempTableSize
Val: 16 MaxResultSetSize
Val: 22 MaxNotificationPerConn
Val: 11 MaxValRange
Attr: highestCommittedUSN
Val: 6 899125
Attr: supportedSASLMechanisms
Val: 6 GSSAPI
Val: 10 GSS-SPNEGO
Val: 8 EXTERNAL
Val: 10 DIGEST-MD5
Attr: dnsHostName
Val: 32 serverbis.societe.priv
Attr: ldapServiceName
Val: 53 societe.priv:[email protected]
Attr: serverName
Val: 87 CN=serverbis,CN=Servers,CN=Paris,CN=Sites,CN=Configuration,DC=societe,DC=priv
Attr: supportedCapabilities
Val: 22 1.2.840.113556.1.4.800
Val: 23 1.2.840.113556.1.4.1670
Val: 23 1.2.840.113556.1.4.1791
Attr: isSynchronized
Val: 4 TRUE
Attr: isGlobalCatalogReady
Val: 5 FALSE
Attr: domainFunctionality
Val: 1 2
Attr: forestFunctionality
Val: 1 2
Attr: domainControllerFunctionality
Val: 1 2
Registered Service Principal Names:
exchangeAB/server
exchangeAB/server.societe.priv
ldap/server.societe.priv/ForestDnsZones.societe.priv
ldap/server.societe.priv/DomainDnsZones.societe.priv
ldap/server.societe.priv/DOM_SOCIETE
ldap/server
ldap/server.societe.priv
ldap/server.societe.priv/societe.priv
GC/server.societe.priv/societe.priv
DNS/server.societe.priv
NtFrs-88f5d2bd-b646-11d2-a6d3-00c04fc9b232/server.societe.priv
ldap/cd818c55-7e8c-46d5-8cfb-241a2eaa72dc._msdcs.societe.priv
HOST/server.societe.priv/DOM_SOCIETE
HOST/server.societe.priv/societe.priv
E3514235-4B06-11D1-AB04-00C04FC2DCD2/cd818c55-7e8c-46d5-8cfb-241a2eaa72dc/societe.priv
HOST/server
HOST/server.societe.priv
Routing table test . . . . . . . . : Passed
Active Routes :
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.0.1.1 192.0.1.233 10
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
192.0.1.0 255.255.255.0 192.0.1.233 192.0.1.233 10
192.0.1.233 255.255.255.255 127.0.0.1 127.0.0.1 10
192.0.1.255 255.255.255.255 192.0.1.233 192.0.1.233 10
224.0.0.0 240.0.0.0 192.0.1.233 192.0.1.233 10
255.255.255.255 255.255.255.255 192.0.1.233 192.0.1.233 1
No persistent route entries.
Netstat information test . . . . . : Passed
Interface Statistics
Received Sent
Unicast Packets 471007439 2337459810
Non-unicast packets 2652456 634189
Discards 0 0
Errors 0 0
Unknown protocols 90841 458284
Interface index = 1
Description = MS TCP Loopback interface
Type = 24
MTU = 1520
Speed = 10000000
Physical Address = 00-00-00-00-00-00
Administrative Status = 1
Operational Status = 1
Last Changed = 3765837987
Output Queue Length = 0
Interface index = 131074
Description = HP NC373i Multifunction Gigabit Server Adapter
Type = 6
MTU = 1500
Speed = 1000000000
Physical Address = 00-1C-C4-12-4D-76
Administrative Status = 1
Operational Status = 1
Last Changed = 3854255264
Output Queue Length = 0
Active Connections
Proto Local Address Foreign Address State
TCP server:nameserver server.societe.priv:4299 LISTENING
TCP server:domain server.societe.priv:22698 LISTENING
TCP server:kerberos server.societe.priv:59605 LISTENING
TCP server:sunrpc server.societe.priv:2224 LISTENING
TCP server:epmap server.societe.priv:16635 LISTENING
TCP server:ldap server.societe.priv:32855 LISTENING
TCP server:microsoft-ds server.societe.priv:38974 LISTENING
TCP server:kpasswd server.societe.priv:39054 LISTENING
TCP server:http-rpc-epmap server.societe.priv:2048 LISTENING
TCP server:ldaps server.societe.priv:6286 LISTENING
TCP server:1025 server.societe.priv:32787 LISTENING
TCP server:1030 server.societe.priv:28872 LISTENING
TCP server:1088 server.societe.priv:22668 LISTENING
TCP server:1118 server.societe.priv:10481 LISTENING
TCP server:1126 server.societe.priv:36950 LISTENING
TCP server:1152 server.societe.priv:30832 LISTENING
TCP server:1167 server.societe.priv:24791 LISTENING
TCP server:1174 server.societe.priv:10326 LISTENING
TCP server:1192 server.societe.priv:12388 LISTENING
TCP server:1199 server.societe.priv:47257 LISTENING
TCP server:1246 server.societe.priv:28679 LISTENING
TCP server:1253 server.societe.priv:39006 LISTENING
TCP server:1261 server.societe.priv:14474 LISTENING
TCP server:1286 server.societe.priv:34899 LISTENING
TCP server:msft-gc server.societe.priv:14401 LISTENING
TCP server:msft-gc-ssl server.societe.priv:10254 LISTENING
TCP server:ms-wbt-server server.societe.priv:61577 LISTENING
TCP server:5250 server.societe.priv:2144 LISTENING
TCP server:6050 server.societe.priv:14362 LISTENING
TCP server:6055 server.societe.priv:43063 LISTENING
TCP server:6129 server.societe.priv:2064 LISTENING
TCP server:6502 server.societe.priv:2272 LISTENING
TCP server:6503 server.societe.priv:41020 LISTENING
TCP server:6504 server.societe.priv:2288 LISTENING
TCP server:41523 server.societe.priv:4266 LISTENING
TCP server:ldap server.societe.priv:1096 ESTABLISHED
TCP server:ldap server.societe.priv:1097 ESTABLISHED
TCP server:ldap server.societe.priv:1098 ESTABLISHED
TCP server:ldap server.societe.priv:4167 ESTABLISHED
TCP server:1088 server.societe.priv:1116 ESTABLISHED
TCP server:1088 server.societe.priv:1139 ESTABLISHED
TCP server:1088 server.societe.priv:1161 ESTABLISHED
TCP server:1088 server.societe.priv:1244 ESTABLISHED
TCP server:1088 server.societe.priv:1482 ESTABLISHED
TCP server:1096 server.societe.priv:ldap ESTABLISHED
TCP server:1097 server.societe.priv:ldap ESTABLISHED
TCP server:1098 server.societe.priv:ldap ESTABLISHED
TCP server:1116 server.societe.priv:1088 ESTABLISHED
TCP server:1139 server.societe.priv:1088 ESTABLISHED
TCP server:1161 server.societe.priv:1088 ESTABLISHED
TCP server:1244 server.societe.priv:1088 ESTABLISHED
TCP server:1482 server.societe.priv:1088 ESTABLISHED
TCP server:2301 server.societe.priv:47138 LISTENING
TCP server:2381 server.societe.priv:24742 LISTENING
TCP server:4157 server.societe.priv:6139 ESTABLISHED
TCP server:4167 server.societe.priv:ldap ESTABLISHED
TCP server:6139 server.societe.priv:2080 LISTENING
TCP server:6139 server.societe.priv:4157 ESTABLISHED
TCP server:epmap 172.21.1.11:1703 ESTABLISHED
TCP server:epmap 172.21.1.30:1115 ESTABLISHED
TCP server:epmap 172.21.1.30:1177 ESTABLISHED
TCP server:epmap 172.21.1.35:1071 ESTABLISHED
TCP server:epmap 172.21.1.40:1136 ESTABLISHED
TCP server:epmap 172.21.1.40:1152 ESTABLISHED
TCP server:epmap 172.21.1.42:1156 ESTABLISHED
TCP server:epmap 172.21.1.59:1157 ESTABLISHED
TCP server:epmap 172.21.1.95:1695 ESTABLISHED
TCP server:epmap 172.21.1.97:1144 ESTABLISHED
TCP server:epmap 172.21.1.195:1252 ESTABLISHED
TCP server:epmap 172.21.1.197:2950 ESTABLISHED
TCP server:epmap 172.21.1.203:1272 ESTABLISHED
TCP server:epmap 172.21.1.233:1163 ESTABLISHED
TCP server:epmap 172.21.1.246:2420 ESTABLISHED
TCP server:epmap pfc.societe.priv:4865 TIME_WAIT
TCP server:epmap pfc.societe.priv:4866 TIME_WAIT
TCP server:epmap pfc.societe.priv:4867 TIME_WAIT
TCP server:epmap pfc.societe.priv:4868 TIME_WAIT
TCP server:epmap pfc.societe.priv:4870 TIME_WAIT
TCP server:epmap pfc.societe.priv:4871 TIME_WAIT
TCP server:epmap pfc.societe.priv:4872 TIME_WAIT
TCP server:epmap pfc.societe.priv:4873 TIME_WAIT
TCP server:epmap pfc.societe.priv:4874 TIME_WAIT
TCP server:epmap pfc.societe.priv:4876 TIME_WAIT
TCP server:epmap pfc.societe.priv:4878 TIME_WAIT
TCP server:epmap pfc.societe.priv:4879 TIME_WAIT
TCP server:epmap pfc.societe.priv:4880 TIME_WAIT
TCP server:epmap pfc.societe.priv:4881 TIME_WAIT
TCP server:epmap pfc.societe.priv:4883 TIME_WAIT
TCP server:epmap pfc.societe.priv:4884 TIME_WAIT
TCP server:epmap pfc.societe.priv:4885 TIME_WAIT
TCP server:epmap pfc.societe.priv:4886 TIME_WAIT
TCP server:epmap pfc.societe.priv:4887 TIME_WAIT
TCP server:epmap pfc.societe.priv:4889 TIME_WAIT
TCP server:epmap pfc.societe.priv:4891 TIME_WAIT
TCP server:epmap pfc.societe.priv:4892 TIME_WAIT
TCP server:epmap pfc.societe.priv:4893 TIME_WAIT
TCP server:epmap pfc.societe.priv:4894 TIME_WAIT
TCP server:epmap pfc.societe.priv:4896 TIME_WAIT
TCP server:epmap pfc.societe.priv:4897 TIME_WAIT
TCP server:epmap pfc.societe.priv:4898 TIME_WAIT
TCP server:epmap pfc.societe.priv:4899 TIME_WAIT
TCP server:epmap pfc.societe.priv:4900 TIME_WAIT
TCP server:epmap pfc.societe.priv:4902 TIME_WAIT
TCP server:epmap pfc.societe.priv:4904 TIME_WAIT
TCP server:epmap pfc.societe.priv:4905 TIME_WAIT
TCP server:epmap pfc.societe.priv:4906 TIME_WAIT
TCP server:epmap pfc.societe.priv:4907 TIME_WAIT
TCP server:epmap pfc.societe.priv:4909 TIME_WAIT
TCP server:epmap pfc.societe.priv:4910 TIME_WAIT
TCP server:epmap pfc.societe.priv:4911 TIME_WAIT
TCP server:epmap pfc.societe.priv:4912 TIME_WAIT
TCP server:epmap pfc.societe.priv:4913 TIME_WAIT
TCP server:epmap pfc.societe.priv:4915 TIME_WAIT
TCP server:epmap pfc.societe.priv:4916 ESTABLISHED
TCP server:epmap pfc.societe.priv:4917 TIME_WAIT
TCP server:epmap pfc.societe.priv:4918 TIME_WAIT
TCP server:epmap pfc.societe.priv:4919 TIME_WAIT
TCP server:epmap pfc.societe.priv:4920 TIME_WAIT
TCP server:epmap pfc.societe.priv:4922 TIME_WAIT
TCP server:epmap pfc.societe.priv:4923 TIME_WAIT
TCP server:epmap pfc.societe.priv:4924 TIME_WAIT
TCP server:epmap pfc.societe.priv:4925 TIME_WAIT
TCP server:epmap pfc.societe.priv:4926 TIME_WAIT
TCP server:epmap pfc.societe.priv:4928 TIME_WAIT
TCP server:epmap pcm.societe.priv:1322 ESTABLISHED
TCP server:epmap pcsb.societe.priv:1641 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1642 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1643 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1644 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1646 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1648 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1649 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1650 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1651 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1653 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1655 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1656 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1657 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1658 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1660 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1662 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1663 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1664 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1665 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1667 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1668 ESTABLISHED
TCP server:epmap pcsb.societe.priv:1669 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1670 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1671 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1672 TIME_WAIT
TCP server:epmap pcsb.societe.priv:1674 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2353 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2354 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2355 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2356 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2358 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2359 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2360 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2361 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2362 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2364 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2366 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2367 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2368 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2369 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2371 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2372 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2373 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2374 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2375 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2377 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2379 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2380 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2381 TIME_WAIT
TCP server:epmap pcdl.societe.priv:ms-olap3 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2384 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2385 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2386 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2387 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2388 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2390 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2391 ESTABLISHED
TCP server:epmap pcdl.societe.priv:2392 TIME_WAIT
TCP server:epmap pcdl.societe.priv:ms-olap1 TIME_WAIT
TCP server:epmap pcdl.societe.priv:ms-olap2 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2395 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2397 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2398 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2399 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2400 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2401 TIME_WAIT
TCP server:epmap pcdl.societe.priv:2403 TIME_WAIT
TCP server:epmap pcnh.societe.priv:1335 ESTABLISHED
TCP server:epmap pcns.societe.priv:1196 TIME_WAIT
TCP server:epmap pcns.societe.priv:1197 TIME_WAIT
TCP server:epmap pcns.societe.priv:1198 TIME_WAIT
TCP server:epmap pcns.societe.priv:1199 TIME_WAIT
TCP server:epmap pcns.societe.priv:1201 TIME_WAIT
TCP server:epmap pcns.societe.priv:1202 TIME_WAIT
TCP server:epmap pcns.societe.priv:1203 TIME_WAIT
TCP server:epmap pcns.societe.priv:1204 TIME_WAIT
TCP server:epmap pcns.societe.priv:1205 TIME_WAIT
TCP server:epmap pcns.societe.priv:1207 TIME_WAIT
TCP server:epmap pcns.societe.priv:1209 TIME_WAIT
TCP server:epmap pcns.societe.priv:1210 TIME_WAIT
TCP server:epmap pcns.societe.priv:1211 TIME_WAIT
TCP server:epmap pcns.societe.priv:1212 TIME_WAIT
TCP server:epmap pcns.societe.priv:1214 TIME_WAIT
TCP server:epmap pcns.societe.priv:1215 TIME_WAIT
TCP server:epmap pcns.societe.priv:1216 TIME_WAIT
TCP server:epmap pcns.societe.priv:1217 TIME_WAIT
TCP server:epmap pcns.societe.priv:1218 TIME_WAIT
TCP server:epmap pcns.societe.priv:1220 TIME_WAIT
TCP server:epmap pcns.societe.priv:1222 TIME_WAIT
TCP server:epmap pcns.societe.priv:1223 TIME_WAIT
TCP server:epmap pcns.societe.priv:1224 TIME_WAIT
TCP server:epmap pcns.societe.priv:1225 TIME_WAIT
TCP server:epmap pcns.societe.priv:1227 TIME_WAIT
TCP server:epmap pcns.societe.priv:1228 TIME_WAIT
TCP server:epmap pcns.societe.priv:1229 TIME_WAIT
TCP server:epmap pcns.societe.priv:1230 TIME_WAIT
TCP server:epmap pcns.societe.priv:1231 TIME_WAIT
TCP server:epmap pcns.societe.priv:1233 TIME_WAIT
TCP server:epmap pcns.societe.priv:1234 ESTABLISHED
TCP server:epmap pcns.societe.priv:1235 TIME_WAIT
TCP server:epmap pcns.societe.priv:1236 TIME_WAIT
TCP server:epmap pcns.societe.priv:1237 TIME_WAIT
TCP server:epmap pcns.societe.priv:1238 TIME_WAIT
TCP server:epmap pcns.societe.priv:1240 TIME_WAIT
TCP server:epmap pcns.societe.priv:1241 TIME_WAIT
TCP server:epmap pcns.societe.priv:1242 TIME_WAIT
TCP server:epmap pcns.societe.priv:1243 TIME_WAIT
TCP server:epmap pcns.societe.priv:1244 TIME_WAIT
TCP server:epmap pcns.societe.priv:1246 TIME_WAIT
TCP server:epmap pccd.societe.priv:1317 ESTABLISHED
TCP server:epmap pc-jb.societe.priv:1739 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1740 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1741 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1742 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1744 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:ms-streaming TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1756 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1757 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1758 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1760 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1771 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1772 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1773 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1774 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1776 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1785 ESTABLISHED
TCP server:epmap pc-jb.societe.priv:1786 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1787 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1788 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1789 TIME_WAIT
TCP server:epmap pc-jb.societe.priv:1791 TIME_WAIT
TCP server:epmap SERV-AD.societe.priv:2453 ESTABLISHED
TCP server:epmap SERV-AD.societe.priv:2455 ESTABLISHED
TCP server:epmap SERV-AD.societe.priv:4770 ESTABLISHED
[DELETED FOR CONFIDENTIALITY]
UDP server:nameserver *:*
UDP server:sunrpc *:*
UDP server:snmp *:*
UDP server:microsoft-ds *:*
UDP server:isakmp *:*
UDP server:1031 *:*
UDP server:1043 *:*
UDP server:1079 *:*
UDP server:1106 *:*
UDP server:1203 *:*
UDP server:1256 *:*
UDP server:1886 *:*
UDP server:ipsec-msft *:*
UDP server:6050 *:*
UDP server:41524 *:*
UDP server:domain *:*
UDP server:ntp *:*
UDP server:1028 *:*
UDP server:1078 *:*
UDP server:1095 *:*
UDP server:1104 *:*
UDP server:1141 *:*
UDP server:1166 *:*
UDP server:1225 *:*
UDP server:1267 *:*
UDP server:1272 *:*
UDP server:1322 *:*
UDP server:1363 *:*
UDP server:1435 *:*
UDP server:l2tp *:*
UDP server:2654 *:*
UDP server:3379 *:*
UDP server:4674 *:*
UDP server:domain *:*
UDP server:bootps *:*
UDP server:bootpc *:*
UDP server:kerberos *:*
UDP server:ntp *:*
UDP server:netbios-ns *:*
UDP server:netbios-dgm *:*
UDP server:389 *:*
UDP server:kpasswd *:*
UDP server:2535 *:*
IP Statistics
Packets Received = 29,513,509
Received Header Errors = 0
Received Address Errors = 2,207
Datagrams Forwarded = 0
Unknown Protocols Received = 0
Received Packets Discarded = 153,639
Received Packets Delivered = 29,508,995
Output Requests = 27,445,695
Routing Discards = 0
Discarded Output Packets = 0
Output Packet No Route = 0
Reassembly Required = 7,821
Reassembly Successful = 3,910
Reassembly Failures = 1
Datagrams successfully fragmented = 3,296
Datagrams failing fragmentation = 0
Fragments Created = 6,592
Forwarding = 2
Default TTL = 128
Reassembly timeout = 60
TCP Statistics
Active Opens = 2,050,752
Passive Opens = 2,603,321
Failed Connection Attempts = 169,157
Reset Connections = 1,348,296
Current Connections = 398
Received Segments = 166,343,190
Segment Sent = 115,193,012
Segment Retransmitted = 9,184,490
Retransmission Timeout Algorithm = vanj
Minimum Retransmission Timeout = 300
Maximum Retransmission Timeout = 120,000
Maximum Number of Connections = -1
UDP Statistics
Datagrams Received = 6,788,135
No Ports = 202,411
Receive Errors = 2
Datagrams Sent = 5,745,797
ICMP Statistics
Received Sent
Messages 617,299 617,299
Errors 0 0
Destination Unreachable 572 572
Time Exceeded 1 1
Parameter Problems 0 0
Source Quenchs 0 0
Redirects 125 125
Echos 431,460 431,460
Echo Replies 185,141 185,141
Timestamps 0 0
Timestamp Replies 0 0
Address Masks 0 0
Address Mask Replies 0 0
Bindings test. . . . . . . . . . . : Passed
Component Name : Network Monitor Driver
Bind Name: NM
Binding Paths:
Owner of the binding path : Network Monitor Driver
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: Network Monitor Driver
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : Network Monitor Driver
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: Network Monitor Driver
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Owner of the binding path : Network Monitor Driver
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndiswanbh
Upper Component: Network Monitor Driver
Lower Component: WAN Miniport (Network Monitor)
Component Name : HP Network Configuration Utility
Bind Name: CPQTeam
Binding Paths:
Owner of the binding path : HP Network Configuration Utility
Binding Enabled: No
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: HP Network Configuration Utility
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : HP Network Configuration Utility
Binding Enabled: No
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: HP Network Configuration Utility
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Component Name : Point to Point Protocol Over Ethernet
Bind Name: RasPppoe
Binding Paths:
Owner of the binding path : Point to Point Protocol Over Ethernet
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: Point to Point Protocol Over Ethernet
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : Point to Point Protocol Over Ethernet
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: Point to Point Protocol Over Ethernet
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Component Name : Point to Point Tunneling Protocol
Bind Name: mspptp
Binding Paths:
Component Name : Layer 2 Tunneling Protocol
Bind Name: msl2tp
Binding Paths:
Component Name : Remote Access NDIS WAN Driver
Bind Name: NdisWan
Binding Paths:
Owner of the binding path : Remote Access NDIS WAN Driver
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndiscowan
Upper Component: Remote Access NDIS WAN Driver
Lower Component: Direct Parallel
Owner of the binding path : Remote Access NDIS WAN Driver
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndiswan
Upper Component: Remote Access NDIS WAN Driver
Lower Component: WAN Miniport (PPPOE)
Owner of the binding path : Remote Access NDIS WAN Driver
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndiswan
Upper Component: Remote Access NDIS WAN Driver
Lower Component: WAN Miniport (PPTP)
Owner of the binding path : Remote Access NDIS WAN Driver
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndiscowan
Upper Component: Remote Access NDIS WAN Driver
Lower Component: WAN Miniport (L2TP)
Owner of the binding path : Remote Access NDIS WAN Driver
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndiswanasync
Upper Component: Remote Access NDIS WAN Driver
Lower Component: RAS Async Adapter
Component Name : NDIS Usermode I/O Protocol
Bind Name: Ndisuio
Binding Paths:
Owner of the binding path : NDIS Usermode I/O Protocol
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: NDIS Usermode I/O Protocol
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : NDIS Usermode I/O Protocol
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: NDIS Usermode I/O Protocol
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Component Name : Message-oriented TCP/IP Protocol (SMB session)
Bind Name: NetbiosSmb
Binding Paths:
Component Name : WINS Client(TCP/IP) Protocol
Bind Name: NetBT
Binding Paths:
Owner of the binding path : WINS Client(TCP/IP) Protocol
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : WINS Client(TCP/IP) Protocol
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Owner of the binding path : WINS Client(TCP/IP) Protocol
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndiswanip
Upper Component: Internet Protocol (TCP/IP)
Lower Component: WAN Miniport (IP)
Component Name : Internet Protocol (TCP/IP)
Bind Name: Tcpip
Binding Paths:
Owner of the binding path : Internet Protocol (TCP/IP)
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : Internet Protocol (TCP/IP)
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Owner of the binding path : Internet Protocol (TCP/IP)
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: ndiswanip
Upper Component: Internet Protocol (TCP/IP)
Lower Component: WAN Miniport (IP)
Component Name : Client for Microsoft Networks
Bind Name: LanmanWorkstation
Binding Paths:
Owner of the binding path : Client for Microsoft Networks
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios_smb
Upper Component: Client for Microsoft Networks
Lower Component: Message-oriented TCP/IP Protocol (SMB session)
Owner of the binding path : Client for Microsoft Networks
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: Client for Microsoft Networks
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : Client for Microsoft Networks
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: Client for Microsoft Networks
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Owner of the binding path : Client for Microsoft Networks
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: Client for Microsoft Networks
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndiswanip
Upper Component: Internet Protocol (TCP/IP)
Lower Component: WAN Miniport (IP)
Component Name : WebClient
Bind Name: WebClient
Binding Paths:
Component Name : DHCP Server
Bind Name: DHCPServer
Binding Paths:
Component Name : Wireless Configuration
Bind Name: wzcsvc
Binding Paths:
Component Name : Network Load Balancing
Bind Name: Wlbs
Binding Paths:
Owner of the binding path : Network Load Balancing
Binding Enabled: No
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: Network Load Balancing
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : Network Load Balancing
Binding Enabled: No
Interfaces of the binding path:
-Interface Name: ndis5
Upper Component: Network Load Balancing
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Component Name : Steelhead
Bind Name: RemoteAccess
Binding Paths:
Component Name : Dial-Up Server
Bind Name: msrassrv
Binding Paths:
Component Name : Remote Access Connection Manager
Bind Name: RasMan
Binding Paths:
Component Name : Dial-Up Client
Bind Name: msrascli
Binding Paths:
Component Name : File and Printer Sharing for Microsoft Networks
Bind Name: LanmanServer
Binding Paths:
Owner of the binding path : File and Printer Sharing for Microsoft Networks
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios_smb
Upper Component: File and Printer Sharing for Microsoft Networks
Lower Component: Message-oriented TCP/IP Protocol (SMB session)
Owner of the binding path : File and Printer Sharing for Microsoft Networks
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: File and Printer Sharing for Microsoft Networks
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : File and Printer Sharing for Microsoft Networks
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: File and Printer Sharing for Microsoft Networks
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Owner of the binding path : File and Printer Sharing for Microsoft Networks
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: File and Printer Sharing for Microsoft Networks
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndiswanip
Upper Component: Internet Protocol (TCP/IP)
Lower Component: WAN Miniport (IP)
Component Name : Generic Packet Classifier
Bind Name: Gpc
Binding Paths:
Component Name : Application Layer Gateway
Bind Name: ALG
Binding Paths:
Component Name : NetBIOS Interface
Bind Name: NetBIOS
Binding Paths:
Owner of the binding path : NetBIOS Interface
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: NetBIOS Interface
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter
Owner of the binding path : NetBIOS Interface
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: NetBIOS Interface
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndis5
Upper Component: Internet Protocol (TCP/IP)
Lower Component: HP NC373i Multifunction Gigabit Server Adapter #2
Owner of the binding path : NetBIOS Interface
Binding Enabled: Yes
Interfaces of the binding path:
-Interface Name: netbios
Upper Component: NetBIOS Interface
Lower Component: WINS Client(TCP/IP) Protocol
-Interface Name: tdi
Upper Component: WINS Client(TCP/IP) Protocol
Lower Component: Internet Protocol (TCP/IP)
-Interface Name: ndiswanip
Upper Component: Internet Protocol (TCP/IP)
Lower Component: WAN Miniport (IP)
Component Name : WAN Miniport (Network Monitor)
Bind Name: NdisWanBh
Binding Paths:
Component Name : WAN Miniport (IP)
Bind Name: NdisWanIp
Binding Paths:
Component Name : Direct Parallel
Bind Name: {1621E66B-C5E1-46A8-9E94-B9070598AAB5}
Binding Paths:
Component Name : WAN Miniport (PPPOE)
Bind Name: {64F7C77C-CB03-4A87-94DF-F993DF3E1C60}
Binding Paths:
Component Name : WAN Miniport (PPTP)
Bind Name: {87CE0DCD-DE36-440E-93A8-AF59A2326C8A}
Binding Paths:
Component Name : WAN Miniport (L2TP)
Bind Name: {0E006BC9-589A-427D-B8DA-6C34917813C0}
Binding Paths:
Component Name : RAS Async Adapter
Bind Name: {DDAB780D-5047-4989-9128-E6E23E423412}
Binding Paths:
Component Name : HP NC373i Multifunction Gigabit Server Adapter #2
Bind Name: {F916FF73-2795-4BAE-AAAC-2E0C62A287E3}
Binding Paths:
Component Name : HP NC373i Multifunction Gigabit Server Adapter
Bind Name: {C4294D72-A993-4982-99BF-D297CA05513D}
Binding Paths:
WAN configuration test . . . . . . : Skipped
No active remote access connections.
Modem diagnostics test . . . . . . : Passed
IP Security test . . . . . . . . . : Skipped
Note: run "netsh ipsec dynamic show /?" for more detailed information
The command completed successfully
|