The IP address you use to access your website is not (necessarily) the IP address the server is using to access other systems.
If you want to know the real value, you can create a PHP file (e.g. test.php
) with the following content:
<?php
echo file_get_contents('http://ifconfig.me');
And then open example.com/test.php in your browser to see the IP address.