Data in Transit: The VPN Layer
When an app communicates online, packets travel through a local network, an internet provider, and other infrastructure. A VPN creates an encrypted connection to the VPN provider using a protocol such as WireGuard, OpenVPN, or IKEv2/IPsec. This can reduce what the local network and ISP can learn about the contents and destinations of your traffic.
The tunnel is not the whole journey. After traffic leaves the VPN server, website encryption such as TLS still matters. A VPN also does not make an unsafe website trustworthy or prevent you from entering credentials into a phishing page.
# Display interfaces and the routes Windows is using
Get-NetIPConfiguration
Get-NetRoute -AddressFamily IPv4 | Sort-Object RouteMetric
# Look for the VPN adapter and its default or split-tunnel routes.














