Amazon AWS

Deploy VM

Deploy VyOS on Amazon AWS

  1. Click to Instances and Launch Instance

../../_images/cloud-aws-01.png
  1. On the marketplace search “VyOS”

../../_images/cloud-aws-02.png
  1. Choose the instance type. Minimum recommendation start from m3.medium

../../_images/cloud-aws-03.png
  1. Configure instance for your requirements. Select number of instances / network / subnet

../../_images/cloud-aws-04.png
  1. Additional storage. You can remove additional storage /dev/sdb. First root device will be /dev/xvda. You can skeep this step.

../../_images/cloud-aws-05.png
  1. Configure Security Group. It’s recommended that you configure ssh access only from certain address sources. Or permit any (by default).

../../_images/cloud-aws-06.png
  1. Select SSH key pair and click Launch Instances

../../_images/cloud-aws-07.png
  1. Find out your public IP address.

../../_images/cloud-aws-08.png
  1. Connect to the instance by SSH key.

ssh -i ~/.ssh/amazon.pem [email protected]
vyos@ip-192-0-2-10:~$

Amazon CloudWatch Agent Usage

To use Amazon CloudWatch Agent, configure it within the Amazon SSM Parameter Store. If you don’t have a configuration yet, do CloudWatch SSM Configuration creation.

  1. Create an IAM role for the EC2 instance to access CloudWatch service, and name it CloudWatchAgentServerRole. The role should contain two default policies: CloudWatchAgentServerPolicy and AmazonSSMManagedInstanceCore.

  2. Attach the created role to your VyOS EC2 instance.

  3. Ensure that amazon-cloudwatch-agent package is installed.

$ sudo apt list --installed | grep amazon-cloudwatch-agent

Note

The amazon-cloudwatch-agent package is normally included in VyOS 1.3.3+ and 1.4+

  1. Retreive an existing CloudWatch Agent configuration from the SSM Parameter Store.

$ sudo /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-ctl -a fetch-config -m ec2 -s -c ssm:<your-configuration-name>

This step also enables systemd service and runs it.

Note

The VyOS platform-specific scripts feature is under development. Thus, this step should be repeated manually after changing system image (Update VyOS)

CloudWatch SSM Configuration creation

Creating the Amazon Cloudwatch Agent Configuration in Amazon SSM Parameter Store.

  1. Create an IAM role for your EC2 instance to access the CloudWatch service. Name it CloudWatchAgentAdminRole. The role should contain at two default policies: CloudWatchAgentAdminPolicy and AmazonSSMManagedInstanceCore.

Note

CloudWatchAgentServerRole is too permisive and should be used for single configuration creation and deployment. That’s why after completion of step #3 higly recommended to replace instance CloudWatchAgentAdminRole role with CloudWatchAgentServerRole.

  1. Run Cloudwatch configuration wizard.

$ sudo /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-config-wizard
  1. When prompted, answer “yes” to the question “Do you want to store the config in the SSM parameter store?”.

References