lifo / php-cisco-ise
Cisco Identity Services Engine REST API Client
v1.2
2024-02-07 21:04 UTC
Requires
- php: >=7.1
- ext-simplexml: *
- symfony/property-access: ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0
This package is auto-updated.
Last update: 2025-03-07 23:21:17 UTC
README
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');