Skip to content

Commit 3f44d1b

Browse files
Connector TS page
1 parent 15b5029 commit 3f44d1b

16 files changed

+64
-9
lines changed

website/docs/Changelog.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ sidebar_position: 150
33
title: 📝 Changelog
44
---
55

6+
Oct 15 2024
7+
* Added a Private Network Connector page in the Troubleshooting section
8+
9+
Oct 10 2024
10+
* Known issue: Always enable Microsoft traffic profile when using Internet traffic profile
11+
12+
Oct 4 2024
13+
* Known issue: Windows GSA client shows "Disabled by your organization" and takes 5 minutes to connect
14+
615
Oct 1 2024
716
* Added this changelog
817
* Added a known issues section
918
* Kerberos SSO: Added section on Negative Kerb Cache
1019
* Known issue: truncated DNS search suffix added by GSA client
11-
12-
Oct 4 2024
13-
* Known issue: Windows GSA client shows "Disabled by your organization" and takes 5 minutes to connect
14-
15-
Oct 10 2024
16-
* Known issue: Always enable Microsoft traffic profile when using Internet traffic profile
File renamed without changes.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
sidebar_position: 200
3+
title: Private Network Connector
4+
---
5+
6+
7+
### Is Private Network Connector the problem?
8+
9+
If all your Private Access requests are failing, there is a good chance your Private Network connector is having problems.
10+
11+
If accessing certain private resources fails from all your client devices, then the connector might be having issues connecting to the resource. If possible, test connectivity from the connector server to the resource (i.e.: access file share, RDP, etc).
12+
13+
14+
### Connector shows green on the Entra Portal, all must be good right?
15+
16+
Not quite. The Private Connector connects to different service endpoints using different protocols. The connector users GRPC and mutual TLS authentication to connect to the Private Access cloud service. For this reason, the connector might show "Active" on the Entra Portal / Global Secure Access / Connect / Connectors blade, but might still have problems connecting and serving Private Access requests.
17+
18+
### Enabling advanced connector logging
19+
20+
Edit the file MicrosoftEntraPrivateNetworkConnectorService.exe.config located in the connector installation folder (usually, C:\Program Files\Microsoft Entra private network connector\):
21+
* Delete the comment lines
22+
* Validate the folder exists
23+
24+
![alt text](image-10.png)
25+
26+
Example:
27+
```
28+
<system.diagnostics>
29+
<trace autoflush="true" indentsize="4">
30+
<listeners>
31+
<add name="consoleListener" type="System.Diagnostics.ConsoleTraceListener" />
32+
<add name="textWriterListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="C:\temp\connector_logs.log" />
33+
<remove name="Default" />
34+
</listeners>
35+
</trace>
36+
</system.diagnostics>
37+
```
38+
39+
### RustSslCertificateValidator: Failed to validate chain of certificate
40+
41+
You might see this error on the connector logs if the certificate chain for a service certificate (like *.msappproxy.net) fails to be validated.
42+
43+
If you have configured a proxy server on MicrosoftEntraPrivateNetworkConnectorService.exe.config, make sure you configure a system proxy server as well. Windows certificate operations run on the system context and might be failing due to connectivity issues.
44+
You can set the system proxy using:
45+
```
46+
netsh winhttp set proxy address:port
47+
```
48+
49+
### TLS inspection
50+
51+
Performing TLS inspection on the Private Network connector traffic will interfere with the connector's ability to connect to the service and serving Private Access requests.
52+
Ensure the network devices allowing Internet access to the connector don't perform TLS inspection.

website/docs/GlobalSecureAccessClients/WindowsClientTroubleshooting.md renamed to website/docs/Troubleshooting/WindowsClientTroubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
sidebar_position: 1
3-
title: "🛠️ Windows client troubleshooting"
3+
title: "GSA Windows client"
44
---
55

66
### Is the client connecting?
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"label": "GSA Clients",
2+
"label": "Troubleshooting 🛠️",
33
"position": 700,
44
"collapsible": true,
55
"collapsed": false,
66
"link": {
77
"type": "generated-index",
8-
"description": "GSA Clients"
8+
"description": "Troubleshooting"
99
}
1010
}
File renamed without changes.
40.7 KB
Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)