connect('192.168.100.23', 'admin', 'putr4bungsu08')) { # Get all current hosts $API->write('/ip/dns/static/print'); $ips = $API->read(); # delete them all ! foreach($ips as $num => $ip_data) { $API->write('/ip/dns/static/remove', false); $API->write("=.id=" . $ip_data[".id"], true); } #add some new $API->comm("/ip/dns/static/add", array( "name" => "jefkeklak", "address" => "1.2.3.4", "ttl" => "1m" )); #show me what you got $API->write('/ip/dns/static/print'); $ips = $API->read(); var_dump($ips); $API->disconnect(); }