Manage Azure Virtual WAN

This section provides guidance on managing your Azure Virtual WAN deployment, including common tasks, best practices, and troubleshooting steps.

Key Management Areas

Monitoring and Diagnostics

Effective monitoring is crucial for understanding the health and performance of your Virtual WAN resources. Azure Monitor provides comprehensive tools for this purpose.

Refer to the Azure Monitor documentation for detailed information.

Updating and Scaling

As your network requirements evolve, you may need to update or scale your Virtual WAN resources. This can include resizing VPN gateways or adding new connections.

Security Management

Maintaining a secure network is paramount. Virtual WAN offers several features to enhance security.

For more details on securing your network, see Azure Security best practices.

Cost Management

Understanding and optimizing the costs associated with your Virtual WAN deployment is essential. Key cost drivers include data transfer, gateway instances, and VPN connections.

Common Management Tasks

Creating and Configuring a Virtual Hub

The Virtual Hub is the core component of Virtual WAN. You can create and configure hubs through the Azure portal, Azure CLI, or PowerShell.

# Example using Azure CLI
az network vwan hub create \
    --resource-group "myResourceGroup" \
    --name "myVirtualHub" \
    --location "eastus" \
    --vwan-name "myVirtualWAN" \
    --address-prefix "10.0.0.0/23"

Connecting Sites to the Hub

You can connect your on-premises sites or other Azure VNet connections to the Virtual Hub using VPN or ExpressRoute.

Note: Ensure your on-premises VPN devices are compatible with Azure VPN Gateway.

Configuring Routing

Virtual WAN simplifies routing within your Azure network and between your on-premises environments. You can configure static routes, dynamic routing (BGP), and route propagation.

Troubleshooting

When issues arise, start by checking the health status of your Virtual WAN components in the Azure portal. Utilize diagnostic tools and logs for deeper analysis.

Warning: Incorrect routing configurations can lead to connectivity loss. Always test changes in a non-production environment first.

For common issues, consult the Virtual WAN Troubleshooting Guide.