Skip to content

Commit 7d755aa

Browse files
committed
update
1 parent 9682b1c commit 7d755aa

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

support/windows-server/active-directory/domain-join-error-0x40-the-specified-network-name-is-no-longer-available.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,25 +79,25 @@ Here's an example of a network trace:
7979
1564 DC1.ADATUM.COM CLIENT1 TCP TCP:Flags=...A.R.., SrcPort=Kerberos(88), DstPort=59259, PayloadLen=0, Seq=2785284136, Ack=1299632507, Win=0 (scale factor 0x0) = 0 {TCP:267, IPv4:5}
8080
```
8181

82-
Here is the analysis of the network traffic:
82+
From the trace, you can find the DC doesn't respond to the Ticket Granting Service (TGS) request from the client for the Service Principal Name (SPN) `CIFS/DC1.ADATUM.COM`. It sends back a TCP acknowledgment, which suggests the DC received the TGS request. However, it doesn't reply with a valid TGS response. Finally, the client terminates the TCP connection.
83+
84+
Here is an analysis of the network traffic:
8385

8486
> [!NOTE]
85-
> A full understanding of the behavior needs a trace from the DC network, it may also clarify why the client does not reset the session earlier. The following is what we can tell about the failure:
87+
> A full understanding of the behavior needs a trace from the DC network, it might also clarify why the client does not reset the session earlier. The following analysis is based on the failure in the trace.
8688
87-
In frames 1541, 1542 and 1545 the client first retransmits the TCP segment and then lowers the size of the frame. The data in frame 1545 is acknowledged in frame 1546.
89+
In frames 1541, 1542, and 1545, the client first retransmits the TCP segment and then reduces the size of the frame. The data in frame 1545 is acknowledged in frame 1546.
8890

89-
The client continues to send data until the last segment in 1550 with Push bit and last byte 1299631114. This is acknowledged by the server in frame 1555.
91+
The client continues to send data until the last segment in frame 1550, which includes the Push bit and ends with the last byte 1299631114. This segment is acknowledged by the server in frame 1555.
9092

91-
In the meantime, the client sends another request to the serve in frames 1552 and 1556, last byte 1299632506. This is acknowledged by the server in frame 1558.
93+
Meanwhile, the client sends another request to the server in frames 1552 and 1556, with the last byte 1299632506. This request is acknowledged by the server in frame 1558.
9294

93-
But until the client decides to terminate the session, there is just a single message from the server (frame 1553). The sequence number that make it to the client indicate the server does send other data, from the sequence numbers:
95+
However, until the client decides to terminate the session, there is only a single message from the server (frame 1553). The sequence numbers that reach the client indicate that the server does send other data, as evidenced by the sequence numbers:
9496

9597
```output
9698
2785282676 first in frame 1540
9799
2785284426 first in frame 1555
98100
2785284136 first in frame 1563
99101
```
100102

101-
The last sequence number is lower than the one the server sends in frame 1555. The client never saw this data and thus acknowledges 2785282676 throughout the network trace. This is a direct indication of problems with the correct flow of network traffic.
102-
103-
From the trace, you can find the DC doesn't respond to the Ticket Granting Service (TGS) request from the client for the Service Principal Name (SPN) `CIFS/DC1.ADATUM.COM`. It sends back a TCP acknowledgment, which suggests the DC received the TGS request. However, it doesn't reply with a valid TGS response. Finally, the client terminates the TCP connection.
103+
The last sequence number is lower than the one the server sends in frame 1555. The client never sees this data and thus acknowledge 2785282676 throughout the network trace. This discrepancy directly indicates issues with the correct flow of network traffic.

0 commit comments

Comments
 (0)