Thanks for letting us know we're doing a good job!
If you've got a moment, please tell us what we did right so we can do more of it.
You can bring part or all of your public IPv4 address range from your on-premises network to your AWS account. You continue to own the address range, but AWS advertises it on the internet. After you bring the address range to AWS, it appears in your account as an address pool. You can create an Elastic IP address from your address pool and use it with your AWS resources, such as EC2 instances, NAT gateways, and Network Load Balancers.
BYOIP is not available in all Regions. For a list of supported Regions, see the
FAQ for Bring Your Own IP
The address range must be registered with your Regional internet registry (RIR), such as the American Registry for Internet Numbers (ARIN), Réseaux IP Européens Network Coordination Centre (RIPE), or Asia-Pacific Network Information Centre (APNIC). It must be registered to a business or institutional entity and can not be registered to an individual person.
The most specific address range that you can specify is /24.
You can bring each address range to one Region at a time.
You can bring five address ranges per Region to your AWS account.
The addresses in the IP address range must have a clean history. We might investigate the reputation of the IP address range and reserve the right to reject an IP address range if it contains an IP address that has poor reputation or is associated with malicious behavior.
You must own the IP address that you use. This means that only the following are supported:
ARIN - "Direct Allocation" and "Direct Assignment" network types
RIPE - "ALLOCATED PA", "LEGACY", and "ASSIGNED PI" allocation statuses
APNIC – "ALLOCATED PORTABLE" and "ASSIGNED PORTABLE" allocation statuses
To ensure that only you can bring your address range to your AWS account, you must authorize Amazon to advertise the address range. You must also provide proof that you own the address range through a signed authorization message.
A Route Origin Authorization (ROA) is a cryptographic statement about your route announcements that you can create through your RIR. It contains the address range, the Autonomous System numbers (ASN) that are allowed to advertise the address range, and an expiration date. An ROA authorizes Amazon to advertise an address range under a specific AS number. However, it does not authorize your AWS account to bring the address range to AWS. To authorize your AWS account to bring an address range to AWS, you must publish a self-signed X509 certificate in the Registry Data Access Protocol (RDAP) remarks for the address range. The certificate contains a public key, which AWS uses to verify the authorization-context signature that you provide. You should keep your private key secure and use it to sign the authorization-context message.
The commands in these tasks are supported on Linux. On Windows, you can use the Windows Subsystem for Linux
Tasks
Create a ROA object to authorize Amazon ASNs 16509 and 14618 to advertise your address range, plus the ASNs that are currently authorized to advertise the address range. You must set the maximum length to the size of the smallest prefix that you want to bring (for example, /24). It might take up to 24 hours for the ROA to become available to Amazon. For more information, see the following:
ARIN — ROA
Requests
RIPE — Managing ROAs
APNIC — Route Management
Use the following procedure to create a self-signed X509 certificate and add it to the RDAP record for your RIR. The openssl commands require OpenSSL version 1.0.2 or later.
To create a self-signed X509 certificate and add it to the RDAP record
Generate an RSA 2048-bit key pair as shown in the following.
openssl genrsa -out private.key 2048
Create a public X509 certificate from the key pair using the following command. In this example, the certificate expires in 365 days, after which time it cannot be trusted. Therefore, be sure to set the expiration appropriately. When prompted for information, you can accept the default values.
openssl req -new -x509 -key private.key -days365| tr -d "\n" > publickey.cer
Update the RDAP record for your RIR with the X509 certificate. Be sure to
copy the -----BEGIN CERTIFICATE----- and -----END
CERTIFICATE----- from the certificate. Be sure that you have
removed newline characters, if you haven't already done so using the
tr -d "\n" commands in the previous steps. To view
your certificate, run the following command.
cat publickey.cer
For ARIN, add the certificate in the "Public Comments" section for your address range.
For RIPE, add the certificate as a new "descr" field for your address range.
For APNIC, email the public key to helpdesk@apnic.net
The format of the signed authorization message is as follows, where the date is the expiry date of the message.
1|aws|account|cidr|YYYYMMDD|SHA256|RSAPSS
First, create a plain-text authorization message and store it in a
variable named text_message as follows. Replace the example
account number, address range, and expiry date with your own values.
text_message="1|aws|123456789012|198.51.100.0/24|20191201|SHA256|RSAPSS"
Next, sign the authorization message in text_message using the key
pair that you created and store it in a variable named signed_message,
as follows.
signed_message=$(echo $text_message | tr -d "\n" | openssl dgst -sha256 -sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:-1 -sign private.key -keyform PEM | openssl base64 | tr -- '+=/' '-_~' | tr -d "\n")
When you provision an address range for use with AWS, you are confirming that you own the address range and are authorizing Amazon to advertise it. We also verify that you own the address range through a signed authorization message. This message is signed with the self-signed X509 key pair that you used when updating the RDAP record with the X509 certificate.
To provision the address range, use the following provision-byoip-cidr
command. Replace the example address range with your own address range. The
--cidr-authorization-context option uses the variables that
you created previously, not the ROA message.
aws ec2 provision-byoip-cidr --cidr"address-range--cidr-authorization-context Message="$text_message",Signature="$signed_message
Provisioning an address range is an asynchronous operation, so the call returns
immediately, but the address range is not ready to use until its status changes from
pending-provision to provisioned. It can take up to three
weeks to complete the provisioning process. To monitor the status of the address ranges
that you've provisioned, use the following describe-byoip-cidrs
command.
aws ec2 describe-byoip-cidrs --max-results 5
To create an Elastic IP address from your address pool, use the allocate-address command. You
can use the --public-ipv4-pool option to specify the ID of the address pool
returned by describe-byoip-cidrs. Or you can use the --address
option to specify an address from the address range that you provisioned.
After the address range is provisioned, it is ready to be advertised. You must advertise the exact address range that you provisioned. You can't advertise only a portion of the provisioned address range.
We recommend that you stop advertising the address range from other locations before you advertise it through AWS. If you keep advertising your IP address range from other locations, we can't reliably support it or troubleshoot issues. Specifically, we can't guarantee that traffic to the address range will enter our network.
To minimize down time, you can configure your AWS resources to use an address from your address pool before it is advertised, and then simultaneously stop advertising it from the current location and start advertising it through AWS. For more information about allocating an Elastic IP address from your address pool, see Allocating an Elastic IP address.
To advertise the address range, use the following advertise-byoip-cidr command.
aws ec2 advertise-byoip-cidr --cidraddress-range
You can run the advertise-byoip-cidr command at most once every 10 seconds, even if you specify different address ranges each time.
To stop advertising the address range, use the following withdraw-byoip-cidr command.
aws ec2 withdraw-byoip-cidr --cidraddress-range
You can run the withdraw-byoip-cidr command at most once every 10 seconds, even if you specify different address ranges each time.
To stop using your address range with AWS, you release any Elastic IP addresses still allocated from the address pool, stop advertising the address range, and then deprovision the address range.
To release each Elastic IP address, use the following release-address command.
aws ec2 release-address --allocation-ideipalloc-12345678
To stop advertising the address range, use the following withdraw-byoip-cidr command.
aws ec2 withdraw-byoip-cidr --cidraddress-range
To deprovision the address range, use the following deprovision-byoip-cidr command.
aws ec2 deprovision-byoip-cidr --cidraddress-range