Connect to a Linux instance using EC2 Instance Connect
The following instructions explain how to connect to your Linux instance using EC2 Instance Connect through the Amazon EC2 console, the AWS CLI, or an SSH client.
When you connect to an instance using EC2 Instance Connect through the console or AWS CLI, the EC2 Instance Connect API automatically pushes an SSH public key to the instance metadata where it remains for 60 seconds. An IAM policy attached to your user authorizes this action. If you prefer using your own SSH key, you can use an SSH client and explicitly push your SSH key to the instance using EC2 Instance Connect.
Requirements
Before you begin, be sure to review the prerequisites.
Connection options
Connect using the Amazon EC2 console
You can connect to an instance using EC2 Instance Connect through the Amazon EC2 console.
Requirements
To connect using the Amazon EC2 console, the instance must have either a public IPv4 or a public IPv6 address. If the instance only has a private IPv4 address, you can use the ec2-instance-connect AWS CLI to connect.
To connect to your instance using the Amazon EC2 console
Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/
. -
In the navigation pane, choose Instances.
-
Select the instance and choose Connect.
-
Choose the EC2 Instance Connect tab.
-
For Connection type, choose Connect using EC2 Instance Connect.
-
If there is a choice, select the IP address to connect to. Otherwise, the IP address is selected automatically.
-
For Username, verify the username.
-
Choose Connect to establish a connection. An in-browser terminal window opens.
Connect using the AWS CLI
You can use the ec2-instance-connect
Connection types
auto
(default)-
EC2 Instance Connect tries to connect using the instance's IP addresses in the following order and with the corresponding connection type:
-
Public IPv4:
direct
-
Private IPv4:
eice
-
Public IPv6:
direct
-
direct
-
EC2 Instance Connect tries to connect using the instance's IP addresses in the following order:
-
Public IPv4
-
Public IPv6
-
Private IPv4 (it does not connect over an EC2 Instance Connect Endpoint)
-
eice
-
EC2 Instance Connect tries to connect using the instance's private IPv4 address and an EC2 Instance Connect Endpoint.
Note
In the future, we might change the behavior of the auto
connection type.
To ensure that your desired connection type is used, we recommend that you explictly set
the --connection-type
to either direct
or
eice
.
Connecting to a private IPv6 address is not supported
when using the ec2-instance-connect
Requirements
You must use AWS CLI version 2. For more information, see Install or update to the latest version of the AWS CLI.
To connect to an instance using the instance ID
If you only know the instance ID, and want to let EC2 Instance Connect determine the connection
type to use when connecting to your instance, use the ec2-instance-connectssh
command
and the instance ID.
aws ec2-instance-connect ssh --instance-id
i-1234567890example
To connect to an instance using the instance ID and an EC2 Instance Connect Endpoint
If you want to connect to your instance over an EC2 Instance Connect Endpoint, use the preceding command
and also specify the --connection-type
parameter with the eice
value.
aws ec2-instance-connect ssh --instance-id
i-1234567890example
--connection-type eice
To connect to an instance using the instance ID and your own private key file
If you want to connect to your instance over an EC2 Instance Connect Endpoint using your own private key,
specify the instance ID and the path to the private key file. Do not include
file://
in the path; the following example will fail:
file:///path/to/key
.
aws ec2-instance-connect ssh --instance-id
i-1234567890example
--private-key-file/path/to/key
.pem
Tip
If you get an error when using these commands, make sure that you're using AWS CLI version
2, because the ssh
command is only available in this major version.
We also recommend regularly updating to the latest minor version of AWS CLI
version 2 to access the latest features. For more information, see About
AWS CLI version 2 in the AWS Command Line Interface User Guide.
Connect using your own key and SSH client
You can use your own SSH key and connect to your instance from the SSH client of your choice while using the EC2 Instance Connect API. This enables you to benefit from the EC2 Instance Connect capability to push a public key to the instance. This connection method works for instances with public and private IP addresses.
Requirements
-
Requirements for key pairs
-
Supported types: RSA (OpenSSH and SSH2) and ED25519
-
Supported lengths: 2048 and 4096
-
For more information, see Create a key pair using a third-party tool and import the public key to Amazon EC2.
-
-
When connecting to an instance that has only private IP addresses, the local computer from which you are initiating the SSH session must have connectivity to the EC2 Instance Connect service endpoint (to push your SSH public key to the instance) as well as network connectivity to the instance's private IP address to establish the SSH session. The EC2 Instance Connect service endpoint is reachable over the internet or over an AWS Direct Connect public virtual interface. To connect to the instance's private IP address, you can leverage services such as AWS Direct Connect
, AWS Site-to-Site VPN , or VPC peering.
To connect to your instance using your own key and any SSH client
-
(Optional) Generate new SSH private and public keys
You can generate new SSH private and public keys,
my_key
andmy_key.pub
, using the following command:ssh-keygen -t rsa -f my_key
-
Push your SSH public key to the instance
Use the send-ssh-public-key command to push your SSH public key to the instance. If you launched your instance using AL2023 or Amazon Linux 2, the default username for the AMI is
ec2-user
. If you launched your instance using Ubuntu, the default username for the AMI isubuntu
.The following example pushes the public key to the specified instance in the specified Availability Zone, to authenticate
ec2-user
.aws ec2-instance-connect send-ssh-public-key \ --region
us-west-2
\ --availability-zoneus-west-2b
\ --instance-idi-001234a4bf70dec41EXAMPLE
\ --instance-os-userec2-user
\ --ssh-public-key file://my_key.pub
-
Connect to the instance using your private key
Use the ssh command to connect to the instance using the private key before the public key is removed from the instance metadata (you have 60 seconds before it is removed). Specify the private key that corresponds to the public key, the default username for the AMI that you used to launch your instance, and the instance's public DNS name (if connecting over a private network, specify the private DNS name or IP address). Add the
IdentitiesOnly=yes
option to ensure that only the files in the ssh config and the specified key are used for the connection.ssh -o "IdentitiesOnly=yes" -i
my_key
ec2-user
@ec2-198-51-100-1.compute-1.amazonaws.com
Troubleshoot
If you receive an error while attempting to connect to your instance, see the following: