An AWS CloudFormation template that can be used to automate deployment of the open source strongSwan VPN solution as a VPN gateway in support of several different site-to-site VPN topologies. The open source Quagga software suite complements the role of strongSwan by providing Border Gateway Protocol (BGP) support to automatically propagate routing information across site-to-site VPN connections.
Even if you don’t have a need to demonstrate integration with AWS site-to-site VPN capabilities, you might find value in reviewing the Infrastructure as Code (IaC) techniques demonstrated by the example AWS CloudFormation template including its built-in integrations with other AWS services to support logging, resource monitoring, and secure remote terminal access.
- Use Cases and Topologies
- Integration with AWS Services
- Usage
- CloudFormation Template Parameters
- Troubleshooting
- Inspecting the strongSwan VPN Gateway EC2 Instance
- Advanced Usage
- Contributing
- License
The example template can be useful for experimenting, testing, and demonstrating integration scenarios with the AWS Site-to-Site VPN feature and more formally implementing site-to-site VPN connections where use of managed AWS VPN services might not apply.
When you don’t have ready access to either real on-premises VPN hardware or software appliances, this example can be useful in demonstrating how to integrate an on-premises network with AWS networks via AWS site-to-site VPN connections and either AWS Virtual Private Gateways (VGWs) or AWS Transit Gateways (TGWs).
Site-to-Site VPN with AWS Transit Gateway
See Transit Gateway Example: Centralized Router for an overview of this topology.
In the following diagram, an EC2 instance deployed to a VPC that is emulating a customer’s on-premises network is running the strongSwan VPN stack and is acting as a VPN Customer Gateway in a site-to-site VPN configuration with an AWS Transit Gateway on the other end of the connection.
Site-to-Site VPN with AWS Virtual Private Gateway
See AWS Site-to-Site VPN for details on this configuration.
In the following diagram, an EC2 instance deployed to a VPC that is emulating a customer’s on-premises network is running the strongSwan VPN stack and is acting as a VPN Customer Gateway in a site-to-site VPN configuration with an AWS Virtual Private Gateway (VGW) on the other end of the connection.
The example template can also be used to establish a VPN Gateway on both ends of a site-to-site VPN connection in scenarios where VGWs and TGWs are not applicable. Normally, you would use either VPC Peering or AWS Transit Gateway when you control the environments on both ends of a site-to-site VPN connection, but there may be circumstances in which you want to manage the VPN gateway on both ends.
The example AWS CloudFormation template automatically builds a stack that demonstrates use of the following AWS services, features, and best practices:
-
AWS CloudFormation features including the
AWS::CloudFormation::Init
feature to completely automate the build out of the VPN gateway stack and BGP support upon first boot and theAWS::CloudFormation::WaitCondition
feature to force the stack creation process to wait until the first boot build out is complete. -
Amazon EC2 provides the compute platform in which to deploy the strongSwan VPN gateway.
-
Amazon CloudWatch Logs integration via the CloudWatch Logs Agent in which OS, VPN gateway, and BGP log files are written to a series of log streams in a CloudWatch Logs log group.
-
Amazon CloudWatch integration for monitoring EC2 memory and disk metrics.
-
AWS Systems Manager Session Manager to enable secure terminal access to the OS instance without the need to establish Internet accessible bastion hosts and port 22 access to the VPN gateway.
-
AWS Secrets Manager to support secure storage and retrieval of secrets used when authenticating your site-to-site VPN connection. The tunnel-specific private shared key (PSK) values for PSK-based authentication and the private key passphrase for certificate-based authentication are retrieved from AWS Secrets Manager.
-
Systems Manager Parameter Store to query for latest Amazon Linux 2 Amazon Machine Image (AMI) images.
-
Standardized naming of cloud resources to help distinguish from other resources, identify ownership, and potentially aid in access control.
The following instructions are primarily oriented toward the first use case and two deployment topologies described above: Site-to-Site VPN with AWS Transit Gateway and Site-to-Site VPN with Virtual Private Gateway. If you're interested in demonstrating a DIY solution for both ends of a site-to-site VPN connection, you should be able to easily extend these instructions.
This template supports pre-shared key- and certificate-based authentication.
You'll obtain the the pre-shared keys (PSKs) for the two tunnels after you've configured the site-to-site VPN connection.
You’ll need to create two secrets in AWS Secrets Manager in your simulated on-premises environment to store the PSKs so that your VPN gateway can retrieve them upon first boot when the strongSwan stack is configured.
The following diagram represents the private CAs and the customer gateway private certificate that you’ll need to create in your AWS environment. It also shows the tunnel-specific private certificates that will be automatically generated when you configure the site-to-site VPN connection.
When using certificate-based authentication, you’ll need to use the AWS Certificate Manager private CA feature to create root and subordinate private CAs. The root CA is used to sign the subordinate CA while the subordinate CA is used to sign private certificates used to support your site-to-site VPN connections.
Once you’ve created the necessary CAs, you’ll use AWS Certificate Manager to create a private certificate to represent your customer gateway and to be used to authenticate your on-premises VPN gateway when it initiates the VPN connection.
The customer gateway private certificate is signed by the subordinate CA.
When you configure a customer gateway in your AWS environment, you’ll specify certificate-based authentication and associate your customer gateway private certificate with the customer gateway.
Later, when your VPN connection and tunnels are established, this association helps to ensure that only a customer gateway that has this customer gateway private certificate can connect to your AWS environment.
Once you’ve created the private CAs and the customer gateway private certificate, you’ll need to save copies of the associated certificates to your desktop copies.
The certificates are needed in your simulated on-premises environment so that the strongSwan VPN tool can validate the authenticity of both the customer gateway private certificate and tunnel-specific private certificates that are sent to the client when the VPN connection is established.
You’ll also need to save a copy of customer gateway private key so that the strongSwan VPN tool can decrypt the content of the customer gateway private key.
Since the customer gateway private key is sensitive data, you’ll need to specify a passphrase to be used to encrypt the private key file.
The tunnel-specific private certificates are automatically generated by AWS when you either create a transit gateway VPN attachment or create a site-to-site connection. These private certificates contain a domain name that you’ll need to take note of and supply when you deploy the strongSwan VPN gateway stack in your simulated on-premises environment.
When the tunnels are being established, the srongSwan tool will use the domain names to help validate the tunnel-specific private certificates exchanged when the tunnels are established.
Before you can create the CloudFormation stack for your strongSwan VPN gateway in your simulated on-premises environment, you’ll need to perform the following steps.
First, you’ll need to upload the certificates and customer gateway private key to an S3 bucket that is accessible from your simulated on-premises environment.
Next, you’ll need to create a secret in AWS Secrets Manager and store the passphrase to decrypt the customer gateway private key in that secret.
The following diagram shows the certificates and the customer gateway private key stored in an S3 bucket. The passphrase for the customer gateway private key is stored in a secret in AWS secrets manager.
See How do I create a certificate-based VPN using AWS Site-to-Site VPN? for more details.
Since VPN connections typically occur over the public Internet, you'll need to have at least one public IP address to represent the local side of the VPN tunnels. You have several options to associate a public IP address. In either case, decoupling the creation and management of the public IP address from the creation and management of the VPN gateway enables you to replace the VPN gateway stack including the associated strongSwan EC2 instance without needing to reconfigure the remote end of the site-to-site VPN connection.
Before deploying this stack, create an Elastic IP (EIP) address and obtain its allocation ID so that you can pass it as a parameter to the CloudFormation stack through which the VPN gateway will be created. When deploying this stack, you set the parameter pUseElasticIp
to true
and supply a value for the pEipAllocationId
parameter.
In this case, you discover the public IP address of the NAT Gateway and use it when configuring the remote side of the VPN connection. When deploying this stack, you accept the default false
setting for the pUseElasticIp
parameter. Since the local side of the site-to-site VPN initiates the connection, the local strongSwan VPN gateway will initiate the connection through the NAT Gateways public IP address.
When using either AWS VGWs or TGWs for the remote end of the site-to-site VPN connection, a site-to-site VPN connection resource will be established in AWS on the remote site. Within the site-to-site VPN connection resource on the remote site, you can download a VPN configuration file that will provide you with much of the data required to deploy the local VPN gateway. In the AWS management console, see VPC -> Site-to-Site VPN Connections
, select the connection of interest, click Download
and select the Generic
option for Vendor
and download the configuration file.
Review the data in this file in preparation for passing it as parameters to the CloudFormation stack in the next step.
If you're using PSK-based authentication, you'll need to create two secrets in AWS Secrets Manager in your simulated on-premises environment. You can find PSK values in the VPN tunnel configuration file under the "IPSec Tunnel #1" and "IPSec Tunnel #2" sections and "Pre-Shared Key" value.
Each of the AWS Secrets Manager secrets for the PSK values must be in the form of psk:<value>
where psk
is the key and <value>
is the private shared key value.
In this step you'll create a CloudFormation stack using the vpn-gateway-strongswan.yml
template and configuration data obtained from the remote site's Site-to-Site VPN Connection resource.
You can use either the AWS management console or an included helper script and the AWS CLI to create the stack. Given the number of parameters involved, you will probably find it easier to use the CLI so that you can specify the parameter values once in a JSON file as opposed to entering them via the AWS management console. Using the CLI approach also makes it easier to spin up new stack instances both in cases where failures occur and you want to change settings to experiment with features.
Use the CloudFormation template to deploy a VPN gateway stack in an appropriate subnet based on the CloudFormation Template Parameters described below.
-
Use the AWS Management Console to access the CloudFormation service.
-
Ensure that the desired AWS region is selected.
-
Select "Create Stack" and select "With new resources".
-
Select "Upload a template file"
-
Use your browser to download the
vpn-gateway-strongswan.yml
CloudFormation template file to your local computer. -
Select "Choose file" to select the CloudFormation template file that you downloaded.
-
Select "Next" to "Specify stack details".
-
Enter a name for your new CloudFormation stack. For example, "vpn-gateway".
-
Override and/or fill in the required parameters. See CloudFormation Template Parameters for details.
-
Select "Next" to "Configure stack options".
-
Select "Next" to review your stack settings.
-
Select "Create stack".
If you have the AWS CLI installed, you might find it easier to use the included shell script manage-stack
to create the stack.
- Clone this repository to your local system on which you have the AWS CLI installed.
- Customize one of the
template-parameters-*.json
files containing example sets of parameters for your stack. - Execute the
manage-stack
wrapper script to create the stack. Here are the option arguments that are commonly used with this script:
Option Argument | Required? | Description | Default |
---|---|---|---|
-s or --stack-name |
Required | Specifies the name to assign to the newly created stack. | None |
-r or --region |
Optional | AWS region. Since the aws CLI is used, the standard environment variables are honored. |
The aws CLI will use the standard AWS_DEFAULT_REGION environment variable if set. |
-p or --profile |
Optional | AWS profile. Since the aws CLI is used, the standard environment variables are honored. |
The aws CLI will use the standard AWS_PROFILE environment variable if set. |
An example execution:
$ ./manage-stack -s vpn-gateway-1 --region us-east-1 template-parameters-certificate-auth.json
Execution of this command would result in an attempt to create a new stack of the name vpn-gateway-1
.
Monitor the progress of stack creation via the AWS management console.
- Wait for creation of the stack to complete. Since the template uses a wait condition, the stack won't complete until strongSwan and other components have been configured and started.
- Wait for several minutes after stack creation completes. Then monitor the Site-to-Site VPN Connection on the remote site to confirm that the two VPN tunnels have progressed from the
DOWN
state to theUP
state. If the VPN gateway configuration is correct, Tunnel 1 will come up first followed several minutes later by Tunnel 2.
If the tunnels have not come up 3-5 minutes after creation of the VPN gateway stack completed, then see the Troubleshooting section below.
On both sides of the site-to-site VPN connection, ensure that the appropriate routing and security group configurations are in place to enable proper routing of traffic. For example:
- In support of testing, ensure that testing EC2 instances can receive ICMP or ping traffic.
- Ensure VPC route tables associated with subnets route traffic destined for the other site to the local VPN gateway instance.
- If using Transit Gateway on the remote site, ensure that VPC route tables are configured to route traffic destined for the other site to the Transit Gateway. (Although the built-in BGP support in this stack will help ensure that both the local VPN gateway's route information and the remote Transit Gateway's route table will be automatically configured, you still need to ensure that the VPC route tables in both sites are properly configured).
- Deploy an Amazon Linux EC2 instance to one of the local subnets.
- Ensure ICMP is allowed as inbound traffic.
- Set it up for SSH access in one of two ways:
- Systems Manager Session Manager: No SSH and publicly accessible IP address required. Instead, create an IAM role for EC2 that includes the
AmazonSSMManagedInstanceCore
policy and attach it to the EC2 instance via theActions -> Instance Settings -> Attach/Replace IAM Role
. - SSH: Ensure that the security group allows for SSH inbound access and that the instance has a publicly accessible IP address.
- Systems Manager Session Manager: No SSH and publicly accessible IP address required. Instead, create an IAM role for EC2 that includes the
- Deploy another EC2 instance in the remote site with the same configuration as above.
- Validate that route tables and security groups are properly configured.
- Use
ping
on one of the two ends to validate routing and connectivity between the instances. - Use
# tcpdump -eni any icmp
to on the target instance to monitor traffic.
Parameter | Required | Description | Default |
---|---|---|---|
System Classification and Environment | |||
pOrg |
Optional | As an example of using resource naming standards, include the business organization in the names of resources including, for example, IAM roles. | example |
pSystem |
Optional | As an example of using resource naming standards, include a system identifier in the names of resources including, for example, IAM roles.. | infra |
pApp |
Optional | As an example of using resource naming standards, include an application identifier in the names of resources including, for example, IAM roles. | vpngw |
pEnvPurpose |
Required | As an example of using resource naming standards, include a purpose for this particulart instance of the stack in the names of resources including, for example, IAM roles.. For example, "dev1", "test", "1", etc. | None |
Authentication Type | |||
pAuthType |
Optional | The type of authentication. Either psk or pubkey . Use pubkey for certificate-based authentication and psk for private shared key-based authentication. |
psk |
Certificate-Based Authentication | |||
pCertBucket |
Required when using certificate-based authentication. | Name of S3 bucket containing the following certificate files in .pem format. |
None |
pCgwCert |
Required when using certificate-based authentication. | Name of customer gateway certificate file residing in S3. | None |
pCgwPrivateKey |
Required when using certificate-based authentication. | Name of customer gateway private key file residing in S3. | None |
pCgwPrivateKeyPassphraseSecretName |
Required when using certificate-based authentication. | Name of secret in AWS Secrets Manager containing the passphrase for the customer gateway private key file residing in S3. AWS Secrets Manager secret must be in the form of passphrase:<value> where passphrase is the key and <value> is the passphrase value. |
None |
pRootCaCert |
Required when using certificate-based authentication. | Name of root CA certificate file residing in S3. Required when using certificate-based authentication. | None |
pSubordinateCaCert |
Required when using certificate-based authentication. | Name of subordinate CA certificate file residing in S3. Required when using certificate-based authentication. | None |
VPN Tunnel 1 | |||
pTunnel1PskSecretName |
Required when using PSK-based authentication. | Name of secret in AWS Secrets Manager containing the private shared key for tunnel 1. AWS Secrets Manager secret must be in the form of psk:<value> where psk is the key and <value> is the private shared key value.See the remote site's configuration for the "IPSec Tunnel #1" section and "Pre-Shared Key" value. |
None |
pTunnel1VgwCertDomainName |
Required when using certificate-based authentication. | The domain name of the private certificate associated with tunnel 1. Required when using certificate-based authentication. You can obtain this value from accessing your site-to-site VPN connection in your AWS environment, selecting the "Tunnel Details" tab, and selecting the "Certificate ARN". |
None |
pTunnel1VgwOutsideIpAddress |
Required | See the remote site's configuration for the "IPSec Tunnel #1" section, "Outside IP Addresses" section and "Virtual Private Gateway" value. | None |
pTunnel1CgwInsideCidr |
Required | See the remote site's configuration for the "IPSec Tunnel #1" section, "Inside IP Addresses" section and "Customer Gateway" value. | None |
pTunnel1VgwInsideCidr |
Required | See the remote site's configuration for the "IPSec Tunnel #1" section, "Inside IP Addresses" section and "Virtual Private Gateway" value. | None |
pTunnel1VgwBgpAsn |
Optional | See the remote site's configuration for the "BGP Configuration Options" and the "Virtual Private Gateway ASN" value. | 64512 |
pTunnel1BgpNeighborIpAddress |
Required | See the remote site's configuration for the "BGP Configuration Options" and the "Neighbor IP Address" value. | None |
VPN Tunnel 2 | |||
pTunnel2PskSecretName |
Required when using PSK-based authentication. | Name of secret in AWS Secrets Manager containing the private shared key for tunnel 2. AWS Secrets Manager secret must be in the form of psk:<value> where psk is the key and <value> is the private shared key value.See the remote site's configuration for the "IPSec Tunnel #2" section and "Pre-Shared Key" value. |
None |
pTunnel2VgwCertDomainName |
Required when using certificate-based authentication. | The domain name of the certificate associated with tunnel 2. Required when using certificate-based authentication. | None |
pTunnel2VgwOutsideIpAddress |
Required | See Tunnel 1. | None |
pTunnel2CgwInsideCidr |
Required | See Tunnel 1. | None |
pTunnel2VgwInsideCidr |
Required | See Tunnel 1. | None |
pTunnel2VgwBgpAsn |
Optional | See Tunnel 1. | 64512 |
pTunnel2BgpNeighborIpAddress |
Required | See Tunnel 1. | None |
Local Network Configuration | |||
pVpcId |
Required | The VPC in which the VPN gateway is to be deployed. | None |
pVpcCidr |
Required | The CIDR block of the local VPC. Used to advertise via BGP routing information to the remote site. | None |
pSubnetId |
Required | The subnet in which the VPN gateway is to be deployed. | None |
pUseElasticIp |
Optional | Use elastic IP address? | true |
pEipAllocationId |
Required when pUseElasticIP = true |
The allocation ID of the Elastic IP address that is to be associated with the VPN gateway. | None |
pLocalBgpAsn |
Optional | The BGP Autonomous System Number (ASN) used to represent the local end of the site-to-site VPN connection. | 65000 |
EC2 Instance | |||
pAmiId |
Optional | The ID of the AMI to use for the VPN gateway. By default this Systems Manager Parameter Store key is used to lookup the latest version of the referenced AMI for use in the current region. | /aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs |
pInstanceType |
Optional | The EC2 instance type to use for the VPN gateway. | t3a.micro |
Verify your parameter settings against both your local network configuration and the configuration of the site-to-site tunnels. If you're using an Elastic IP address, ensure that the allocation ID is correct.
You may find that the stack creation fails after multiple minutes and resources are rolled back. In this case, it's best to delete the stack and use the CLI approach described above in an attempt to create the stack again. However, this time, you'll use CloudWatch logs to inspect the progress of the first boot configuration steps during stack creation.
Similar to the previous circumstance, verify your parameter settings against both your local network configuration and the configuration of the site-to-site tunnels. If you're using an Elastic IP address, ensure that the allocation ID is correct.
If no obvious issues are identified based on a review of the template parameters, delete the failed stack and use the CLI approach in an attempt to create the stack again. This time, during stack creation, inspect the CloudWatch logs group to gain insight into failures that might be occurring during the first boot configuration process. For example, if the S3 bucket name for certificate key files is incorrect, the first boot configuration process will fail.
Specifically, access the cfn-init.log
log stream to review the first boot configuration for any errors. By default, the log group for you EC2 instance will be named /infra/vpngw/ec2/<environment purpose>
.
If the cfn-init.log
log stream looks clean, then review the charon.log
log stream for errors. If you're using certificate-based authentication and your certificates and key files are incorrect, then you'll typically see errors in this log stream.
Ensure that you've waited 5 minutes or so to give the tunnels time to establish.
It's likely that one or more of the tunnel related stack parameters is incorrect. Double check the settings. You can delete and recreate the VPN gateway stack without needing to delete and recreate the remote site's VPN resources.
You can also inspect the VPN gateway's logs via CloudWatch Logs. In CloudWatch Logs, look for a log group that is named based on the system classification parameters described above. For example: /infra/vpngw/ec2/...
.
If any of the following log files are not present: charon.log
, zebra.log
, bgpd.log
, start a terminal session with the gateway instance and use the systemctl status <service name>
command to understand why a service did not start.
Log files in order of importance are:
cfn-init.log
- Look for successful execution of the configuration sets from theAWS::CloudFormation::Init
section of the CloudFormation template.charon.log
- If initialization looks ok, check the content of this log file to monitor the establishment of the VPN tunnels.
Verify correctness of the following configurations on both sides of the site-to-site VPN connection:
- EC2 instance security groups.
- Route tables.
Consider using tcpdump
on the VPN gateway EC2 instance to see if traffic is being routed through the gateway.
If any of the following log files are not present in CloudWatch Logs: charon.log
, zebra.log
, bgpd.log
, start a terminal session with the VPN gateway instance and execute a command to display error messages associated with services starting up on the strongSwan EC2 instance.
Since the CloudFormation stack configures the VPN gateway EC2 instance to support terminal access through AWS Systems Manager Session Manager, you can easily connect to the strongSwan EC2 instance via the EC2 portion of the AWS management console.
- Access the EC2 service of the AWS Management Console
- Choose the strongSwan EC2 instance. For example, infra-vpngw-test
- Choose "Connect" in the upper portion of the console
- Choose the "Session Manager" option
- Choose "Connect"
You should be presented with a terminal session of the EC2 instance.
Use the following commands to display errors associated with starting the following services:
$ systemctl status strongswan
$ systemctl status zebra
$ systemctl status bgpd
You can review the status of the strongSwan application via sudo strongswan status command. Execution of this command should show that both tunnels are connected:
$ sudo strongswan status
Security Associations (2 up, 0 connecting):
AWS-VPC-TUNNEL-1[135]: ESTABLISHED 2 hours ago, 10.0.0.221[10.0.0.221]...18.222.98.126[18.222.98.126]
AWS-VPC-TUNNEL-1{1358}: REKEYED, TUNNEL, reqid 1, expires in 6 minutes
AWS-VPC-TUNNEL-1{1358}: 0.0.0.0/0 === 0.0.0.0/0
AWS-VPC-TUNNEL-1{1360}: INSTALLED, TUNNEL, reqid 1, ESP in UDP SPIs: c2217636_i c2fc4ee3_o
AWS-VPC-TUNNEL-1{1360}: 0.0.0.0/0 === 0.0.0.0/0
AWS-VPC-TUNNEL-2[134]: ESTABLISHED 6 hours ago, 10.0.0.221[10.0.0.221]...52.15.138.189[52.15.138.189]
AWS-VPC-TUNNEL-2{1357}: REKEYED, TUNNEL, reqid 8, expires in 4 minutes
AWS-VPC-TUNNEL-2{1357}: 0.0.0.0/0 === 0.0.0.0/0
AWS-VPC-TUNNEL-2{1359}: INSTALLED, TUNNEL, reqid 8, ESP in UDP SPIs: cff85483_i 87052d38_o
AWS-VPC-TUNNEL-2{1359}: 0.0.0.0/0 === 0.0.0.0/0
If you're using certificated-based authentication, you can inspect the certificates loaded by strongSwan:
# strongswan listcerts # list the public certificates
# strongswan listcacerts # list the CA certificates
You can inspect the BGP routes that Quagga knows about by executing the sudo vtysh
command followed by the show ip bgp summary
subcommand. In the following example, the BGP tunnel neighbors are listed:
$ sudo vtysh
Hello, this is Quagga (version 0.99.22.4).
Copyright 1996-2005 Kunihiro Ishiguro, et al.
ip-10-0-0-221.corp.ckamps-acme.com# show ip bgp summary
BGP router identifier 10.0.0.221, local AS number 65000
RIB entries 3, using 336 bytes of memory
Peers 2, using 9120 bytes of memory
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
169.254.54.17 4 64512 182713 182714 0 0 0 03w0d03h 1
169.254.227.237 4 64512 182593 182632 0 0 0 14:36:47 1
Total number of neighbors 2
Next, you can inspect the routes by executing the show ip route
subcommand. In the following example, 10.4.0.0/19 represents the route advertised by the transit gateway via BGP.
# show ip route
Codes: K - kernel route, C - connected, S - static, R - RIP,
O - OSPF, I - IS-IS, B - BGP, A - Babel,
> - selected route, * - FIB route
K>* 0.0.0.0/0 via 10.0.0.1, eth0
C>* 10.0.0.0/24 is directly connected, eth0
B>* 10.4.0.0/19 [20/100] via 169.254.54.17, vti1, src 10.0.0.221, 03w0d03h
C>* 127.0.0.0/8 is directly connected, lo
C>* 169.254.54.16/30 is directly connected, vti1
K>* 169.254.169.254/32 is directly connected, eth0
C>* 169.254.227.236/30 is directly connected, vti2
If you need to change resources that are configured outside of the UserData
and Metadata
sections of the AWS::EC2::LaunchTemplate
, you should be able to update either the template or stack parameters and update the stack in place.
Until the AWS::EC2::LaunchTemplate
is modified to support stack updates, any changes in the UserData
and Metadata
sections of that resource require replacement of the stack.
Since the Elastic IP Address resource is managed via a distinct CloudFormation stack, you can delete a VPN gateway stack without also deleting the associated EIP address. If you are using the VPN gateway stack to set up a site-to-site VPN with AWS VPG or TGW resources, you can simply delete the existing VPN gateway stack and create a new stack with the same parameters. The remote side of the site-to-site VPN connection will automatically reconnect once the new VPN gateway has been established.
After deploying the new VPN gateway stack, you will need to ensure that any local routing table entries are updated to point to the new VPN gateway EC2 instance.
If you'd like the VPC in which the strongSwan VPN gateway is running to forward traffic from the VPN connection to either other VPCs via VPC Peering or onward via gateways such an Internet Gateway to NAT Gateway, you'll need to configure the VPN gateway to mask the original source IP address by using the VPN gateway's IP address.
You can implement source network IP masking via an iptables
command. For example, the following command when run on the strongSwan VPN gateway will mask the source IP address only for traffic whose destination IP address does not match the specified network. e.g. It will mask traffic destined for the Internet, but not for the local network. Presence of the !
argument prior to the -d
argument ensures that the all destinations other than the stated network will be subject to the masking rule.
$ sudo /sbin/iptables -t nat -A POSTROUTING -o eth0 ! -d 10.0.0.0/16 -j MASQUERADE
Alternatively, you can choose to mask all traffic:
$ sudo /sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
Other useful iptables
commands include:
# List the current rules:
# With packet counts:
$ sudo iptables -t nat -L -v
Chain PREROUTING (policy ACCEPT 12 packets, 1001 bytes)
pkts bytes target prot opt in out source destination
Chain INPUT (policy ACCEPT 1 packets, 93 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 234 packets, 16318 bytes)
pkts bytes target prot opt in out source destination
Chain POSTROUTING (policy ACCEPT 152 packets, 11245 bytes)
pkts bytes target prot opt in out source destination
93 5981 MASQUERADE all -- any eth0 anywhere !10.0.0.0/16
# With line numbers:
$ sudo iptables -t nat -L --line-numbers
Chain PREROUTING (policy ACCEPT)
num target prot opt source destination
Chain INPUT (policy ACCEPT)
num target prot opt source destination
Chain OUTPUT (policy ACCEPT)
num target prot opt source destination
Chain POSTROUTING (policy ACCEPT)
num target prot opt source destination
1 MASQUERADE all -- anywhere !10.0.0.0/16
# Delete a specific rule based on line number:
$ sudo iptables -t nat -D POSTROUTING 1
See CONTRIBUTING.md for the contribution process.
File an issue in GitHub, ensure your changes pass cfn-lint
tests and functionally work, before submitting a Pull Request (PR) for consideration.
This project is licensed under the Apache-2.0 License.