Standard Server Plans¶
Our standard server configurations are generally available to all users.
Availability varies by location, customer demand, and data center capacity, especially for on demand and spot market servers. You can check current capacity and inventory levels on our Capacity Dashboard. Other ways of checking can be found on the Inventory and Capacity documentation page.
Pricing and availability is published on the Servers Product page. Rates vary between on-demand, reserved servers, the spot market, and location.
Current Generation Server Plans¶
Slug | CPU* | Total Cores | Memory | Boot Disk | Storage | NICs |
---|---|---|---|---|---|---|
a3.large.x86 | 2 x Intel Xeon Gold 6338 | 64 cores @ 2.00GHz | 1024 GB | 2 x 240 GB | n/a | 4 x 25 Gbps |
c3.large.arm64 | 1 x Ampere Altra | 80 cores @ 3.00GHz | 256 GB | 2 x 960 GB NVMe | n/a | 2 x 25 Gbps |
c3.medium.x86 | 1 x AMD EPYC 7402P | 24 cores @ 2.80GHz | 64 GB | 2 x 240 GB SSD | 2 x 480 GB SSD | 2 x 10 Gbps |
m3.large.x86 | 1 x AMD EPYC 7502P | 32 cores @ 2.50GHz | 256 GB | 2 x 240 GB SSD | 2 x 3.8 TB NVMe | 2 x 25 Gbps |
m3.small.x86 | 1 x Intel Xeon E-2378G | 8 cores @ 2.80GHz | 64 GB | 2 x 480 GB SSD | n/a | 2 x 25 Gbps |
n3.xlarge.x86 | 1 x Intel Xeon Gold 6314U | 32 cores @ 2.50GHz | 512 GB | 2 x 256 GB NVMe | 2 x 3.84 TB NVMe | 4 x 25 Gbps |
*Offered as base config or better.
You can see all server plans available to you with the metal plan get
command. The response will include all plans available; including current generation, legacy, and Workload Optimized plans.
metal plan get
To get a list of current generation server plans in the API, send a GET
request to the /plans
endpoint. Use the categories[]=current_gen
to filter the response.
curl -X GET -H 'X-Auth-Token: <API_TOKEN>' \
https://api.equinix.com/metal/v1/plans?categories[]=current_gen
If you need to get a list that is specific to the Project you are working in, send a GET
request to the /projects/{id}/plans endpoint. Use the categories[]=current_gen
to filter the response.
curl -X GET -H 'X-Auth-Token: <API_TOKEN>' \
https://api.equinix.com/metal/v1/projects/{id}/plans?categories[]=current_gen
Legacy Server Plans¶
Equinix Metal has a variety of server plans that are replaced by newer-generation configurations or have components that can not be procured from our suppliers, so these server plans become legacy plans. Legacy server plans are non-replenishable inventory but are otherwise fully supported. You can purchase legacy plan inventory On Demand or through Reserved Servers, pending availability.
Slug | CPU* | Total Cores | Memory | Boot Disk | Storage | NICs |
---|---|---|---|---|---|---|
c2.medium.x86 | 1 x AMD EPYC 7401P | 24 cores @ 2.00GHz | 64 GB | 2 x 120 GB SSD | 2 x 480 GB SSD | 2 x 10 Gbps |
c3.small.x86 | 1 x Intel Xeon E-2278G | 8 cores @ 3.40 GHz | 32 GB | 2 x 480 GB SSD | n/a | 2 x 10 Gbps |
m2.xlarge.x86 | 2 x Intel Xeon Gold 5120 | 28 cores @ 2.20GHz | 384 GB | 2 x 120 GB SSD | 1 x 3.8 TB NVMe | 2 x 10 Gbps |
n2.xlarge.x86 | 2 x Intel Xeon Gold 5120 | 28 cores @ 2.20GHz | 384 GB | 2 x 120 GB SSD | 1 x 3.8 TB NVMe | 4 x 10 Gbps |
s3.xlarge.x86 | 2 x Intel Xeon Silver 4214 | 28 cores @ 2.20GHz | 192 GB | 2 x 960 GB SSD | 2 x 240 GB NVMe (cache) 12 x 8 TB HDD | 2 x 10 Gbps |
*Offered as base config or better.
You can see all server plans available to you with the metal plan get
command. The response will include all plans available; including current generation, legacy, and Workload Optimized plans.
metal plan get
To get a list of legacy server plans in the API, send a GET
request to the /plans
endpoint. Use the categories[]=legacy_gen
to filter the response.
curl -X GET -H 'X-Auth-Token: <API_TOKEN>' \
https://api.equinix.com/metal/v1/plans?categories[]=legacy_gen
If you need to get a list that is specific to the Project you are working in, send a GET
request to the /projects/{id}/plans endpoint. Use the categories[]=legacy_gen
to filter the response.
curl -X GET -H 'X-Auth-Token: <API_TOKEN>' \
https://api.equinix.com/metal/v1/projects/{id}/plans?categories[]=legacy_gen
Operating System Compatibility¶
Equinix Metal offers and maintains operating system images that are tailored to support our server plans and network configurations. Which operating systems are available on a server plan is listed on its product page and on the OS Compatibility page.
More information on the operating systems we offer and bringing your own operating system is available in the Operating Systems section of the documentation.