Description
Use the IP Block API's to Block and Unblock IP's.
Block IP
Parameters
Sample Code
curl --insecure  -d "dip=IP rang"  -X POST "https://hostname:2003/index.php?api=json&act=ipblock&add_ip=1&apiuser=user_name&apikey=pass_api_key"<?php
 
$url = 'https://hostname:2003/index.php?api=json&act=ipblock&apiuser=user_name&apikey=pass_api_key'; 
$post = array('add_ip' => 1,
	      'dip' => 'IP_range',
);
// 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']['msg']);
    echo "</pre>";
}else{
	print_r($res['error']);
}<?php
include_once('/usr/local/webuzo/sdk/webuzo_sdk_v2.php');
$user = 'user_name';
$pass = 'password';
$host = 'hostname';
$webuzo = new Webuzo_SDK($user, $pass, $host);
$ip = 'IP_range';
$res = $webuzo->add_ipblock($ip);
// Done/Error
if(!empty($res['error'])){
	print_r($res['error']);
}else{
	print_r($res['done']['msg']);
}
?>Output
IP Address Successfully blocked
Unblock IP
Parameters
Sample Code
curl --insecure "https://hostname:2003/index.php?api=json&act=ipblock&delete=1&ip=ip_cidr_format&apiuser=user_name&apikey=pass_api_key"<?php
 
$url = 'https://hostname:2003/index.php?api=json&act=ipblock&apiuser=user_name&apikey=pass_api_key'; 
$post = array('delete' => 1,
	      'ip' => 'ip_cidr_format',
);
// 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']['msg']);
    echo "</pre>";
}else{
	print_r($res['error']);
}<?php
include_once('/usr/local/webuzo/sdk/webuzo_sdk_v2.php');
$user = 'user_name';
$pass = 'password';
$host = 'hostname';
$webuzo = new Webuzo_SDK($user, $pass, $host);
$ip = 'ip_cidr_format';
$res = $webuzo->delete_ipblock($ip);
// Done/Error
if(!empty($res['error'])){
	print_r($res['error']);
}else{
	print_r($res['done']['msg']);
}
?>Output
IP Unblocked Successfully
List Blocked IP
Parameters
Use this  API to list IP Block in Webuzo account.
Sample Code
curl --insecure -u "USERNAME:PASSWORD" -X POST "https://hostip:2003/index.php?api=json&act=ipblock"<?php
$user = 'your_user';
$pass = 'your_password';
$ip = 'your_ip';
 
$url = 'https://'.rawurlencode($user).':'.rawurlencode($pass).'@'.$ip.':2003/index.php?api=json&act=ipblock'; 
// 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. In this case its PHP JSON
$res = json_decode($resp, true);
// Done ?
if(!empty($res['add_list'])){
       echo "<pre>";
	print_r($res['add_list']);
        echo "</pre>";
}Output
Array
(
    [0] => 1.0.0.0/32
    [1] => 1.0.0.1/32
)