Overview #
Application delivery is critical for scalability and reliability. While Array Networks APV Series appliances provide SSL acceleration, traffic steering, and global load balancing, many enterprises face challenges with licensing costs, lack of flexibility, and vendor lock-in.
RELIANOID ADC provides a modern, open, and cost-efficient alternative. It offers advanced Layer 4–7 load balancing, SSL offloading, GSLB, WAF, and automation APIs, making it an ideal replacement for legacy Array APV deployments.
This technical guide provides a structured walkthrough for migrating your Application Delivery Controller (ADC) services from Array APV to RELIANOID, with direct terminology mapping and step-by-step configuration examples.
Prerequisites #
This guide is intended for systems administrators or DevOps engineers who meet the following requirements:
- RELIANOID ADC installed and running (bare metal, VM, or public cloud). You can request an evaluation if needed.
- Administrator access to the RELIANOID Admin Panel. See installation guide if not yet configured.
- Administrator access to your current Array APV management console.
- Familiarity with Array APV concepts such as
Virtual Services,Real Services, andGSLB. - At least one existing APV service configuration available for reference during migration.
Terminology Mapping #
Real Service → Backend: A server handling client requests.
Group → Service: A set of backends serving the same application.
Virtual Service → Farm: Virtual IP and port listener that applies load-balancing rules.
Weight/Ratio → Weights: Used to prioritize stronger backends.
Connection Limit → Max. Conns: Restricts simultaneous connections per backend.
Health Check → Farmguardian: Active service checks for backend health.
SSL Profile → HTTPS Parameters: Configuration for TLS/SSL protocols and ciphers.
Policy → Header/Redirect Rules: For content switching and conditional redirection.
AppVelocity → HTTP Optimizations: Caching, compression, and multiplexing at LSLB level.
WebWall/DDoS → IPDS + WAF: Security modules for L7 firewalling and attack mitigation.
Migration Strategy #
Before migrating services, follow these preparatory steps:
- Export APV configurations for backup and reference.
- Document VIPs, SSL certificates, persistence settings, and policies.
- Identify custom health checks that must be replicated in RELIANOID
Farmguardian. - Schedule a maintenance window to minimize downtime during cutover.
Step-by-Step Migration Example: Conditional Redirection #
A common policy is to redirect HTTP requests to HTTPS or forward specific hostnames to a new domain.
Array APV Policy #
- Login to the APV console.
- Navigate to Virtual Service > Policies.
- Create a new policy.
- Define condition:
HTTP Host = mydomain.com. - Add action: Redirect to
https://www.mydomain.com. - Attach the policy to the Virtual Service.
RELIANOID Redirect Rule #
- Navigate to LSLB > Farms.
- Create or edit a Layer 7 farm (
HTTP listener). - Open the Services tab.
- Enable Redirect option.
- Enter target URL
https://www.mydomain.com. - Select
301(permanent) or302(temporary) as redirect code. - Click Apply.
Step-by-Step Migration Example: DNS Load Balancing (GSLB) #
RELIANOID GSLB enables DNS-based traffic distribution across multiple data centers.
Array APV GSLB #
- Create Data Centers (e.g.,
US_DC,EU_DC). - Add Servers with backend IPs.
- Create Virtual Services per app.
- Group into GSLB Pools.
- Bind pools to a Wide IP (domain).
- Enable monitors and set algorithm (e.g., Round Robin).
RELIANOID GSLB #
- Go to GSLB > Farms and click Create Farm.
- Name the farm (e.g.,
ns1-globalfarm). - Select virtual interface and set
Port 53. - Add a Service with algorithm
Round Robin. - Configure health checks with
Farmguardian. - Add backend data center IPs.
- Open Zones tab → add
ydomain.com. - Create DNS records (
A,CNAME,MX, etc.). - Restart the farm to apply changes.