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
公式URL 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
Eメール [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"
    }
}