Enterprise security. Built for what’s next.
Remote Browser Isolation / Integration guide

Introduce isolation without rebuilding the browser estate

Connect identity, choose traffic steering, preserve application authentication, and roll out browser controls in stages.

Technical edition · Updated 7 September 2026 · 3 min read

Choose the entry point

Begin with the work that needs isolation. An unmanaged contractor opening an internal portal has a different path from an employee following an unfamiliar link. Choose a browser launch portal for scoped external access, selective steering for risk-based browsing, or a managed client policy when the endpoint already participates in Antara connectivity.

PatternExisting environmentFirst deployment
Browser launchContractors and partner web appsPublish one approved application with a bounded session
Selective isolationManaged workforce with web policySteer a limited destination group into RBI
Sensitive workflowFinance, support or privileged SaaSApply strict file and clipboard rules to named applications

Keep the first cohort small enough that the service desk can observe individual failures. Avoid changing DNS, identity, certificate trust, and application access in the same rollout step. A short migration sequence is easier to diagnose than a broad cutover whose effects cannot be attributed.

Connect your identity provider

Use your existing federation provider as the authority for the user. Define the issuer, audience, callback locations, group claims, and session lifetime with the identity team. Bind the isolated session to a stable subject identifier rather than an editable display name. Decide whether a new sensitive action should require step-up authentication or reuse a recently satisfied assurance level.

Map application entitlements separately from the ability to launch the isolation service. Signing in to a portal should not expose every internal application. For external users, choose a sponsor, an expiry date, and a process for removing access when the engagement ends. Record the effect of identity-provider logout on active remote sessions.

Deployment worksheet: session policy
yaml
application: finance-portal
entry: browser-launch
identity:
  required_group: finance-contractors
  assurance: phishing-resistant-mfa
session:
  region: approved-residency-region
  idle_timeout_minutes: 15
data_controls:
  upload: inspect-before-release
  download: deny
  clipboard_out: deny
audit:
  investigator: agentic-packet-auditor
  content_retention: metadata-first

This worksheet expresses policy intent for implementation planning. Translate the fields into the tenant configuration agreed for your deployment; it is not an Antara API request.

Map the two network legs

Two trust decisions, two network legs
  1. 01Endpoint → RBI

    Authenticated presentation session to the approved region.

  2. 02RBI → application

    Remote execution reaches the public site or private connector.

  3. 03Policy → evidence

    Session decisions and transfer events reach the audit plane.

Document endpoint-to-service connectivity separately from service-to-application connectivity. For private applications, place the connector where it can resolve internal names and reach only the intended backends. Use redundant connectors in separate failure domains when availability requires it. An outbound connector reduces inbound exposure, but does not remove the need to restrict its egress destinations.

Check redirects, absolute URLs, identity-provider callbacks, WebSocket connections, cookie behavior, and application allowlists. A SaaS provider may interpret the isolation region as the source location. Align conditional-access location rules with the approved egress path rather than asking users to bypass those checks.

Roll out with evidence

  • Inventory five representative tasks per application, including sign-in, editing, upload, download and logout.
  • Run an IT cohort with observation enabled; record latency and failed interactions by browser and region.
  • Turn on data controls for a named group and confirm both allowed and denied cases.
  • Exercise service interruption, session expiry and connector loss; publish the user-facing recovery path.
  • Expand by application and identity group, retaining a documented rollback to the prior policy revision.

The completion criterion is not simply that a page loads. Confirm that a real user can finish the task under the intended restrictions, and that the operations team can explain any denial without reconstructing the session by hand.