New Features
| Feature | Description |
|---|---|
| New API Version | With this release, Amazon VPC has a new API version (2011-02-28). The WSDL is at http://ec2.amazonaws.com/doc/2011-02-28/AmazonEC2.wsdl. To get the latest version of the API tools, go to Amazon EC2 API Tools. |
| New Amazon EC2 Dedicated Instances | Dedicated Instances are Amazon EC2 instances launched within your Amazon Virtual Private Cloud (Amazon VPC) that run hardware dedicated to a single customer. Dedicated Instances let you take full advantage of the benefits of Amazon VPC and the AWS cloud—on-demand elastic provisioning, pay only for what you use, and a private, isolated virtual network&emdash;all while isolating your Amazon EC2 compute instances at the hardware level. |
Known Issues
| Issue | Description |
|---|---|
Windows Server 2008 R2 |
Windows Server 2008 R2 is not currently supported in Amazon VPC. |
SQL Server Reserved Instances |
SQL Server Reserved Instances are not currently supported in Amazon VPC. |
Current Limits |
With the current implementation of Amazon VPC:
|
Current Service Limitations |
With the current implementation of Amazon VPC:
|
| Older API Version Clients and Latest Console Display Different Results | If you use a client that is based on an older API version of Amazon VPC, but you also use the AWS Management Console to manage your VPC resources, you'll see different results between the two interfaces. |
| Elastic IP Addresses Not Interchangeable | Any EC2 Elastic IP addresses your AWS account has cannot be used with your VPC, and any VPC Elastic IP addresses you have can't be used with EC2. |
| Security Groups Not Interchangeable | Any EC2 security groups your AWS account has cannot be used with your VPC, and any VPC security groups you have can't be used with EC2. |
| Traffic Sent to Overlapping IP Address Ranges Is Dropped | For customers using the optional IPsec VPN gateway: If your VPC's IP address range overlaps with an IP address range in use within your existing IT infrastructure, Amazon VPC will drop any traffic to said range. To avoid this, create your VPC so it does not overlap with current or expected future subnets in your network. |
| Ordering of DHCP Option Values Not Guaranteed | When you specify DHCP options, some options (e.g., DNS servers) accept multiple values. The ordering of these values is not guaranteed. After creating the options, you should use the DescribeDhcpOptions operation (or the ec2-describe-dhcp-options command) to confirm the order in which the options will be delivered to instances. |
| Tags for Amazon VPC Resources Not Supported in the Console | You can tag your Amazon VPC resources using the API or command line tools, but those tags are not available to work with in the AWS Management Console. |
| Configuration Changes for Windows Server 2008 AMIs | If you've created your own Windows Server 2008 AMIs from Amazon's Windows Server 2008 base images prior to v1.02, you need to make a couple of changes to your existing configuration in order to activate your instances' licensing when launching in a VPC. In some cases, you might need to make changes for v1.02 as well, depending on your needs.
Manually Locate VPC Activation Endpoints If you want to launch a Windows Server 2008 AMI in a VPC, you must manually set the Windows Activation endpoint in your instance if either of the following conditions are true:
The activation IP addresses for VPC instances are:
To set the endpoint manually, execute the following commands from the command line: Slmgr.vbs /skms 169.254.169.250 Slmgr.vbs /ato Update Ec2Config Service Settings If you're using an AMI that was created from an Amazon public Windows Server 2008 image prior to v1.02, then you should also make a change to one of the Activation Settings files in the Ec2Config service to reflect the new discovery hierarchy, which includes the preceding endpoints for VPC activation. To make this change, overwrite the file <?xml version="1.0" encoding="utf-8"?>
<ActivationSettingsTable>
<!--
KMS Servers are searched for/activated against based on
settings in this file. Each "methodSettings" section is
attempted until a KMS server is found and instance is
successfully activated.
-->
<!-- Try autodiscovery first... -->
<!-- NOTE: Autodiscover clears any KMS that is already set! -->
<MethodSettings>
<SetAutodiscover>true</SetAutodiscover>
<TargetKMSServer/>
<DiscoverFromZone/>
<ReadFromUserData>false</ReadFromUserData>
<LegacySearchZones>false</LegacySearchZones>
<DoActivate>true</DoActivate>
</MethodSettings>
<!-- Try the first virtual IP for VPC instances -->
<MethodSettings>
<SetAutodiscover>false</SetAutodiscover>
<TargetKMSServer>169.254.169.250</TargetKMSServer>
<DiscoverFromZone/>
<ReadFromUserData>false</ReadFromUserData>
<LegacySearchZones>false</LegacySearchZones>
<DoActivate>true</DoActivate>
</MethodSettings>
<!-- Try the backup IP for VPC instances... -->
<MethodSettings>
<SetAutodiscover>false</SetAutodiscover>
<TargetKMSServer>169.254.169.251</TargetKMSServer>
<DiscoverFromZone/>
<ReadFromUserData>false</ReadFromUserData>
<LegacySearchZones>false</LegacySearchZones>
<DoActivate>true</DoActivate>
</MethodSettings>
<!--
Now search the DNS suffix list.
This should already have been set by the SetDNSSuffix plugin,
controlled by the setting in the primary config file.
-->
<MethodSettings>
<SetAutodiscover>false</SetAutodiscover>
<TargetKMSServer/>
<DiscoverFromZone/>
<ReadFromUserData>false</ReadFromUserData>
<LegacySearchZones>true</LegacySearchZones>
<DoActivate>true</DoActivate>
</MethodSettings>
<GlobalSettings>
<LogResultToConsole>true</LogResultToConsole>
</GlobalSettings>
</ActivationSettingsTable>
|