Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 325.64 KB | None | 0 0
  1. UNHANDLED EXCEPTION (2014-09-02 17:23:04.200070)
  2. Working directory: /opt/noc
  3. <type 'exceptions.AttributeError'>
  4. 'NoneType' object has no attribute 'get'
  5. START OF TRACEBACK
  6. ------------------------------------------------------------------------
  7. File: /opt/noc/lib/python2.7/site-packages/pymongo/bulk.py (Line: 85)
  8. Function: _merge_legacy
  9. 78 u"op": operation
  10. 79 }
  11. 80
  12. 81
  13. 82 def _merge_legacy(run, full_result, result, index):
  14. 83 """Merge a result from a legacy opcode into the full results.
  15. 84 """
  16. 85 ==> affected = result.get('n', 0)
  17. 86
  18. 87 errmsg = result.get("errmsg", result.get("err", ""))
  19. 88 if errmsg:
  20. 89 # wtimeout is not considered a hard failure in
  21. 90 # MongoDB 2.6 so don't treat it like one here.
  22. 91 if result.get("wtimeout"):
  23. Variables:
  24. index = 0
  25. run = <pymongo.bulk._Run object at 0x80fd0b150>
  26. result = None
  27. full_result =
  28. {'nInserted': 0,
  29. 'nMatched': 0,
  30. 'nRemoved': 0,
  31. 'nUpserted': 0,
  32. 'upserted': [],
  33. 'writeConcernErrors': [],
  34. 'writeErrors': []}
  35. ------------------------------------------------------------------------
  36. File: /opt/noc/lib/python2.7/site-packages/pymongo/bulk.py (Line: 382)
  37. Function: execute_legacy
  38. 375 upsert=operation['upsert'],
  39. 376 multi=operation['multi'],
  40. 377 **write_concern)
  41. 378 else:
  42. 379 result = coll.remove(operation['q'],
  43. 380 multi=(not operation['limit']),
  44. 381 **write_concern)
  45. 382 ==> _merge_legacy(run, full_result, result, idx)
  46. 383 except DocumentTooLarge, exc:
  47. 384 # MongoDB 2.6 uses error code 2 for "too large".
  48. 385 error = _make_error(
  49. 386 run.index(idx), _BAD_VALUE, str(exc), operation)
  50. 387 full_result['writeErrors'].append(error)
  51. 388 if self.ordered:
  52. Variables:
  53. run = <pymongo.bulk._Run object at 0x80fd0b150>
  54. generator = <generator object gen_ordered at 0x80fd0d5f0>
  55. idx = 0
  56. self = <pymongo.bulk._Bulk object at 0x80fd23d10>
  57. stop = False
  58. coll =
  59. Collection(Database(Connection('localhost', 27017), u'noc'), u'noc.pm.probeconfig')
  60. result = None
  61. full_result =
  62. {'nInserted': 0,
  63. 'nMatched': 0,
  64. 'nRemoved': 0,
  65. 'nUpserted': 0,
  66. 'upserted': [],
  67. 'writeConcernErrors': [],
  68. 'writeErrors': []}
  69. operation =
  70. SON([('q', {'model_id': u'inv.Interface', 'object_id': '533d4239f3b68214c5348175'}), ('u', {'$set': {'changed': datetime.datetime(2030, 1, 1, 0, 0), 'expire': datetime.datetime(2030, 1, 1, 0, 0)}}), ('multi', True), ('upsert', False)])
  71. write_concern = {}
  72. ------------------------------------------------------------------------
  73. File: /opt/noc/lib/python2.7/site-packages/pymongo/bulk.py (Line: 435)
  74. Function: execute
  75. 428 generator = self.gen_unordered()
  76. 429
  77. 430 if write_concern.get('w') == 0:
  78. 431 self.execute_no_results(generator)
  79. 432 elif client.max_wire_version > 1:
  80. 433 return self.execute_command(generator, write_concern)
  81. 434 else:
  82. 435 ==> return self.execute_legacy(generator, write_concern)
  83. 436
  84. 437
  85. 438 class BulkUpsertOperation(object):
  86. 439 """An interface for adding upsert operations.
  87. 440 """
  88. 441
  89. Variables:
  90. self = <pymongo.bulk._Bulk object at 0x80fd23d10>
  91. client = Connection('localhost', 27017)
  92. write_concern = {}
  93. generator = <generator object gen_ordered at 0x80fd0d5f0>
  94. ------------------------------------------------------------------------
  95. File: /opt/noc/lib/python2.7/site-packages/pymongo/bulk.py (Line: 587)
  96. Function: execute
  97. 580
  98. 581 :Parameters:
  99. 582 - write_concern (optional): the write concern for this bulk
  100. 583 execution.
  101. 584 """
  102. 585 if write_concern and not isinstance(write_concern, dict):
  103. 586 raise TypeError('write_concern must be an instance of dict')
  104. 587 ==> return self.__bulk.execute(write_concern)
  105.  
  106. Variables:
  107. self = <pymongo.bulk.BulkOperationBuilder object at 0x80fd1ff68>
  108. write_concern = None
  109. ------------------------------------------------------------------------
  110. File: /opt/noc/pm/models/probeconfig.py (Line: 201)
  111. Function: _refresh_object
  112. 194
  113. 195 collectors = {} # Storage rule -> collector url
  114. 196 # @todo: Make configurable
  115. 197 now = datetime.datetime.now()
  116. 198 expire = now + datetime.timedelta(seconds=cls.EXPIRE)
  117. 199 bulk = cls._get_collection().initialize_ordered_bulk_op()
  118. 200 get_refresh_ops(bulk, object)
  119. 201 ==> bulk.execute()
  120. 202
  121. 203 @classmethod
  122. 204 def on_change_model(cls, sender, instance, *args, **kwargs):
  123. 205 cls._refresh_object(instance)
  124. 206
  125. 207 @classmethod
  126. Variables:
  127. collectors = {}
  128. object = <Interface: cat-proletarka: Vl 1>
  129. bulk = <pymongo.bulk.BulkOperationBuilder object at 0x80fd1ff68>
  130. get_collector = <function get_collector at 0x80fd2ce60>
  131. expire = datetime.datetime(2014, 9, 2, 18, 23, 4, 191977)
  132. get_refresh_ops = <function get_refresh_ops at 0x80fd2c320>
  133. now = datetime.datetime(2014, 9, 2, 17, 23, 4, 191977)
  134. get_instance = <function get_instance at 0x80fd2c488>
  135. cls = <class 'noc.pm.models.probeconfig.ProbeConfig'>
  136. ------------------------------------------------------------------------
  137. File: /opt/noc/pm/models/probeconfig.py (Line: 209)
  138. Function: on_change_document
  139. 202
  140. 203 @classmethod
  141. 204 def on_change_model(cls, sender, instance, *args, **kwargs):
  142. 205 cls._refresh_object(instance)
  143. 206
  144. 207 @classmethod
  145. 208 def on_change_document(cls, sender, document=None, *args, **kwargs):
  146. 209 ==> cls._refresh_object(document)
  147. 210
  148. 211 @classmethod
  149. 212 def on_delete_model(cls, sender, instance, *args, **kwargs):
  150. 213 cls._delete_object(instance)
  151. 214 # Rebuild configs for related objects
  152. 215 for m, n in cls.PROFILES[sender]:
  153. Variables:
  154. cls = <class 'noc.pm.models.probeconfig.ProbeConfig'>
  155. args = ()
  156. sender = <class 'noc.inv.models.interface.Interface'>
  157. document = <Interface: cat-proletarka: Vl 1>
  158. kwargs = {'created': False}
  159. ------------------------------------------------------------------------
  160. File: /opt/noc/lib/python2.7/site-packages/blinker/base.py (Line: 267)
  161. Function: send
  162. 260 '%s given' % len(sender))
  163. 261 else:
  164. 262 sender = sender[0]
  165. 263 if not self.receivers:
  166. 264 return []
  167. 265 else:
  168. 266 return [(receiver, receiver(sender, **kwargs))
  169. 267 ==> for receiver in self.receivers_for(sender)]
  170. 268
  171. 269 def has_receivers_for(self, sender):
  172. 270 """True if there is probably a receiver for *sender*.
  173. 271
  174. 272 Performs an optimistic check only. Does not guarantee that all
  175. 273 weakly referenced receivers are still alive. See
  176. Variables:
  177. self = <blinker.base.NamedSignal object at 0x80767afd0; 'post_save'>
  178. kwargs = {'document': <Interface: cat-proletarka: Vl 1>, 'created': False}
  179. sender = <class 'noc.inv.models.interface.Interface'>
  180. receiver =
  181. <bound method ?.on_change_document of <class 'noc.pm.models.probeconfig.ProbeConfig'>>
  182. ------------------------------------------------------------------------
  183. File: /opt/noc/lib/python2.7/site-packages/mongoengine/document.py (Line: 242)
  184. Function: save
  185. 235 message = u'Tried to save duplicate unique keys (%s)'
  186. 236 raise OperationError(message % unicode(err))
  187. 237 id_field = self._meta['id_field']
  188. 238 self[id_field] = self._fields[id_field].to_python(object_id)
  189. 239
  190. 240 self._changed_fields = []
  191. 241 self._created = False
  192. 242 ==> signals.post_save.send(self.__class__, document=self, created=created)
  193. 243 return self
  194. 244
  195. 245 def cascade_save(self, *args, **kwargs):
  196. 246 """Recursively saves any references / generic references on an object"""
  197. 247 from fields import ReferenceField, GenericReferenceField
  198. 248 _refs = kwargs.get('_refs', []) or []
  199. Variables:
  200. safe = True
  201. removals = {'ifindex': 1}
  202. object_id = ObjectId('533d4239f3b68214c5348175')
  203. select_dict = {'_id': ObjectId('533d4239f3b68214c5348175')}
  204. doc =
  205. {'_id': ObjectId('533d4239f3b68214c5348175'),
  206. 'enabled_protocols': [u'CTP'],
  207. 'mac': u'00:1B:53:CB:63:40',
  208. 'managed_object': 830,
  209. 'name': u'Vl 1',
  210. 'profile': ObjectId('5221b7f7f3b68240bff82d29'),
  211. 'profile_locked': False,
  212. 'technologies': [],
  213. 'type': u'SVI'}
  214. self = <Interface: cat-proletarka: Vl 1>
  215. created = False
  216. _refs = None
  217. shard_key = ()
  218. id_field = 'id'
  219. cascade = True
  220. updates = {'mac': u'00:1B:53:CB:63:40', 'name': u'Vl 1'}
  221. cascade_kwargs = None
  222. kwargs =
  223. {'_refs': None,
  224. 'cascade': True,
  225. 'force_insert': False,
  226. 'safe': True,
  227. 'validate': True,
  228. 'write_options': {}}
  229. collection =
  230. Collection(Database(Connection('localhost', 27017), u'noc'), u'noc.interfaces')
  231. write_options = {}
  232. force_insert = False
  233. validate = True
  234. upsert = False
  235. ------------------------------------------------------------------------
  236. File: /opt/noc/inv/models/interface.py (Line: 77)
  237. Function: save
  238. 70 def __unicode__(self):
  239. 71 return u"%s: %s" % (self.managed_object.name, self.name)
  240. 72
  241. 73 def save(self, *args, **kwargs):
  242. 74 self.name = self.managed_object.profile.convert_interface_name(self.name)
  243. 75 if self.mac:
  244. 76 self.mac = MACAddressParameter().clean(self.mac)
  245. 77 ==> super(Interface, self).save(*args, **kwargs)
  246. 78
  247. 79 def delete(self, *args, **kwargs):
  248. 80 # Remove all subinterfaces
  249. 81 for si in self.subinterface_set.all():
  250. 82 si.delete()
  251. 83 # Unlink
  252. Variables:
  253. self = <Interface: cat-proletarka: Vl 1>
  254. args = ()
  255. kwargs = {}
  256. ------------------------------------------------------------------------
  257. File: /opt/noc/inv/discovery/reports/base.py (Line: 60)
  258. Function: update_if_changed
  259. 53 for k, v in values.items():
  260. 54 vv = getattr(obj, k)
  261. 55 if v != vv:
  262. 56 if type(v) != int or not hasattr(vv, "id") or v != vv.id:
  263. 57 setattr(obj, k, v)
  264. 58 changes += [(k, v)]
  265. 59 if changes:
  266. 60 ==> obj.save()
  267. 61 return changes
  268. 62
  269. 63 def log_changes(self, msg, changes):
  270. 64 """
  271. 65 Log changes
  272. 66 :param msg: Message
  273. Variables:
  274. obj = <Interface: cat-proletarka: Vl 1>
  275. k = 'type'
  276. values =
  277. {'aggregated_interface': None,
  278. 'description': None,
  279. 'enabled_protocols': ['CTP'],
  280. 'ifindex': None,
  281. 'mac': '00:1B:53:CB:63:40',
  282. 'type': 'SVI'}
  283. vv = u'SVI'
  284. v = 'SVI'
  285. changes = [('ifindex', None)]
  286. self =
  287. <noc.inv.discovery.reports.interfacereport.InterfaceReport object at 0x80aef7d90>
  288. ------------------------------------------------------------------------
  289. File: /opt/noc/inv/discovery/reports/interfacereport.py (Line: 142)
  290. Function: submit_interface
  291. 135 # Interface exists
  292. 136 changes = self.update_if_changed(iface, {
  293. 137 "type": type,
  294. 138 "mac": mac,
  295. 139 "description": description,
  296. 140 "aggregated_interface": aggregated_interface,
  297. 141 "enabled_protocols": enabled_protocols,
  298. 142 ==> "ifindex": ifindex
  299. 143 })
  300. 144 self.log_changes("Interface '%s' has been changed" % name,
  301. 145 changes)
  302. 146 else:
  303. 147 # Create interface
  304. 148 self.info("Creating interface '%s'" % name)
  305. Variables:
  306. iface = <Interface: cat-proletarka: Vl 1>
  307. description = None
  308. enabled_protocols = ['CTP']
  309. self =
  310. <noc.inv.discovery.reports.interfacereport.InterfaceReport object at 0x80aef7d90>
  311. mac = '00:1B:53:CB:63:40'
  312. aggregated_interface = None
  313. ifindex = None
  314. type = 'SVI'
  315. name = 'Vl 1'
  316. ------------------------------------------------------------------------
  317. File: /opt/noc/inv/discovery/jobs/interface_discovery.py (Line: 85)
  318. Function: handler
  319. 78 continue
  320. 79 # Submit discovered interface
  321. 80 iface = self.report.submit_interface(
  322. 81 name=i["name"], type=i["type"], mac=i.get("mac"),
  323. 82 description=i.get("description"),
  324. 83 aggregated_interface=agg,
  325. 84 enabled_protocols=i.get("enabled_protocols", []),
  326. 85 ==> ifindex=i.get("snmp_ifindex")
  327. 86 )
  328. 87 icache[i["name"]] = iface
  329. 88 # Submit subinterfaces
  330. 89 for si in i["subinterfaces"]:
  331. 90 self.report.submit_subinterface(
  332. 91 forwarding_instance=forwarding_instance,
  333. Variables:
  334. icache = {}
  335. ifaces =
  336. [{'admin_status': False,
  337. 'enabled_protocols': ['CTP'],
  338. 'ifindex': 1,
  339. 'mac': '00:1B:53:CB:63:40',
  340. 'name': 'Vl 1',
  341. 'oper_status': False,
  342. 'subinterfaces': [{'admin_status': False,
  343. 'enabled_afi': [],
  344. 'enabled_protocols': [],
  345. 'ifindex': 1,
  346. 'mac': '00:1B:53:CB:63:40',
  347. 'name': 'Vl 1',
  348. 'oper_status': False,
  349. 'vlan_ids': [1]}],
  350. 'type': 'SVI'},
  351. {'admin_status': True,
  352. 'description': 'Management',
  353. 'enabled_protocols': ['CTP'],
  354. 'ifindex': 1007,
  355. 'mac': '00:1B:53:CB:63:41',
  356. 'name': 'Vl 1007',
  357. 'oper_status': True,
  358. 'subinterfaces': [{'admin_status': True,
  359. 'description': 'Management',
  360. 'enabled_afi': ['IPv4'],
  361. 'enabled_protocols': [],
  362. 'ifindex': 1007,
  363. 'ipv4_addresses': ['192.168.82.129/28'],
  364. 'mac': '00:1B:53:CB:63:41',
  365. 'name': 'Vl 1007',
  366. 'oper_status': True,
  367. 'vlan_ids': [1007]}],
  368. 'type': 'SVI'},
  369. {'admin_status': False,
  370. 'enabled_protocols': ['CTP'],
  371. 'ifindex': 10101,
  372. 'mac': '00:1B:53:CB:63:01',
  373. 'name': 'Gi 0/1',
  374. 'oper_status': False,
  375. 'subinterfaces': [{'admin_status': False,
  376. 'enabled_afi': ['BRIDGE'],
  377. 'enabled_protocols': [],
  378. 'ifindex': 10101,
  379. 'mac': '00:1B:53:CB:63:01',
  380. 'name': 'Gi 0/1',
  381. 'oper_status': False,
  382. 'untagged_vlan': 25}],
  383. 'type': 'physical'},
  384. {'admin_status': False,
  385. 'enabled_protocols': ['CTP'],
  386. 'ifindex': 10102,
  387. 'mac': '00:1B:53:CB:63:02',
  388. 'name': 'Gi 0/2',
  389. 'oper_status': False,
  390. 'subinterfaces': [{'admin_status': False,
  391. 'enabled_afi': ['BRIDGE'],
  392. 'enabled_protocols': [],
  393. 'ifindex': 10102,
  394. 'mac': '00:1B:53:CB:63:02',
  395. 'name': 'Gi 0/2',
  396. 'oper_status': False,
  397. 'untagged_vlan': 26}],
  398. 'type': 'physical'},
  399. {'admin_status': False,
  400. 'enabled_protocols': ['CTP'],
  401. 'ifindex': 10103,
  402. 'mac': '00:1B:53:CB:63:03',
  403. 'name': 'Gi 0/3',
  404. 'oper_status': False,
  405. 'subinterfaces': [{'admin_status': False,
  406. 'enabled_afi': ['BRIDGE'],
  407. 'enabled_protocols': [],
  408. 'ifindex': 10103,
  409. 'mac': '00:1B:53:CB:63:03',
  410. 'name': 'Gi 0/3',
  411. 'oper_status': False,
  412. 'untagged_vlan': 27}],
  413. 'type': 'physical'},
  414. {'admin_status': False,
  415. 'enabled_protocols': ['CTP'],
  416. 'ifindex': 10104,
  417. 'mac': '00:1B:53:CB:63:04',
  418. 'name': 'Gi 0/4',
  419. 'oper_status': False,
  420. 'subinterfaces': [{'admin_status': False,
  421. 'enabled_afi': ['BRIDGE'],
  422. 'enabled_protocols': [],
  423. 'ifindex': 10104,
  424. 'mac': '00:1B:53:CB:63:04',
  425. 'name': 'Gi 0/4',
  426. 'oper_status': False,
  427. 'untagged_vlan': 28}],
  428. 'type': 'physical'},
  429. {'admin_status': False,
  430. 'enabled_protocols': ['CTP'],
  431. 'ifindex': 10105,
  432. 'mac': '00:1B:53:CB:63:05',
  433. 'name': 'Gi 0/5',
  434. 'oper_status': False,
  435. 'subinterfaces': [{'admin_status': False,
  436. 'enabled_afi': ['BRIDGE'],
  437. 'enabled_protocols': [],
  438. 'ifindex': 10105,
  439. 'mac': '00:1B:53:CB:63:05',
  440. 'name': 'Gi 0/5',
  441. 'oper_status': False,
  442. 'untagged_vlan': 29}],
  443. 'type': 'physical'},
  444. {'admin_status': False,
  445. 'enabled_protocols': ['CTP'],
  446. 'ifindex': 10106,
  447. 'mac': '00:1B:53:CB:63:06',
  448. 'name': 'Gi 0/6',
  449. 'oper_status': False,
  450. 'subinterfaces': [{'admin_status': False,
  451. 'enabled_afi': ['BRIDGE'],
  452. 'enabled_protocols': [],
  453. 'ifindex': 10106,
  454. 'mac': '00:1B:53:CB:63:06',
  455. 'name': 'Gi 0/6',
  456. 'oper_status': False,
  457. 'untagged_vlan': 30}],
  458. 'type': 'physical'},
  459. {'admin_status': False,
  460. 'enabled_protocols': ['CTP'],
  461. 'ifindex': 10107,
  462. 'mac': '00:1B:53:CB:63:07',
  463. 'name': 'Gi 0/7',
  464. 'oper_status': False,
  465. 'subinterfaces': [{'admin_status': False,
  466. 'enabled_afi': ['BRIDGE'],
  467. 'enabled_protocols': [],
  468. 'ifindex': 10107,
  469. 'mac': '00:1B:53:CB:63:07',
  470. 'name': 'Gi 0/7',
  471. 'oper_status': False,
  472. 'untagged_vlan': 31}],
  473. 'type': 'physical'},
  474. {'admin_status': False,
  475. 'enabled_protocols': ['CTP'],
  476. 'ifindex': 10108,
  477. 'mac': '00:1B:53:CB:63:08',
  478. 'name': 'Gi 0/8',
  479. 'oper_status': False,
  480. 'subinterfaces': [{'admin_status': False,
  481. 'enabled_afi': ['BRIDGE'],
  482. 'enabled_protocols': [],
  483. 'ifindex': 10108,
  484. 'mac': '00:1B:53:CB:63:08',
  485. 'name': 'Gi 0/8',
  486. 'oper_status': False,
  487. 'untagged_vlan': 32}],
  488. 'type': 'physical'},
  489. {'admin_status': False,
  490. 'enabled_protocols': ['CTP'],
  491. 'ifindex': 10109,
  492. 'mac': '00:1B:53:CB:63:09',
  493. 'name': 'Gi 0/9',
  494. 'oper_status': False,
  495. 'subinterfaces': [{'admin_status': False,
  496. 'enabled_afi': ['BRIDGE'],
  497. 'enabled_protocols': [],
  498. 'ifindex': 10109,
  499. 'mac': '00:1B:53:CB:63:09',
  500. 'name': 'Gi 0/9',
  501. 'oper_status': False,
  502. 'untagged_vlan': 33}],
  503. 'type': 'physical'},
  504. {'admin_status': False,
  505. 'enabled_protocols': ['CTP'],
  506. 'ifindex': 10110,
  507. 'mac': '00:1B:53:CB:63:0A',
  508. 'name': 'Gi 0/10',
  509. 'oper_status': False,
  510. 'subinterfaces': [{'admin_status': False,
  511. 'enabled_afi': ['BRIDGE'],
  512. 'enabled_protocols': [],
  513. 'ifindex': 10110,
  514. 'mac': '00:1B:53:CB:63:0A',
  515. 'name': 'Gi 0/10',
  516. 'oper_status': False,
  517. 'untagged_vlan': 34}],
  518. 'type': 'physical'},
  519. {'admin_status': True,
  520. 'description': 'elcom-proletarka',
  521. 'enabled_protocols': ['CTP'],
  522. 'ifindex': 10111,
  523. 'mac': '00:1B:53:CB:63:0B',
  524. 'name': 'Gi 0/11',
  525. 'oper_status': True,
  526. 'subinterfaces': [{'admin_status': True,
  527. 'description': 'elcom-proletarka',
  528. 'enabled_afi': ['BRIDGE'],
  529. 'enabled_protocols': [],
  530. 'ifindex': 10111,
  531. 'mac': '00:1B:53:CB:63:0B',
  532. 'name': 'Gi 0/11',
  533. 'oper_status': True,
  534. 'untagged_vlan': 35}],
  535. 'type': 'physical'},
  536. {'admin_status': False,
  537. 'enabled_protocols': ['CTP'],
  538. 'ifindex': 10112,
  539. 'mac': '00:1B:53:CB:63:0C',
  540. 'name': 'Gi 0/12',
  541. 'oper_status': False,
  542. 'subinterfaces': [{'admin_status': False,
  543. 'enabled_afi': ['BRIDGE'],
  544. 'enabled_protocols': [],
  545. 'ifindex': 10112,
  546. 'mac': '00:1B:53:CB:63:0C',
  547. 'name': 'Gi 0/12',
  548. 'oper_status': False,
  549. 'untagged_vlan': 36}],
  550. 'type': 'physical'},
  551. {'admin_status': False,
  552. 'enabled_protocols': ['CTP'],
  553. 'ifindex': 10113,
  554. 'mac': '00:1B:53:CB:63:0D',
  555. 'name': 'Gi 0/13',
  556. 'oper_status': False,
  557. 'subinterfaces': [{'admin_status': False,
  558. 'enabled_afi': ['BRIDGE'],
  559. 'enabled_protocols': [],
  560. 'ifindex': 10113,
  561. 'mac': '00:1B:53:CB:63:0D',
  562. 'name': 'Gi 0/13',
  563. 'oper_status': False,
  564. 'tagged_vlans': [25,
  565. 26,
  566. 27,
  567. 28,
  568. 29,
  569. 30,
  570. 31,
  571. 32,
  572. 33,
  573. 34,
  574. 35,
  575. 36,
  576. 37,
  577. 38,
  578. 39,
  579. 40,
  580. 41,
  581. 42,
  582. 43,
  583. 44,
  584. 45,
  585. 46,
  586. 47,
  587. 48,
  588. 49,
  589. 50,
  590. 51,
  591. 52,
  592. 53,
  593. 54,
  594. 55,
  595. 56,
  596. 57,
  597. 58,
  598. 59,
  599. 60,
  600. 61,
  601. 62,
  602. 63,
  603. 64,
  604. 65,
  605. 66,
  606. 67,
  607. 68,
  608. 69,
  609. 70,
  610. 71,
  611. 72,
  612. 73,
  613. 74,
  614. 75,
  615. 76,
  616. 77,
  617. 78,
  618. 79,
  619. 80,
  620. 81,
  621. 82,
  622. 83,
  623. 84,
  624. 85,
  625. 86,
  626. 87,
  627. 88,
  628. 89,
  629. 90,
  630. 91,
  631. 92,
  632. 93,
  633. 94,
  634. 95,
  635. 96,
  636. 97,
  637. 98,
  638. 99,
  639. 100,
  640. 101,
  641. 102,
  642. 103,
  643. 104,
  644. 105,
  645. 106,
  646. 107,
  647. 108,
  648. 109,
  649. 110,
  650. 111,
  651. 112,
  652. 113,
  653. 114,
  654. 115,
  655. 116,
  656. 117,
  657. 118,
  658. 119,
  659. 120,
  660. 121,
  661. 122,
  662. 123,
  663. 124,
  664. 125,
  665. 126,
  666. 127,
  667. 128,
  668. 129,
  669. 130,
  670. 131,
  671. 132,
  672. 133,
  673. 134,
  674. 135,
  675. 136,
  676. 137,
  677. 138,
  678. 139,
  679. 140,
  680. 141,
  681. 142,
  682. 143,
  683. 144,
  684. 145,
  685. 146,
  686. 147,
  687. 148,
  688. 149,
  689. 150,
  690. 151,
  691. 152,
  692. 153,
  693. 154,
  694. 155,
  695. 156,
  696. 157,
  697. 158,
  698. 159,
  699. 160,
  700. 161,
  701. 162,
  702. 163,
  703. 164,
  704. 165,
  705. 166,
  706. 167,
  707. 168,
  708. 169,
  709. 170,
  710. 171,
  711. 172,
  712. 173,
  713. 174,
  714. 175,
  715. 176,
  716. 177,
  717. 178,
  718. 179,
  719. 180,
  720. 181,
  721. 182,
  722. 183,
  723. 184,
  724. 185,
  725. 186,
  726. 187,
  727. 188,
  728. 189,
  729. 190,
  730. 191,
  731. 192,
  732. 193,
  733. 194,
  734. 195,
  735. 196,
  736. 197,
  737. 198,
  738. 199,
  739. 200,
  740. 201,
  741. 202,
  742. 203,
  743. 204,
  744. 205,
  745. 206,
  746. 207,
  747. 208,
  748. 209,
  749. 210,
  750. 211,
  751. 212,
  752. 213,
  753. 214,
  754. 215,
  755. 216,
  756. 217,
  757. 218,
  758. 219,
  759. 220,
  760. 221,
  761. 222,
  762. 223,
  763. 224,
  764. 225,
  765. 226,
  766. 227,
  767. 228,
  768. 229,
  769. 230,
  770. 231,
  771. 232,
  772. 233,
  773. 234,
  774. 235,
  775. 236,
  776. 237,
  777. 238,
  778. 239,
  779. 240,
  780. 241,
  781. 242,
  782. 243,
  783. 244,
  784. 245,
  785. 246,
  786. 247,
  787. 248,
  788. 249,
  789. 250,
  790. 251,
  791. 252,
  792. 253,
  793. 254,
  794. 255,
  795. 256,
  796. 257,
  797. 258,
  798. 259,
  799. 260,
  800. 261,
  801. 262,
  802. 263,
  803. 264,
  804. 265,
  805. 266,
  806. 267,
  807. 268,
  808. 269,
  809. 270,
  810. 271,
  811. 272,
  812. 273,
  813. 274,
  814. 275,
  815. 276,
  816. 277,
  817. 278,
  818. 279,
  819. 280,
  820. 281,
  821. 282,
  822. 283,
  823. 284,
  824. 285,
  825. 286,
  826. 287,
  827. 288,
  828. 289,
  829. 290,
  830. 291,
  831. 292,
  832. 293,
  833. 294,
  834. 295,
  835. 296,
  836. 297,
  837. 298,
  838. 299,
  839. 300,
  840. 1007,
  841. 1008,
  842. 1011],
  843. 'untagged_vlan': 1}],
  844. 'type': 'physical'},
  845. {'admin_status': False,
  846. 'enabled_protocols': ['CTP'],
  847. 'ifindex': 10114,
  848. 'mac': '00:1B:53:CB:63:0E',
  849. 'name': 'Gi 0/14',
  850. 'oper_status': False,
  851. 'subinterfaces': [{'admin_status': False,
  852. 'enabled_afi': ['BRIDGE'],
  853. 'enabled_protocols': [],
  854. 'ifindex': 10114,
  855. 'mac': '00:1B:53:CB:63:0E',
  856. 'name': 'Gi 0/14',
  857. 'oper_status': False,
  858. 'tagged_vlans': [25,
  859. 26,
  860. 27,
  861. 28,
  862. 29,
  863. 30,
  864. 31,
  865. 32,
  866. 33,
  867. 34,
  868. 35,
  869. 36,
  870. 37,
  871. 38,
  872. 39,
  873. 40,
  874. 41,
  875. 42,
  876. 43,
  877. 44,
  878. 45,
  879. 46,
  880. 47,
  881. 48,
  882. 49,
  883. 50,
  884. 51,
  885. 52,
  886. 53,
  887. 54,
  888. 55,
  889. 56,
  890. 57,
  891. 58,
  892. 59,
  893. 60,
  894. 61,
  895. 62,
  896. 63,
  897. 64,
  898. 65,
  899. 66,
  900. 67,
  901. 68,
  902. 69,
  903. 70,
  904. 71,
  905. 72,
  906. 73,
  907. 74,
  908. 75,
  909. 76,
  910. 77,
  911. 78,
  912. 79,
  913. 80,
  914. 81,
  915. 82,
  916. 83,
  917. 84,
  918. 85,
  919. 86,
  920. 87,
  921. 88,
  922. 89,
  923. 90,
  924. 91,
  925. 92,
  926. 93,
  927. 94,
  928. 95,
  929. 96,
  930. 97,
  931. 98,
  932. 99,
  933. 100,
  934. 101,
  935. 102,
  936. 103,
  937. 104,
  938. 105,
  939. 106,
  940. 107,
  941. 108,
  942. 109,
  943. 110,
  944. 111,
  945. 112,
  946. 113,
  947. 114,
  948. 115,
  949. 116,
  950. 117,
  951. 118,
  952. 119,
  953. 120,
  954. 121,
  955. 122,
  956. 123,
  957. 124,
  958. 125,
  959. 126,
  960. 127,
  961. 128,
  962. 129,
  963. 130,
  964. 131,
  965. 132,
  966. 133,
  967. 134,
  968. 135,
  969. 136,
  970. 137,
  971. 138,
  972. 139,
  973. 140,
  974. 141,
  975. 142,
  976. 143,
  977. 144,
  978. 145,
  979. 146,
  980. 147,
  981. 148,
  982. 149,
  983. 150,
  984. 151,
  985. 152,
  986. 153,
  987. 154,
  988. 155,
  989. 156,
  990. 157,
  991. 158,
  992. 159,
  993. 160,
  994. 161,
  995. 162,
  996. 163,
  997. 164,
  998. 165,
  999. 166,
  1000. 167,
  1001. 168,
  1002. 169,
  1003. 170,
  1004. 171,
  1005. 172,
  1006. 173,
  1007. 174,
  1008. 175,
  1009. 176,
  1010. 177,
  1011. 178,
  1012. 179,
  1013. 180,
  1014. 181,
  1015. 182,
  1016. 183,
  1017. 184,
  1018. 185,
  1019. 186,
  1020. 187,
  1021. 188,
  1022. 189,
  1023. 190,
  1024. 191,
  1025. 192,
  1026. 193,
  1027. 194,
  1028. 195,
  1029. 196,
  1030. 197,
  1031. 198,
  1032. 199,
  1033. 200,
  1034. 201,
  1035. 202,
  1036. 203,
  1037. 204,
  1038. 205,
  1039. 206,
  1040. 207,
  1041. 208,
  1042. 209,
  1043. 210,
  1044. 211,
  1045. 212,
  1046. 213,
  1047. 214,
  1048. 215,
  1049. 216,
  1050. 217,
  1051. 218,
  1052. 219,
  1053. 220,
  1054. 221,
  1055. 222,
  1056. 223,
  1057. 224,
  1058. 225,
  1059. 226,
  1060. 227,
  1061. 228,
  1062. 229,
  1063. 230,
  1064. 231,
  1065. 232,
  1066. 233,
  1067. 234,
  1068. 235,
  1069. 236,
  1070. 237,
  1071. 238,
  1072. 239,
  1073. 240,
  1074. 241,
  1075. 242,
  1076. 243,
  1077. 244,
  1078. 245,
  1079. 246,
  1080. 247,
  1081. 248,
  1082. 249,
  1083. 250,
  1084. 251,
  1085. 252,
  1086. 253,
  1087. 254,
  1088. 255,
  1089. 256,
  1090. 257,
  1091. 258,
  1092. 259,
  1093. 260,
  1094. 261,
  1095. 262,
  1096. 263,
  1097. 264,
  1098. 265,
  1099. 266,
  1100. 267,
  1101. 268,
  1102. 269,
  1103. 270,
  1104. 271,
  1105. 272,
  1106. 273,
  1107. 274,
  1108. 275,
  1109. 276,
  1110. 277,
  1111. 278,
  1112. 279,
  1113. 280,
  1114. 281,
  1115. 282,
  1116. 283,
  1117. 284,
  1118. 285,
  1119. 286,
  1120. 287,
  1121. 288,
  1122. 289,
  1123. 290,
  1124. 291,
  1125. 292,
  1126. 293,
  1127. 294,
  1128. 295,
  1129. 296,
  1130. 297,
  1131. 298,
  1132. 299,
  1133. 300,
  1134. 1007,
  1135. 1008,
  1136. 1011],
  1137. 'untagged_vlan': 1}],
  1138. 'type': 'physical'},
  1139. {'admin_status': False,
  1140. 'enabled_protocols': ['CTP'],
  1141. 'ifindex': 10115,
  1142. 'mac': '00:1B:53:CB:63:0F',
  1143. 'name': 'Gi 0/15',
  1144. 'oper_status': False,
  1145. 'subinterfaces': [{'admin_status': False,
  1146. 'enabled_afi': ['BRIDGE'],
  1147. 'enabled_protocols': [],
  1148. 'ifindex': 10115,
  1149. 'mac': '00:1B:53:CB:63:0F',
  1150. 'name': 'Gi 0/15',
  1151. 'oper_status': False,
  1152. 'tagged_vlans': [25,
  1153. 26,
  1154. 27,
  1155. 28,
  1156. 29,
  1157. 30,
  1158. 31,
  1159. 32,
  1160. 33,
  1161. 34,
  1162. 35,
  1163. 36,
  1164. 37,
  1165. 38,
  1166. 39,
  1167. 40,
  1168. 41,
  1169. 42,
  1170. 43,
  1171. 44,
  1172. 45,
  1173. 46,
  1174. 47,
  1175. 48,
  1176. 49,
  1177. 50,
  1178. 51,
  1179. 52,
  1180. 53,
  1181. 54,
  1182. 55,
  1183. 56,
  1184. 57,
  1185. 58,
  1186. 59,
  1187. 60,
  1188. 61,
  1189. 62,
  1190. 63,
  1191. 64,
  1192. 65,
  1193. 66,
  1194. 67,
  1195. 68,
  1196. 69,
  1197. 70,
  1198. 71,
  1199. 72,
  1200. 73,
  1201. 74,
  1202. 75,
  1203. 76,
  1204. 77,
  1205. 78,
  1206. 79,
  1207. 80,
  1208. 81,
  1209. 82,
  1210. 83,
  1211. 84,
  1212. 85,
  1213. 86,
  1214. 87,
  1215. 88,
  1216. 89,
  1217. 90,
  1218. 91,
  1219. 92,
  1220. 93,
  1221. 94,
  1222. 95,
  1223. 96,
  1224. 97,
  1225. 98,
  1226. 99,
  1227. 100,
  1228. 101,
  1229. 102,
  1230. 103,
  1231. 104,
  1232. 105,
  1233. 106,
  1234. 107,
  1235. 108,
  1236. 109,
  1237. 110,
  1238. 111,
  1239. 112,
  1240. 113,
  1241. 114,
  1242. 115,
  1243. 116,
  1244. 117,
  1245. 118,
  1246. 119,
  1247. 120,
  1248. 121,
  1249. 122,
  1250. 123,
  1251. 124,
  1252. 125,
  1253. 126,
  1254. 127,
  1255. 128,
  1256. 129,
  1257. 130,
  1258. 131,
  1259. 132,
  1260. 133,
  1261. 134,
  1262. 135,
  1263. 136,
  1264. 137,
  1265. 138,
  1266. 139,
  1267. 140,
  1268. 141,
  1269. 142,
  1270. 143,
  1271. 144,
  1272. 145,
  1273. 146,
  1274. 147,
  1275. 148,
  1276. 149,
  1277. 150,
  1278. 151,
  1279. 152,
  1280. 153,
  1281. 154,
  1282. 155,
  1283. 156,
  1284. 157,
  1285. 158,
  1286. 159,
  1287. 160,
  1288. 161,
  1289. 162,
  1290. 163,
  1291. 164,
  1292. 165,
  1293. 166,
  1294. 167,
  1295. 168,
  1296. 169,
  1297. 170,
  1298. 171,
  1299. 172,
  1300. 173,
  1301. 174,
  1302. 175,
  1303. 176,
  1304. 177,
  1305. 178,
  1306. 179,
  1307. 180,
  1308. 181,
  1309. 182,
  1310. 183,
  1311. 184,
  1312. 185,
  1313. 186,
  1314. 187,
  1315. 188,
  1316. 189,
  1317. 190,
  1318. 191,
  1319. 192,
  1320. 193,
  1321. 194,
  1322. 195,
  1323. 196,
  1324. 197,
  1325. 198,
  1326. 199,
  1327. 200,
  1328. 201,
  1329. 202,
  1330. 203,
  1331. 204,
  1332. 205,
  1333. 206,
  1334. 207,
  1335. 208,
  1336. 209,
  1337. 210,
  1338. 211,
  1339. 212,
  1340. 213,
  1341. 214,
  1342. 215,
  1343. 216,
  1344. 217,
  1345. 218,
  1346. 219,
  1347. 220,
  1348. 221,
  1349. 222,
  1350. 223,
  1351. 224,
  1352. 225,
  1353. 226,
  1354. 227,
  1355. 228,
  1356. 229,
  1357. 230,
  1358. 231,
  1359. 232,
  1360. 233,
  1361. 234,
  1362. 235,
  1363. 236,
  1364. 237,
  1365. 238,
  1366. 239,
  1367. 240,
  1368. 241,
  1369. 242,
  1370. 243,
  1371. 244,
  1372. 245,
  1373. 246,
  1374. 247,
  1375. 248,
  1376. 249,
  1377. 250,
  1378. 251,
  1379. 252,
  1380. 253,
  1381. 254,
  1382. 255,
  1383. 256,
  1384. 257,
  1385. 258,
  1386. 259,
  1387. 260,
  1388. 261,
  1389. 262,
  1390. 263,
  1391. 264,
  1392. 265,
  1393. 266,
  1394. 267,
  1395. 268,
  1396. 269,
  1397. 270,
  1398. 271,
  1399. 272,
  1400. 273,
  1401. 274,
  1402. 275,
  1403. 276,
  1404. 277,
  1405. 278,
  1406. 279,
  1407. 280,
  1408. 281,
  1409. 282,
  1410. 283,
  1411. 284,
  1412. 285,
  1413. 286,
  1414. 287,
  1415. 288,
  1416. 289,
  1417. 290,
  1418. 291,
  1419. 292,
  1420. 293,
  1421. 294,
  1422. 295,
  1423. 296,
  1424. 297,
  1425. 298,
  1426. 299,
  1427. 300,
  1428. 1007,
  1429. 1008,
  1430. 1011],
  1431. 'untagged_vlan': 1}],
  1432. 'type': 'physical'},
  1433. {'admin_status': True,
  1434. 'description': 'bb-proletarka',
  1435. 'enabled_protocols': ['CTP'],
  1436. 'ifindex': 10116,
  1437. 'mac': '00:1B:53:CB:63:10',
  1438. 'name': 'Gi 0/16',
  1439. 'oper_status': True,
  1440. 'subinterfaces': [{'admin_status': True,
  1441. 'description': 'bb-proletarka',
  1442. 'enabled_afi': ['BRIDGE'],
  1443. 'enabled_protocols': [],
  1444. 'ifindex': 10116,
  1445. 'mac': '00:1B:53:CB:63:10',
  1446. 'name': 'Gi 0/16',
  1447. 'oper_status': True,
  1448. 'tagged_vlans': [25,
  1449. 26,
  1450. 27,
  1451. 28,
  1452. 29,
  1453. 30,
  1454. 31,
  1455. 32,
  1456. 33,
  1457. 34,
  1458. 35,
  1459. 36,
  1460. 37,
  1461. 38,
  1462. 39,
  1463. 40,
  1464. 41,
  1465. 42,
  1466. 43,
  1467. 44,
  1468. 45,
  1469. 46,
  1470. 47,
  1471. 48,
  1472. 49,
  1473. 50,
  1474. 51,
  1475. 52,
  1476. 53,
  1477. 54,
  1478. 55,
  1479. 56,
  1480. 57,
  1481. 58,
  1482. 59,
  1483. 60,
  1484. 61,
  1485. 62,
  1486. 63,
  1487. 64,
  1488. 65,
  1489. 66,
  1490. 67,
  1491. 68,
  1492. 69,
  1493. 70,
  1494. 71,
  1495. 72,
  1496. 73,
  1497. 74,
  1498. 75,
  1499. 76,
  1500. 77,
  1501. 78,
  1502. 79,
  1503. 80,
  1504. 81,
  1505. 82,
  1506. 83,
  1507. 84,
  1508. 85,
  1509. 86,
  1510. 87,
  1511. 88,
  1512. 89,
  1513. 90,
  1514. 91,
  1515. 92,
  1516. 93,
  1517. 94,
  1518. 95,
  1519. 96,
  1520. 97,
  1521. 98,
  1522. 99,
  1523. 100,
  1524. 101,
  1525. 102,
  1526. 103,
  1527. 104,
  1528. 105,
  1529. 106,
  1530. 107,
  1531. 108,
  1532. 109,
  1533. 110,
  1534. 111,
  1535. 112,
  1536. 113,
  1537. 114,
  1538. 115,
  1539. 116,
  1540. 117,
  1541. 118,
  1542. 119,
  1543. 120,
  1544. 121,
  1545. 122,
  1546. 123,
  1547. 124,
  1548. 125,
  1549. 126,
  1550. 127,
  1551. 128,
  1552. 129,
  1553. 130,
  1554. 131,
  1555. 132,
  1556. 133,
  1557. 134,
  1558. 135,
  1559. 136,
  1560. 137,
  1561. 138,
  1562. 139,
  1563. 140,
  1564. 141,
  1565. 142,
  1566. 143,
  1567. 144,
  1568. 145,
  1569. 146,
  1570. 147,
  1571. 148,
  1572. 149,
  1573. 150,
  1574. 151,
  1575. 152,
  1576. 153,
  1577. 154,
  1578. 155,
  1579. 156,
  1580. 157,
  1581. 158,
  1582. 159,
  1583. 160,
  1584. 161,
  1585. 162,
  1586. 163,
  1587. 164,
  1588. 165,
  1589. 166,
  1590. 167,
  1591. 168,
  1592. 169,
  1593. 170,
  1594. 171,
  1595. 172,
  1596. 173,
  1597. 174,
  1598. 175,
  1599. 176,
  1600. 177,
  1601. 178,
  1602. 179,
  1603. 180,
  1604. 181,
  1605. 182,
  1606. 183,
  1607. 184,
  1608. 185,
  1609. 186,
  1610. 187,
  1611. 188,
  1612. 189,
  1613. 190,
  1614. 191,
  1615. 192,
  1616. 193,
  1617. 194,
  1618. 195,
  1619. 196,
  1620. 197,
  1621. 198,
  1622. 199,
  1623. 200,
  1624. 201,
  1625. 202,
  1626. 203,
  1627. 204,
  1628. 205,
  1629. 206,
  1630. 207,
  1631. 208,
  1632. 209,
  1633. 210,
  1634. 211,
  1635. 212,
  1636. 213,
  1637. 214,
  1638. 215,
  1639. 216,
  1640. 217,
  1641. 218,
  1642. 219,
  1643. 220,
  1644. 221,
  1645. 222,
  1646. 223,
  1647. 224,
  1648. 225,
  1649. 226,
  1650. 227,
  1651. 228,
  1652. 229,
  1653. 230,
  1654. 231,
  1655. 232,
  1656. 233,
  1657. 234,
  1658. 235,
  1659. 236,
  1660. 237,
  1661. 238,
  1662. 239,
  1663. 240,
  1664. 241,
  1665. 242,
  1666. 243,
  1667. 244,
  1668. 245,
  1669. 246,
  1670. 247,
  1671. 248,
  1672. 249,
  1673. 250,
  1674. 251,
  1675. 252,
  1676. 253,
  1677. 254,
  1678. 255,
  1679. 256,
  1680. 257,
  1681. 258,
  1682. 259,
  1683. 260,
  1684. 261,
  1685. 262,
  1686. 263,
  1687. 264,
  1688. 265,
  1689. 266,
  1690. 267,
  1691. 268,
  1692. 269,
  1693. 270,
  1694. 271,
  1695. 272,
  1696. 273,
  1697. 274,
  1698. 275,
  1699. 276,
  1700. 277,
  1701. 278,
  1702. 279,
  1703. 280,
  1704. 281,
  1705. 282,
  1706. 283,
  1707. 284,
  1708. 285,
  1709. 286,
  1710. 287,
  1711. 288,
  1712. 289,
  1713. 290,
  1714. 291,
  1715. 292,
  1716. 293,
  1717. 294,
  1718. 295,
  1719. 296,
  1720. 297,
  1721. 298,
  1722. 299,
  1723. 300,
  1724. 1007,
  1725. 1008,
  1726. 1011],
  1727. 'untagged_vlan': 1}],
  1728. 'type': 'physical'}]
  1729. agg = None
  1730. self =
  1731. <noc.inv.discovery.jobs.interface_discovery.InterfaceDiscoveryJob object at 0x80fd223d0>
  1732. object = <ManagedObject: cat-proletarka>
  1733. i =
  1734. {'admin_status': False,
  1735. 'enabled_protocols': ['CTP'],
  1736. 'ifindex': 1,
  1737. 'mac': '00:1B:53:CB:63:40',
  1738. 'name': 'Vl 1',
  1739. 'oper_status': False,
  1740. 'subinterfaces': [{'admin_status': False,
  1741. 'enabled_afi': [],
  1742. 'enabled_protocols': [],
  1743. 'ifindex': 1,
  1744. 'mac': '00:1B:53:CB:63:40',
  1745. 'name': 'Vl 1',
  1746. 'oper_status': False,
  1747. 'vlan_ids': [1]}],
  1748. 'type': 'SVI'}
  1749. result =
  1750. [{'forwarding_instance': 'default',
  1751. 'interfaces': [{'admin_status': False,
  1752. 'enabled_protocols': ['CTP'],
  1753. 'ifindex': 1,
  1754. 'mac': '00:1B:53:CB:63:40',
  1755. 'name': 'Vl 1',
  1756. 'oper_status': False,
  1757. 'subinterfaces': [{'admin_status': False,
  1758. 'enabled_afi': [],
  1759. 'enabled_protocols': [],
  1760. 'ifindex': 1,
  1761. 'mac': '00:1B:53:CB:63:40',
  1762. 'name': 'Vl 1',
  1763. 'oper_status': False,
  1764. 'vlan_ids': [1]}],
  1765. 'type': 'SVI'},
  1766. {'admin_status': True,
  1767. 'description': 'Management',
  1768. 'enabled_protocols': ['CTP'],
  1769. 'ifindex': 1007,
  1770. 'mac': '00:1B:53:CB:63:41',
  1771. 'name': 'Vl 1007',
  1772. 'oper_status': True,
  1773. 'subinterfaces': [{'admin_status': True,
  1774. 'description': 'Management',
  1775. 'enabled_afi': ['IPv4'],
  1776. 'enabled_protocols': [],
  1777. 'ifindex': 1007,
  1778. 'ipv4_addresses': ['192.168.82.129/28'],
  1779. 'mac': '00:1B:53:CB:63:41',
  1780. 'name': 'Vl 1007',
  1781. 'oper_status': True,
  1782. 'vlan_ids': [1007]}],
  1783. 'type': 'SVI'},
  1784. {'admin_status': False,
  1785. 'enabled_protocols': ['CTP'],
  1786. 'ifindex': 10101,
  1787. 'mac': '00:1B:53:CB:63:01',
  1788. 'name': 'Gi 0/1',
  1789. 'oper_status': False,
  1790. 'subinterfaces': [{'admin_status': False,
  1791. 'enabled_afi': ['BRIDGE'],
  1792. 'enabled_protocols': [],
  1793. 'ifindex': 10101,
  1794. 'mac': '00:1B:53:CB:63:01',
  1795. 'name': 'Gi 0/1',
  1796. 'oper_status': False,
  1797. 'untagged_vlan': 25}],
  1798. 'type': 'physical'},
  1799. {'admin_status': False,
  1800. 'enabled_protocols': ['CTP'],
  1801. 'ifindex': 10102,
  1802. 'mac': '00:1B:53:CB:63:02',
  1803. 'name': 'Gi 0/2',
  1804. 'oper_status': False,
  1805. 'subinterfaces': [{'admin_status': False,
  1806. 'enabled_afi': ['BRIDGE'],
  1807. 'enabled_protocols': [],
  1808. 'ifindex': 10102,
  1809. 'mac': '00:1B:53:CB:63:02',
  1810. 'name': 'Gi 0/2',
  1811. 'oper_status': False,
  1812. 'untagged_vlan': 26}],
  1813. 'type': 'physical'},
  1814. {'admin_status': False,
  1815. 'enabled_protocols': ['CTP'],
  1816. 'ifindex': 10103,
  1817. 'mac': '00:1B:53:CB:63:03',
  1818. 'name': 'Gi 0/3',
  1819. 'oper_status': False,
  1820. 'subinterfaces': [{'admin_status': False,
  1821. 'enabled_afi': ['BRIDGE'],
  1822. 'enabled_protocols': [],
  1823. 'ifindex': 10103,
  1824. 'mac': '00:1B:53:CB:63:03',
  1825. 'name': 'Gi 0/3',
  1826. 'oper_status': False,
  1827. 'untagged_vlan': 27}],
  1828. 'type': 'physical'},
  1829. {'admin_status': False,
  1830. 'enabled_protocols': ['CTP'],
  1831. 'ifindex': 10104,
  1832. 'mac': '00:1B:53:CB:63:04',
  1833. 'name': 'Gi 0/4',
  1834. 'oper_status': False,
  1835. 'subinterfaces': [{'admin_status': False,
  1836. 'enabled_afi': ['BRIDGE'],
  1837. 'enabled_protocols': [],
  1838. 'ifindex': 10104,
  1839. 'mac': '00:1B:53:CB:63:04',
  1840. 'name': 'Gi 0/4',
  1841. 'oper_status': False,
  1842. 'untagged_vlan': 28}],
  1843. 'type': 'physical'},
  1844. {'admin_status': False,
  1845. 'enabled_protocols': ['CTP'],
  1846. 'ifindex': 10105,
  1847. 'mac': '00:1B:53:CB:63:05',
  1848. 'name': 'Gi 0/5',
  1849. 'oper_status': False,
  1850. 'subinterfaces': [{'admin_status': False,
  1851. 'enabled_afi': ['BRIDGE'],
  1852. 'enabled_protocols': [],
  1853. 'ifindex': 10105,
  1854. 'mac': '00:1B:53:CB:63:05',
  1855. 'name': 'Gi 0/5',
  1856. 'oper_status': False,
  1857. 'untagged_vlan': 29}],
  1858. 'type': 'physical'},
  1859. {'admin_status': False,
  1860. 'enabled_protocols': ['CTP'],
  1861. 'ifindex': 10106,
  1862. 'mac': '00:1B:53:CB:63:06',
  1863. 'name': 'Gi 0/6',
  1864. 'oper_status': False,
  1865. 'subinterfaces': [{'admin_status': False,
  1866. 'enabled_afi': ['BRIDGE'],
  1867. 'enabled_protocols': [],
  1868. 'ifindex': 10106,
  1869. 'mac': '00:1B:53:CB:63:06',
  1870. 'name': 'Gi 0/6',
  1871. 'oper_status': False,
  1872. 'untagged_vlan': 30}],
  1873. 'type': 'physical'},
  1874. {'admin_status': False,
  1875. 'enabled_protocols': ['CTP'],
  1876. 'ifindex': 10107,
  1877. 'mac': '00:1B:53:CB:63:07',
  1878. 'name': 'Gi 0/7',
  1879. 'oper_status': False,
  1880. 'subinterfaces': [{'admin_status': False,
  1881. 'enabled_afi': ['BRIDGE'],
  1882. 'enabled_protocols': [],
  1883. 'ifindex': 10107,
  1884. 'mac': '00:1B:53:CB:63:07',
  1885. 'name': 'Gi 0/7',
  1886. 'oper_status': False,
  1887. 'untagged_vlan': 31}],
  1888. 'type': 'physical'},
  1889. {'admin_status': False,
  1890. 'enabled_protocols': ['CTP'],
  1891. 'ifindex': 10108,
  1892. 'mac': '00:1B:53:CB:63:08',
  1893. 'name': 'Gi 0/8',
  1894. 'oper_status': False,
  1895. 'subinterfaces': [{'admin_status': False,
  1896. 'enabled_afi': ['BRIDGE'],
  1897. 'enabled_protocols': [],
  1898. 'ifindex': 10108,
  1899. 'mac': '00:1B:53:CB:63:08',
  1900. 'name': 'Gi 0/8',
  1901. 'oper_status': False,
  1902. 'untagged_vlan': 32}],
  1903. 'type': 'physical'},
  1904. {'admin_status': False,
  1905. 'enabled_protocols': ['CTP'],
  1906. 'ifindex': 10109,
  1907. 'mac': '00:1B:53:CB:63:09',
  1908. 'name': 'Gi 0/9',
  1909. 'oper_status': False,
  1910. 'subinterfaces': [{'admin_status': False,
  1911. 'enabled_afi': ['BRIDGE'],
  1912. 'enabled_protocols': [],
  1913. 'ifindex': 10109,
  1914. 'mac': '00:1B:53:CB:63:09',
  1915. 'name': 'Gi 0/9',
  1916. 'oper_status': False,
  1917. 'untagged_vlan': 33}],
  1918. 'type': 'physical'},
  1919. {'admin_status': False,
  1920. 'enabled_protocols': ['CTP'],
  1921. 'ifindex': 10110,
  1922. 'mac': '00:1B:53:CB:63:0A',
  1923. 'name': 'Gi 0/10',
  1924. 'oper_status': False,
  1925. 'subinterfaces': [{'admin_status': False,
  1926. 'enabled_afi': ['BRIDGE'],
  1927. 'enabled_protocols': [],
  1928. 'ifindex': 10110,
  1929. 'mac': '00:1B:53:CB:63:0A',
  1930. 'name': 'Gi 0/10',
  1931. 'oper_status': False,
  1932. 'untagged_vlan': 34}],
  1933. 'type': 'physical'},
  1934. {'admin_status': True,
  1935. 'description': 'elcom-proletarka',
  1936. 'enabled_protocols': ['CTP'],
  1937. 'ifindex': 10111,
  1938. 'mac': '00:1B:53:CB:63:0B',
  1939. 'name': 'Gi 0/11',
  1940. 'oper_status': True,
  1941. 'subinterfaces': [{'admin_status': True,
  1942. 'description': 'elcom-proletarka',
  1943. 'enabled_afi': ['BRIDGE'],
  1944. 'enabled_protocols': [],
  1945. 'ifindex': 10111,
  1946. 'mac': '00:1B:53:CB:63:0B',
  1947. 'name': 'Gi 0/11',
  1948. 'oper_status': True,
  1949. 'untagged_vlan': 35}],
  1950. 'type': 'physical'},
  1951. {'admin_status': False,
  1952. 'enabled_protocols': ['CTP'],
  1953. 'ifindex': 10112,
  1954. 'mac': '00:1B:53:CB:63:0C',
  1955. 'name': 'Gi 0/12',
  1956. 'oper_status': False,
  1957. 'subinterfaces': [{'admin_status': False,
  1958. 'enabled_afi': ['BRIDGE'],
  1959. 'enabled_protocols': [],
  1960. 'ifindex': 10112,
  1961. 'mac': '00:1B:53:CB:63:0C',
  1962. 'name': 'Gi 0/12',
  1963. 'oper_status': False,
  1964. 'untagged_vlan': 36}],
  1965. 'type': 'physical'},
  1966. {'admin_status': False,
  1967. 'enabled_protocols': ['CTP'],
  1968. 'ifindex': 10113,
  1969. 'mac': '00:1B:53:CB:63:0D',
  1970. 'name': 'Gi 0/13',
  1971. 'oper_status': False,
  1972. 'subinterfaces': [{'admin_status': False,
  1973. 'enabled_afi': ['BRIDGE'],
  1974. 'enabled_protocols': [],
  1975. 'ifindex': 10113,
  1976. 'mac': '00:1B:53:CB:63:0D',
  1977. 'name': 'Gi 0/13',
  1978. 'oper_status': False,
  1979. 'tagged_vlans': [25,
  1980. 26,
  1981. 27,
  1982. 28,
  1983. 29,
  1984. 30,
  1985. 31,
  1986. 32,
  1987. 33,
  1988. 34,
  1989. 35,
  1990. 36,
  1991. 37,
  1992. 38,
  1993. 39,
  1994. 40,
  1995. 41,
  1996. 42,
  1997. 43,
  1998. 44,
  1999. 45,
  2000. 46,
  2001. 47,
  2002. 48,
  2003. 49,
  2004. 50,
  2005. 51,
  2006. 52,
  2007. 53,
  2008. 54,
  2009. 55,
  2010. 56,
  2011. 57,
  2012. 58,
  2013. 59,
  2014. 60,
  2015. 61,
  2016. 62,
  2017. 63,
  2018. 64,
  2019. 65,
  2020. 66,
  2021. 67,
  2022. 68,
  2023. 69,
  2024. 70,
  2025. 71,
  2026. 72,
  2027. 73,
  2028. 74,
  2029. 75,
  2030. 76,
  2031. 77,
  2032. 78,
  2033. 79,
  2034. 80,
  2035. 81,
  2036. 82,
  2037. 83,
  2038. 84,
  2039. 85,
  2040. 86,
  2041. 87,
  2042. 88,
  2043. 89,
  2044. 90,
  2045. 91,
  2046. 92,
  2047. 93,
  2048. 94,
  2049. 95,
  2050. 96,
  2051. 97,
  2052. 98,
  2053. 99,
  2054. 100,
  2055. 101,
  2056. 102,
  2057. 103,
  2058. 104,
  2059. 105,
  2060. 106,
  2061. 107,
  2062. 108,
  2063. 109,
  2064. 110,
  2065. 111,
  2066. 112,
  2067. 113,
  2068. 114,
  2069. 115,
  2070. 116,
  2071. 117,
  2072. 118,
  2073. 119,
  2074. 120,
  2075. 121,
  2076. 122,
  2077. 123,
  2078. 124,
  2079. 125,
  2080. 126,
  2081. 127,
  2082. 128,
  2083. 129,
  2084. 130,
  2085. 131,
  2086. 132,
  2087. 133,
  2088. 134,
  2089. 135,
  2090. 136,
  2091. 137,
  2092. 138,
  2093. 139,
  2094. 140,
  2095. 141,
  2096. 142,
  2097. 143,
  2098. 144,
  2099. 145,
  2100. 146,
  2101. 147,
  2102. 148,
  2103. 149,
  2104. 150,
  2105. 151,
  2106. 152,
  2107. 153,
  2108. 154,
  2109. 155,
  2110. 156,
  2111. 157,
  2112. 158,
  2113. 159,
  2114. 160,
  2115. 161,
  2116. 162,
  2117. 163,
  2118. 164,
  2119. 165,
  2120. 166,
  2121. 167,
  2122. 168,
  2123. 169,
  2124. 170,
  2125. 171,
  2126. 172,
  2127. 173,
  2128. 174,
  2129. 175,
  2130. 176,
  2131. 177,
  2132. 178,
  2133. 179,
  2134. 180,
  2135. 181,
  2136. 182,
  2137. 183,
  2138. 184,
  2139. 185,
  2140. 186,
  2141. 187,
  2142. 188,
  2143. 189,
  2144. 190,
  2145. 191,
  2146. 192,
  2147. 193,
  2148. 194,
  2149. 195,
  2150. 196,
  2151. 197,
  2152. 198,
  2153. 199,
  2154. 200,
  2155. 201,
  2156. 202,
  2157. 203,
  2158. 204,
  2159. 205,
  2160. 206,
  2161. 207,
  2162. 208,
  2163. 209,
  2164. 210,
  2165. 211,
  2166. 212,
  2167. 213,
  2168. 214,
  2169. 215,
  2170. 216,
  2171. 217,
  2172. 218,
  2173. 219,
  2174. 220,
  2175. 221,
  2176. 222,
  2177. 223,
  2178. 224,
  2179. 225,
  2180. 226,
  2181. 227,
  2182. 228,
  2183. 229,
  2184. 230,
  2185. 231,
  2186. 232,
  2187. 233,
  2188. 234,
  2189. 235,
  2190. 236,
  2191. 237,
  2192. 238,
  2193. 239,
  2194. 240,
  2195. 241,
  2196. 242,
  2197. 243,
  2198. 244,
  2199. 245,
  2200. 246,
  2201. 247,
  2202. 248,
  2203. 249,
  2204. 250,
  2205. 251,
  2206. 252,
  2207. 253,
  2208. 254,
  2209. 255,
  2210. 256,
  2211. 257,
  2212. 258,
  2213. 259,
  2214. 260,
  2215. 261,
  2216. 262,
  2217. 263,
  2218. 264,
  2219. 265,
  2220. 266,
  2221. 267,
  2222. 268,
  2223. 269,
  2224. 270,
  2225. 271,
  2226. 272,
  2227. 273,
  2228. 274,
  2229. 275,
  2230. 276,
  2231. 277,
  2232. 278,
  2233. 279,
  2234. 280,
  2235. 281,
  2236. 282,
  2237. 283,
  2238. 284,
  2239. 285,
  2240. 286,
  2241. 287,
  2242. 288,
  2243. 289,
  2244. 290,
  2245. 291,
  2246. 292,
  2247. 293,
  2248. 294,
  2249. 295,
  2250. 296,
  2251. 297,
  2252. 298,
  2253. 299,
  2254. 300,
  2255. 1007,
  2256. 1008,
  2257. 1011],
  2258. 'untagged_vlan': 1}],
  2259. 'type': 'physical'},
  2260. {'admin_status': False,
  2261. 'enabled_protocols': ['CTP'],
  2262. 'ifindex': 10114,
  2263. 'mac': '00:1B:53:CB:63:0E',
  2264. 'name': 'Gi 0/14',
  2265. 'oper_status': False,
  2266. 'subinterfaces': [{'admin_status': False,
  2267. 'enabled_afi': ['BRIDGE'],
  2268. 'enabled_protocols': [],
  2269. 'ifindex': 10114,
  2270. 'mac': '00:1B:53:CB:63:0E',
  2271. 'name': 'Gi 0/14',
  2272. 'oper_status': False,
  2273. 'tagged_vlans': [25,
  2274. 26,
  2275. 27,
  2276. 28,
  2277. 29,
  2278. 30,
  2279. 31,
  2280. 32,
  2281. 33,
  2282. 34,
  2283. 35,
  2284. 36,
  2285. 37,
  2286. 38,
  2287. 39,
  2288. 40,
  2289. 41,
  2290. 42,
  2291. 43,
  2292. 44,
  2293. 45,
  2294. 46,
  2295. 47,
  2296. 48,
  2297. 49,
  2298. 50,
  2299. 51,
  2300. 52,
  2301. 53,
  2302. 54,
  2303. 55,
  2304. 56,
  2305. 57,
  2306. 58,
  2307. 59,
  2308. 60,
  2309. 61,
  2310. 62,
  2311. 63,
  2312. 64,
  2313. 65,
  2314. 66,
  2315. 67,
  2316. 68,
  2317. 69,
  2318. 70,
  2319. 71,
  2320. 72,
  2321. 73,
  2322. 74,
  2323. 75,
  2324. 76,
  2325. 77,
  2326. 78,
  2327. 79,
  2328. 80,
  2329. 81,
  2330. 82,
  2331. 83,
  2332. 84,
  2333. 85,
  2334. 86,
  2335. 87,
  2336. 88,
  2337. 89,
  2338. 90,
  2339. 91,
  2340. 92,
  2341. 93,
  2342. 94,
  2343. 95,
  2344. 96,
  2345. 97,
  2346. 98,
  2347. 99,
  2348. 100,
  2349. 101,
  2350. 102,
  2351. 103,
  2352. 104,
  2353. 105,
  2354. 106,
  2355. 107,
  2356. 108,
  2357. 109,
  2358. 110,
  2359. 111,
  2360. 112,
  2361. 113,
  2362. 114,
  2363. 115,
  2364. 116,
  2365. 117,
  2366. 118,
  2367. 119,
  2368. 120,
  2369. 121,
  2370. 122,
  2371. 123,
  2372. 124,
  2373. 125,
  2374. 126,
  2375. 127,
  2376. 128,
  2377. 129,
  2378. 130,
  2379. 131,
  2380. 132,
  2381. 133,
  2382. 134,
  2383. 135,
  2384. 136,
  2385. 137,
  2386. 138,
  2387. 139,
  2388. 140,
  2389. 141,
  2390. 142,
  2391. 143,
  2392. 144,
  2393. 145,
  2394. 146,
  2395. 147,
  2396. 148,
  2397. 149,
  2398. 150,
  2399. 151,
  2400. 152,
  2401. 153,
  2402. 154,
  2403. 155,
  2404. 156,
  2405. 157,
  2406. 158,
  2407. 159,
  2408. 160,
  2409. 161,
  2410. 162,
  2411. 163,
  2412. 164,
  2413. 165,
  2414. 166,
  2415. 167,
  2416. 168,
  2417. 169,
  2418. 170,
  2419. 171,
  2420. 172,
  2421. 173,
  2422. 174,
  2423. 175,
  2424. 176,
  2425. 177,
  2426. 178,
  2427. 179,
  2428. 180,
  2429. 181,
  2430. 182,
  2431. 183,
  2432. 184,
  2433. 185,
  2434. 186,
  2435. 187,
  2436. 188,
  2437. 189,
  2438. 190,
  2439. 191,
  2440. 192,
  2441. 193,
  2442. 194,
  2443. 195,
  2444. 196,
  2445. 197,
  2446. 198,
  2447. 199,
  2448. 200,
  2449. 201,
  2450. 202,
  2451. 203,
  2452. 204,
  2453. 205,
  2454. 206,
  2455. 207,
  2456. 208,
  2457. 209,
  2458. 210,
  2459. 211,
  2460. 212,
  2461. 213,
  2462. 214,
  2463. 215,
  2464. 216,
  2465. 217,
  2466. 218,
  2467. 219,
  2468. 220,
  2469. 221,
  2470. 222,
  2471. 223,
  2472. 224,
  2473. 225,
  2474. 226,
  2475. 227,
  2476. 228,
  2477. 229,
  2478. 230,
  2479. 231,
  2480. 232,
  2481. 233,
  2482. 234,
  2483. 235,
  2484. 236,
  2485. 237,
  2486. 238,
  2487. 239,
  2488. 240,
  2489. 241,
  2490. 242,
  2491. 243,
  2492. 244,
  2493. 245,
  2494. 246,
  2495. 247,
  2496. 248,
  2497. 249,
  2498. 250,
  2499. 251,
  2500. 252,
  2501. 253,
  2502. 254,
  2503. 255,
  2504. 256,
  2505. 257,
  2506. 258,
  2507. 259,
  2508. 260,
  2509. 261,
  2510. 262,
  2511. 263,
  2512. 264,
  2513. 265,
  2514. 266,
  2515. 267,
  2516. 268,
  2517. 269,
  2518. 270,
  2519. 271,
  2520. 272,
  2521. 273,
  2522. 274,
  2523. 275,
  2524. 276,
  2525. 277,
  2526. 278,
  2527. 279,
  2528. 280,
  2529. 281,
  2530. 282,
  2531. 283,
  2532. 284,
  2533. 285,
  2534. 286,
  2535. 287,
  2536. 288,
  2537. 289,
  2538. 290,
  2539. 291,
  2540. 292,
  2541. 293,
  2542. 294,
  2543. 295,
  2544. 296,
  2545. 297,
  2546. 298,
  2547. 299,
  2548. 300,
  2549. 1007,
  2550. 1008,
  2551. 1011],
  2552. 'untagged_vlan': 1}],
  2553. 'type': 'physical'},
  2554. {'admin_status': False,
  2555. 'enabled_protocols': ['CTP'],
  2556. 'ifindex': 10115,
  2557. 'mac': '00:1B:53:CB:63:0F',
  2558. 'name': 'Gi 0/15',
  2559. 'oper_status': False,
  2560. 'subinterfaces': [{'admin_status': False,
  2561. 'enabled_afi': ['BRIDGE'],
  2562. 'enabled_protocols': [],
  2563. 'ifindex': 10115,
  2564. 'mac': '00:1B:53:CB:63:0F',
  2565. 'name': 'Gi 0/15',
  2566. 'oper_status': False,
  2567. 'tagged_vlans': [25,
  2568. 26,
  2569. 27,
  2570. 28,
  2571. 29,
  2572. 30,
  2573. 31,
  2574. 32,
  2575. 33,
  2576. 34,
  2577. 35,
  2578. 36,
  2579. 37,
  2580. 38,
  2581. 39,
  2582. 40,
  2583. 41,
  2584. 42,
  2585. 43,
  2586. 44,
  2587. 45,
  2588. 46,
  2589. 47,
  2590. 48,
  2591. 49,
  2592. 50,
  2593. 51,
  2594. 52,
  2595. 53,
  2596. 54,
  2597. 55,
  2598. 56,
  2599. 57,
  2600. 58,
  2601. 59,
  2602. 60,
  2603. 61,
  2604. 62,
  2605. 63,
  2606. 64,
  2607. 65,
  2608. 66,
  2609. 67,
  2610. 68,
  2611. 69,
  2612. 70,
  2613. 71,
  2614. 72,
  2615. 73,
  2616. 74,
  2617. 75,
  2618. 76,
  2619. 77,
  2620. 78,
  2621. 79,
  2622. 80,
  2623. 81,
  2624. 82,
  2625. 83,
  2626. 84,
  2627. 85,
  2628. 86,
  2629. 87,
  2630. 88,
  2631. 89,
  2632. 90,
  2633. 91,
  2634. 92,
  2635. 93,
  2636. 94,
  2637. 95,
  2638. 96,
  2639. 97,
  2640. 98,
  2641. 99,
  2642. 100,
  2643. 101,
  2644. 102,
  2645. 103,
  2646. 104,
  2647. 105,
  2648. 106,
  2649. 107,
  2650. 108,
  2651. 109,
  2652. 110,
  2653. 111,
  2654. 112,
  2655. 113,
  2656. 114,
  2657. 115,
  2658. 116,
  2659. 117,
  2660. 118,
  2661. 119,
  2662. 120,
  2663. 121,
  2664. 122,
  2665. 123,
  2666. 124,
  2667. 125,
  2668. 126,
  2669. 127,
  2670. 128,
  2671. 129,
  2672. 130,
  2673. 131,
  2674. 132,
  2675. 133,
  2676. 134,
  2677. 135,
  2678. 136,
  2679. 137,
  2680. 138,
  2681. 139,
  2682. 140,
  2683. 141,
  2684. 142,
  2685. 143,
  2686. 144,
  2687. 145,
  2688. 146,
  2689. 147,
  2690. 148,
  2691. 149,
  2692. 150,
  2693. 151,
  2694. 152,
  2695. 153,
  2696. 154,
  2697. 155,
  2698. 156,
  2699. 157,
  2700. 158,
  2701. 159,
  2702. 160,
  2703. 161,
  2704. 162,
  2705. 163,
  2706. 164,
  2707. 165,
  2708. 166,
  2709. 167,
  2710. 168,
  2711. 169,
  2712. 170,
  2713. 171,
  2714. 172,
  2715. 173,
  2716. 174,
  2717. 175,
  2718. 176,
  2719. 177,
  2720. 178,
  2721. 179,
  2722. 180,
  2723. 181,
  2724. 182,
  2725. 183,
  2726. 184,
  2727. 185,
  2728. 186,
  2729. 187,
  2730. 188,
  2731. 189,
  2732. 190,
  2733. 191,
  2734. 192,
  2735. 193,
  2736. 194,
  2737. 195,
  2738. 196,
  2739. 197,
  2740. 198,
  2741. 199,
  2742. 200,
  2743. 201,
  2744. 202,
  2745. 203,
  2746. 204,
  2747. 205,
  2748. 206,
  2749. 207,
  2750. 208,
  2751. 209,
  2752. 210,
  2753. 211,
  2754. 212,
  2755. 213,
  2756. 214,
  2757. 215,
  2758. 216,
  2759. 217,
  2760. 218,
  2761. 219,
  2762. 220,
  2763. 221,
  2764. 222,
  2765. 223,
  2766. 224,
  2767. 225,
  2768. 226,
  2769. 227,
  2770. 228,
  2771. 229,
  2772. 230,
  2773. 231,
  2774. 232,
  2775. 233,
  2776. 234,
  2777. 235,
  2778. 236,
  2779. 237,
  2780. 238,
  2781. 239,
  2782. 240,
  2783. 241,
  2784. 242,
  2785. 243,
  2786. 244,
  2787. 245,
  2788. 246,
  2789. 247,
  2790. 248,
  2791. 249,
  2792. 250,
  2793. 251,
  2794. 252,
  2795. 253,
  2796. 254,
  2797. 255,
  2798. 256,
  2799. 257,
  2800. 258,
  2801. 259,
  2802. 260,
  2803. 261,
  2804. 262,
  2805. 263,
  2806. 264,
  2807. 265,
  2808. 266,
  2809. 267,
  2810. 268,
  2811. 269,
  2812. 270,
  2813. 271,
  2814. 272,
  2815. 273,
  2816. 274,
  2817. 275,
  2818. 276,
  2819. 277,
  2820. 278,
  2821. 279,
  2822. 280,
  2823. 281,
  2824. 282,
  2825. 283,
  2826. 284,
  2827. 285,
  2828. 286,
  2829. 287,
  2830. 288,
  2831. 289,
  2832. 290,
  2833. 291,
  2834. 292,
  2835. 293,
  2836. 294,
  2837. 295,
  2838. 296,
  2839. 297,
  2840. 298,
  2841. 299,
  2842. 300,
  2843. 1007,
  2844. 1008,
  2845. 1011],
  2846. 'untagged_vlan': 1}],
  2847. 'type': 'physical'},
  2848. {'admin_status': True,
  2849. 'description': 'bb-proletarka',
  2850. 'enabled_protocols': ['CTP'],
  2851. 'ifindex': 10116,
  2852. 'mac': '00:1B:53:CB:63:10',
  2853. 'name': 'Gi 0/16',
  2854. 'oper_status': True,
  2855. 'subinterfaces': [{'admin_status': True,
  2856. 'description': 'bb-proletarka',
  2857. 'enabled_afi': ['BRIDGE'],
  2858. 'enabled_protocols': [],
  2859. 'ifindex': 10116,
  2860. 'mac': '00:1B:53:CB:63:10',
  2861. 'name': 'Gi 0/16',
  2862. 'oper_status': True,
  2863. 'tagged_vlans': [25,
  2864. 26,
  2865. 27,
  2866. 28,
  2867. 29,
  2868. 30,
  2869. 31,
  2870. 32,
  2871. 33,
  2872. 34,
  2873. 35,
  2874. 36,
  2875. 37,
  2876. 38,
  2877. 39,
  2878. 40,
  2879. 41,
  2880. 42,
  2881. 43,
  2882. 44,
  2883. 45,
  2884. 46,
  2885. 47,
  2886. 48,
  2887. 49,
  2888. 50,
  2889. 51,
  2890. 52,
  2891. 53,
  2892. 54,
  2893. 55,
  2894. 56,
  2895. 57,
  2896. 58,
  2897. 59,
  2898. 60,
  2899. 61,
  2900. 62,
  2901. 63,
  2902. 64,
  2903. 65,
  2904. 66,
  2905. 67,
  2906. 68,
  2907. 69,
  2908. 70,
  2909. 71,
  2910. 72,
  2911. 73,
  2912. 74,
  2913. 75,
  2914. 76,
  2915. 77,
  2916. 78,
  2917. 79,
  2918. 80,
  2919. 81,
  2920. 82,
  2921. 83,
  2922. 84,
  2923. 85,
  2924. 86,
  2925. 87,
  2926. 88,
  2927. 89,
  2928. 90,
  2929. 91,
  2930. 92,
  2931. 93,
  2932. 94,
  2933. 95,
  2934. 96,
  2935. 97,
  2936. 98,
  2937. 99,
  2938. 100,
  2939. 101,
  2940. 102,
  2941. 103,
  2942. 104,
  2943. 105,
  2944. 106,
  2945. 107,
  2946. 108,
  2947. 109,
  2948. 110,
  2949. 111,
  2950. 112,
  2951. 113,
  2952. 114,
  2953. 115,
  2954. 116,
  2955. 117,
  2956. 118,
  2957. 119,
  2958. 120,
  2959. 121,
  2960. 122,
  2961. 123,
  2962. 124,
  2963. 125,
  2964. 126,
  2965. 127,
  2966. 128,
  2967. 129,
  2968. 130,
  2969. 131,
  2970. 132,
  2971. 133,
  2972. 134,
  2973. 135,
  2974. 136,
  2975. 137,
  2976. 138,
  2977. 139,
  2978. 140,
  2979. 141,
  2980. 142,
  2981. 143,
  2982. 144,
  2983. 145,
  2984. 146,
  2985. 147,
  2986. 148,
  2987. 149,
  2988. 150,
  2989. 151,
  2990. 152,
  2991. 153,
  2992. 154,
  2993. 155,
  2994. 156,
  2995. 157,
  2996. 158,
  2997. 159,
  2998. 160,
  2999. 161,
  3000. 162,
  3001. 163,
  3002. 164,
  3003. 165,
  3004. 166,
  3005. 167,
  3006. 168,
  3007. 169,
  3008. 170,
  3009. 171,
  3010. 172,
  3011. 173,
  3012. 174,
  3013. 175,
  3014. 176,
  3015. 177,
  3016. 178,
  3017. 179,
  3018. 180,
  3019. 181,
  3020. 182,
  3021. 183,
  3022. 184,
  3023. 185,
  3024. 186,
  3025. 187,
  3026. 188,
  3027. 189,
  3028. 190,
  3029. 191,
  3030. 192,
  3031. 193,
  3032. 194,
  3033. 195,
  3034. 196,
  3035. 197,
  3036. 198,
  3037. 199,
  3038. 200,
  3039. 201,
  3040. 202,
  3041. 203,
  3042. 204,
  3043. 205,
  3044. 206,
  3045. 207,
  3046. 208,
  3047. 209,
  3048. 210,
  3049. 211,
  3050. 212,
  3051. 213,
  3052. 214,
  3053. 215,
  3054. 216,
  3055. 217,
  3056. 218,
  3057. 219,
  3058. 220,
  3059. 221,
  3060. 222,
  3061. 223,
  3062. 224,
  3063. 225,
  3064. 226,
  3065. 227,
  3066. 228,
  3067. 229,
  3068. 230,
  3069. 231,
  3070. 232,
  3071. 233,
  3072. 234,
  3073. 235,
  3074. 236,
  3075. 237,
  3076. 238,
  3077. 239,
  3078. 240,
  3079. 241,
  3080. 242,
  3081. 243,
  3082. 244,
  3083. 245,
  3084. 246,
  3085. 247,
  3086. 248,
  3087. 249,
  3088. 250,
  3089. 251,
  3090. 252,
  3091. 253,
  3092. 254,
  3093. 255,
  3094. 256,
  3095. 257,
  3096. 258,
  3097. 259,
  3098. 260,
  3099. 261,
  3100. 262,
  3101. 263,
  3102. 264,
  3103. 265,
  3104. 266,
  3105. 267,
  3106. 268,
  3107. 269,
  3108. 270,
  3109. 271,
  3110. 272,
  3111. 273,
  3112. 274,
  3113. 275,
  3114. 276,
  3115. 277,
  3116. 278,
  3117. 279,
  3118. 280,
  3119. 281,
  3120. 282,
  3121. 283,
  3122. 284,
  3123. 285,
  3124. 286,
  3125. 287,
  3126. 288,
  3127. 289,
  3128. 290,
  3129. 291,
  3130. 292,
  3131. 293,
  3132. 294,
  3133. 295,
  3134. 296,
  3135. 297,
  3136. 298,
  3137. 299,
  3138. 300,
  3139. 1007,
  3140. 1008,
  3141. 1011],
  3142. 'untagged_vlan': 1}],
  3143. 'type': 'physical'}],
  3144. 'type': 'ip'}]
  3145. forwarding_instance = None
  3146. fi =
  3147. {'forwarding_instance': 'default',
  3148. 'interfaces': [{'admin_status': False,
  3149. 'enabled_protocols': ['CTP'],
  3150. 'ifindex': 1,
  3151. 'mac': '00:1B:53:CB:63:40',
  3152. 'name': 'Vl 1',
  3153. 'oper_status': False,
  3154. 'subinterfaces': [{'admin_status': False,
  3155. 'enabled_afi': [],
  3156. 'enabled_protocols': [],
  3157. 'ifindex': 1,
  3158. 'mac': '00:1B:53:CB:63:40',
  3159. 'name': 'Vl 1',
  3160. 'oper_status': False,
  3161. 'vlan_ids': [1]}],
  3162. 'type': 'SVI'},
  3163. {'admin_status': True,
  3164. 'description': 'Management',
  3165. 'enabled_protocols': ['CTP'],
  3166. 'ifindex': 1007,
  3167. 'mac': '00:1B:53:CB:63:41',
  3168. 'name': 'Vl 1007',
  3169. 'oper_status': True,
  3170. 'subinterfaces': [{'admin_status': True,
  3171. 'description': 'Management',
  3172. 'enabled_afi': ['IPv4'],
  3173. 'enabled_protocols': [],
  3174. 'ifindex': 1007,
  3175. 'ipv4_addresses': ['192.168.82.129/28'],
  3176. 'mac': '00:1B:53:CB:63:41',
  3177. 'name': 'Vl 1007',
  3178. 'oper_status': True,
  3179. 'vlan_ids': [1007]}],
  3180. 'type': 'SVI'},
  3181. {'admin_status': False,
  3182. 'enabled_protocols': ['CTP'],
  3183. 'ifindex': 10101,
  3184. 'mac': '00:1B:53:CB:63:01',
  3185. 'name': 'Gi 0/1',
  3186. 'oper_status': False,
  3187. 'subinterfaces': [{'admin_status': False,
  3188. 'enabled_afi': ['BRIDGE'],
  3189. 'enabled_protocols': [],
  3190. 'ifindex': 10101,
  3191. 'mac': '00:1B:53:CB:63:01',
  3192. 'name': 'Gi 0/1',
  3193. 'oper_status': False,
  3194. 'untagged_vlan': 25}],
  3195. 'type': 'physical'},
  3196. {'admin_status': False,
  3197. 'enabled_protocols': ['CTP'],
  3198. 'ifindex': 10102,
  3199. 'mac': '00:1B:53:CB:63:02',
  3200. 'name': 'Gi 0/2',
  3201. 'oper_status': False,
  3202. 'subinterfaces': [{'admin_status': False,
  3203. 'enabled_afi': ['BRIDGE'],
  3204. 'enabled_protocols': [],
  3205. 'ifindex': 10102,
  3206. 'mac': '00:1B:53:CB:63:02',
  3207. 'name': 'Gi 0/2',
  3208. 'oper_status': False,
  3209. 'untagged_vlan': 26}],
  3210. 'type': 'physical'},
  3211. {'admin_status': False,
  3212. 'enabled_protocols': ['CTP'],
  3213. 'ifindex': 10103,
  3214. 'mac': '00:1B:53:CB:63:03',
  3215. 'name': 'Gi 0/3',
  3216. 'oper_status': False,
  3217. 'subinterfaces': [{'admin_status': False,
  3218. 'enabled_afi': ['BRIDGE'],
  3219. 'enabled_protocols': [],
  3220. 'ifindex': 10103,
  3221. 'mac': '00:1B:53:CB:63:03',
  3222. 'name': 'Gi 0/3',
  3223. 'oper_status': False,
  3224. 'untagged_vlan': 27}],
  3225. 'type': 'physical'},
  3226. {'admin_status': False,
  3227. 'enabled_protocols': ['CTP'],
  3228. 'ifindex': 10104,
  3229. 'mac': '00:1B:53:CB:63:04',
  3230. 'name': 'Gi 0/4',
  3231. 'oper_status': False,
  3232. 'subinterfaces': [{'admin_status': False,
  3233. 'enabled_afi': ['BRIDGE'],
  3234. 'enabled_protocols': [],
  3235. 'ifindex': 10104,
  3236. 'mac': '00:1B:53:CB:63:04',
  3237. 'name': 'Gi 0/4',
  3238. 'oper_status': False,
  3239. 'untagged_vlan': 28}],
  3240. 'type': 'physical'},
  3241. {'admin_status': False,
  3242. 'enabled_protocols': ['CTP'],
  3243. 'ifindex': 10105,
  3244. 'mac': '00:1B:53:CB:63:05',
  3245. 'name': 'Gi 0/5',
  3246. 'oper_status': False,
  3247. 'subinterfaces': [{'admin_status': False,
  3248. 'enabled_afi': ['BRIDGE'],
  3249. 'enabled_protocols': [],
  3250. 'ifindex': 10105,
  3251. 'mac': '00:1B:53:CB:63:05',
  3252. 'name': 'Gi 0/5',
  3253. 'oper_status': False,
  3254. 'untagged_vlan': 29}],
  3255. 'type': 'physical'},
  3256. {'admin_status': False,
  3257. 'enabled_protocols': ['CTP'],
  3258. 'ifindex': 10106,
  3259. 'mac': '00:1B:53:CB:63:06',
  3260. 'name': 'Gi 0/6',
  3261. 'oper_status': False,
  3262. 'subinterfaces': [{'admin_status': False,
  3263. 'enabled_afi': ['BRIDGE'],
  3264. 'enabled_protocols': [],
  3265. 'ifindex': 10106,
  3266. 'mac': '00:1B:53:CB:63:06',
  3267. 'name': 'Gi 0/6',
  3268. 'oper_status': False,
  3269. 'untagged_vlan': 30}],
  3270. 'type': 'physical'},
  3271. {'admin_status': False,
  3272. 'enabled_protocols': ['CTP'],
  3273. 'ifindex': 10107,
  3274. 'mac': '00:1B:53:CB:63:07',
  3275. 'name': 'Gi 0/7',
  3276. 'oper_status': False,
  3277. 'subinterfaces': [{'admin_status': False,
  3278. 'enabled_afi': ['BRIDGE'],
  3279. 'enabled_protocols': [],
  3280. 'ifindex': 10107,
  3281. 'mac': '00:1B:53:CB:63:07',
  3282. 'name': 'Gi 0/7',
  3283. 'oper_status': False,
  3284. 'untagged_vlan': 31}],
  3285. 'type': 'physical'},
  3286. {'admin_status': False,
  3287. 'enabled_protocols': ['CTP'],
  3288. 'ifindex': 10108,
  3289. 'mac': '00:1B:53:CB:63:08',
  3290. 'name': 'Gi 0/8',
  3291. 'oper_status': False,
  3292. 'subinterfaces': [{'admin_status': False,
  3293. 'enabled_afi': ['BRIDGE'],
  3294. 'enabled_protocols': [],
  3295. 'ifindex': 10108,
  3296. 'mac': '00:1B:53:CB:63:08',
  3297. 'name': 'Gi 0/8',
  3298. 'oper_status': False,
  3299. 'untagged_vlan': 32}],
  3300. 'type': 'physical'},
  3301. {'admin_status': False,
  3302. 'enabled_protocols': ['CTP'],
  3303. 'ifindex': 10109,
  3304. 'mac': '00:1B:53:CB:63:09',
  3305. 'name': 'Gi 0/9',
  3306. 'oper_status': False,
  3307. 'subinterfaces': [{'admin_status': False,
  3308. 'enabled_afi': ['BRIDGE'],
  3309. 'enabled_protocols': [],
  3310. 'ifindex': 10109,
  3311. 'mac': '00:1B:53:CB:63:09',
  3312. 'name': 'Gi 0/9',
  3313. 'oper_status': False,
  3314. 'untagged_vlan': 33}],
  3315. 'type': 'physical'},
  3316. {'admin_status': False,
  3317. 'enabled_protocols': ['CTP'],
  3318. 'ifindex': 10110,
  3319. 'mac': '00:1B:53:CB:63:0A',
  3320. 'name': 'Gi 0/10',
  3321. 'oper_status': False,
  3322. 'subinterfaces': [{'admin_status': False,
  3323. 'enabled_afi': ['BRIDGE'],
  3324. 'enabled_protocols': [],
  3325. 'ifindex': 10110,
  3326. 'mac': '00:1B:53:CB:63:0A',
  3327. 'name': 'Gi 0/10',
  3328. 'oper_status': False,
  3329. 'untagged_vlan': 34}],
  3330. 'type': 'physical'},
  3331. {'admin_status': True,
  3332. 'description': 'elcom-proletarka',
  3333. 'enabled_protocols': ['CTP'],
  3334. 'ifindex': 10111,
  3335. 'mac': '00:1B:53:CB:63:0B',
  3336. 'name': 'Gi 0/11',
  3337. 'oper_status': True,
  3338. 'subinterfaces': [{'admin_status': True,
  3339. 'description': 'elcom-proletarka',
  3340. 'enabled_afi': ['BRIDGE'],
  3341. 'enabled_protocols': [],
  3342. 'ifindex': 10111,
  3343. 'mac': '00:1B:53:CB:63:0B',
  3344. 'name': 'Gi 0/11',
  3345. 'oper_status': True,
  3346. 'untagged_vlan': 35}],
  3347. 'type': 'physical'},
  3348. {'admin_status': False,
  3349. 'enabled_protocols': ['CTP'],
  3350. 'ifindex': 10112,
  3351. 'mac': '00:1B:53:CB:63:0C',
  3352. 'name': 'Gi 0/12',
  3353. 'oper_status': False,
  3354. 'subinterfaces': [{'admin_status': False,
  3355. 'enabled_afi': ['BRIDGE'],
  3356. 'enabled_protocols': [],
  3357. 'ifindex': 10112,
  3358. 'mac': '00:1B:53:CB:63:0C',
  3359. 'name': 'Gi 0/12',
  3360. 'oper_status': False,
  3361. 'untagged_vlan': 36}],
  3362. 'type': 'physical'},
  3363. {'admin_status': False,
  3364. 'enabled_protocols': ['CTP'],
  3365. 'ifindex': 10113,
  3366. 'mac': '00:1B:53:CB:63:0D',
  3367. 'name': 'Gi 0/13',
  3368. 'oper_status': False,
  3369. 'subinterfaces': [{'admin_status': False,
  3370. 'enabled_afi': ['BRIDGE'],
  3371. 'enabled_protocols': [],
  3372. 'ifindex': 10113,
  3373. 'mac': '00:1B:53:CB:63:0D',
  3374. 'name': 'Gi 0/13',
  3375. 'oper_status': False,
  3376. 'tagged_vlans': [25,
  3377. 26,
  3378. 27,
  3379. 28,
  3380. 29,
  3381. 30,
  3382. 31,
  3383. 32,
  3384. 33,
  3385. 34,
  3386. 35,
  3387. 36,
  3388. 37,
  3389. 38,
  3390. 39,
  3391. 40,
  3392. 41,
  3393. 42,
  3394. 43,
  3395. 44,
  3396. 45,
  3397. 46,
  3398. 47,
  3399. 48,
  3400. 49,
  3401. 50,
  3402. 51,
  3403. 52,
  3404. 53,
  3405. 54,
  3406. 55,
  3407. 56,
  3408. 57,
  3409. 58,
  3410. 59,
  3411. 60,
  3412. 61,
  3413. 62,
  3414. 63,
  3415. 64,
  3416. 65,
  3417. 66,
  3418. 67,
  3419. 68,
  3420. 69,
  3421. 70,
  3422. 71,
  3423. 72,
  3424. 73,
  3425. 74,
  3426. 75,
  3427. 76,
  3428. 77,
  3429. 78,
  3430. 79,
  3431. 80,
  3432. 81,
  3433. 82,
  3434. 83,
  3435. 84,
  3436. 85,
  3437. 86,
  3438. 87,
  3439. 88,
  3440. 89,
  3441. 90,
  3442. 91,
  3443. 92,
  3444. 93,
  3445. 94,
  3446. 95,
  3447. 96,
  3448. 97,
  3449. 98,
  3450. 99,
  3451. 100,
  3452. 101,
  3453. 102,
  3454. 103,
  3455. 104,
  3456. 105,
  3457. 106,
  3458. 107,
  3459. 108,
  3460. 109,
  3461. 110,
  3462. 111,
  3463. 112,
  3464. 113,
  3465. 114,
  3466. 115,
  3467. 116,
  3468. 117,
  3469. 118,
  3470. 119,
  3471. 120,
  3472. 121,
  3473. 122,
  3474. 123,
  3475. 124,
  3476. 125,
  3477. 126,
  3478. 127,
  3479. 128,
  3480. 129,
  3481. 130,
  3482. 131,
  3483. 132,
  3484. 133,
  3485. 134,
  3486. 135,
  3487. 136,
  3488. 137,
  3489. 138,
  3490. 139,
  3491. 140,
  3492. 141,
  3493. 142,
  3494. 143,
  3495. 144,
  3496. 145,
  3497. 146,
  3498. 147,
  3499. 148,
  3500. 149,
  3501. 150,
  3502. 151,
  3503. 152,
  3504. 153,
  3505. 154,
  3506. 155,
  3507. 156,
  3508. 157,
  3509. 158,
  3510. 159,
  3511. 160,
  3512. 161,
  3513. 162,
  3514. 163,
  3515. 164,
  3516. 165,
  3517. 166,
  3518. 167,
  3519. 168,
  3520. 169,
  3521. 170,
  3522. 171,
  3523. 172,
  3524. 173,
  3525. 174,
  3526. 175,
  3527. 176,
  3528. 177,
  3529. 178,
  3530. 179,
  3531. 180,
  3532. 181,
  3533. 182,
  3534. 183,
  3535. 184,
  3536. 185,
  3537. 186,
  3538. 187,
  3539. 188,
  3540. 189,
  3541. 190,
  3542. 191,
  3543. 192,
  3544. 193,
  3545. 194,
  3546. 195,
  3547. 196,
  3548. 197,
  3549. 198,
  3550. 199,
  3551. 200,
  3552. 201,
  3553. 202,
  3554. 203,
  3555. 204,
  3556. 205,
  3557. 206,
  3558. 207,
  3559. 208,
  3560. 209,
  3561. 210,
  3562. 211,
  3563. 212,
  3564. 213,
  3565. 214,
  3566. 215,
  3567. 216,
  3568. 217,
  3569. 218,
  3570. 219,
  3571. 220,
  3572. 221,
  3573. 222,
  3574. 223,
  3575. 224,
  3576. 225,
  3577. 226,
  3578. 227,
  3579. 228,
  3580. 229,
  3581. 230,
  3582. 231,
  3583. 232,
  3584. 233,
  3585. 234,
  3586. 235,
  3587. 236,
  3588. 237,
  3589. 238,
  3590. 239,
  3591. 240,
  3592. 241,
  3593. 242,
  3594. 243,
  3595. 244,
  3596. 245,
  3597. 246,
  3598. 247,
  3599. 248,
  3600. 249,
  3601. 250,
  3602. 251,
  3603. 252,
  3604. 253,
  3605. 254,
  3606. 255,
  3607. 256,
  3608. 257,
  3609. 258,
  3610. 259,
  3611. 260,
  3612. 261,
  3613. 262,
  3614. 263,
  3615. 264,
  3616. 265,
  3617. 266,
  3618. 267,
  3619. 268,
  3620. 269,
  3621. 270,
  3622. 271,
  3623. 272,
  3624. 273,
  3625. 274,
  3626. 275,
  3627. 276,
  3628. 277,
  3629. 278,
  3630. 279,
  3631. 280,
  3632. 281,
  3633. 282,
  3634. 283,
  3635. 284,
  3636. 285,
  3637. 286,
  3638. 287,
  3639. 288,
  3640. 289,
  3641. 290,
  3642. 291,
  3643. 292,
  3644. 293,
  3645. 294,
  3646. 295,
  3647. 296,
  3648. 297,
  3649. 298,
  3650. 299,
  3651. 300,
  3652. 1007,
  3653. 1008,
  3654. 1011],
  3655. 'untagged_vlan': 1}],
  3656. 'type': 'physical'},
  3657. {'admin_status': False,
  3658. 'enabled_protocols': ['CTP'],
  3659. 'ifindex': 10114,
  3660. 'mac': '00:1B:53:CB:63:0E',
  3661. 'name': 'Gi 0/14',
  3662. 'oper_status': False,
  3663. 'subinterfaces': [{'admin_status': False,
  3664. 'enabled_afi': ['BRIDGE'],
  3665. 'enabled_protocols': [],
  3666. 'ifindex': 10114,
  3667. 'mac': '00:1B:53:CB:63:0E',
  3668. 'name': 'Gi 0/14',
  3669. 'oper_status': False,
  3670. 'tagged_vlans': [25,
  3671. 26,
  3672. 27,
  3673. 28,
  3674. 29,
  3675. 30,
  3676. 31,
  3677. 32,
  3678. 33,
  3679. 34,
  3680. 35,
  3681. 36,
  3682. 37,
  3683. 38,
  3684. 39,
  3685. 40,
  3686. 41,
  3687. 42,
  3688. 43,
  3689. 44,
  3690. 45,
  3691. 46,
  3692. 47,
  3693. 48,
  3694. 49,
  3695. 50,
  3696. 51,
  3697. 52,
  3698. 53,
  3699. 54,
  3700. 55,
  3701. 56,
  3702. 57,
  3703. 58,
  3704. 59,
  3705. 60,
  3706. 61,
  3707. 62,
  3708. 63,
  3709. 64,
  3710. 65,
  3711. 66,
  3712. 67,
  3713. 68,
  3714. 69,
  3715. 70,
  3716. 71,
  3717. 72,
  3718. 73,
  3719. 74,
  3720. 75,
  3721. 76,
  3722. 77,
  3723. 78,
  3724. 79,
  3725. 80,
  3726. 81,
  3727. 82,
  3728. 83,
  3729. 84,
  3730. 85,
  3731. 86,
  3732. 87,
  3733. 88,
  3734. 89,
  3735. 90,
  3736. 91,
  3737. 92,
  3738. 93,
  3739. 94,
  3740. 95,
  3741. 96,
  3742. 97,
  3743. 98,
  3744. 99,
  3745. 100,
  3746. 101,
  3747. 102,
  3748. 103,
  3749. 104,
  3750. 105,
  3751. 106,
  3752. 107,
  3753. 108,
  3754. 109,
  3755. 110,
  3756. 111,
  3757. 112,
  3758. 113,
  3759. 114,
  3760. 115,
  3761. 116,
  3762. 117,
  3763. 118,
  3764. 119,
  3765. 120,
  3766. 121,
  3767. 122,
  3768. 123,
  3769. 124,
  3770. 125,
  3771. 126,
  3772. 127,
  3773. 128,
  3774. 129,
  3775. 130,
  3776. 131,
  3777. 132,
  3778. 133,
  3779. 134,
  3780. 135,
  3781. 136,
  3782. 137,
  3783. 138,
  3784. 139,
  3785. 140,
  3786. 141,
  3787. 142,
  3788. 143,
  3789. 144,
  3790. 145,
  3791. 146,
  3792. 147,
  3793. 148,
  3794. 149,
  3795. 150,
  3796. 151,
  3797. 152,
  3798. 153,
  3799. 154,
  3800. 155,
  3801. 156,
  3802. 157,
  3803. 158,
  3804. 159,
  3805. 160,
  3806. 161,
  3807. 162,
  3808. 163,
  3809. 164,
  3810. 165,
  3811. 166,
  3812. 167,
  3813. 168,
  3814. 169,
  3815. 170,
  3816. 171,
  3817. 172,
  3818. 173,
  3819. 174,
  3820. 175,
  3821. 176,
  3822. 177,
  3823. 178,
  3824. 179,
  3825. 180,
  3826. 181,
  3827. 182,
  3828. 183,
  3829. 184,
  3830. 185,
  3831. 186,
  3832. 187,
  3833. 188,
  3834. 189,
  3835. 190,
  3836. 191,
  3837. 192,
  3838. 193,
  3839. 194,
  3840. 195,
  3841. 196,
  3842. 197,
  3843. 198,
  3844. 199,
  3845. 200,
  3846. 201,
  3847. 202,
  3848. 203,
  3849. 204,
  3850. 205,
  3851. 206,
  3852. 207,
  3853. 208,
  3854. 209,
  3855. 210,
  3856. 211,
  3857. 212,
  3858. 213,
  3859. 214,
  3860. 215,
  3861. 216,
  3862. 217,
  3863. 218,
  3864. 219,
  3865. 220,
  3866. 221,
  3867. 222,
  3868. 223,
  3869. 224,
  3870. 225,
  3871. 226,
  3872. 227,
  3873. 228,
  3874. 229,
  3875. 230,
  3876. 231,
  3877. 232,
  3878. 233,
  3879. 234,
  3880. 235,
  3881. 236,
  3882. 237,
  3883. 238,
  3884. 239,
  3885. 240,
  3886. 241,
  3887. 242,
  3888. 243,
  3889. 244,
  3890. 245,
  3891. 246,
  3892. 247,
  3893. 248,
  3894. 249,
  3895. 250,
  3896. 251,
  3897. 252,
  3898. 253,
  3899. 254,
  3900. 255,
  3901. 256,
  3902. 257,
  3903. 258,
  3904. 259,
  3905. 260,
  3906. 261,
  3907. 262,
  3908. 263,
  3909. 264,
  3910. 265,
  3911. 266,
  3912. 267,
  3913. 268,
  3914. 269,
  3915. 270,
  3916. 271,
  3917. 272,
  3918. 273,
  3919. 274,
  3920. 275,
  3921. 276,
  3922. 277,
  3923. 278,
  3924. 279,
  3925. 280,
  3926. 281,
  3927. 282,
  3928. 283,
  3929. 284,
  3930. 285,
  3931. 286,
  3932. 287,
  3933. 288,
  3934. 289,
  3935. 290,
  3936. 291,
  3937. 292,
  3938. 293,
  3939. 294,
  3940. 295,
  3941. 296,
  3942. 297,
  3943. 298,
  3944. 299,
  3945. 300,
  3946. 1007,
  3947. 1008,
  3948. 1011],
  3949. 'untagged_vlan': 1}],
  3950. 'type': 'physical'},
  3951. {'admin_status': False,
  3952. 'enabled_protocols': ['CTP'],
  3953. 'ifindex': 10115,
  3954. 'mac': '00:1B:53:CB:63:0F',
  3955. 'name': 'Gi 0/15',
  3956. 'oper_status': False,
  3957. 'subinterfaces': [{'admin_status': False,
  3958. 'enabled_afi': ['BRIDGE'],
  3959. 'enabled_protocols': [],
  3960. 'ifindex': 10115,
  3961. 'mac': '00:1B:53:CB:63:0F',
  3962. 'name': 'Gi 0/15',
  3963. 'oper_status': False,
  3964. 'tagged_vlans': [25,
  3965. 26,
  3966. 27,
  3967. 28,
  3968. 29,
  3969. 30,
  3970. 31,
  3971. 32,
  3972. 33,
  3973. 34,
  3974. 35,
  3975. 36,
  3976. 37,
  3977. 38,
  3978. 39,
  3979. 40,
  3980. 41,
  3981. 42,
  3982. 43,
  3983. 44,
  3984. 45,
  3985. 46,
  3986. 47,
  3987. 48,
  3988. 49,
  3989. 50,
  3990. 51,
  3991. 52,
  3992. 53,
  3993. 54,
  3994. 55,
  3995. 56,
  3996. 57,
  3997. 58,
  3998. 59,
  3999. 60,
  4000. 61,
  4001. 62,
  4002. 63,
  4003. 64,
  4004. 65,
  4005. 66,
  4006. 67,
  4007. 68,
  4008. 69,
  4009. 70,
  4010. 71,
  4011. 72,
  4012. 73,
  4013. 74,
  4014. 75,
  4015. 76,
  4016. 77,
  4017. 78,
  4018. 79,
  4019. 80,
  4020. 81,
  4021. 82,
  4022. 83,
  4023. 84,
  4024. 85,
  4025. 86,
  4026. 87,
  4027. 88,
  4028. 89,
  4029. 90,
  4030. 91,
  4031. 92,
  4032. 93,
  4033. 94,
  4034. 95,
  4035. 96,
  4036. 97,
  4037. 98,
  4038. 99,
  4039. 100,
  4040. 101,
  4041. 102,
  4042. 103,
  4043. 104,
  4044. 105,
  4045. 106,
  4046. 107,
  4047. 108,
  4048. 109,
  4049. 110,
  4050. 111,
  4051. 112,
  4052. 113,
  4053. 114,
  4054. 115,
  4055. 116,
  4056. 117,
  4057. 118,
  4058. 119,
  4059. 120,
  4060. 121,
  4061. 122,
  4062. 123,
  4063. 124,
  4064. 125,
  4065. 126,
  4066. 127,
  4067. 128,
  4068. 129,
  4069. 130,
  4070. 131,
  4071. 132,
  4072. 133,
  4073. 134,
  4074. 135,
  4075. 136,
  4076. 137,
  4077. 138,
  4078. 139,
  4079. 140,
  4080. 141,
  4081. 142,
  4082. 143,
  4083. 144,
  4084. 145,
  4085. 146,
  4086. 147,
  4087. 148,
  4088. 149,
  4089. 150,
  4090. 151,
  4091. 152,
  4092. 153,
  4093. 154,
  4094. 155,
  4095. 156,
  4096. 157,
  4097. 158,
  4098. 159,
  4099. 160,
  4100. 161,
  4101. 162,
  4102. 163,
  4103. 164,
  4104. 165,
  4105. 166,
  4106. 167,
  4107. 168,
  4108. 169,
  4109. 170,
  4110. 171,
  4111. 172,
  4112. 173,
  4113. 174,
  4114. 175,
  4115. 176,
  4116. 177,
  4117. 178,
  4118. 179,
  4119. 180,
  4120. 181,
  4121. 182,
  4122. 183,
  4123. 184,
  4124. 185,
  4125. 186,
  4126. 187,
  4127. 188,
  4128. 189,
  4129. 190,
  4130. 191,
  4131. 192,
  4132. 193,
  4133. 194,
  4134. 195,
  4135. 196,
  4136. 197,
  4137. 198,
  4138. 199,
  4139. 200,
  4140. 201,
  4141. 202,
  4142. 203,
  4143. 204,
  4144. 205,
  4145. 206,
  4146. 207,
  4147. 208,
  4148. 209,
  4149. 210,
  4150. 211,
  4151. 212,
  4152. 213,
  4153. 214,
  4154. 215,
  4155. 216,
  4156. 217,
  4157. 218,
  4158. 219,
  4159. 220,
  4160. 221,
  4161. 222,
  4162. 223,
  4163. 224,
  4164. 225,
  4165. 226,
  4166. 227,
  4167. 228,
  4168. 229,
  4169. 230,
  4170. 231,
  4171. 232,
  4172. 233,
  4173. 234,
  4174. 235,
  4175. 236,
  4176. 237,
  4177. 238,
  4178. 239,
  4179. 240,
  4180. 241,
  4181. 242,
  4182. 243,
  4183. 244,
  4184. 245,
  4185. 246,
  4186. 247,
  4187. 248,
  4188. 249,
  4189. 250,
  4190. 251,
  4191. 252,
  4192. 253,
  4193. 254,
  4194. 255,
  4195. 256,
  4196. 257,
  4197. 258,
  4198. 259,
  4199. 260,
  4200. 261,
  4201. 262,
  4202. 263,
  4203. 264,
  4204. 265,
  4205. 266,
  4206. 267,
  4207. 268,
  4208. 269,
  4209. 270,
  4210. 271,
  4211. 272,
  4212. 273,
  4213. 274,
  4214. 275,
  4215. 276,
  4216. 277,
  4217. 278,
  4218. 279,
  4219. 280,
  4220. 281,
  4221. 282,
  4222. 283,
  4223. 284,
  4224. 285,
  4225. 286,
  4226. 287,
  4227. 288,
  4228. 289,
  4229. 290,
  4230. 291,
  4231. 292,
  4232. 293,
  4233. 294,
  4234. 295,
  4235. 296,
  4236. 297,
  4237. 298,
  4238. 299,
  4239. 300,
  4240. 1007,
  4241. 1008,
  4242. 1011],
  4243. 'untagged_vlan': 1}],
  4244. 'type': 'physical'},
  4245. {'admin_status': True,
  4246. 'description': 'bb-proletarka',
  4247. 'enabled_protocols': ['CTP'],
  4248. 'ifindex': 10116,
  4249. 'mac': '00:1B:53:CB:63:10',
  4250. 'name': 'Gi 0/16',
  4251. 'oper_status': True,
  4252. 'subinterfaces': [{'admin_status': True,
  4253. 'description': 'bb-proletarka',
  4254. 'enabled_afi': ['BRIDGE'],
  4255. 'enabled_protocols': [],
  4256. 'ifindex': 10116,
  4257. 'mac': '00:1B:53:CB:63:10',
  4258. 'name': 'Gi 0/16',
  4259. 'oper_status': True,
  4260. 'tagged_vlans': [25,
  4261. 26,
  4262. 27,
  4263. 28,
  4264. 29,
  4265. 30,
  4266. 31,
  4267. 32,
  4268. 33,
  4269. 34,
  4270. 35,
  4271. 36,
  4272. 37,
  4273. 38,
  4274. 39,
  4275. 40,
  4276. 41,
  4277. 42,
  4278. 43,
  4279. 44,
  4280. 45,
  4281. 46,
  4282. 47,
  4283. 48,
  4284. 49,
  4285. 50,
  4286. 51,
  4287. 52,
  4288. 53,
  4289. 54,
  4290. 55,
  4291. 56,
  4292. 57,
  4293. 58,
  4294. 59,
  4295. 60,
  4296. 61,
  4297. 62,
  4298. 63,
  4299. 64,
  4300. 65,
  4301. 66,
  4302. 67,
  4303. 68,
  4304. 69,
  4305. 70,
  4306. 71,
  4307. 72,
  4308. 73,
  4309. 74,
  4310. 75,
  4311. 76,
  4312. 77,
  4313. 78,
  4314. 79,
  4315. 80,
  4316. 81,
  4317. 82,
  4318. 83,
  4319. 84,
  4320. 85,
  4321. 86,
  4322. 87,
  4323. 88,
  4324. 89,
  4325. 90,
  4326. 91,
  4327. 92,
  4328. 93,
  4329. 94,
  4330. 95,
  4331. 96,
  4332. 97,
  4333. 98,
  4334. 99,
  4335. 100,
  4336. 101,
  4337. 102,
  4338. 103,
  4339. 104,
  4340. 105,
  4341. 106,
  4342. 107,
  4343. 108,
  4344. 109,
  4345. 110,
  4346. 111,
  4347. 112,
  4348. 113,
  4349. 114,
  4350. 115,
  4351. 116,
  4352. 117,
  4353. 118,
  4354. 119,
  4355. 120,
  4356. 121,
  4357. 122,
  4358. 123,
  4359. 124,
  4360. 125,
  4361. 126,
  4362. 127,
  4363. 128,
  4364. 129,
  4365. 130,
  4366. 131,
  4367. 132,
  4368. 133,
  4369. 134,
  4370. 135,
  4371. 136,
  4372. 137,
  4373. 138,
  4374. 139,
  4375. 140,
  4376. 141,
  4377. 142,
  4378. 143,
  4379. 144,
  4380. 145,
  4381. 146,
  4382. 147,
  4383. 148,
  4384. 149,
  4385. 150,
  4386. 151,
  4387. 152,
  4388. 153,
  4389. 154,
  4390. 155,
  4391. 156,
  4392. 157,
  4393. 158,
  4394. 159,
  4395. 160,
  4396. 161,
  4397. 162,
  4398. 163,
  4399. 164,
  4400. 165,
  4401. 166,
  4402. 167,
  4403. 168,
  4404. 169,
  4405. 170,
  4406. 171,
  4407. 172,
  4408. 173,
  4409. 174,
  4410. 175,
  4411. 176,
  4412. 177,
  4413. 178,
  4414. 179,
  4415. 180,
  4416. 181,
  4417. 182,
  4418. 183,
  4419. 184,
  4420. 185,
  4421. 186,
  4422. 187,
  4423. 188,
  4424. 189,
  4425. 190,
  4426. 191,
  4427. 192,
  4428. 193,
  4429. 194,
  4430. 195,
  4431. 196,
  4432. 197,
  4433. 198,
  4434. 199,
  4435. 200,
  4436. 201,
  4437. 202,
  4438. 203,
  4439. 204,
  4440. 205,
  4441. 206,
  4442. 207,
  4443. 208,
  4444. 209,
  4445. 210,
  4446. 211,
  4447. 212,
  4448. 213,
  4449. 214,
  4450. 215,
  4451. 216,
  4452. 217,
  4453. 218,
  4454. 219,
  4455. 220,
  4456. 221,
  4457. 222,
  4458. 223,
  4459. 224,
  4460. 225,
  4461. 226,
  4462. 227,
  4463. 228,
  4464. 229,
  4465. 230,
  4466. 231,
  4467. 232,
  4468. 233,
  4469. 234,
  4470. 235,
  4471. 236,
  4472. 237,
  4473. 238,
  4474. 239,
  4475. 240,
  4476. 241,
  4477. 242,
  4478. 243,
  4479. 244,
  4480. 245,
  4481. 246,
  4482. 247,
  4483. 248,
  4484. 249,
  4485. 250,
  4486. 251,
  4487. 252,
  4488. 253,
  4489. 254,
  4490. 255,
  4491. 256,
  4492. 257,
  4493. 258,
  4494. 259,
  4495. 260,
  4496. 261,
  4497. 262,
  4498. 263,
  4499. 264,
  4500. 265,
  4501. 266,
  4502. 267,
  4503. 268,
  4504. 269,
  4505. 270,
  4506. 271,
  4507. 272,
  4508. 273,
  4509. 274,
  4510. 275,
  4511. 276,
  4512. 277,
  4513. 278,
  4514. 279,
  4515. 280,
  4516. 281,
  4517. 282,
  4518. 283,
  4519. 284,
  4520. 285,
  4521. 286,
  4522. 287,
  4523. 288,
  4524. 289,
  4525. 290,
  4526. 291,
  4527. 292,
  4528. 293,
  4529. 294,
  4530. 295,
  4531. 296,
  4532. 297,
  4533. 298,
  4534. 299,
  4535. 300,
  4536. 1007,
  4537. 1008,
  4538. 1011],
  4539. 'untagged_vlan': 1}],
  4540. 'type': 'physical'}],
  4541. 'type': 'ip'}
  4542. ------------------------------------------------------------------------
  4543. File: /opt/noc/lib/scheduler/scheduler.py (Line: 283)
  4544. Function: _job_wrapper
  4545. 276 else:
  4546. 277 return self._job_wrapper(job, **kwargs)
  4547. 278
  4548. 279 def _job_wrapper(self, job, **kwargs):
  4549. 280 tb = None
  4550. 281 t0 = time.time()
  4551. 282 try:
  4552. 283 ==> r = job.handler(**kwargs)
  4553. 284 except Exception:
  4554. 285 # error_report()
  4555. 286 tb = get_traceback()
  4556. 287 job.error(tb)
  4557. 288 job.on_exception()
  4558. 289 s = job.S_EXCEPTION
  4559. Variables:
  4560. job =
  4561. <noc.inv.discovery.jobs.interface_discovery.InterfaceDiscoveryJob object at 0x80fd223d0>
  4562. tb = None
  4563. self = <noc.inv.discovery.scheduler.DiscoveryScheduler object at 0x80ec18b50>
  4564. t0 = 1409664184.163952
  4565. kwargs =
  4566. {'object': <ManagedObject: cat-proletarka>,
  4567. 'result': [{'forwarding_instance': 'default',
  4568. 'interfaces': [{'admin_status': False,
  4569. 'enabled_protocols': ['CTP'],
  4570. 'ifindex': 1,
  4571. 'mac': '00:1B:53:CB:63:40',
  4572. 'name': 'Vl 1',
  4573. 'oper_status': False,
  4574. 'subinterfaces': [{'admin_status': False,
  4575. 'enabled_afi': [],
  4576. 'enabled_protocols': [],
  4577. 'ifindex': 1,
  4578. 'mac': '00:1B:53:CB:63:40',
  4579. 'name': 'Vl 1',
  4580. 'oper_status': False,
  4581. 'vlan_ids': [1]}],
  4582. 'type': 'SVI'},
  4583. {'admin_status': True,
  4584. 'description': 'Management',
  4585. 'enabled_protocols': ['CTP'],
  4586. 'ifindex': 1007,
  4587. 'mac': '00:1B:53:CB:63:41',
  4588. 'name': 'Vl 1007',
  4589. 'oper_status': True,
  4590. 'subinterfaces': [{'admin_status': True,
  4591. 'description': 'Management',
  4592. 'enabled_afi': ['IPv4'],
  4593. 'enabled_protocols': [],
  4594. 'ifindex': 1007,
  4595. 'ipv4_addresses': ['192.168.82.129/28'],
  4596. 'mac': '00:1B:53:CB:63:41',
  4597. 'name': 'Vl 1007',
  4598. 'oper_status': True,
  4599. 'vlan_ids': [1007]}],
  4600. 'type': 'SVI'},
  4601. {'admin_status': False,
  4602. 'enabled_protocols': ['CTP'],
  4603. 'ifindex': 10101,
  4604. 'mac': '00:1B:53:CB:63:01',
  4605. 'name': 'Gi 0/1',
  4606. 'oper_status': False,
  4607. 'subinterfaces': [{'admin_status': False,
  4608. 'enabled_afi': ['BRIDGE'],
  4609. 'enabled_protocols': [],
  4610. 'ifindex': 10101,
  4611. 'mac': '00:1B:53:CB:63:01',
  4612. 'name': 'Gi 0/1',
  4613. 'oper_status': False,
  4614. 'untagged_vlan': 25}],
  4615. 'type': 'physical'},
  4616. {'admin_status': False,
  4617. 'enabled_protocols': ['CTP'],
  4618. 'ifindex': 10102,
  4619. 'mac': '00:1B:53:CB:63:02',
  4620. 'name': 'Gi 0/2',
  4621. 'oper_status': False,
  4622. 'subinterfaces': [{'admin_status': False,
  4623. 'enabled_afi': ['BRIDGE'],
  4624. 'enabled_protocols': [],
  4625. 'ifindex': 10102,
  4626. 'mac': '00:1B:53:CB:63:02',
  4627. 'name': 'Gi 0/2',
  4628. 'oper_status': False,
  4629. 'untagged_vlan': 26}],
  4630. 'type': 'physical'},
  4631. {'admin_status': False,
  4632. 'enabled_protocols': ['CTP'],
  4633. 'ifindex': 10103,
  4634. 'mac': '00:1B:53:CB:63:03',
  4635. 'name': 'Gi 0/3',
  4636. 'oper_status': False,
  4637. 'subinterfaces': [{'admin_status': False,
  4638. 'enabled_afi': ['BRIDGE'],
  4639. 'enabled_protocols': [],
  4640. 'ifindex': 10103,
  4641. 'mac': '00:1B:53:CB:63:03',
  4642. 'name': 'Gi 0/3',
  4643. 'oper_status': False,
  4644. 'untagged_vlan': 27}],
  4645. 'type': 'physical'},
  4646. {'admin_status': False,
  4647. 'enabled_protocols': ['CTP'],
  4648. 'ifindex': 10104,
  4649. 'mac': '00:1B:53:CB:63:04',
  4650. 'name': 'Gi 0/4',
  4651. 'oper_status': False,
  4652. 'subinterfaces': [{'admin_status': False,
  4653. 'enabled_afi': ['BRIDGE'],
  4654. 'enabled_protocols': [],
  4655. 'ifindex': 10104,
  4656. 'mac': '00:1B:53:CB:63:04',
  4657. 'name': 'Gi 0/4',
  4658. 'oper_status': False,
  4659. 'untagged_vlan': 28}],
  4660. 'type': 'physical'},
  4661. {'admin_status': False,
  4662. 'enabled_protocols': ['CTP'],
  4663. 'ifindex': 10105,
  4664. 'mac': '00:1B:53:CB:63:05',
  4665. 'name': 'Gi 0/5',
  4666. 'oper_status': False,
  4667. 'subinterfaces': [{'admin_status': False,
  4668. 'enabled_afi': ['BRIDGE'],
  4669. 'enabled_protocols': [],
  4670. 'ifindex': 10105,
  4671. 'mac': '00:1B:53:CB:63:05',
  4672. 'name': 'Gi 0/5',
  4673. 'oper_status': False,
  4674. 'untagged_vlan': 29}],
  4675. 'type': 'physical'},
  4676. {'admin_status': False,
  4677. 'enabled_protocols': ['CTP'],
  4678. 'ifindex': 10106,
  4679. 'mac': '00:1B:53:CB:63:06',
  4680. 'name': 'Gi 0/6',
  4681. 'oper_status': False,
  4682. 'subinterfaces': [{'admin_status': False,
  4683. 'enabled_afi': ['BRIDGE'],
  4684. 'enabled_protocols': [],
  4685. 'ifindex': 10106,
  4686. 'mac': '00:1B:53:CB:63:06',
  4687. 'name': 'Gi 0/6',
  4688. 'oper_status': False,
  4689. 'untagged_vlan': 30}],
  4690. 'type': 'physical'},
  4691. {'admin_status': False,
  4692. 'enabled_protocols': ['CTP'],
  4693. 'ifindex': 10107,
  4694. 'mac': '00:1B:53:CB:63:07',
  4695. 'name': 'Gi 0/7',
  4696. 'oper_status': False,
  4697. 'subinterfaces': [{'admin_status': False,
  4698. 'enabled_afi': ['BRIDGE'],
  4699. 'enabled_protocols': [],
  4700. 'ifindex': 10107,
  4701. 'mac': '00:1B:53:CB:63:07',
  4702. 'name': 'Gi 0/7',
  4703. 'oper_status': False,
  4704. 'untagged_vlan': 31}],
  4705. 'type': 'physical'},
  4706. {'admin_status': False,
  4707. 'enabled_protocols': ['CTP'],
  4708. 'ifindex': 10108,
  4709. 'mac': '00:1B:53:CB:63:08',
  4710. 'name': 'Gi 0/8',
  4711. 'oper_status': False,
  4712. 'subinterfaces': [{'admin_status': False,
  4713. 'enabled_afi': ['BRIDGE'],
  4714. 'enabled_protocols': [],
  4715. 'ifindex': 10108,
  4716. 'mac': '00:1B:53:CB:63:08',
  4717. 'name': 'Gi 0/8',
  4718. 'oper_status': False,
  4719. 'untagged_vlan': 32}],
  4720. 'type': 'physical'},
  4721. {'admin_status': False,
  4722. 'enabled_protocols': ['CTP'],
  4723. 'ifindex': 10109,
  4724. 'mac': '00:1B:53:CB:63:09',
  4725. 'name': 'Gi 0/9',
  4726. 'oper_status': False,
  4727. 'subinterfaces': [{'admin_status': False,
  4728. 'enabled_afi': ['BRIDGE'],
  4729. 'enabled_protocols': [],
  4730. 'ifindex': 10109,
  4731. 'mac': '00:1B:53:CB:63:09',
  4732. 'name': 'Gi 0/9',
  4733. 'oper_status': False,
  4734. 'untagged_vlan': 33}],
  4735. 'type': 'physical'},
  4736. {'admin_status': False,
  4737. 'enabled_protocols': ['CTP'],
  4738. 'ifindex': 10110,
  4739. 'mac': '00:1B:53:CB:63:0A',
  4740. 'name': 'Gi 0/10',
  4741. 'oper_status': False,
  4742. 'subinterfaces': [{'admin_status': False,
  4743. 'enabled_afi': ['BRIDGE'],
  4744. 'enabled_protocols': [],
  4745. 'ifindex': 10110,
  4746. 'mac': '00:1B:53:CB:63:0A',
  4747. 'name': 'Gi 0/10',
  4748. 'oper_status': False,
  4749. 'untagged_vlan': 34}],
  4750. 'type': 'physical'},
  4751. {'admin_status': True,
  4752. 'description': 'elcom-proletarka',
  4753. 'enabled_protocols': ['CTP'],
  4754. 'ifindex': 10111,
  4755. 'mac': '00:1B:53:CB:63:0B',
  4756. 'name': 'Gi 0/11',
  4757. 'oper_status': True,
  4758. 'subinterfaces': [{'admin_status': True,
  4759. 'description': 'elcom-proletarka',
  4760. 'enabled_afi': ['BRIDGE'],
  4761. 'enabled_protocols': [],
  4762. 'ifindex': 10111,
  4763. 'mac': '00:1B:53:CB:63:0B',
  4764. 'name': 'Gi 0/11',
  4765. 'oper_status': True,
  4766. 'untagged_vlan': 35}],
  4767. 'type': 'physical'},
  4768. {'admin_status': False,
  4769. 'enabled_protocols': ['CTP'],
  4770. 'ifindex': 10112,
  4771. 'mac': '00:1B:53:CB:63:0C',
  4772. 'name': 'Gi 0/12',
  4773. 'oper_status': False,
  4774. 'subinterfaces': [{'admin_status': False,
  4775. 'enabled_afi': ['BRIDGE'],
  4776. 'enabled_protocols': [],
  4777. 'ifindex': 10112,
  4778. 'mac': '00:1B:53:CB:63:0C',
  4779. 'name': 'Gi 0/12',
  4780. 'oper_status': False,
  4781. 'untagged_vlan': 36}],
  4782. 'type': 'physical'},
  4783. {'admin_status': False,
  4784. 'enabled_protocols': ['CTP'],
  4785. 'ifindex': 10113,
  4786. 'mac': '00:1B:53:CB:63:0D',
  4787. 'name': 'Gi 0/13',
  4788. 'oper_status': False,
  4789. 'subinterfaces': [{'admin_status': False,
  4790. 'enabled_afi': ['BRIDGE'],
  4791. 'enabled_protocols': [],
  4792. 'ifindex': 10113,
  4793. 'mac': '00:1B:53:CB:63:0D',
  4794. 'name': 'Gi 0/13',
  4795. 'oper_status': False,
  4796. 'tagged_vlans': [25,
  4797. 26,
  4798. 27,
  4799. 28,
  4800. 29,
  4801. 30,
  4802. 31,
  4803. 32,
  4804. 33,
  4805. 34,
  4806. 35,
  4807. 36,
  4808. 37,
  4809. 38,
  4810. 39,
  4811. 40,
  4812. 41,
  4813. 42,
  4814. 43,
  4815. 44,
  4816. 45,
  4817. 46,
  4818. 47,
  4819. 48,
  4820. 49,
  4821. 50,
  4822. 51,
  4823. 52,
  4824. 53,
  4825. 54,
  4826. 55,
  4827. 56,
  4828. 57,
  4829. 58,
  4830. 59,
  4831. 60,
  4832. 61,
  4833. 62,
  4834. 63,
  4835. 64,
  4836. 65,
  4837. 66,
  4838. 67,
  4839. 68,
  4840. 69,
  4841. 70,
  4842. 71,
  4843. 72,
  4844. 73,
  4845. 74,
  4846. 75,
  4847. 76,
  4848. 77,
  4849. 78,
  4850. 79,
  4851. 80,
  4852. 81,
  4853. 82,
  4854. 83,
  4855. 84,
  4856. 85,
  4857. 86,
  4858. 87,
  4859. 88,
  4860. 89,
  4861. 90,
  4862. 91,
  4863. 92,
  4864. 93,
  4865. 94,
  4866. 95,
  4867. 96,
  4868. 97,
  4869. 98,
  4870. 99,
  4871. 100,
  4872. 101,
  4873. 102,
  4874. 103,
  4875. 104,
  4876. 105,
  4877. 106,
  4878. 107,
  4879. 108,
  4880. 109,
  4881. 110,
  4882. 111,
  4883. 112,
  4884. 113,
  4885. 114,
  4886. 115,
  4887. 116,
  4888. 117,
  4889. 118,
  4890. 119,
  4891. 120,
  4892. 121,
  4893. 122,
  4894. 123,
  4895. 124,
  4896. 125,
  4897. 126,
  4898. 127,
  4899. 128,
  4900. 129,
  4901. 130,
  4902. 131,
  4903. 132,
  4904. 133,
  4905. 134,
  4906. 135,
  4907. 136,
  4908. 137,
  4909. 138,
  4910. 139,
  4911. 140,
  4912. 141,
  4913. 142,
  4914. 143,
  4915. 144,
  4916. 145,
  4917. 146,
  4918. 147,
  4919. 148,
  4920. 149,
  4921. 150,
  4922. 151,
  4923. 152,
  4924. 153,
  4925. 154,
  4926. 155,
  4927. 156,
  4928. 157,
  4929. 158,
  4930. 159,
  4931. 160,
  4932. 161,
  4933. 162,
  4934. 163,
  4935. 164,
  4936. 165,
  4937. 166,
  4938. 167,
  4939. 168,
  4940. 169,
  4941. 170,
  4942. 171,
  4943. 172,
  4944. 173,
  4945. 174,
  4946. 175,
  4947. 176,
  4948. 177,
  4949. 178,
  4950. 179,
  4951. 180,
  4952. 181,
  4953. 182,
  4954. 183,
  4955. 184,
  4956. 185,
  4957. 186,
  4958. 187,
  4959. 188,
  4960. 189,
  4961. 190,
  4962. 191,
  4963. 192,
  4964. 193,
  4965. 194,
  4966. 195,
  4967. 196,
  4968. 197,
  4969. 198,
  4970. 199,
  4971. 200,
  4972. 201,
  4973. 202,
  4974. 203,
  4975. 204,
  4976. 205,
  4977. 206,
  4978. 207,
  4979. 208,
  4980. 209,
  4981. 210,
  4982. 211,
  4983. 212,
  4984. 213,
  4985. 214,
  4986. 215,
  4987. 216,
  4988. 217,
  4989. 218,
  4990. 219,
  4991. 220,
  4992. 221,
  4993. 222,
  4994. 223,
  4995. 224,
  4996. 225,
  4997. 226,
  4998. 227,
  4999. 228,
  5000. 229,
  5001. 230,
  5002. 231,
  5003. 232,
  5004. 233,
  5005. 234,
  5006. 235,
  5007. 236,
  5008. 237,
  5009. 238,
  5010. 239,
  5011. 240,
  5012. 241,
  5013. 242,
  5014. 243,
  5015. 244,
  5016. 245,
  5017. 246,
  5018. 247,
  5019. 248,
  5020. 249,
  5021. 250,
  5022. 251,
  5023. 252,
  5024. 253,
  5025. 254,
  5026. 255,
  5027. 256,
  5028. 257,
  5029. 258,
  5030. 259,
  5031. 260,
  5032. 261,
  5033. 262,
  5034. 263,
  5035. 264,
  5036. 265,
  5037. 266,
  5038. 267,
  5039. 268,
  5040. 269,
  5041. 270,
  5042. 271,
  5043. 272,
  5044. 273,
  5045. 274,
  5046. 275,
  5047. 276,
  5048. 277,
  5049. 278,
  5050. 279,
  5051. 280,
  5052. 281,
  5053. 282,
  5054. 283,
  5055. 284,
  5056. 285,
  5057. 286,
  5058. 287,
  5059. 288,
  5060. 289,
  5061. 290,
  5062. 291,
  5063. 292,
  5064. 293,
  5065. 294,
  5066. 295,
  5067. 296,
  5068. 297,
  5069. 298,
  5070. 299,
  5071. 300,
  5072. 1007,
  5073. 1008,
  5074. 1011],
  5075. 'untagged_vlan': 1}],
  5076. 'type': 'physical'},
  5077. {'admin_status': False,
  5078. 'enabled_protocols': ['CTP'],
  5079. 'ifindex': 10114,
  5080. 'mac': '00:1B:53:CB:63:0E',
  5081. 'name': 'Gi 0/14',
  5082. 'oper_status': False,
  5083. 'subinterfaces': [{'admin_status': False,
  5084. 'enabled_afi': ['BRIDGE'],
  5085. 'enabled_protocols': [],
  5086. 'ifindex': 10114,
  5087. 'mac': '00:1B:53:CB:63:0E',
  5088. 'name': 'Gi 0/14',
  5089. 'oper_status': False,
  5090. 'tagged_vlans': [25,
  5091. 26,
  5092. 27,
  5093. 28,
  5094. 29,
  5095. 30,
  5096. 31,
  5097. 32,
  5098. 33,
  5099. 34,
  5100. 35,
  5101. 36,
  5102. 37,
  5103. 38,
  5104. 39,
  5105. 40,
  5106. 41,
  5107. 42,
  5108. 43,
  5109. 44,
  5110. 45,
  5111. 46,
  5112. 47,
  5113. 48,
  5114. 49,
  5115. 50,
  5116. 51,
  5117. 52,
  5118. 53,
  5119. 54,
  5120. 55,
  5121. 56,
  5122. 57,
  5123. 58,
  5124. 59,
  5125. 60,
  5126. 61,
  5127. 62,
  5128. 63,
  5129. 64,
  5130. 65,
  5131. 66,
  5132. 67,
  5133. 68,
  5134. 69,
  5135. 70,
  5136. 71,
  5137. 72,
  5138. 73,
  5139. 74,
  5140. 75,
  5141. 76,
  5142. 77,
  5143. 78,
  5144. 79,
  5145. 80,
  5146. 81,
  5147. 82,
  5148. 83,
  5149. 84,
  5150. 85,
  5151. 86,
  5152. 87,
  5153. 88,
  5154. 89,
  5155. 90,
  5156. 91,
  5157. 92,
  5158. 93,
  5159. 94,
  5160. 95,
  5161. 96,
  5162. 97,
  5163. 98,
  5164. 99,
  5165. 100,
  5166. 101,
  5167. 102,
  5168. 103,
  5169. 104,
  5170. 105,
  5171. 106,
  5172. 107,
  5173. 108,
  5174. 109,
  5175. 110,
  5176. 111,
  5177. 112,
  5178. 113,
  5179. 114,
  5180. 115,
  5181. 116,
  5182. 117,
  5183. 118,
  5184. 119,
  5185. 120,
  5186. 121,
  5187. 122,
  5188. 123,
  5189. 124,
  5190. 125,
  5191. 126,
  5192. 127,
  5193. 128,
  5194. 129,
  5195. 130,
  5196. 131,
  5197. 132,
  5198. 133,
  5199. 134,
  5200. 135,
  5201. 136,
  5202. 137,
  5203. 138,
  5204. 139,
  5205. 140,
  5206. 141,
  5207. 142,
  5208. 143,
  5209. 144,
  5210. 145,
  5211. 146,
  5212. 147,
  5213. 148,
  5214. 149,
  5215. 150,
  5216. 151,
  5217. 152,
  5218. 153,
  5219. 154,
  5220. 155,
  5221. 156,
  5222. 157,
  5223. 158,
  5224. 159,
  5225. 160,
  5226. 161,
  5227. 162,
  5228. 163,
  5229. 164,
  5230. 165,
  5231. 166,
  5232. 167,
  5233. 168,
  5234. 169,
  5235. 170,
  5236. 171,
  5237. 172,
  5238. 173,
  5239. 174,
  5240. 175,
  5241. 176,
  5242. 177,
  5243. 178,
  5244. 179,
  5245. 180,
  5246. 181,
  5247. 182,
  5248. 183,
  5249. 184,
  5250. 185,
  5251. 186,
  5252. 187,
  5253. 188,
  5254. 189,
  5255. 190,
  5256. 191,
  5257. 192,
  5258. 193,
  5259. 194,
  5260. 195,
  5261. 196,
  5262. 197,
  5263. 198,
  5264. 199,
  5265. 200,
  5266. 201,
  5267. 202,
  5268. 203,
  5269. 204,
  5270. 205,
  5271. 206,
  5272. 207,
  5273. 208,
  5274. 209,
  5275. 210,
  5276. 211,
  5277. 212,
  5278. 213,
  5279. 214,
  5280. 215,
  5281. 216,
  5282. 217,
  5283. 218,
  5284. 219,
  5285. 220,
  5286. 221,
  5287. 222,
  5288. 223,
  5289. 224,
  5290. 225,
  5291. 226,
  5292. 227,
  5293. 228,
  5294. 229,
  5295. 230,
  5296. 231,
  5297. 232,
  5298. 233,
  5299. 234,
  5300. 235,
  5301. 236,
  5302. 237,
  5303. 238,
  5304. 239,
  5305. 240,
  5306. 241,
  5307. 242,
  5308. 243,
  5309. 244,
  5310. 245,
  5311. 246,
  5312. 247,
  5313. 248,
  5314. 249,
  5315. 250,
  5316. 251,
  5317. 252,
  5318. 253,
  5319. 254,
  5320. 255,
  5321. 256,
  5322. 257,
  5323. 258,
  5324. 259,
  5325. 260,
  5326. 261,
  5327. 262,
  5328. 263,
  5329. 264,
  5330. 265,
  5331. 266,
  5332. 267,
  5333. 268,
  5334. 269,
  5335. 270,
  5336. 271,
  5337. 272,
  5338. 273,
  5339. 274,
  5340. 275,
  5341. 276,
  5342. 277,
  5343. 278,
  5344. 279,
  5345. 280,
  5346. 281,
  5347. 282,
  5348. 283,
  5349. 284,
  5350. 285,
  5351. 286,
  5352. 287,
  5353. 288,
  5354. 289,
  5355. 290,
  5356. 291,
  5357. 292,
  5358. 293,
  5359. 294,
  5360. 295,
  5361. 296,
  5362. 297,
  5363. 298,
  5364. 299,
  5365. 300,
  5366. 1007,
  5367. 1008,
  5368. 1011],
  5369. 'untagged_vlan': 1}],
  5370. 'type': 'physical'},
  5371. {'admin_status': False,
  5372. 'enabled_protocols': ['CTP'],
  5373. 'ifindex': 10115,
  5374. 'mac': '00:1B:53:CB:63:0F',
  5375. 'name': 'Gi 0/15',
  5376. 'oper_status': False,
  5377. 'subinterfaces': [{'admin_status': False,
  5378. 'enabled_afi': ['BRIDGE'],
  5379. 'enabled_protocols': [],
  5380. 'ifindex': 10115,
  5381. 'mac': '00:1B:53:CB:63:0F',
  5382. 'name': 'Gi 0/15',
  5383. 'oper_status': False,
  5384. 'tagged_vlans': [25,
  5385. 26,
  5386. 27,
  5387. 28,
  5388. 29,
  5389. 30,
  5390. 31,
  5391. 32,
  5392. 33,
  5393. 34,
  5394. 35,
  5395. 36,
  5396. 37,
  5397. 38,
  5398. 39,
  5399. 40,
  5400. 41,
  5401. 42,
  5402. 43,
  5403. 44,
  5404. 45,
  5405. 46,
  5406. 47,
  5407. 48,
  5408. 49,
  5409. 50,
  5410. 51,
  5411. 52,
  5412. 53,
  5413. 54,
  5414. 55,
  5415. 56,
  5416. 57,
  5417. 58,
  5418. 59,
  5419. 60,
  5420. 61,
  5421. 62,
  5422. 63,
  5423. 64,
  5424. 65,
  5425. 66,
  5426. 67,
  5427. 68,
  5428. 69,
  5429. 70,
  5430. 71,
  5431. 72,
  5432. 73,
  5433. 74,
  5434. 75,
  5435. 76,
  5436. 77,
  5437. 78,
  5438. 79,
  5439. 80,
  5440. 81,
  5441. 82,
  5442. 83,
  5443. 84,
  5444. 85,
  5445. 86,
  5446. 87,
  5447. 88,
  5448. 89,
  5449. 90,
  5450. 91,
  5451. 92,
  5452. 93,
  5453. 94,
  5454. 95,
  5455. 96,
  5456. 97,
  5457. 98,
  5458. 99,
  5459. 100,
  5460. 101,
  5461. 102,
  5462. 103,
  5463. 104,
  5464. 105,
  5465. 106,
  5466. 107,
  5467. 108,
  5468. 109,
  5469. 110,
  5470. 111,
  5471. 112,
  5472. 113,
  5473. 114,
  5474. 115,
  5475. 116,
  5476. 117,
  5477. 118,
  5478. 119,
  5479. 120,
  5480. 121,
  5481. 122,
  5482. 123,
  5483. 124,
  5484. 125,
  5485. 126,
  5486. 127,
  5487. 128,
  5488. 129,
  5489. 130,
  5490. 131,
  5491. 132,
  5492. 133,
  5493. 134,
  5494. 135,
  5495. 136,
  5496. 137,
  5497. 138,
  5498. 139,
  5499. 140,
  5500. 141,
  5501. 142,
  5502. 143,
  5503. 144,
  5504. 145,
  5505. 146,
  5506. 147,
  5507. 148,
  5508. 149,
  5509. 150,
  5510. 151,
  5511. 152,
  5512. 153,
  5513. 154,
  5514. 155,
  5515. 156,
  5516. 157,
  5517. 158,
  5518. 159,
  5519. 160,
  5520. 161,
  5521. 162,
  5522. 163,
  5523. 164,
  5524. 165,
  5525. 166,
  5526. 167,
  5527. 168,
  5528. 169,
  5529. 170,
  5530. 171,
  5531. 172,
  5532. 173,
  5533. 174,
  5534. 175,
  5535. 176,
  5536. 177,
  5537. 178,
  5538. 179,
  5539. 180,
  5540. 181,
  5541. 182,
  5542. 183,
  5543. 184,
  5544. 185,
  5545. 186,
  5546. 187,
  5547. 188,
  5548. 189,
  5549. 190,
  5550. 191,
  5551. 192,
  5552. 193,
  5553. 194,
  5554. 195,
  5555. 196,
  5556. 197,
  5557. 198,
  5558. 199,
  5559. 200,
  5560. 201,
  5561. 202,
  5562. 203,
  5563. 204,
  5564. 205,
  5565. 206,
  5566. 207,
  5567. 208,
  5568. 209,
  5569. 210,
  5570. 211,
  5571. 212,
  5572. 213,
  5573. 214,
  5574. 215,
  5575. 216,
  5576. 217,
  5577. 218,
  5578. 219,
  5579. 220,
  5580. 221,
  5581. 222,
  5582. 223,
  5583. 224,
  5584. 225,
  5585. 226,
  5586. 227,
  5587. 228,
  5588. 229,
  5589. 230,
  5590. 231,
  5591. 232,
  5592. 233,
  5593. 234,
  5594. 235,
  5595. 236,
  5596. 237,
  5597. 238,
  5598. 239,
  5599. 240,
  5600. 241,
  5601. 242,
  5602. 243,
  5603. 244,
  5604. 245,
  5605. 246,
  5606. 247,
  5607. 248,
  5608. 249,
  5609. 250,
  5610. 251,
  5611. 252,
  5612. 253,
  5613. 254,
  5614. 255,
  5615. 256,
  5616. 257,
  5617. 258,
  5618. 259,
  5619. 260,
  5620. 261,
  5621. 262,
  5622. 263,
  5623. 264,
  5624. 265,
  5625. 266,
  5626. 267,
  5627. 268,
  5628. 269,
  5629. 270,
  5630. 271,
  5631. 272,
  5632. 273,
  5633. 274,
  5634. 275,
  5635. 276,
  5636. 277,
  5637. 278,
  5638. 279,
  5639. 280,
  5640. 281,
  5641. 282,
  5642. 283,
  5643. 284,
  5644. 285,
  5645. 286,
  5646. 287,
  5647. 288,
  5648. 289,
  5649. 290,
  5650. 291,
  5651. 292,
  5652. 293,
  5653. 294,
  5654. 295,
  5655. 296,
  5656. 297,
  5657. 298,
  5658. 299,
  5659. 300,
  5660. 1007,
  5661. 1008,
  5662. 1011],
  5663. 'untagged_vlan': 1}],
  5664. 'type': 'physical'},
  5665. {'admin_status': True,
  5666. 'description': 'bb-proletarka',
  5667. 'enabled_protocols': ['CTP'],
  5668. 'ifindex': 10116,
  5669. 'mac': '00:1B:53:CB:63:10',
  5670. 'name': 'Gi 0/16',
  5671. 'oper_status': True,
  5672. 'subinterfaces': [{'admin_status': True,
  5673. 'description': 'bb-proletarka',
  5674. 'enabled_afi': ['BRIDGE'],
  5675. 'enabled_protocols': [],
  5676. 'ifindex': 10116,
  5677. 'mac': '00:1B:53:CB:63:10',
  5678. 'name': 'Gi 0/16',
  5679. 'oper_status': True,
  5680. 'tagged_vlans': [25,
  5681. 26,
  5682. 27,
  5683. 28,
  5684. 29,
  5685. 30,
  5686. 31,
  5687. 32,
  5688. 33,
  5689. 34,
  5690. 35,
  5691. 36,
  5692. 37,
  5693. 38,
  5694. 39,
  5695. 40,
  5696. 41,
  5697. 42,
  5698. 43,
  5699. 44,
  5700. 45,
  5701. 46,
  5702. 47,
  5703. 48,
  5704. 49,
  5705. 50,
  5706. 51,
  5707. 52,
  5708. 53,
  5709. 54,
  5710. 55,
  5711. 56,
  5712. 57,
  5713. 58,
  5714. 59,
  5715. 60,
  5716. 61,
  5717. 62,
  5718. 63,
  5719. 64,
  5720. 65,
  5721. 66,
  5722. 67,
  5723. 68,
  5724. 69,
  5725. 70,
  5726. 71,
  5727. 72,
  5728. 73,
  5729. 74,
  5730. 75,
  5731. 76,
  5732. 77,
  5733. 78,
  5734. 79,
  5735. 80,
  5736. 81,
  5737. 82,
  5738. 83,
  5739. 84,
  5740. 85,
  5741. 86,
  5742. 87,
  5743. 88,
  5744. 89,
  5745. 90,
  5746. 91,
  5747. 92,
  5748. 93,
  5749. 94,
  5750. 95,
  5751. 96,
  5752. 97,
  5753. 98,
  5754. 99,
  5755. 100,
  5756. 101,
  5757. 102,
  5758. 103,
  5759. 104,
  5760. 105,
  5761. 106,
  5762. 107,
  5763. 108,
  5764. 109,
  5765. 110,
  5766. 111,
  5767. 112,
  5768. 113,
  5769. 114,
  5770. 115,
  5771. 116,
  5772. 117,
  5773. 118,
  5774. 119,
  5775. 120,
  5776. 121,
  5777. 122,
  5778. 123,
  5779. 124,
  5780. 125,
  5781. 126,
  5782. 127,
  5783. 128,
  5784. 129,
  5785. 130,
  5786. 131,
  5787. 132,
  5788. 133,
  5789. 134,
  5790. 135,
  5791. 136,
  5792. 137,
  5793. 138,
  5794. 139,
  5795. 140,
  5796. 141,
  5797. 142,
  5798. 143,
  5799. 144,
  5800. 145,
  5801. 146,
  5802. 147,
  5803. 148,
  5804. 149,
  5805. 150,
  5806. 151,
  5807. 152,
  5808. 153,
  5809. 154,
  5810. 155,
  5811. 156,
  5812. 157,
  5813. 158,
  5814. 159,
  5815. 160,
  5816. 161,
  5817. 162,
  5818. 163,
  5819. 164,
  5820. 165,
  5821. 166,
  5822. 167,
  5823. 168,
  5824. 169,
  5825. 170,
  5826. 171,
  5827. 172,
  5828. 173,
  5829. 174,
  5830. 175,
  5831. 176,
  5832. 177,
  5833. 178,
  5834. 179,
  5835. 180,
  5836. 181,
  5837. 182,
  5838. 183,
  5839. 184,
  5840. 185,
  5841. 186,
  5842. 187,
  5843. 188,
  5844. 189,
  5845. 190,
  5846. 191,
  5847. 192,
  5848. 193,
  5849. 194,
  5850. 195,
  5851. 196,
  5852. 197,
  5853. 198,
  5854. 199,
  5855. 200,
  5856. 201,
  5857. 202,
  5858. 203,
  5859. 204,
  5860. 205,
  5861. 206,
  5862. 207,
  5863. 208,
  5864. 209,
  5865. 210,
  5866. 211,
  5867. 212,
  5868. 213,
  5869. 214,
  5870. 215,
  5871. 216,
  5872. 217,
  5873. 218,
  5874. 219,
  5875. 220,
  5876. 221,
  5877. 222,
  5878. 223,
  5879. 224,
  5880. 225,
  5881. 226,
  5882. 227,
  5883. 228,
  5884. 229,
  5885. 230,
  5886. 231,
  5887. 232,
  5888. 233,
  5889. 234,
  5890. 235,
  5891. 236,
  5892. 237,
  5893. 238,
  5894. 239,
  5895. 240,
  5896. 241,
  5897. 242,
  5898. 243,
  5899. 244,
  5900. 245,
  5901. 246,
  5902. 247,
  5903. 248,
  5904. 249,
  5905. 250,
  5906. 251,
  5907. 252,
  5908. 253,
  5909. 254,
  5910. 255,
  5911. 256,
  5912. 257,
  5913. 258,
  5914. 259,
  5915. 260,
  5916. 261,
  5917. 262,
  5918. 263,
  5919. 264,
  5920. 265,
  5921. 266,
  5922. 267,
  5923. 268,
  5924. 269,
  5925. 270,
  5926. 271,
  5927. 272,
  5928. 273,
  5929. 274,
  5930. 275,
  5931. 276,
  5932. 277,
  5933. 278,
  5934. 279,
  5935. 280,
  5936. 281,
  5937. 282,
  5938. 283,
  5939. 284,
  5940. 285,
  5941. 286,
  5942. 287,
  5943. 288,
  5944. 289,
  5945. 290,
  5946. 291,
  5947. 292,
  5948. 293,
  5949. 294,
  5950. 295,
  5951. 296,
  5952. 297,
  5953. 298,
  5954. 299,
  5955. 300,
  5956. 1007,
  5957. 1008,
  5958. 1011],
  5959. 'untagged_vlan': 1}],
  5960. 'type': 'physical'}],
  5961. 'type': 'ip'}]}
  5962. ------------------------------------------------------------------------
  5963. END OF TRACEBACK
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement