Skip to content

Commit 8d9f0ce

Browse files
authored
Merge pull request #1016 from j0rt3g4/Issue#443
Correction to TcpTried from true to false.
2 parents bee71c2 + bcfa017 commit 8d9f0ce

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

docset/windows/dnsserver/test-dnsserver.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ Tests that a specified computer is a functioning DNS server.
2626
## SYNTAX
2727

2828
### Context (Default)
29-
```
29+
```yaml
3030
Test-DnsServer [-IPAddress] <IPAddress[]> [-ComputerName <String>] [[-Context] <String>]
3131
[-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [<CommonParameters>]
3232
```
3333

3434
### ZoneMaster
35-
```
35+
```yaml
3636
Test-DnsServer [-IPAddress] <IPAddress[]> [-ComputerName <String>] -ZoneName <String>
3737
[-CimSession <CimSession[]>] [-ThrottleLimit <Int32>] [-AsJob] [<CommonParameters>]
3838
```
@@ -47,29 +47,29 @@ If you also specify a zone name, the cmdlet validates that the DNS server can re
4747
## EXAMPLES
4848

4949
### Example 1: Test whether a DNS server is functional
50-
```
50+
```Powershell
5151
PS C:\> Test-DnsServer -IPAddress 10.123.183.155
5252
5353
IPAddress Result RoundTripTime TcpTried UdpTried
5454
--------- -------- ------------ -------- --------
55-
10.123.183.155 Success 00:00:11 True True
55+
10.123.183.155 Success 00:00:11 False True
5656
```
5757

5858
This command tests whether the computer that has an IP address of 10.123.183.155 is a functional DNS server.
5959

6060
### Example 2: Test whether a DNS server is functional and has valid configured forwarders
61-
```
61+
```Powershell
6262
PS C:\> Test-DnsServer -IPAddress 10.123.183.155 -Context Forwarder
6363
6464
IPAddress Result RoundTripTime TcpTried UdpTried
6565
--------- -------- ------------ -------- --------
66-
10.123.183.155 Success 00:00:11 True True
66+
10.123.183.155 Success 00:00:11 False True
6767
```
6868

6969
This command tests whether the computer that has an IP address of 10.123.183.155 is a functional DNS server that has valid configured forwarders.
7070

7171
### Example 3: Test whether a DNS server is functional and has valid configured root hints
72-
```
72+
```Powershell
7373
PS C:\> Test-DnsServer -IPAddress 10.123.183.155 -Context RootHints
7474
7575
IPAddress Result RoundTripTime TcpTried UdpTried

docset/winserver2012-ps/dnsserver/Test-DnsServer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ If you also specify a zone name, the cmdlet validates that the DNS server can re
4242
PS C:\>Test-DnsServer -IPAddress "10.123.183.155"
4343
IPAddress Result RoundTripTime TcpTried UdpTried
4444
--------- -------- ------------ -------- --------
45-
10.123.183.155 Success 00:00:11 True True
45+
10.123.183.155 Success 00:00:11 False True
4646
```
4747

4848
This command tests whether the computer that has an IP address of 10.123.183.155 is a functional DNS server.
@@ -53,7 +53,7 @@ PS C:\>Test-DnsServer -IPAddress "10.123.183.155" -Context Forwarder
5353
5454
IPAddress Result RoundTripTime TcpTried UdpTried
5555
--------- -------- ------------ -------- --------
56-
10.123.183.155 Success 00:00:11 True True
56+
10.123.183.155 Success 00:00:11 False True
5757
```
5858

5959
This command tests whether the computer that has an IP address of 10.123.183.155 is a functional DNS server that has valid configured forwarders.

docset/winserver2012r2-ps/dnsserver/Test-DnsServer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ If you also specify a zone name, the cmdlet validates that the DNS server can re
5050
PS C:\>Test-DnsServer -IPAddress "10.123.183.155"
5151
IPAddress Result RoundTripTime TcpTried UdpTried
5252
--------- -------- ------------ -------- --------
53-
10.123.183.155 Success 00:00:11 True True
53+
10.123.183.155 Success 00:00:11 False True
5454
```
5555

5656
This command tests whether the computer that has an IP address of 10.123.183.155 is a functional DNS server.
@@ -60,7 +60,7 @@ This command tests whether the computer that has an IP address of 10.123.183.155
6060
PS C:\>Test-DnsServer -IPAddress "10.123.183.155" -Context Forwarder
6161
IPAddress Result RoundTripTime TcpTried UdpTried
6262
--------- -------- ------------ -------- --------
63-
10.123.183.155 Success 00:00:11 True True
63+
10.123.183.155 Success 00:00:11 False True
6464
```
6565

6666
This command tests whether the computer that has an IP address of 10.123.183.155 is a functional DNS server that has valid configured forwarders.

0 commit comments

Comments
 (0)