apps/docs/content/guides/platform/network-restrictions.mdx
This topic explains how to configure network restrictions for your Supabase project's database. Network restrictions let you control which IP ranges can connect to Postgres and its pooler, reducing your project's exposure to unauthorized access.
<Admonition type="note">If you can't find the Network Restrictions section in your Database Settings, update your Postgres version in Infrastructure Settings.
</Admonition>Each Supabase project supports configurable restrictions on the IP ranges allowed to connect to Postgres and its pooler. These restrictions are enforced before traffic reaches your database. Connections that aren't restricted by IP still need to authenticate with valid database credentials.
If direct connections to your database resolve to an IPv6 address, add both IPv4 and IPv6 CIDRs to your allowlist. Network restrictions apply to all connection routes, whether pooled or direct. There are two exceptions: if you have an extension on the IPv6 migration, or if you have the IPv4 add-on, you only need to add IPv4 CIDRs.
To configure network restrictions with the dashboard:
To configure network restrictions with the CLI:
To check your current network restrictions:
Complete the steps in Configure with the CLI.
Run the get subcommand to retrieve the restrictions currently in effect:
> supabase network-restrictions get --project-ref {ref} --experimental
DB Allowed IPv4 CIDRs: &[183.12.1.1/24]
DB Allowed IPv6 CIDRs: &[2001:db8:3333:4444:5555:6666:7777:8888/64]
Restrictions applied successfully: true
If restrictions have never been applied, the allowed CIDRs list is empty and Restrictions applied successfully is false. All IPs can connect:
> supabase network-restrictions get --project-ref {ref} --experimental
DB Allowed IPv4 CIDRs: []
DB Allowed IPv6 CIDRs: []
Restrictions applied successfully: false
To update your network restrictions:
Complete the steps in Configure with the CLI.
Run the update subcommand with the CIDRs you want to allow:
> supabase network-restrictions update --project-ref {ref} --db-allow-cidr 183.12.1.1/24 --db-allow-cidr 2001:db8:3333:4444:5555:6666:7777:8888/64 --experimental
DB Allowed IPv4 CIDRs: &[183.12.1.1/24]
DB Allowed IPv6 CIDRs: &[2001:db8:3333:4444:5555:6666:7777:8888/64]
Restrictions applied successfully: true
The CIDRs you provide replace any previously applied restrictions. To keep existing restrictions, include them alongside any new CIDRs in the update command.
To append a CIDR to your existing restrictions:
Complete the steps in Configure with the CLI.
Run the update subcommand with the --append flag to add a CIDR without replacing existing restrictions:
> supabase network-restrictions update --project-ref {ref} --db-allow-cidr 1.2.3.4/32 --append --experimental
DB Allowed IPv4 CIDRs: &[183.12.1.1/24 1.2.3.4/32]
DB Allowed IPv6 CIDRs: &[2001:db8:3333:4444:5555:6666:7777:8888/64]
Restrictions applied successfully: true
To remove all network restrictions:
Complete the steps in Configure with the CLI.
Run the update subcommand with the CIDR 0.0.0.0/0 to remove all restrictions:
> supabase network-restrictions update --project-ref {ref} --db-allow-cidr 0.0.0.0/0 --db-allow-cidr ::/0 --experimental
DB Allowed IPv4 CIDRs: &[0.0.0.0/0]
DB Allowed IPv6 CIDRs: &[::/0]
Restrictions applied successfully: true