IP address of my applicatoin, needed for whitelisting

Hi, I need to find the IP address of my application that i deployed on koyeb. I need this because it accesses a database and i want to get my application whitelisted for that databse. Can you tell me where i can find it?

1 Like

Hi @KingNevs ,

We do not provide static IPs yet but there is a feature request for it:

As a workaround, you can obtain IP ranges in the following way:

For Frankfurt:

dig all-fra1.infra.prod.koyeb.com

For Washington:

dig all-was1.infra.prod.koyeb.com

Please note that this is not ideal because IPs may be added or removed from the pool, therefore you will have to check it periodically.

Please let us know if you have any questions.

When i click it, it gives 404 error. Or am i not supposed to click it?

From a shell, enter the command dig all-fra1.infra.prod.koyeb.com 1 (for Frankfurt) or dig all-was1.infra.prod.koyeb.com (for Washington).

The command dig returns the list of IP addresses you need to whitelist.
On OSX, dig is installed by default. On Ubuntu, you will probably have to install it
apt-get install dnsutils.

Thanks @Sebastian for your help. I do have a question at which frequency should we check ? Can you please be a bit more precise than “periodically” ?

Thanks again

use can do ping

1 Like

Hello @Vianney_Mixtur,

We may replace servers at any time, so it’s difficult to define “periodically”. However, if you can automate it and run on every restart of your app, you should be good.

We’ve also created this tool with github actions automation that monitor our ips and maintain the list here You can register directly on github to be notified for outbound ip changes, you would need to register at least at the pull requests notifications.