SecureNT Intranet SSL

SSL/TLS Certificates for Internal Networks.

2026-09-17 17:53:00

Private SSL 201 - Securing Internal ERP and HRMS Portals with Intranet SSL

Enterprise Resource Planning (ERP) and Human Resource Management Systems (HRMS) house the crown jewels of any enterprise: payroll ledger data, banking details, personal employee records, tax filings, and supply chain trade secrets. Because these platforms are frequently deployed on-premise or within isolated virtual private clouds, access is tied to internal hostnames or private IP subnets (e.g., erp.corp.local, hrms.internal, or 192.168.10.50).

Because public Certificate Authorities (CAs) cannot validate or issue certificates for non-public domains or RFC 1918 private IP addresses, organizations often default to unencrypted HTTP or unmanaged self-signed certificates. Both shortcuts create critical operational vulnerabilities.

Why Self-Signed Certs Fail Internal ERP Deployments

Running mission-critical financial applications over HTTP leaves administrative credentials exposed to packet sniffing and session hijacking over local networks. Conversely, using self-signed certificates introduces distinct failure modes:

  • Session Interruption & Mobile App Failures: Modern ERP companion apps (such as the ERPNext or SAP mobile interfaces) reject untrusted root chains outright, preventing warehouse and sales staff from syncing data.
  • Security Fatigue: Daily browser warnings train employees to bypass certificate errors, rendering the organization defenseless against authentic adversary-in-the-middle (AiTM) lateral attacks.
  • Compliance Breaches: Mandates like SOC 2, ISO 27001, and PCI-DSS require verifiable data-in-transit encryption governed by a structured certificate lifecycle.

Deploying an internal SSL certificate issued by a SecureNT (Private CA) provides seamless end-to-end cryptographic trust without browser warnings.

Architecture Overview


[ User Browser / Client App ]
                │
                │ HTTPS (Port 443) - Validated via Internal Root CA
                ▼
[ Reverse Proxy / Web Server (Nginx / Apache / IIS) ]
                │
                │ Local Proxy Pass (Port 8000 / 8069 / 44300)
                ▼
[ ERP Backend Daemon (ERPNext Frappe / Odoo / SAP NetWeaver) ]

Most modern on-premise ERP platforms leverage a high-performance reverse proxy (Nginx or Apache) running on Linux, or IIS on Windows Server, sitting ahead of the application engine. Terminating SSL at this web tier minimizes complexity and optimizes performance.

Prerequisites

  • Administrative access (root shell or local Administrator) to the host hosting the ERP/HRMS instance.
  • An active internal DNS record pointing to your server (e.g., erp.company.internal or hrms.local).
  • A Private CA (SecureNT) configured with the enterprise Root CA deployed across your fleet.

Step-by-Step Implementation Guide

Step 1: Generate the Private Key and CSR

Generate a 2048-bit RSA private key and Certificate Signing Request (CSR) on your ERP host. Replace the domain with your internal FQDN:

Bash

openssl req -new -newkey rsa:2048 -nodes \
 -keyout erp_private.key \
 -out erp_request.csr \
 -subj "/C=US/ST=State/L=City/O=Enterprise/OU=IT/CN=erp.company.internal"

If multiple internal endpoints or IP addresses point to this application, ensure your CSR includes a Subject Alternative Name (SAN) configuration file specifying both the DNS names and target IPs.

Step 2: Submit the CSR to SecureNT

  1. Visit SecureNT Intranet SSL website
  2. Submit the new Server Certificate request (File: erp_request.csr)
  3. Select your internal Web Server profile and assign the certificate lifespan.
  4. Approve and download the issued certificate (File: server.cer) alongside the intermediate CA chain (File: SecureNT CA-Bundle.cer).

Step 3: Bundle the Certificate Chain

For Linux-based reverse proxies, combine your issued server certificate with the intermediate CA into a unified bundle:

Bash

cat erp_cert.crt ca_chain.crt > /etc/ssl/certs/erp_bundled.crt
mv erp_private.key /etc/ssl/private/erp_private.key
chmod 600 /etc/ssl/private/erp_private.key

Step 4: Configure the ERP Web Server

For Nginx Deployments (ERPNext Frappe / Odoo):

Edit your site's Nginx configuration block (typically found in /etc/nginx/conf.d/ or /etc/nginx/sites-available/):

Nginx

server {
    listen 80;
    server_name erp.company.internal;
    return 301 https://$host$request_uri;
}

server {
    listen 443 ssl http2;
    server_name erp.company.internal;

    ssl_certificate /etc/ssl/certs/erp_bundled.crt;
    ssl_certificate_key /etc/ssl/private/erp_private.key;

    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers HIGH:!aNULL:!MD5;

    location / {
        proxy_pass http://127.0.0.1:8000; # Target internal application port
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto https;
    }
}

Test and reload Nginx:

Bash

nginx -t && systemctl reload nginx

For Windows / IIS Deployments (SAP NetWeaver / Dynamics on-premise):

  1. Launch IIS Manager and navigate to Server Certificates.
  2. Click Complete Certificate Request, import the .cer received from the SecureNT, and assign a friendly label.
  3. Under Sites, locate the ERP portal, choose Bindings, and add an https binding on port 443 associated with the imported certificate.
  4. Enforce an HTTP-to-HTTPS redirect rule using the URL Rewrite extension.

Verification and Health Check

  1. Open a browser on an internal domain workstation and navigate to https://erp.company.internal\.
  2. Confirm the presence of the lock icon and verify the certificate path validates up to your organization's Private Root CA without revocation errors.
  3. Verify that non-encrypted requests to http://erp.company.internal\ immediately enforce an HTTP 301 redirect to the HTTPS interface.

Securing internal ERP and HR portals establishes strict compartmentalization for critical business records, stops credential harvesting at the local network tier, and maintains complete regulatory compliance.

Copyright © 2026 Secure Network Traffic. All rights reserved. SecureNT is a registered trademark of Secure Network Traffic.