Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt

Use this file to discover all available pages before exploring further.

IP Management is the security administration page at /settings/security-ip-lists where administrators define IP allowlists and blocklists for the current organization, controlling which IP addresses and CIDR ranges are permitted or denied platform access.

Overview

The page is organized into two tabs: Allowlist and Blocklist. Each tab fetches its respective list (useIpAllowlistList, useIpBlocklistList) and supports adding and removing entries. Entries are validated against an IP/CIDR regex before submission. Each entry records an IP address (IPv4, IPv6, or CIDR), an active flag, and an optional reason string. The page is backed by pf_ip_allowlist and pf_ip_blocklist tables.

Who it’s for

Requires permission pf.ip_lists.manage.

Before you start

  • You must hold pf.ip_lists.manage.
  • Consult your security or IT team before modifying IP access rules, as incorrect configurations can lock out users.
  • Confirm with an SME what enforcement mechanism applies to these lists.

Steps

  1. Navigate to Settings → Security IP Lists (/settings/security-ip-lists).
  2. Select the Allowlist or Blocklist tab.
  3. To add an entry, click Add. Enter a valid IP address (IPv4, IPv6) or CIDR range and an optional reason.
  4. Submit the form to save the entry.
  5. To remove an entry, click the delete icon on its row and confirm the dialog.

Key concepts

Allowlist — a list of IP addresses/ranges that are explicitly permitted. Behavior relative to unlisted IPs should be confirmed with an SME. Blocklist — a list of IP addresses/ranges that are explicitly denied access. CIDR notation — e.g., 192.168.1.0/24. The platform validates entries against the pattern (\d{1,3}\.){3}\d{1,3}(\/\d{1,2})? or IPv6 equivalents.

Platform Foundation

Platform Foundation overview.

Governance & parity

This page documents shipped product behavior. It is not medical, legal, or billing advice. Verify against your organization’s policies and applicable regulations before using it for clinical, compliance, or billing decisions. Protected health information (PHI) shown in the product is governed by your tenant’s access controls and is never exposed in this documentation.
  • src/routes/platform.tsx
  • src/platform/security/pages/IpListsPage.tsx
  • src/platform/security/hooks/useIpListQueries.ts