Network Restrictions
Network Restrictions is currently in beta and is slowly being made available to all projects. Contact support if you'd like to request early access.
Each Supabase project comes with configurable restrictions on the IP ranges that are allowed to connect to Postgres and its pooler ("your database"). These restrictions are enforced before traffic reaches your database. If a connection is not restricted by IP, it still needs to authenticate successfully with valid database credentials.
If direct connections to your database resolve to a IPv6 address, you need to add both IPv4 and IPv6 CIDRs to the list of allowed CIDRs. Network Restrictions will be applied to all database connection routes, whether pooled or direct. You will need to add both the IPv4 and IPv6 networks you want to allow. There are two exceptions: If you have been granted an extension on the IPv6 migration OR if you have purchased the IPv4 add-on, you need only add IPv4 CIDRs.
If your project has not been migrated to IPv6 or if you have purchased the IPv4 address add-on, just adding IPv4 CIDRs is sufficient.
To get started:
- Install the Supabase CLI 1.22.0+.
- Log in to your Supabase account using the CLI.
- If your project was created before 23rd December 2022, it will need to be upgraded to the latest Supabase version before Network Restrictions can be used.
- Ensure that you have Owner or Admin permissions for the project that you are enabling network restrictions.
Check restrictions#
You can use the get
subcommand of the CLI to retrieve the restrictions currently in effect.
If restrictions have been applied, the output of the get
command will reflect the IP ranges allowed to connect:
_10> supabase network-restrictions --project-ref {ref} get --experimental_10DB Allowed CIDRs: [128.12.1.1/16 183.12.1.1/24]_10Restrictions applied successfully: true
If restrictions have never been applied to your project, the list of allowed CIDRs will be empty, but they will also not have been applied ("Restrictions applied successfully: false"). As a result, all IPs are allowed to connect to your database:
_10> supabase network-restrictions --project-ref {ref} get --experimental_10DB Allowed CIDRs: []_10Restrictions applied successfully: false
Update restrictions#
The update
subcommand is used to apply network restrictions to your project:
_10> supabase network-restrictions --project-ref {ref} update --db-allow-cidr 128.12.1.1/16 --db-allow-cidr 183.12.1.1/24 --experimental_10DB Allowed CIDRs: [128.12.1.1/16 183.12.1.1/24]_10Restrictions applied successfully: true
The restrictions specified (in the form of CIDRs) replaces any restrictions that might have been applied in the past.
To add to the existing restrictions, you must include the existing restrictions within the list of CIDRs provided to the update
command.
Remove restrictions#
To remove all restrictions on your project, you can use the update
subcommand with the CIDR 0.0.0.0/0
:
_10> supabase network-restrictions --project-ref {ref} update --db-allow-cidr 0.0.0.0/0 --experimental_10DB Allowed CIDRs: [0.0.0.0/0]_10Restrictions applied successfully: true
Limitations#
- The current iteration of Network Restrictions applies to connections to Postgres and the database pooler; it doesn't currently apply to APIs offered over HTTPS (e.g., PostgREST, Storage, and Auth). This includes using Supabase client libraries like supabase-js.
- Network Restrictions should not be used if you need to connect to your Postgres database using Edge Functions.
- Supavisor does not currently support Network Restrictions. Network restrictions support will be enabled from 24th January 2024. Any changes to the network restrictions configuration will apply to both Supavisor and direct connections to Postgres after this date.