Register active
How to list all active registrations from single IP using the API
Usage
Following register_active.php script will print detail about all registrations done from single IP:
example for use:
active_register.php "192.168.43.212"
Script
<?php if (!array_key_exists ("1",$argv)) exit; #ensure argument passed $searchVal=ip2long($argv[1]); exec("echo 'listregisters' | nc 127.0.0.1 5029",$retstr,$rt); $data=json_decode($retstr[0]); if (!array_key_exists ("1",$data)) exit; #ensure some active register(s) in list $regkeys=$data[0]; $sipcallerip_key=(array_search("sipcallerip",$regkeys)); $reglist=$data; array_shift($reglist); array_shift($reglist); #skip two items at begin foreach ($reglist as $n=>$item) { var_dump($item[$sipcallerip_key]); if ($item[$sipcallerip_key] == $searchVal) var_dump($item); } ?>