-4

I am trying to understand how the process of a VPN works. A lot of the text I am reading is too basic and doesn't address the technologies used in a VPN.

I'd like to know more about the security and encryption process. But I'd kind of like this in a step by step process of when those technologies come in.

example.

User requests a page Google.com, where does the data go? to the VPN first or the ISP? What does it do when it reaches the VPN? Handshake? Key Exchange? Certificates? Then what? Google sends back its data and how does the VPN encrypt?

This doesn't have to be technical, but these are the areas the texts I'm looking at don't address.

Ari
  • 217

1 Answers1

1

User requests a page Google.com, where does the data go?

Through many servers; traceroute will list them for you.

To the VPN first or the ISP?

Your ISP, then your VPN.

What does it do when it reaches the VPN?

The data is unwrapped (optionally decrypted) when it reaches the VPN from you.

Handshake? Key Exchange? Certificates?

Optionally yes, and more (network stack get complicated)

Then what? Google sends back its data and how does the VPN encrypt?

The encryption method depends on the VPN option you are using but one option in OpenVPN is TLS, the same technology your bank uses (some VPN connections are more secure than some bank connections; link )


Wikipedia article on VPN, Virtual Private Network

user1133275
  • 5,574