Cisco AI

    Cisco Hypershield Deep Dive: AI-Native Distributed Security Fabric for DC & K8s (2026)

    TechLeague Editorial··22 min read

    Cisco Hypershield, commercially available as a core component of the Cisco Security Cloud, represents a significant architectural shift in distributed security, targeting both traditional data centers and hyperscale Kubernetes environments. Launched in preview and maturing through 2026, it pivots from appliance-centric or sidecar-based microsegmentation to a deeply embedded, AI-native, and highly distributed enforcement model. The core premise is threefold: offloading security enforcement to data processing units (DPUs) and eBPF on host kernels, autonomous policy generation and refinement through AI, and self-qualifying upgrades designed to eliminate downtime and failure risks. This deep dive focuses on the technical underpinnings, operational implications, and strategic considerations for its adoption across brownfield and greenfield deployments. We will dissect its components, compare its capabilities to established market players, and outline critical engineering considerations for successful integration.

    Hypershield Architecture: Control Plane, Enforcement Points, and Telemetry

    Hypershield's architecture is fundamentally distributed, leveraging the compute power at the edge of the network and within host kernels. The control plane resides within the Cisco Security Cloud, providing centralized policy management, AI-driven insights, telemetry aggregation, and orchestration. Unlike traditional solutions that push policies to centralized firewalls or distributed virtual appliances, Hypershield pushes granular rules to thousands of enforcement points. These enforcement points are primarily software-defined: eBPF programs running on Linux kernels (via a tesseract-agent DaemonSet in Kubernetes environments or directly on RHEL/Ubuntu hosts) and hardware-accelerated offloads on SmartNICs like AMD Pensando Elba and NVIDIA BlueField-3. The intelligence for policy generation and optimization, particularly for autonomous segmentation, is powered by Cisco AI Defense, leveraging large language models (LLMs) and graph neural networks (GNNs) to analyze vast telemetry streams from endpoints, network devices, and application logs.

    Telemetry is a critical feedback mechanism. Hypershield agents collect flow data (NetFlow/IPFIX-like), process-level information, and system calls, streaming this to the Cisco Security Cloud. This data feeds the AI engine, but also integrates with external platforms like Splunk, Elastic, and Cisco XDR for broader security operations and analytics. The Hypershield control plane’s API, primarily gRPC-based, facilitates high-speed, asynchronous policy distribution and telemetry ingestion, ensuring rapid policy convergence even across large estates with hundreds of thousands of enforcement points. This design addresses common scaling issues faced by traditional security managers that rely on synchronous API calls or proprietary protocols.

    eBPF & DPU: The Core Enforcement Mechanisms

    Hypershield's reliance on eBPF (extended Berkeley Packet Filter) for software-defined enforcement is strategic. eBPF allows for safe, programmable execution of custom code within the Linux kernel, without modifying kernel source or loading kernel modules. For Hypershield, eBPF programs are attached to various kernel hooks, primarily TC (Traffic Control) and XDP (eXpress Data Path), to inspect, filter, redirect, and modify network packets. This provides deep packet inspection and programmable logic at line rate, often within the kernel's network stack, before packets reach user space. This minimizes latency and maximizes throughput, as operations are handled close to the wire.

    DPU integration, specifically with AMD Pensando Elba on Cisco Nexus 9300X-48HXN switches or standalone AMD Pensando DPU cards, and NVIDIA BlueField-3/4 DPUs in servers, takes this offloading a step further. These DPUs act as dedicated security processors, offloading eBPF programs or proprietary security functions directly to the SmartNIC hardware. This frees up host CPU cycles, improves performance predictability, and enables extremely high-throughput encrypted traffic inspection (e.g., TLS 1.3 decryption/re-encryption at 200 Gbps wire speed on a single DPU). In a brownfield data center, the decision between DPU-accelerated and pure eBPF enforcement depends on existing hardware refresh cycles, application performance requirements, and budget. For high-density, low-latency applications like financial trading or certain database tiers, DPU offload is often non-negotiable. For general-purpose compute or less performance-sensitive workloads, eBPF on standard CPUs provides ample performance.

    eBPF Program Lifecycle and Policy Distribution

    The tesseract-agent, deployed as a DaemonSet in Kubernetes or a systemd service on bare metal Linux, is responsible for loading and managing eBPF programs. When a policy is defined in the Cisco Security Cloud and assigned to a workload, the control plane translates this high-level policy into low-level eBPF bytecode. This bytecode, along with associated eBPF maps (key-value stores used for policy rules, IP sets, etc.), is then pushed to the relevant tesseract-agent via gRPC. The agent loads the eBPF programs into the kernel and populates the maps. Updates are transactional, ensuring atomicity and preventing inconsistent states. Below is a simplified representation of how an eBPF policy might be applied to filter traffic:

    # On a host with tesseract-agent installed
    
    # Example: Listing loaded eBPF programs and maps
    # Note: tesseract-agent manages these, but bpftool can inspect them
    
    sudo bpftool prog show
      32: xdp  tag 667f33190fc6a382  (id: 42) 
    	loaded_at 2026/03/15 10:30:00  uid 0
    	xlated 1008B  lic GPL
    	prog_type XDP
    	map_ids 1,2,3
    	btf_obj_fd 6
    
      33: cgroup_skb  tag 1e4a6b2c3d4e5f6a  (id: 43) 
    	loaded_at 2026/03/15 10:30:00  uid 0
    	xlated 768B  lic GPL
    	prog_type CGROUP_SKB
    	map_ids 4,5
    	btf_obj_fd 7
    
    # Example: Listing eBPF maps managed by tesseract-agent for policy storage
    sudo bpftool map show
      1: hash  name tesseract_policy_ipv4_ingress  (id: 1)
    	key_size 16  value_size 4  max_entries 1024  flags 0x2
    	btf_vmlinux_value_type flow_info
    
      2: hash  name tesseract_policy_ipv4_egress  (id: 2)
    	key_size 16  value_size 4  max_entries 1024  flags 0x2
    	btf_vmlinux_value_type flow_info
    
    # Simulating a dump of a policy map (rules are complex binary data, here simplified)
    sudo bpftool map dump id 1
    # Key: { src_ip: 10.1.1.0/24, dst_port: 443 } -> Value: { action: ALLOW, priority: 100 }
    # Key: { src_ip: ANY, dst_port: 22 } -> Value: { action: DENY, priority: 200 }
    # ... hundreds of similar entries in production
    

    Autonomous Segmentation with Cisco AI Defense

    The "AI-native" aspect of Hypershield is perhaps its most advertised feature for procurement. Cisco AI Defense, integrated into the Security Cloud, ingests telemetry from Hypershield agents, network devices (NetFlow, Syslog), and cloud security posture management (CSPM) tools. Utilizing LLMs and GNNs, the system analyzes observed traffic patterns, application dependencies, user behavior, and vulnerability data to suggest optimal microsegmentation policies. This addresses a critical pain point in traditional microsegmentation: the manual effort involved in defining and maintaining thousands of granular rules across a dynamic environment. For example, if a new application stack is deployed or an existing one changes its communication patterns (e.g., a database now connecting to a new analytics service), AI Defense can detect this anomaly, identify the legitimate new flow, and propose a policy update to allow it, or flag it as suspicious. This significantly reduces policy tuning and operational overhead, accelerating time to value for segmentation.

    During the initial discovery phase, Hypershield operates in a 'learn' mode, passively observing all traffic flows and mapping application dependencies. The AI then establishes baselines and proposes the most restrictive segmentation policy that would not disrupt legitimate business traffic. These proposed policies are presented to operations teams for review and approval, often with a confidence score and impact analysis. This iterative feedback loop is crucial, especially in brownfield environments where the 'golden source' of truth for application communication is often outdated or non-existent. A typical enterprise will spend months, if not years, manually mapping application dependencies for a microsegmentation project; AI-driven discovery offers a significant acceleration.

    Self-Qualifying Upgrades: Mitigating Change Risks

    One of the most compelling operational features of Hypershield is its self-qualifying upgrade mechanism, designed to mitigate the inherent risks of patching and updating security infrastructure. This is particularly relevant in highly available, low-latency environments where a security software bug or misconfiguration post-upgrade can cause catastrophic outages. Hypershield achieves this through a dual data plane shadowing technique. During an upgrade, the system can deploy two identical versions of the Hypershield agent (e.g., current production and candidate new version) or DPU firmware in parallel. Both versions process traffic, but only one is active for enforcement. The candidate version operates in a 'shadow' or 'monitor' mode, observing the traffic, applying its policies, and reporting any deviations or drops it would have caused, without actually impacting live traffic.

    This shadowing allows for extensive testing of the new version with real production traffic, identifying potential regressions or policy discrepancies before they affect operations. If the shadow deployment validates correctly over a predefined period (e.g., 24-72 hours), the system can then gracefully promote the candidate version to active enforcement. If issues are detected, an automatic rollback to the known-good version can occur. This capability drastically reduces the operational risk associated with critical security infrastructure upgrades, a common source of outages in traditional environments. For senior engineers and architects, this feature directly addresses the "how do we test this without breaking production?" dilemma that plagues change management boards.

    # Example: Cisco Security Cloud API call to push a segmentation rule for a PCI zone
    # This would be generated by the AI Defense engine or manually by an admin
    
    POST /v1/security/policy/segmentation_rules HTTP/1.1
    Host: api.cisco.security.cloud
    Content-Type: application/json
    Authorization: Bearer <YOUR_CSC_AUTH_TOKEN>
    
    {
      "rule_id": "pci-db-to-app-allow-20260315",
      "name": "Allow PCI DB access from PCI App Servers",
      "description": "Rule generated by AI Defense, observed traffic for PCI compliance.",
      "action": "ALLOW",
      "source": {
        "labels": {
          "environment": "production",
          "application": "pci-app",
          "tier": "web"
        },
        "ip_ranges": ["10.10.1.0/24", "10.10.2.0/24"]
      },
      "destination": {
        "labels": {
          "environment": "production",
          "application": "pci-database",
          "tier": "db"
        },
        "ports": [
          {"protocol": "tcp", "port": 1521}, 
          {"protocol": "tcp", "port": 5432}
        ]
      },
      "priority": 100,
      "log_level": "FULL",
      "enforcement_mode": "ENFORCE",
      "validity": {
        "start_time": "2026-03-15T00:00:00Z",
        "end_time": null
      },
      "tags": ["PCI-DSS", "AI-Generated", "Microsegmentation"]
    }
    

    Deployment Scenarios: Brownfield DC and Kubernetes

    Deploying Hypershield in a brownfield data center, often characterized by a heterogeneous mix of operating systems, legacy applications, and varying physical infrastructure, presents specific challenges. The tesseract-agent supports RHEL 8/9, Ubuntu 20.04/22.04, and other popular Linux distributions. Installation involves enrolling the agent with the Cisco Security Cloud. For RHEL 8/9 hosts, the agent can be deployed via a standard RPM package and registered using an enrollment token. This process integrates the host into the Hypershield control plane, allowing policy distribution and telemetry collection.

    # On a RHEL 8/9 host
    # Download the RPM from Cisco Security Cloud console or a local repository
    sudo yum install /path/to/tesseract-agent-x.y.z.el8.x86_64.rpm
    
    # Configure and enroll the agent using a token generated from CSC
    sudo /opt/cisco/tesseract-agent/bin/tesseract_cli enroll --cloud-url https://api.cisco.security.cloud --enrollment-token <YOUR_ENROLLMENT_TOKEN> --force-resync
    
    # Verify agent status
    sudo systemctl status tesseract-agent.service
    
    # Example: Kubernetes deployment (DaemonSet)
    # This YAML would be applied via kubectl
    # namespace, service account, and role bindings must be pre-configured
    
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: tesseract-agent
      namespace: cisco-hypershield
      labels:
        app: tesseract-agent
    spec:
      selector:
        matchLabels:
          app: tesseract-agent
      template:
        metadata:
          labels:
            app: tesseract-agent
        spec:
          hostNetwork: true
          hostPID: true
          containers:
          - name: tesseract-agent
            image: cisco-registry.io/hypershield/tesseract-agent:1.2.0
            imagePullPolicy: Always
            securityContext:
              privileged: true
            env:
            - name: CSC_CLOUD_URL
              value: "https://api.cisco.security.cloud"
            - name: CSC_ENROLLMENT_TOKEN
              valueFrom:
                secretKeyRef:
                  name: hypershield-enrollment-secret
                  key: token
            # ... other environment variables for proxy, logging level, etc.
            volumeMounts:
            - name: run-bpffs
              mountPath: /run/bpffs
            - name: host-sys
              mountPath: /sys
            - name: host-var-run
              mountPath: /var/run
          volumes:
          - name: run-bpffs
            hostPath:
              path: /run/bpffs
              type: DirectoryOrCreate
          - name: host-sys
            hostPath:
              path: /sys
              type: Directory
          - name: host-var-run
            hostPath:
              path: /var/run
              type: Directory
          tolerations:
          - effect: NoSchedule
            operator: Exists
          - key: "node-role.kubernetes.io/master"
            operator: "Exists"
            effect: "NoSchedule"
          # Service account and RBAC setup required for privileged operations
          serviceAccountName: tesseract-agent-sa
    

    For Kubernetes (e.g., OpenShift 4.16), the tesseract-agent is deployed as a privileged DaemonSet. This allows the agent to interact with the host kernel's eBPF subsystem. One critical aspect is ensuring the agent has appropriate RBAC permissions and security context to load eBPF programs and access necessary host resources. In OpenShift, this usually means creating `SecurityContextConstraints` (SCC) that grant privileged access or configuring a custom SCC for the agent. The agent then monitors network traffic for all pods on the node, providing per-pod/per-container microsegmentation without sidecar proxies, which reduces resource overhead and simplifies application deployment.

    Microsegmentation Usecase: PCI-DSS Compliance

    A classic and critical use case for Hypershield is achieving PCI-DSS compliance by segmenting cardholder data environments (CDE). Consider a brownfield scenario where `pci-cardholder` workloads (databases, application servers) reside on the same subnet as `pci-non-cardholder` systems (e.g., monitoring, dev/test). Hypershield can segment east-west traffic between these zones at the host kernel level, even if they share network infrastructure designed for flatter topologies. The process involves:

    1. Discovery: Deploy tesseract-agent on all relevant hosts/Kubernetes nodes. The agents begin collecting flow data.
    2. Labeling: Workloads are labeled based on their function or compliance zone (e.g., security_zone: pci-cardholder, security_zone: pci-non-cardholder, application: retail-payment-gateway). These labels can be imported from оркестраторы (e.g., Kubernetes labels, CMDB data) or assigned in Cisco Security Cloud.
    3. Policy Suggestion: AI Defense analyzes the discovered flows and labels, proposing policies that allow essential CDE traffic (e.g., application servers to database on specific ports) while denying all other communication between CDE and non-CDE, and within CDE to unauthorized services.
    4. Policy Enforcement (Observe Mode): Initially, deploy policies in 'observe' (audit) mode. Hypershield logs all traffic that would have been denied by the policy without actually blocking it. This is crucial for identifying any missed dependencies.
    5. Refinement and Enforcement: Review the observed violations, refine policies (either manually or by approving AI suggestions), and then transition to 'enforce' mode.

    This allows for granular control, for instance, permitting only specific PCI application servers to connect to PCI databases on specific database ports (e.g., TCP/1521 for Oracle, TCP/5432 for PostgreSQL) while denying all other connections, even from other hosts within the same logical subnet but outside the PCI CDE. This meets PCI-DSS Requirement 2.2 for securing network connections and Requirement 1.2.1 for segmentation into and out of the CDE.

    Trade-offs, Performance, and Integration

    While powerful, Hypershield is not without trade-offs. The primary one is the reliance on specific Linux kernel versions and distributions for eBPF support. Older OS versions (e.g., RHEL 7.x) might require kernel upgrades or DPU-based enforcement if unsupported. Integration with legacy non-Linux systems (e.g., Windows, mainframes) still requires traditional network-based segmentation (VLANs, ACLs, firewalls) or alternative endpoint security solutions. The management complexity is shifted from distributed policy management across many independent firewalls to a centralized, but highly sophisticated, control plane. Expertise in eBPF concepts, while not strictly required for daily operations, aids in advanced troubleshooting.

    Performance-wise, Cisco claims less than 3% CPU overhead on an average server when tesseract-agent handles 40 Gbps of traffic, primarily due to kernel-level processing and intelligent offloading. DPU acceleration largely eliminates noticeable host CPU impact for network security functions. Policy convergence time (from policy creation/update in CSC to enforcement on agents) is often under 5 seconds for tens of thousands of enforcement points, leveraging gRPC's efficiency.

    Hypershield is designed to integrate deeply with the broader Cisco Security Cloud ecosystem. This includes Cisco XDR for consolidated threat detection and response, Cisco Catalyst Center (formerly DNA Center) for campus/branch wired/wireless policy orchestration (though Hypershield's focus is DC/Cloud), and potentially Cisco Secure Access (SSE) for unified policy enforcement from edge to cloud. This holistic approach aims to provide consistent policy enforcement and visibility across an enterprise's entire attack surface, which aligns with modern Zero Trust Architecture (ZTA) principles.

    Comparison: Hypershield vs. Established Microsegmentation Solutions (2026 Perspective)
    Feature Cisco Hypershield Illumio Core Akamai Guardicore Segmentation VMware NSX DFW Cisco Secure Workload (ex-Tetration)
    Core Enforcement eBPF (Linux kernel), DPU acceleration (AMD Pensando, NVIDIA BlueField-3) IPtables/Windows Filtering Platform (WFP) on host agents IPtables/WFP on host agents, dedicated policy enforcement points Hypervisor kernel (DFW), NSX-T network services IPtables/WFP (Cisco Secure Agent), network flow analytics (telemetry source)
    Policy Engine AI-native (Cisco AI Defense - LLM/GNN), centralized Security Cloud Application-centric, contextual attributes (labels), manual/assisted policy generation Zero Trust segmentation, identity-based, dynamic rule creation Distributed Firewall, security groups, Tags, Context Profiles Application dependency mapping, behavioral baselining, policy recommendations
    Deployment Model Agent (Linux), Kubernetes DaemonSet, DPU-enabled hardware Host agents (Linux, Windows, AIX, Solaris), cloud/container integration Host agents (Linux, Windows), dedicated sensors (physical/virtual) Integrated with vSphere/ESXi hypervisor, NSX-T Management/Policy/Edge Host agents (Linux, Windows), network sensors (Nexus, UCS, Cloud)
    Key Differentiator AI-driven autonomous segmentation, self-qualifying upgrades, DPU offload Broad OS support (incl. legacy), PCL (Policy Compute Engine) Breach containment, threat detection, high visibility Deep hypervisor integration, L7 DFW, full SDN stack Application dependency mapping, forensic analysis, multi-cloud visibility
    Migration from Secure Workload (CSW) Target migration path: CSW provides data, Hypershield enforces. Eventual CSW feature deprecation in favor of Hypershield + XDR. Independent architectures, little direct migration path other than policy recreation.
    Performance Overhead (Host) <3% CPU at 40Gbps (eBPF), near zero with DPU Typically 3-5% CPU (agent processing) Typically 2-4% CPU (agent processing) Minimal, offloaded to hypervisor/NSX-T Variable, depending on agent features and telemetry complexity

    Migration from Cisco Secure Workload (ex-Tetration)

    For existing Cisco Secure Workload (CSW) customers, Hypershield represents the strategic evolution of Cisco's microsegmentation play. CSW excelled at application dependency mapping and behavioral baselining, providing insights into communication patterns. However, its enforcement capabilities (primarily via endpoint agents or Nexus ACLs) were less integrated and often required manual policy translation. Hypershield directly addresses this gap by providing a fully integrated, AI-driven enforcement fabric.

    The migration path involves using CSW's existing telemetry and application dependency maps as initial input for Hypershield's AI Defense. CSW's deep visibility into application groups and communication flows can accelerate Hypershield's 'learn' phase, reducing the time needed for AI Defense to propose initial segmentation policies. Cisco's roadmap indicates a convergence where CSW's telemetry ingestion and application dependency mapping capabilities will be absorbed and enhanced within the broader Cisco Security Cloud, feeding Hypershield and Cisco XDR. This implies that while CSW will continue to be supported, future investment and innovation will heavily favor Hypershield as the primary enforcement platform for Cisco's distributed security strategy. Organizations currently relying on CSW for enforcement at scale should actively plan pilot projects with Hypershield in 2026 to understand the operational impact and benefits before a full transition.

    Verdict

    Cisco Hypershield is a fundamentally different approach to distributed security, designed for the scale and dynamism of modern data centers and cloud-native environments. Its strong points are: AI-native policy generation, which significantly reduces the operational burden of microsegmentation; eBPF and DPU-accelerated enforcement, offering high performance and low host overhead; and self-qualifying upgrades, which drastically mitigate change risk. For organizations undertaking large-scale brownfield microsegmentation or modernizing their Kubernetes security posture, Hypershield offers capabilities that directly address persistent challenges.

    Winners by Scenario:

    • Hyperscale Cloud-Native (Kubernetes): Hypershield (eBPF DaemonSet) excels due to its lightweight, per-workload enforcement without sidecar overhead, and AI-driven policy for dynamic environments. VMware NSX DFW is strong for vSphere-centric clouds.
    • High-Performance Data Center (200Gbps+): Hypershield with DPU offload on AMD Pensando Elba or NVIDIA BlueField-3 is the clear winner, offering line-rate encryption/decryption inspection and advanced filtering with minimal host impact.
    • PCI-DSS Compliance (Linux-centric): Hypershield's granular eBPF enforcement and AI-driven policy simplify compliance, especially for east-west traffic between co-located CDE and non-CDE workloads. Illumio and Akamai Gaurdicore also have strong offerings here.
    • Legacy Mix (Windows/Linux/Mainframe): Illumio Core and Akamai Guardicore Segmentation still hold an advantage due to broader agent support for legacy operating systems beyond Linux. Hypershield's current focus necessitates other solutions for non-Linux endpoints or a hybrid approach.

    Procurement decisions should factor in the existing OS landscape, future infrastructure roadmap (especially DPU adoption), and the organization's appetite for AI-driven automation in security. For those fully embracing Linux, Kubernetes, and DPU-enabled hardware, Hypershield represents a robust, forward-looking investment that is poised to set new standards in distributed security.

    Related reading

    Frequently asked questions

    What is the primary benefit of Hypershield's AI-native policy generation?+

    The primary benefit is significantly reduced operational overhead and accelerated microsegmentation deployment. Instead of manually mapping application dependencies and writing thousands of firewall rules, Hypershield's AI Defense engine analyzes telemetry to observe traffic patterns, automatically suggests optimal, granular segmentation policies, and identifies anomalies. This helps prevent misconfigurations and ensures more rapid policy convergence, especially in dynamic, fast-changing cloud-native environments.

    How does Hypershield's eBPF enforcement compare to traditional host-based firewalls like IPTables?+

    Hypershield's eBPF enforcement is superior to traditional IPTables in several ways. eBPF operates closer to the network interface in the kernel (TC/XDP hooks), providing programmable, high-performance packet processing with lower latency. It's also safer: eBPF programs are verified by a kernel verifier before loading, preventing common kernel module stability issues. Furthermore, Hypershield’s control plane dynamically generates and loads eBPF programs, providing far more granular, context-aware policy enforcement than static IPTables rules, with less impact on host CPU compared to user-space agent processing.

    Can Hypershield protect non-Linux operating systems or bare-metal servers?+

    Hypershield's agent-based enforcement primarily targets Linux hosts and Kubernetes environments, leveraging eBPF. While it can secure traffic to/from bare-metal Linux servers and virtual machines running Linux, it does not currently offer direct agent support for Windows Server or other operating systems like AIX or Solaris. For such environments, organizations would need to rely on traditional network segmentation (VLANs, ACLs, DPU-enabled switches) or complementary third-party host-based security solutions, integrating their telemetry into the Cisco Security Cloud for holistic visibility.

    What is a 'self-qualifying upgrade' and why is it important?+

    A self-qualifying upgrade is a Hypershield feature that minimizes the risk of security software updates. It allows a new version of the Hypershield agent or DPU firmware to run in 'shadow' mode alongside the production version. Both versions process live traffic, but only the production version enforces policies. The shadow version observes and reports what it *would* have done without affecting traffic. This enables real-world validation of new software against production loads, identifying potential bugs or policy regressions before they cause outages. It's crucial for maintaining continuous operations and reducing downtime caused by critical security changes.

    What kind of hardware is required for DPU acceleration with Hypershield?+

    DPU acceleration with Hypershield requires servers equipped with specific SmartNICs or DPU-enabled network switches. This includes AMD Pensando Elba DPUs, which are available in Cisco Nexus 9300X-48HXN Smart Switches for network-level enforcement, or as standalone DPU cards in servers. NVIDIA BlueField-3/4 DPUs are also supported for server-side offloading. These DPUs offload complex security functions and eBPF programs from the host CPU, enabling wire-speed packet processing, TLS decryption/re-encryption, and advanced filtering with extremely low latency and minimal impact on application performance.

    How does Hypershield integrate with Cisco Secure Workload (CSW) for existing customers?+

    For existing Cisco Secure Workload (CSW) customers, Hypershield is the designated primary enforcement platform for microsegmentation. CSW's telemetry and application dependency mapping capabilities can serve as an initial data source for Hypershield's AI Defense engine, accelerating policy discovery. Cisco's strategy involves converging CSW's functionalities into the broader Cisco Security Cloud, where Hypershield will handle enforcement and Cisco XDR will manage threat detection and response. This means CSW customers will likely transition to Hypershield for active segmentation as part of their security modernization roadmap, with CSW eventually focusing more on legacy visibility or being deprecated in favor of integrated Security Cloud offerings.