Skip to content

lifo101/php-cisco-ise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cisco Identity Engine REST Client

Interface with the Cisco Identity Engine REST API.

Example

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');

About

Cisco Identity Services Engine REST API Client

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages