diff --git a/web/plugins/views/inv_wlc_clients.py b/web/plugins/views/inv_wlc_clients.py deleted file mode 100644 index 6ee02218b1d67b7553e7f645659c4728da308eba..0000000000000000000000000000000000000000 --- a/web/plugins/views/inv_wlc_clients.py +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/python -# -*- encoding: utf-8; py-indent-offset: 4 -*- - -try: - from cmk.gui.plugins.views.inventory import ( - declare_invtable_view, - render_inv_dicttable, - ) -except: - pass - -inventory_displayhints.update({ - '.networking.wlan.controller.clients:': {'title' : _('WLC clients'), - 'render' : render_inv_dicttable, - 'keyorder': ['username', 'uptime', 'ipaddress', 'apmacaddress', 'ssid', - 'channel', 'accessvlan', 'devicetype', 'protocol', 'status', - ], - 'view' : 'invwlcclients_of_host'}, - - - '.networking.wlan.controller.clients:*.macaddress' : { 'title' : _('MAC Addresse'), }, - '.networking.wlan.controller.clients:*.status' : { 'title' : _('Status'), }, - '.networking.wlan.controller.clients:*.wlanprofilename' : { 'title' : _('WLAN profile name'), }, - '.networking.wlan.controller.clients:*.wgbstatus' : { 'title' : _('WGB status'), }, - '.networking.wlan.controller.clients:*.wgbmacaddress' : { 'title' : _('WGB MAC address'), }, - '.networking.wlan.controller.clients:*.protocol' : { 'title' : _('Protocol'), }, - '.networking.wlan.controller.clients:*.associationmode' : { 'title' : _('Association mode'), }, - '.networking.wlan.controller.clients:*.apmacaddress' : { 'title' : _('AP MAC address'), }, - '.networking.wlan.controller.clients:*.iftype' : { 'title' : _('Interface type'), }, - '.networking.wlan.controller.clients:*.ipaddress' : { 'title' : _('IP address'), }, - '.networking.wlan.controller.clients:*.nacstate' : { 'title' : _('NAC state'), }, - '.networking.wlan.controller.clients:*.quarantinevlan' : { 'title' : _('Quarantine VLAN'), }, - '.networking.wlan.controller.clients:*.accessvlan' : { 'title' : _('Access VLAN'), }, - '.networking.wlan.controller.clients:*.logintime' : { 'title' : _('Login time'), }, - '.networking.wlan.controller.clients:*.uptime' : { 'title' : _('Uptime'), }, - '.networking.wlan.controller.clients:*.powersavemode' : { 'title' : _('Power save mode'), }, - '.networking.wlan.controller.clients:*.currenttxrateset' : { 'title' : _('Current TX rate (MBit/s)'), }, - '.networking.wlan.controller.clients:*.datarateset' : { 'title' : _('Data rate set'), }, - '.networking.wlan.controller.clients:*.hreapapauth' : { 'title' : _('HREAP AP auth'), }, - '.networking.wlan.controller.clients:*.ieee80211ucapable' : { 'title' : _('802.11u capable'), }, - '.networking.wlan.controller.clients:*.posturestate' : { 'title' : _('Posture state'), }, - '.networking.wlan.controller.clients:*.aclname' : { 'title' : _('ACL name'), }, - '.networking.wlan.controller.clients:*.aclapplied' : { 'title' : _('ACL applied'), }, - '.networking.wlan.controller.clients:*.redirecturl' : { 'title' : _('Redirect URL'), }, - '.networking.wlan.controller.clients:*.aaaoverrideaclname' : { 'title' : _('AAA overide ACL name'), }, - '.networking.wlan.controller.clients:*.aaaoverrideaclapplied' : { 'title' : _('AAA overide ACL applied'), }, - '.networking.wlan.controller.clients:*.username' : { 'title' : _('Username'), }, - '.networking.wlan.controller.clients:*.ssid' : { 'title' : _('SSID'), }, - '.networking.wlan.controller.clients:*.securitytagid' : { 'title' : _('Security tag ID'), }, - '.networking.wlan.controller.clients:*.typekts' : { 'title' : _('NEC KTS SIP client'), }, - '.networking.wlan.controller.clients:*.ipv6aclname' : { 'title' : _('IPv6 ACL name'), }, - '.networking.wlan.controller.clients:*.ipv6aclapplied' : { 'title' : _('IPv6 ACL applied'), }, - '.networking.wlan.controller.clients:*.dataswitching' : { 'title' : _('Data switching'), }, - '.networking.wlan.controller.clients:*.authentication' : { 'title' : _('Authentication'), }, - '.networking.wlan.controller.clients:*.channel' : { 'title' : _('Channel'), }, - '.networking.wlan.controller.clients:*.authmode' : { 'title' : _('Auth mode'), }, - '.networking.wlan.controller.clients:*.reasoncode' : { 'title' : _('Reason code'), }, - '.networking.wlan.controller.clients:*.sessionid' : { 'title' : _('Session ID'), }, - '.networking.wlan.controller.clients:*.aproammacaddress' : { 'title' : _('AP roam MAC address'), }, - '.networking.wlan.controller.clients:*.mdnsprofile' : { 'title' : _('mDNS profile'), }, - '.networking.wlan.controller.clients:*.mdnsadvcount' : { 'title' : _('mDNS adv count'), }, - '.networking.wlan.controller.clients:*.policyname' : { 'title' : _('Policy name'), }, - '.networking.wlan.controller.clients:*.aaarole' : { 'title' : _('AAA role'), }, - '.networking.wlan.controller.clients:*.devicetype' : { 'title' : _('Device type'), }, - '.networking.wlan.controller.clients:*.userauthtype' : { 'title' : _('User auth type'), }, - -# '.networking.wlan.controller.clients:*.certificate_type' : { 'title' : _('Certificate type'), 'short' : _('Cert type'), 'filter' : visuals.FilterInvtableWLCCertType, 'paint' : 'wlc_cert_type' }, - -}) - -declare_invtable_view('invwlcclients', '.networking.wlan.controller.clients:', _('WLC clients'), _('WLC clients')) -