I have a server with two different IPs. I need to send odd curl requests from first IP, and even from the second one. How can i select outgoing ip address?
my php script is something like this:
$curlh = curl_init($url);
curl_setopt($curlh, CURLOPT_USERAGENT, $uagent);
curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($curlh);
How can i do so?
P.S. sorry if my English isn't good.