Skip to content

Commit c601c48

Browse files
authored
improve the Acrolinx score
1 parent a0aad7a commit c601c48

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

support/power-platform/power-platform-administration/troubleshoot-virtual-network-power-platform.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Virtual Network troubleshooting
2+
title: Troubleshoot Virtual Network Issues
33
description: Learn how to troubleshoot common scenarios for Virtual Network in Microsoft Power Platform.
44
author: faix
55
ms.component: pa-admin
@@ -12,13 +12,13 @@ search.audienceType:
1212
contributors:
1313
ms.custom: sap:Power Platform Administration
1414
---
15-
# Virtual Network troubleshooting
15+
# Troubleshoot Virtual Network issues
1616

1717
This article provides guidance on troubleshooting common scenarios for Virtual Network in Power Platform. You can make use of a PowerShell module that can help you identify and resolve issues related to Virtual Network configurations.
1818

1919
## Diagnostics PowerShell Module
2020

21-
The Diagnostics PowerShell Module is a tool designed to help you diagnose and troubleshoot issues related to Virtual Network configurations in Power Platform. The module can be used to check the connectivity between your Power Platform environment and your Virtual Network, and to identify any misconfigurations that may be causing issues. It's available from the Powershell Gallery and from our GitHub repository: [PowerPlatform-EnterprisePolicies](https://github.com/microsoft/PowerPlatform-EnterprisePolicies)
21+
The Diagnostics PowerShell Module is a tool designed to help you diagnose and troubleshoot issues related to Virtual Network configurations in Power Platform. The module can be used to check the connectivity between your Power Platform environment and your Virtual Network, and to identify any misconfigurations that might be causing issues. It's available from the PowerShell Gallery and from our GitHub repository: [PowerPlatform-EnterprisePolicies](https://github.com/microsoft/PowerPlatform-EnterprisePolicies)
2222

2323
### Installing the module
2424

@@ -45,21 +45,21 @@ The module includes several functions that can be used to diagnose and troublesh
4545

4646
### Issues with the diagnostic module
4747

48-
If you encounter issues while running the diagnostic module, report them through the Github repository where the module is hosted. The repository is available at: [PowerPlatform-EnterprisePolicies](https://github.com/microsoft/PowerPlatform-EnterprisePolicies).
48+
If you encounter issues while running the diagnostic module, report them through the GitHub repository where the module is hosted. The repository is available at: [PowerPlatform-EnterprisePolicies](https://github.com/microsoft/PowerPlatform-EnterprisePolicies).
4949

50-
To report an issue, go to the Issues section of the repository and create a [new issue](https://github.com/microsoft/PowerPlatform-EnterprisePolicies/issues/new). Provide detailed information about the problem you're facing, including any error messages or logs that may help in diagnosing the issue. The more information you provide, the easier it is for us to assist you. Don't include any sensitive information in your report.
50+
To report an issue, go to the Issues section of the repository and create a [new issue](https://github.com/microsoft/PowerPlatform-EnterprisePolicies/issues/new). Provide detailed information about the problem you're facing, including any error messages or logs that might help in diagnosing the issue. The more information you provide, the easier it is for us to assist you. Don't include any sensitive information in your report.
5151

5252
## How to troubleshoot common scenarios
5353

5454
### Scenario: Misconfiguration of regions
5555

56-
If you have verified that everything is correctly configured but you are still experiencing issues, you can use the `Get-EnvironmentRegion` function from the Diagnostics PowerShell Module to check if the region of your Power Platform environment is the same as the regions where you have been configuring your Virtual Network. You can run the following command:
56+
If you have verified that everything is correctly configured but you're still experiencing issues, you can use the `Get-EnvironmentRegion` function from the Diagnostics PowerShell Module to check if the region of your Power Platform environment is the same as the regions where you have been configuring your Virtual Network. You can run the following command:
5757

5858
```powershell
5959
Get-EnvironmentRegion -EnvironmentId "00000000-0000-0000-0000-000000000000"
6060
```
6161

62-
Your environment belongs to a specific PowerPlatform region. However, a PowerPlatform region can span multiple Azure regions. You need to ensure that your Virtual Network is configured in both of the Azure regions that correspond to your PowerPlatform region. Your environment can be located in either of the two Azure regions, and it can also automatically failover between them. Therefore, to ensure high availability and connectivity, you should configure your Virtual Network in both Azure regions associated with your PowerPlatform region. You can find the mapping of the PowerPlatform regions to Azure regions that are support for the Virtual Network functionality at [Power Platform regions](/power-platform/admin/vnet-support-overview#supported-regions).
62+
Your environment belongs to a specific PowerPlatform region. However, a PowerPlatform region can span multiple Azure regions. You need to ensure that your Virtual Network is configured in both of the Azure regions that correspond to your PowerPlatform region. Your environment can be located in either of the two Azure regions, and it can also automatically fail over between them. Therefore, to ensure high availability and connectivity, you should configure your Virtual Network in both Azure regions associated with your PowerPlatform region. You can find the mapping of the PowerPlatform regions to Azure regions that are support for the Virtual Network functionality at [Power Platform regions](/power-platform/admin/vnet-support-overview#supported-regions).
6363

6464
### Scenario: Hostname not found
6565

@@ -69,7 +69,7 @@ If you're experiencing issues with hostname resolution, you can use the `Test-Dn
6969
Test-DnsResolution -EnvironmentId "00000000-0000-0000-0000-000000000000" -HostName "microsoft.com"
7070
```
7171

72-
This command tests the DNS resolution for the specified hostname in the context of your Power Platform environment. The request will initiate from the subnet that you have delegated and will attempt to resolve the hostname using the DNS server that is configured for your Virtual Network. If the hostname isn't being resolved correctly, you may need to check your DNS settings and ensure that the hostname is correctly configured.
72+
This command tests the DNS resolution for the specified hostname in the context of your Power Platform environment. The request will initiate from the subnet that you have delegated and will attempt to resolve the hostname using the DNS server that is configured for your Virtual Network. If the hostname isn't being resolved correctly, you might need to check your DNS settings and ensure that the hostname is correctly configured.
7373

7474
> [!IMPORTANT]
7575
> If you notice that your DNS setup is incorrect and need to update the DNS server settings for your Virtual Network, see [Can I update the DNS address of my Virtual Network after it's delegated to "Microsoft.PowerPlatform/enterprisePolicies"?](/power-platform/admin/vnet-support-overview#can-i-update-the-dns-address-of-my-virtual-network-after-its-delegated-to-microsoftpowerplatformenterprisepolicies)
@@ -82,18 +82,18 @@ If you're experiencing issues with connectivity to a resource, you can use the `
8282
Test-NetworkConnectivity -EnvironmentId "00000000-0000-0000-0000-000000000000" -Destination "unknowndb.database.windows.net" -Port 1433
8383
```
8484

85-
This command attempts to establish a TCP connection to the specified destination and port in the context of your Power Platform environment. The request will initiate from the subnet that you have delegated and will attempt to connect to the specified destination using the network configuration that is set up for your Virtual Network. If the connection fails, you may need to check your network settings and ensure that the destination is reachable from your Virtual Network. If the connection is successful, it indicates that there's network connectivity between the Power Platform environment and the specified resource.
85+
This command attempts to establish a TCP connection to the specified destination and port in the context of your Power Platform environment. The request will initiate from the subnet that you have delegated and will attempt to connect to the specified destination using the network configuration that is set up for your Virtual Network. If the connection fails, you might need to check your network settings and ensure that the destination is reachable from your Virtual Network. If the connection is successful, it indicates that there's network connectivity between the Power Platform environment and the specified resource.
8686

8787
> [!NOTE]
88-
> This command only tests if a TCP connection can be established to the specified destination and port. It doesn't test if the resource is actually available or if there are any application-level issues that may be preventing access to the resource.
89-
> Furthermore, some firewalls may be allowing TCP connections to be established but blocking actual traffic to the resource (i.e. HTTPS). Therefore, even if the command indicates that there's network connectivity, it doesn't guarantee that the resource is fully accessible.
88+
> This command only tests if a TCP connection can be established to the specified destination and port. It doesn't test if the resource is actually available or if there are any application-level issues that might be preventing access to the resource.
89+
> Furthermore, some firewalls might be allowing TCP connections to be established but blocking actual traffic to the resource (that is, HTTPS). Therefore, even if the command indicates that there's network connectivity, it doesn't guarantee that the resource is fully accessible.
9090
9191
### Scenario: Connectivity is successful, but the application is still not working
9292

93-
If the connectivity tests are successful, but you're still experiencing issues with your application, you may need to check the application-level settings and configurations. Things that you can check include:
93+
If the connectivity tests are successful, but you're still experiencing issues with your application, you might need to check the application-level settings and configurations. Things that you can check include:
9494

9595
- Validate in your firewall that the delegated subnet is allowed to access the resource.
96-
- Validate that the certificate presented by the resource are publicly trusted.
97-
- Ensure that there are no authentication or authorization issues that may be preventing access to the resource.
96+
- Validate that the certificate presented by the resource is publicly trusted.
97+
- Ensure that there are no authentication or authorization issues that might be preventing access to the resource.
9898

99-
If our existing tools aren't sufficient to diagnose the issue further. You may want to create a subnet without delegation in your Virtual Network and deploy a virtual machine in that subnet. You can then use the virtual machine to perform additional diagnostics and troubleshooting steps, such as checking network traffic, analyzing logs, and testing application-level connectivity.
99+
If our existing tools aren't sufficient to diagnose the issue further. You might want to create a subnet without delegation in your Virtual Network and deploy a virtual machine in that subnet. You can then use the virtual machine to perform additional diagnostics and troubleshooting steps, such as checking network traffic, analyzing logs, and testing application-level connectivity.

0 commit comments

Comments
 (0)