IP Management is the security administration page atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/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 permissionpf.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
- Navigate to Settings → Security IP Lists (
/settings/security-ip-lists). - Select the Allowlist or Blocklist tab.
- To add an entry, click Add. Enter a valid IP address (IPv4, IPv6) or CIDR range and an optional reason.
- Submit the form to save the entry.
- 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.
Related
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.
Documentation sources
Documentation sources
- src/routes/platform.tsx
- src/platform/security/pages/IpListsPage.tsx
- src/platform/security/hooks/useIpListQueries.ts