Hello,
What you are seeing is expected behavior when IPsec domain isolation rules are applied without proper exemption handling. Kerberos pre-authentication traffic (KRB_AS_REQ) must reach the KDC before any Security Association is established, otherwise the client cannot even obtain the initial TGT. By default, the IPsec driver enforces transport mode isolation immediately, which blocks those packets unless explicit exemptions are defined.
The correct way to handle this is to configure IPsec exemption rules for Kerberos and supporting infrastructure protocols. Microsoft’s guidance is that you must allow UDP/88 and TCP/88 (Kerberos authentication), UDP/389 and TCP/389 (LDAP), TCP/445 (SMB for SYSVOL/NETLOGON), and UDP/123 (NTP) as clear-text exemptions. These rules should be defined in the same GPO that applies the isolation policy, under Windows Defender Firewall with Advanced Security → Connection Security Rules → Exemptions. The exemption rules must be set to “Request but allow clear” or “Do not secure” for those ports, so that traffic to domain controllers is permitted outside of IPsec until the SA is negotiated.
In practice, you create a connection security rule with “Endpoint 1” set to Any, “Endpoint 2” set to Domain Controllers, and specify the Kerberos ports. The action should be “Do not authenticate” for those ports. This ensures that KRB_AS_REQ packets are delivered to the KDC unprotected, allowing the authentication handshake to complete. Once the SA is established, subsequent Kerberos traffic (KRB_TGS_REQ, KRB_AP_REQ) will be protected by IPsec as intended.
Without these exemptions, the firewall driver drops the pre-SA traffic, which is exactly what your packet captures are showing. Once you add the exemptions, you should see the KRB_AS_REQ payloads reaching the KDC and the domain isolation policy functioning correctly.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day
Domic Vo.