PHP code example of lifo / php-cisco-ise

1. Go to this page and download the library: Download lifo/php-cisco-ise library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lifo / php-cisco-ise example snippets


use Lifo\CiscoISE\CiscoISEClient;

$ise = new CiscoISEClient('hostname', 'user', 'pass');
// or multiple hosts for failover (will detect the primary node)
// $ise = new CiscoISEClient(['hostname1', 'hostname2'], 'user', 'pass');

$ep = $ise->findEndPoint('0000.0000.0002');

$policy = $ise->getAncPolicy('Blacklist');

$ep = $this->ise->createEndPoint([
    'mac'         => '0000.0000.0002',
    'description' => 'Jason Test ' . time(),
], true);

$ep->setDescription('Hello World ' . time());
$ise->updateEndPoint($ep);

$dev = $ise->findNetworkDevice('search string');