[Firewall][Documentation][Outdated] Broken IP Address Fetch / Missing Static Ranges on Firewall Docs Page #3467
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduceTitle: Documentation Outdated: Broken IP Address Fetch on Firewall Docs PageDescriptionThe partial page for configuring firewall settings at https://docs.codemagic.io/partials/firewall/ is failing to display the static IP addresses required for whitelisting incoming build traffic. Steps to Reproduce
Expected resultsThe page should list the active, usable static IP blocks required to grant Codemagic build machines access through corporate firewalls (e.g., to access self-hosted Git repositories, internal servers, or dependency mirrors). Actual resultsThe Codemagic firewall documentation contains incomplete whitelist IP address ranges, causing SSH connection timeouts when CodeMagic VM instances attempt to fetch private source code repositories. This issue prevents secure connections to self-hosted Git repositories due to missing outbound IP blocks in corporate firewalls. You can review the current documentation at Codemagic Docs.
Build id (optional)No response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hello @khanhnt748 For example, Please double-check that the full ranges below were whitelisted correctly, including their CIDR suffixes: Please also make sure you allow ports that your service uses - usually the default SSH or HTTPS ports. Another useful check would be to add the following command to the
This will return the public IP address of the current machine, which you can then confirm if is whitelisted
|
Beta Was this translation helpful? Give feedback.

Hello @khanhnt748
The documentation itself is up to date, and the listed IP ranges are correct and active. Perhaps you added the IPs without including the CIDR suffix?
For example,
66.185.17.80/29does not represent a single IP address. The/29means the range covers multiple IP addresses, from66.185.17.80to66.185.17.87.Please double-check that the full ranges below were whitelisted correctly, including their CIDR suffixes:
Please also make sure you allow ports that your service uses - usually the default SSH or HTTPS ports.
Another useful check would be to add the follo…