You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This component provides VPN connectivity for AKS Flex Node using OpenVPN over Point-to-Site (P2S) connections. It's designed for scenarios where a limited number of clients need secure access to a virtual network.
The VPN Gateway component enables secure connectivity between AKS Flex Nodes and Azure Virtual Networks through:
10
+
11
+
-**Certificate-based authentication** using self-generated root and client certificates
12
+
-**OpenVPN SSL tunnel** for encrypted communication
13
+
-**Automatic IP management** to update node IPs when VPN interface changes
14
+
-**Azure integration** for seamless VPN gateway configuration
15
+
16
+
## Steps
17
+
1. Prepare Azure Resources
18
+
- Create a GatewaySubnet within the AKS VNet
19
+
- Deploy a Route-based Azure VPN Gateway into the GatewaySubnet
20
+
21
+
2. Prepare Certificates
22
+
- root certificate: will be uploaded to Azure as a "trusted" cert (a Base64 encoded X.509 .cer file.)
23
+
- client certificates: generated from the root certificate and to be installed on each client computer for client authentication
24
+
25
+
3. Configure VPN client profile
26
+
27
+
## References
28
+
29
+
[Configure server settings for P2S VPN Gateway certificate authentication](https://learn.microsoft.com/en-us/azure/vpn-gateway/point-to-site-certificate-gateway)
0 commit comments