Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Configuring Zscaler Private Access (ZPA) to replace traditional VPN with zero trust network access by deploying App Connectors, defining application segments, configuring access policies based on user identity and device posture, and integrating with IdPs.
.claude/skills/configuring-zscaler-private-access-for-ztna/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | — | — |
| case-07 | ✗→✓ | ▲ Improved | — | — |
| case-10 | ✗→✓ | ▲ Improved | — | — |
| case-11 | ✓→✓ | = Same ✓ | — | — |
| case-16 | ✗→✗ | = Same ✗ | — | — |
Do not use for applications requiring raw UDP access (ZPA primarily supports TCP), for providing full network-level access equivalent to site-to-site VPN (use ZPA AppProtection or branch connector instead), or when the organization requires on-premises-only access control without cloud dependency.
App Connectors establish outbound-only tunnels to the ZPA cloud, providing access to internal applications.
bash# Download and install App Connector on Linux VM # Obtain provisioning key from ZPA Admin Portal > Administration > App Connectors # For RHEL/CentOS sudo yum install -y https://yum.private.zscaler.com/yum/el7/zpa-connector-latest.rpm # For Ubuntu/Debian curl -sS https://dist.private.zscaler.com/apt/pubkey.gpg | sudo apt-key add - echo "deb https://dist.private.zscaler.com/apt stable main" | sudo tee /etc/apt/sources.list.d/zpa.list sudo apt update && sudo apt install -y zpa-connector # Configure the connector with provisioning key sudo /opt/zscaler/bin/zpa-connector configure \ --provision-key "PROVISIONING_KEY_FROM_PORTAL" # Start the connector service sudo systemctl enable zpa-connector sudo systemctl start zpa-connector # Verify connector status sudo systemctl status zpa-connector sudo /opt/zscaler/bin/zpa-connector status # Deploy second connector for HA (minimum 2 per site) # Repeat on second VM with same App Connector Group provisioning key
Map internal applications to server groups and create application segments.
textZPA Admin Portal Configuration: 1. Server Groups: Navigate to: Administration > App Connectors > Server Groups - Name: "DC-East-Servers" - App Connector Group: "DC-East-Connectors" - Servers: - hr-portal.internal.corp (10.1.1.50, TCP 443) - finance-app.internal.corp (10.1.1.51, TCP 443) - git.internal.corp (10.1.2.10, TCP 22, 443) 2. Application Segments: Navigate to: Resources > Application Segments > Add Application Segment - Name: "HR Applications" - Domain/URL: hr-portal.internal.corp - TCP Ports: 443 - Server Group: DC-East-Servers - Health Reporting: Continuous - Bypass Type: Never (force all traffic through ZPA) - Name: "Engineering Tools" - Domain/URL: git.internal.corp, ci.internal.corp, wiki.internal.corp - TCP Ports: 22, 80, 443 - Server Group: DC-East-Servers - Segment Group: "Engineering Segment Group"
Define who can access which application segments based on identity and device posture.
textZPA Admin Portal > Policies > Access Policy: Rule 1: HR Team Access - Name: "HR Portal Access" - Action: ALLOW - Criteria: - User Groups: "HR-Department" (from IdP) - Application Segment: "HR Applications" - Device Posture Profile: "Corporate Managed Device" - Client Type: Zscaler Client Connector - Conditions: - SAML Attribute: department = "Human Resources" - Device Trust Level: "HIGH" (CrowdStrike ZTA score > 70) Rule 2: Engineering Access - Name: "Engineering Tools Access" - Action: ALLOW - Criteria: - User Groups: "Engineering-Team", "DevOps-Team" - Application Segment: "Engineering Tools" - Device Posture Profile: "Developer Workstation" - Conditions: - Machine Group: "Engineering Laptops" Rule 3: Contractor Limited Access - Name: "Contractor Wiki Access" - Action: ALLOW - Criteria: - User Groups: "External-Contractors" - Application Segment: "Wiki Only" - Client Type: Zscaler Client Connector OR Browser Access - Conditions: - Time Window: Mon-Fri 08:00-18:00 EST Rule 4: Default Deny - Name: "Block All Other Access" - Action: DENY - Criteria: All Users, All Applications - Log: Enabled
Integrate device posture signals from endpoint security tools.
textZPA Admin Portal > Administration > Device Posture: Profile 1: Corporate Managed Device - CrowdStrike Falcon: Running, ZTA Score >= 60 - OS: Windows 10 21H2+, macOS 13+, Ubuntu 22.04+ - Disk Encryption: Enabled (BitLocker/FileVault) - Firewall: Enabled - Screen Lock: Enabled Profile 2: Developer Workstation - Inherits: Corporate Managed Device - CrowdStrike Falcon: ZTA Score >= 70 - Patch Level: Within 30 days of latest - Certificate: Valid corporate certificate present Profile 3: BYOD Device - OS: Latest minus 1 version - Browser: Chrome 120+ or Edge 120+ - Antivirus: Any recognized AV running
Configure Browser Access for users without Zscaler Client Connector installed.
textZPA Admin Portal > Resources > Application Segments: For "HR Applications" segment: - Enable Browser Access: Yes - Browser Access Type: HTTPS - Custom Domain: hr.access.company.com - Certificate: Upload TLS certificate for custom domain - Authentication: SAML via corporate IdP - Session Timeout: 4 hours - Clipboard Control: Disabled for sensitive apps - File Upload/Download: Restricted For Browser Access Portal: - Portal URL: access.company.com - IdP: Microsoft Entra ID (SAML 2.0) - MFA: Required - Applications shown: Only authorized per user group
Set up log streaming for SIEM integration and continuous monitoring.
textZPA Admin Portal > Administration > Log Streaming Service: Log Receiver Configuration: - Name: "Splunk-SIEM" - Type: Splunk (HEC) - Destination: https://splunk-hec.company.com:8088 - HEC Token: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" - Log Types: - User Activity: Enabled - App Connector Status: Enabled - Audit Logs: Enabled - Browser Access: Enabled # Splunk search for ZPA access anomalies index=zscaler_zpa sourcetype=zpa:useractivity | where action="denied" | stats count by user, application, policy_name | where count > 10 | sort -count
| Term | Definition | |------|------------| | App Connector | Lightweight Linux service that creates outbound-only encrypted tunnels from internal networks to ZPA cloud, providing access to applications without inbound ports | | Application Segment | Logical grouping of internal applications defined by FQDN/IP and ports, mapped to server groups for access policy enforcement | | Server Group | Collection of application servers associated with App Connector groups that can serve requests for application segments | | Access Policy | Rules defining which users/groups can access which application segments under what conditions (device posture, time, location) | | Zscaler Client Connector | Endpoint agent installed on user devices that routes traffic to ZPA cloud for policy enforcement and application access | | Browser Access | Clientless ZTNA option allowing application access through a web browser without requiring Zscaler Client Connector installation |
Context: A financial services firm with 500 employees uses Cisco AnyConnect for remote access. VPN split-tunnel configuration creates security gaps, and full-tunnel mode causes performance issues. The firm needs application-level access control for SOX compliance.
Approach:
Pitfalls: App Connector DNS must resolve all internal FQDNs used in application segments. Wildcard domain segments can cause performance issues if too broad. Browser Access does not support all web application frameworks (WebSocket-heavy apps may require Client Connector). CrowdStrike ZTA integration requires Falcon sensor deployment on all endpoints before enforcing posture policies.
ZPA ZTNA Deployment Report
==================================================
Organization: FinanceCorp
Deployment Date: 2026-02-23
INFRASTRUCTURE:
App Connectors: 4 (2x DC-East, 2x DC-West)
Connector Status: All healthy
Connector Version: 24.1.2
APPLICATION COVERAGE:
Application Segments: 20
Total Applications: 45
Server Groups: 4
Segment Groups: 6
ACCESS POLICIES:
Total Rules: 12
Allow Rules: 11
Deny Rules: 1 (default deny)
Device Posture Profiles: 3
USER ACCESS (last 30 days):
Active Users: 487 / 500
Total Sessions: 124,567
Allowed Sessions: 123,890 (99.5%)
Denied Sessions: 677 (0.5%)
Browser Access Sessions: 2,341
VPN MIGRATION:
Users migrated to ZPA: 487 / 500
VPN decommission date: 2026-03-15| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-16 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-13 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-09 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-06 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-21 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-11 | pass→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-19 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-04 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-05 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-07 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-08 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-20 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-22 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-17 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-12 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-03 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-01 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-10 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-02 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-14 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-15 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-18 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +14 percentage points is the difference between those two pass rates over the 22 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
The per-case answers from this run were removed by the retention sweep, so the case table below shows the verdicts without the text either arm produced. The counts above were recorded at the time and are unaffected. Answers are now kept for 180 days.
Other measured skills in the registry, with their headline benchmark lift.