Skip to main content

Selecting Virtual Network Function Models

This guide walks you through discovering and selecting the right VNF model for your requirements.

Example of Available Models

Firewall — Checkpoint

ModelCategoryVersionsDeployment ModesIP Pre-allocation
Cloudguardstandalone81.20single, dualNo
Cloudguardenabler81.20single, dualNo
Cloudguardenabler81.20clusterNo

Cloud Connector — Aviatrix

ModelCategoryVersionsDeployment ModesIP Pre-allocation
Edge Gatewaystandalone7.0, 7.1, 8.0, 8.1single, dualYes
Edge Gatewaystandalone7.0, 7.1, 8.0, 8.1clusterYes
Edge Gateway - Wan Connectstandalone7.0, 7.1, 8.0, 8.1single, dualYes
Edge Gateway - Wan Connectstandalone7.0, 7.1, 8.0, 8.1clusterNo

Session Border Controller — Audiocodes

ModelCategoryVersionsDeployment ModesIP Pre-allocation
Mediant Virtual Edition (VE)standalone7.40A.501.392single, dualYes
Mediant Virtual Edition (VE)enabler7.40A.250.541, 7.40A.501.392single, dualYes
MVE - qualificationenabler7.40A.250.265, 7.40A.250.541, 7.40A.501.392single, dualYes

Available Flavors (Sizing)

All models share a consistent set of T-shirt sizes:

FlavorvCPURAMDisk
Extra-Small12 GB64 GB
Small28 GB64 GB
Medium416 GB64 GB
Large816 GB64 GB

Flavor availability varies per model version. Always check the model detail endpoint for the exact list.


Browse Models via API

List all models

curl -X GET 'https://api.orange.com/evolutionplatform/proxy/vnfaaservice/api/v1/virtualnetworkfunctionmodels' \
-H 'X-API-KEY: YOUR_API_KEY' \
-H 'Accept-Language: en'

Filter by vendor

curl -X GET 'https://api.orange.com/evolutionplatform/proxy/vnfaaservice/api/v1/virtualnetworkfunctionmodels?vendorName=Checkpoint' \
-H 'X-API-KEY: YOUR_API_KEY'

Filter by type

curl -X GET 'https://api.orange.com/evolutionplatform/proxy/vnfaaservice/api/v1/virtualnetworkfunctionmodels?type=Firewall' \
-H 'X-API-KEY: YOUR_API_KEY'

Get a specific model

curl -X GET 'https://api.orange.com/evolutionplatform/proxy/vnfaaservice/api/v1/virtualnetworkfunctionmodels/{modelId}' \
-H 'X-API-KEY: YOUR_API_KEY'

Deployment Modes

ModeDescriptionUse Case
singleOne VM instanceDevelopment, testing
dualActive/standby HA pairProduction workloads
clusterMulti-node clusterHigh-throughput, enterprise

IP Pre-allocation

Some models (Audiocodes, Aviatrix Edge Gateway single/dual) require IP addresses to be allocated to the zone before deployment. Check the needIpAddressesAllocation field on the model.

Model Selection Checklist

  • Type matches your network function need (Firewall / Cloud Connector / SBC)
  • Deployment mode suits your availability requirements
  • Flavor provides adequate resources
  • IP pre-allocation completed if required
  • Version is not deprecated

Next Steps

After selecting a model:

  1. Deploy VNF Instance - Create your first VNF
  2. Configure Security - Set up network policies
  3. Review API Reference - Explore all endpoints