ISE Assistant

An assistant extension for Cisco ISE to streamline common operational tasks.

什麼是ISE Assistant?

ISE Assistant是由Iron Bow Technologies開發的Chrome擴展程式,該擴展的主要功能是“An assistant extension for Cisco ISE to streamline common operational tasks.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載ISE Assistant擴展crx文件

下載ISE Assistant擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension aims to improve on some of the slow operational tasks that commonly need to be performed in Cisco Identity Services Engine (ISE) deployment. 

The primary features include: moving endpoints to new identity groups, issuing changes of authorization (CoA) requests for active endpoints, and viewing session information in a local tab. These features are completed using the ISE REST ERS API and the Monitoring API. 

Commonly, when managing a Cisco ISE deployment, I found myself staring at lines of events in the RADIUS Live Logs. I'd see an endpoint authentication come along that simply needed to be added to a particular endpoint identity group in order to successfully authenticate. Unfortunately, actually doing that simple task was quite burdensome in the ISE web interface. You would need to copy the MAC address, go to the Endpoint database (or Context Visibility), filter by the MAC address, open the endpoint, click edit, check "Static Group Assignment" and select the group you wanted to put it in. Generally speaking, this took a couple of minutes per endpoint. You could get faster by keeping a couple tabs open, and getting a good rhythm, but it just isn't efficient.

For the love of god, I just wanted to be able to right click on a MAC address and say "add to identity group XYZ"! Well, this extension does just that. You highlight a MAC address, right click to present a list of Endpoint Identity Groups, and select the one you want. It fires off some API calls and it's done! You get a nice little notification stating as much after it's done! 

You can even highlight any number of addresses at once and it will handle them in bulk using the same number of clicks! Any selected text that is highlighted that is not a MAC address (in any of the common formats) will be ignored.

The ability to perform change of authorization (CoA) requests is now supported (as of v0.5.0). You can perform CoA with session rerun, port bounce, and port shutdown. You can do this for single or bulk MAC addresses. You can now view session information for active endpoints (as of v0.8).

 Please enjoy and let me know if this extension is a huge help for you or your team, or if I can add anything to it to help you out!                    

擴展基本資訊

名稱 ISE Assistant ISE Assistant
ID bgcgpgjpecloagakaainoamfaedknpol
官方網址 https://chrome.google.com/webstore/detail/ise-assistant/bgcgpgjpecloagakaainoamfaedknpol
簡介 An assistant extension for Cisco ISE to streamline common operational tasks.
檔案大小 161 KB
安裝次數 152
目前版本 0.8
更新時間 2019-03-13
上架時間 2019-03-13
評分 5.00/5 共 3 次評分
開發者 Iron Bow Technologies
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/rnwolfe/cisco-ise-extension
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ISE Assistant",
    "version": "0.8",
    "options_ui": {
        "page": "options.html"
    },
    "description": "An assistant extension for Cisco ISE to streamline common operational tasks.",
    "author": "Ryan Wolfe, Iron Bow Technologies ([email protected])",
    "permissions": [
        "contextMenus",
        "storage",
        "notifications",
        "tabs",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "functions.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "options.html",
        "default_title": "ISE Assistant",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}