Configure your first IP allowlist to protect your applications from unauthorized access.
The fastest way to get started is to add your current IP address
In your dashboard, click on "IP Allowlist" or "Access Control" in the sidebar navigation.
🔗 Direct Link: https://dash.sivvy.io/cleanips/
Your current IP address will be displayed at the top of the page. Click the "Add Current IP" button to instantly add it to your allowlist.
Pro Tip: This is the fastest way to ensure you don't lock yourself out of your own applications!
Add specific IP addresses or ranges manually
Click the "Add IP" button and enter the IP address you want to allowlist.
192.168.1.100
- Individual IP address192.168.1.100/32
- Single IP in CIDR notation203.0.113.0/24
- IP range (256 addresses)10.0.0.0/8
- Large network rangeImportant: Always test your IP allowlist before deploying to production to avoid locking yourself out.
Allowlist entire IP ranges for offices, VPNs, and cloud infrastructure
192.168.1.0/24
Allows 192.168.1.1 - 192.168.1.254 (254 addresses)
10.0.0.0/16
Allows 10.0.0.1 - 10.0.255.254 (65,534 addresses)
203.0.113.0/24
Specific cloud subnet range
203.0.113.42/32
Only 203.0.113.42 (1 address)
Need Help? Use our CIDR Management Guide for detailed subnet calculations.
Keep your IP allowlist organized with descriptive labels
When adding IP addresses, always include a descriptive label to identify the purpose or source.
Best Practice: Include the date and purpose in your labels for easier management over time.
Verify your IP allowlist is working correctly
Use our API to test if your current IP is allowed:
curl -X GET "https://api.sivvy.io/v1/check-ip" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
{
"allowed": true,
"ip": "203.0.113.42",
"message": "IP address is allowed"
}
Your IP allowlist is now active. Here's what to do next:
Add IP checking to your WordPress, Laravel, or custom application.
WordPress Guide