How can I create vpn connections using cloud services like AWS?

0

I wanted to use the Google Cloud service or AWS to connect to the internet via VPN, thus having an alternate route for the connection because my provider has a high ping to certain sites and low compared to the servers of these companies, and I think this process can solve. Can anyone help me?

    
asked by anonymous 26.08.2018 / 22:49

1 answer

0

In AWS you first need to configure a Virtual Private Gateway (VPG). It will allow VPN tunnels to be created later. Then create a Customer Gateway, which is actually only YOUR Public IP that you will use to close the VPN with AWS. With VPG and Customer Gateway the VPN (from the AWS side) can be configured. The process is simple, just start the wizard to create a new VPN and Link the VPG, which was previously defined, and by the end you must define to which private network your VPN will communicate (this is the network you uses in AWS). After AWS provisioning your VPN it will provide you with a configuration file with the IPSec connection data that was created, you should select the configuration most appropriate for your equipment (on your side). This file contains all the data to close the IPSec (pre-shared key, ikei, peer) VPN connection. After closing the VPN, be sure to configure routing on your Route Tables so traffic is routed between your AWS network and your local network.

This link has this procedure that I described in detail: link

    
27.08.2018 / 00:48