Network Restrictions
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.
If you can't find the Network Restrictions section in your Database Settings, update your Postgres version in Infrastructure Settings.
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.
Configure with the dashboard #
To configure network restrictions with the dashboard:
- Open your project's Database Settings page.
- In the Network Restrictions section, make your changes. You need Owner or Admin permissions to make changes.
Configure with the CLI #
To configure network restrictions with the CLI:
- Install the Supabase CLI 1.22.0+.
- Log in to your Supabase account.
- If your project was created before December 23, 2022, upgrade it to the latest Supabase version before using network restrictions.
- Ensure you have Owner or Admin permissions for the project.
Check restrictions#
To check your current network restrictions:
-
Complete the steps in Configure with the CLI.
-
Run the
getsubcommand to retrieve the restrictions currently in effect:1> supabase network-restrictions get --project-ref {ref} --experimental2DB Allowed IPv4 CIDRs: &[183.12.1.1/24]3DB Allowed IPv6 CIDRs: &[2001:db8:3333:4444:5555:6666:7777:8888/64]4Restrictions applied successfully: trueIf restrictions have never been applied, the allowed CIDRs list is empty and
Restrictions applied successfullyisfalse. All IPs can connect:1> supabase network-restrictions get --project-ref {ref} --experimental2DB Allowed IPv4 CIDRs: []3DB Allowed IPv6 CIDRs: []4Restrictions applied successfully: false
Update restrictions#
To update your network restrictions:
-
Complete the steps in Configure with the CLI.
-
Run the
updatesubcommand with the CIDRs you want to allow:1> 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 --experimental2DB Allowed IPv4 CIDRs: &[183.12.1.1/24]3DB Allowed IPv6 CIDRs: &[2001:db8:3333:4444:5555:6666:7777:8888/64]4Restrictions applied successfully: trueThe CIDRs you provide replace any previously applied restrictions. To keep existing restrictions, include them alongside any new CIDRs in the
updatecommand.
Append a CIDR to existing restrictions#
To append a CIDR to your existing restrictions:
-
Complete the steps in Configure with the CLI.
-
Run the
updatesubcommand with the--appendflag to add a CIDR without replacing existing restrictions:1> supabase network-restrictions update --project-ref {ref} --db-allow-cidr 1.2.3.4/32 --append --experimental2DB Allowed IPv4 CIDRs: &[183.12.1.1/24 1.2.3.4/32]3DB Allowed IPv6 CIDRs: &[2001:db8:3333:4444:5555:6666:7777:8888/64]4Restrictions applied successfully: true
Remove restrictions#
To remove all network restrictions:
-
Complete the steps in Configure with the CLI.
-
Run the
updatesubcommand with the CIDR0.0.0.0/0to remove all restrictions:1> supabase network-restrictions update --project-ref {ref} --db-allow-cidr 0.0.0.0/0 --db-allow-cidr ::/0 --experimental2DB Allowed IPv4 CIDRs: &[0.0.0.0/0]3DB Allowed IPv6 CIDRs: &[::/0]4Restrictions applied successfully: true
Limitations#
- Network restrictions apply to Postgres and the database pooler. They don't apply to HTTPS APIs such as PostgREST, Storage, and Auth, or to Supabase client libraries like supabase-js.
- With network restrictions applied, Edge functions lose direct access to the database. Use supabase-js to connect to the database from Edge Functions instead.