ISE Assistant

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

ISE Assistant là gì?

ISE Assistant là một tiện ích mở rộng Chrome được phát triển bởi Iron Bow Technologies, và tính năng chính của nó là "An assistant extension for Cisco ISE to streamline common operational tasks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ISE Assistant

Tải xuống các tệp mở rộng ISE Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ISE Assistant ISE Assistant
ID bgcgpgjpecloagakaainoamfaedknpol
URL Chính Thức https://chrome.google.com/webstore/detail/ise-assistant/bgcgpgjpecloagakaainoamfaedknpol
Mô tả An assistant extension for Cisco ISE to streamline common operational tasks.
Kích Thước Tệp 161 KB
Số Lần Cài Đặt 152
Phiên Bản Hiện Tại 0.8
Cập Nhật Lần Cuối 2019-03-13
Ngày Phát Hành 2019-03-13
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Iron Bow Technologies
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rnwolfe/cisco-ise-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}