Librouteros capsman fix (#10217)
* Catch MultiTrapError exceptions also * Expect librouteros api exceptions on every call and also set fallbacks * Do not re raise * Fix lint issue
This commit is contained in:
parent
b5214af762
commit
05ece53ec2
1 changed files with 30 additions and 7 deletions
|
@ -76,25 +76,47 @@ class MikrotikScanner(DeviceScanner):
|
||||||
port=int(self.port)
|
port=int(self.port)
|
||||||
)
|
)
|
||||||
|
|
||||||
routerboard_info = self.client(cmd='/system/routerboard/getall')
|
try:
|
||||||
|
routerboard_info = self.client(
|
||||||
|
cmd='/system/routerboard/getall')
|
||||||
|
except (librouteros.exceptions.TrapError,
|
||||||
|
librouteros.exceptions.MultiTrapError,
|
||||||
|
librouteros.exceptions.ConnectionError):
|
||||||
|
routerboard_info = None
|
||||||
|
raise
|
||||||
|
|
||||||
if routerboard_info:
|
if routerboard_info:
|
||||||
_LOGGER.info("Connected to Mikrotik %s with IP %s",
|
_LOGGER.info("Connected to Mikrotik %s with IP %s",
|
||||||
routerboard_info[0].get('model', 'Router'),
|
routerboard_info[0].get('model', 'Router'),
|
||||||
self.host)
|
self.host)
|
||||||
|
|
||||||
self.connected = True
|
self.connected = True
|
||||||
|
|
||||||
|
try:
|
||||||
self.capsman_exist = self.client(
|
self.capsman_exist = self.client(
|
||||||
cmd='/capsman/interface/getall'
|
cmd='/caps-man/interface/getall'
|
||||||
)
|
)
|
||||||
|
except (librouteros.exceptions.TrapError,
|
||||||
|
librouteros.exceptions.MultiTrapError,
|
||||||
|
librouteros.exceptions.ConnectionError):
|
||||||
|
self.capsman_exist = False
|
||||||
|
|
||||||
if not self.capsman_exist:
|
if not self.capsman_exist:
|
||||||
_LOGGER.info(
|
_LOGGER.info(
|
||||||
'Mikrotik %s: Not a CAPSman controller. Trying '
|
'Mikrotik %s: Not a CAPSman controller. Trying '
|
||||||
'local interfaces ',
|
'local interfaces ',
|
||||||
self.host
|
self.host
|
||||||
)
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
self.wireless_exist = self.client(
|
self.wireless_exist = self.client(
|
||||||
cmd='/interface/wireless/getall'
|
cmd='/interface/wireless/getall'
|
||||||
)
|
)
|
||||||
|
except (librouteros.exceptions.TrapError,
|
||||||
|
librouteros.exceptions.MultiTrapError,
|
||||||
|
librouteros.exceptions.ConnectionError):
|
||||||
|
self.wireless_exist = False
|
||||||
|
|
||||||
if not self.wireless_exist:
|
if not self.wireless_exist:
|
||||||
_LOGGER.info(
|
_LOGGER.info(
|
||||||
'Mikrotik %s: Wireless adapters not found. Try to '
|
'Mikrotik %s: Wireless adapters not found. Try to '
|
||||||
|
@ -104,6 +126,7 @@ class MikrotikScanner(DeviceScanner):
|
||||||
)
|
)
|
||||||
|
|
||||||
except (librouteros.exceptions.TrapError,
|
except (librouteros.exceptions.TrapError,
|
||||||
|
librouteros.exceptions.MultiTrapError,
|
||||||
librouteros.exceptions.ConnectionError) as api_error:
|
librouteros.exceptions.ConnectionError) as api_error:
|
||||||
_LOGGER.error("Connection error: %s", api_error)
|
_LOGGER.error("Connection error: %s", api_error)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue