Description
This guide shows how to delete IPs from Webuzo Panel
Parameters
Sample Code
curl --insecure -d "ips=192.168.1.15" -u "username:password" -X POST "https://hostname:2005/index.php?api=json&act=ips"
<?php
$user = 'root';
$pass = 'password';
$url = 'https://'.rawurlencode($user).':'.rawurlencode($pass).'@domain.com:2005/index.php?api=json&act=ips';
$post = array('do' => 'delete',
'ips' => '192.168.1.15', // You can pass multiple IPs comma separated
);
// Set the curl parameters
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
if(!empty($post)){
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
}
// Get response from the server.
$resp = curl_exec($ch);
// The response will hold a string as per the API response method.
$res = json_decode($resp, true);
// Done ?
if(!empty($res['done'])){
echo "<pre>";
print_r($res['done']);
echo "</pre>";
}else{
print_r($res['error']);
}
<?php
include_once('/usr/local/webuzo/sdk/webuzo_sdk_v2.php');
$user = 'root';
$pass = 'password';
$host = 'hostname';
$webuzo = new Webuzo_Admin_SDK($user, $pass, $host);
$ips = '192.168.1.15,198.168.1.16';
$res = $webuzo->delete_ips($ips);
// Done/Error
if(!empty($res['error'])){
print_r($res['error']);
}else{
print_r($res['done']['msg']);
}
?>
To delete IP(s) you can use Webuzo Inbuilt CLI-API utility.
webuzo --api act=ips do=delete ips="192.168.1.15"
Output
The selected IP(s) has been deleted