Advertisement
Guest User

Untitled

a guest
Apr 4th, 2014
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 390.42 KB | None | 0 0
  1. 2014-04-04 10:23:20,881 [inv.discovery: ip_discovery(cat-7nebo-3-2)] UNHANDLED EXCEPTION (2014-04-04 10:23:19.540819)
  2. Working directory: /opt/noc
  3. <type 'exceptions.RuntimeError'>
  4. maximum recursion depth exceeded
  5. START OF TRACEBACK
  6. ------------------------------------------------------------------------
  7. File: /usr/local/lib/python2.7/copy.py (Line: 278)
  8. Function: _keep_alive
  9. 271 to assure that possibly temporary objects are kept
  10. 272 alive by referencing them.
  11. 273 We store a reference at the id of the memo, which should
  12. 274 normally not be used unless someone tries to deepcopy
  13. 275 the memo itself...
  14. 276 """
  15. 277 try:
  16. 278 ==> memo[id(memo)].append(x)
  17. 279 except KeyError:
  18. 280 # aha, this is the first one :-)
  19. 281 memo[id(memo)]=[x]
  20. 282
  21. 283 def _deepcopy_inst(x, memo):
  22. 284 if hasattr(x, '__deepcopy__'):
  23. Variables:
  24. x = <class 'django.db.models.sql.where.Constraint'>
  25. memo =
  26. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  27. 34613662712: [],
  28. 34614756272: []}
  29. ------------------------------------------------------------------------
  30. File: /usr/local/lib/python2.7/copy.py (Line: 193)
  31. Function: deepcopy
  32. 186 rv = reductor()
  33. 187 else:
  34. 188 raise Error(
  35. 189 "un(deep)copyable object of type %s" % cls)
  36. 190 y = _reconstruct(x, rv, 1, memo)
  37. 191
  38. 192 memo[d] = y
  39. 193 ==> _keep_alive(x, memo) # Make sure x lives at least as long as d
  40. 194 return y
  41. 195
  42. 196 _deepcopy_dispatch = d = {}
  43. 197
  44. 198 def _deepcopy_atomic(x, memo):
  45. 199 return x
  46. Variables:
  47. d = 34463277088
  48. memo =
  49. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  50. 34613662712: [],
  51. 34614756272: []}
  52. copier = <function _deepcopy_atomic at 0x801a8bc08>
  53. _nil = []
  54. y = <class 'django.db.models.sql.where.Constraint'>
  55. x = <class 'django.db.models.sql.where.Constraint'>
  56. cls = <type 'type'>
  57. ------------------------------------------------------------------------
  58. File: /usr/local/lib/python2.7/copy.py (Line: 237)
  59. Function: _deepcopy_tuple
  60. 230 y.append(deepcopy(a, memo))
  61. 231 return y
  62. 232 d[list] = _deepcopy_list
  63. 233
  64. 234 def _deepcopy_tuple(x, memo):
  65. 235 y = []
  66. 236 for a in x:
  67. 237 ==> y.append(deepcopy(a, memo))
  68. 238 d = id(x)
  69. 239 try:
  70. 240 return memo[d]
  71. 241 except KeyError:
  72. 242 pass
  73. 243 for i in range(len(x)):
  74. Variables:
  75. a = <class 'django.db.models.sql.where.Constraint'>
  76. y = []
  77. memo =
  78. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  79. 34613662712: [],
  80. 34614756272: []}
  81. x = (<class 'django.db.models.sql.where.Constraint'>,)
  82. ------------------------------------------------------------------------
  83. File: /usr/local/lib/python2.7/copy.py (Line: 163)
  84. Function: deepcopy
  85. 156 if y is not _nil:
  86. 157 return y
  87. 158
  88. 159 cls = type(x)
  89. 160
  90. 161 copier = _deepcopy_dispatch.get(cls)
  91. 162 if copier:
  92. 163 ==> y = copier(x, memo)
  93. 164 else:
  94. 165 try:
  95. 166 issc = issubclass(cls, type)
  96. 167 except TypeError: # cls is not a class (old Boost; see SF #502085)
  97. 168 issc = 0
  98. 169 if issc:
  99. Variables:
  100. d = 34614846224
  101. memo =
  102. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  103. 34613662712: [],
  104. 34614756272: []}
  105. copier = <function _deepcopy_tuple at 0x801a8bcf8>
  106. _nil = []
  107. y = []
  108. x = (<class 'django.db.models.sql.where.Constraint'>,)
  109. cls = <type 'tuple'>
  110. ------------------------------------------------------------------------
  111. File: /usr/local/lib/python2.7/copy.py (Line: 328)
  112. Function: _reconstruct
  113. 321 else:
  114. 322 listiter = None
  115. 323 if n > 4:
  116. 324 dictiter = info[4]
  117. 325 else:
  118. 326 dictiter = None
  119. 327 if deep:
  120. 328 ==> args = deepcopy(args, memo)
  121. 329 y = callable(*args)
  122. 330 memo[id(x)] = y
  123. 331
  124. 332 if state:
  125. 333 if deep:
  126. 334 state = deepcopy(state, memo)
  127. Variables:
  128. info =
  129. (<function __newobj__ at 0x80178db90>,
  130. (<class 'django.db.models.sql.where.Constraint'>,),
  131. {'alias': 'ip_prefix',
  132. 'col': 'id',
  133. 'field_name': 'id',
  134. 'model': <class 'noc.ip.models.prefix.Prefix'>},
  135. None,
  136. None)
  137. listiter = None
  138. args = (<class 'django.db.models.sql.where.Constraint'>,)
  139. state =
  140. {'alias': 'ip_prefix',
  141. 'col': 'id',
  142. 'field_name': 'id',
  143. 'model': <class 'noc.ip.models.prefix.Prefix'>}
  144. deep = 1
  145. n = 5
  146. callable = <function __newobj__ at 0x80178db90>
  147. dictiter = None
  148. x = <django.db.models.sql.where.Constraint object at 0x80f22c890>
  149. memo =
  150. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  151. 34613662712: [],
  152. 34614756272: []}
  153. ------------------------------------------------------------------------
  154. File: /usr/local/lib/python2.7/copy.py (Line: 190)
  155. Function: deepcopy
  156. 183 else:
  157. 184 reductor = getattr(x, "__reduce__", None)
  158. 185 if reductor:
  159. 186 rv = reductor()
  160. 187 else:
  161. 188 raise Error(
  162. 189 "un(deep)copyable object of type %s" % cls)
  163. 190 ==> y = _reconstruct(x, rv, 1, memo)
  164. 191
  165. 192 memo[d] = y
  166. 193 _keep_alive(x, memo) # Make sure x lives at least as long as d
  167. 194 return y
  168. 195
  169. 196 _deepcopy_dispatch = d = {}
  170. Variables:
  171. reductor = <built-in method __reduce_ex__ of Constraint object at 0x80f22c890>
  172. rv =
  173. (<function __newobj__ at 0x80178db90>,
  174. (<class 'django.db.models.sql.where.Constraint'>,),
  175. {'alias': 'ip_prefix',
  176. 'col': 'id',
  177. 'field_name': 'id',
  178. 'model': <class 'noc.ip.models.prefix.Prefix'>},
  179. None,
  180. None)
  181. d = 34613676176
  182. issc = False
  183. memo =
  184. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  185. 34613662712: [],
  186. 34614756272: []}
  187. copier = None
  188. _nil = []
  189. y = []
  190. x = <django.db.models.sql.where.Constraint object at 0x80f22c890>
  191. cls = <class 'django.db.models.sql.where.Constraint'>
  192. ------------------------------------------------------------------------
  193. File: /usr/local/lib/python2.7/copy.py (Line: 237)
  194. Function: _deepcopy_tuple
  195. 230 y.append(deepcopy(a, memo))
  196. 231 return y
  197. 232 d[list] = _deepcopy_list
  198. 233
  199. 234 def _deepcopy_tuple(x, memo):
  200. 235 y = []
  201. 236 for a in x:
  202. 237 ==> y.append(deepcopy(a, memo))
  203. 238 d = id(x)
  204. 239 try:
  205. 240 return memo[d]
  206. 241 except KeyError:
  207. 242 pass
  208. 243 for i in range(len(x)):
  209. Variables:
  210. a = <django.db.models.sql.where.Constraint object at 0x80f22c890>
  211. y = []
  212. memo =
  213. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  214. 34613662712: [],
  215. 34614756272: []}
  216. x =
  217. (<django.db.models.sql.where.Constraint object at 0x80f22c890>,
  218. 'exact',
  219. True,
  220. 2)
  221. ------------------------------------------------------------------------
  222. File: /usr/local/lib/python2.7/copy.py (Line: 163)
  223. Function: deepcopy
  224. 156 if y is not _nil:
  225. 157 return y
  226. 158
  227. 159 cls = type(x)
  228. 160
  229. 161 copier = _deepcopy_dispatch.get(cls)
  230. 162 if copier:
  231. 163 ==> y = copier(x, memo)
  232. 164 else:
  233. 165 try:
  234. 166 issc = issubclass(cls, type)
  235. 167 except TypeError: # cls is not a class (old Boost; see SF #502085)
  236. 168 issc = 0
  237. 169 if issc:
  238. Variables:
  239. d = 34615809752
  240. memo =
  241. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  242. 34613662712: [],
  243. 34614756272: []}
  244. copier = <function _deepcopy_tuple at 0x801a8bcf8>
  245. _nil = []
  246. y = []
  247. x =
  248. (<django.db.models.sql.where.Constraint object at 0x80f22c890>,
  249. 'exact',
  250. True,
  251. 2)
  252. cls = <type 'tuple'>
  253. ------------------------------------------------------------------------
  254. File: /usr/local/lib/python2.7/copy.py (Line: 230)
  255. Function: _deepcopy_list
  256. 223 d[types.FunctionType] = _deepcopy_atomic
  257. 224 d[weakref.ref] = _deepcopy_atomic
  258. 225
  259. 226 def _deepcopy_list(x, memo):
  260. 227 y = []
  261. 228 memo[id(x)] = y
  262. 229 for a in x:
  263. 230 ==> y.append(deepcopy(a, memo))
  264. 231 return y
  265. 232 d[list] = _deepcopy_list
  266. 233
  267. 234 def _deepcopy_tuple(x, memo):
  268. 235 y = []
  269. 236 for a in x:
  270. Variables:
  271. a =
  272. (<django.db.models.sql.where.Constraint object at 0x80f22c890>,
  273. 'exact',
  274. True,
  275. 2)
  276. y = []
  277. memo =
  278. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  279. 34613662712: [],
  280. 34614756272: []}
  281. x =
  282. [(<django.db.models.sql.where.Constraint object at 0x80f22c890>,
  283. 'exact',
  284. True,
  285. 2)]
  286. ------------------------------------------------------------------------
  287. File: /usr/local/lib/python2.7/copy.py (Line: 163)
  288. Function: deepcopy
  289. 156 if y is not _nil:
  290. 157 return y
  291. 158
  292. 159 cls = type(x)
  293. 160
  294. 161 copier = _deepcopy_dispatch.get(cls)
  295. 162 if copier:
  296. 163 ==> y = copier(x, memo)
  297. 164 else:
  298. 165 try:
  299. 166 issc = issubclass(cls, type)
  300. 167 except TypeError: # cls is not a class (old Boost; see SF #502085)
  301. 168 issc = 0
  302. 169 if issc:
  303. Variables:
  304. d = 34613662712
  305. memo =
  306. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  307. 34613662712: [],
  308. 34614756272: []}
  309. copier = <function _deepcopy_list at 0x801a8bc80>
  310. _nil = []
  311. y = []
  312. x =
  313. [(<django.db.models.sql.where.Constraint object at 0x80f22c890>,
  314. 'exact',
  315. True,
  316. 2)]
  317. cls = <type 'list'>
  318. ------------------------------------------------------------------------
  319. File: /opt/noc/lib/python2.7/site-packages/django/utils/tree.py (Line: 61)
  320. Function: __deepcopy__
  321. 54
  322. 55 def __deepcopy__(self, memodict):
  323. 56 """
  324. 57 Utility method used by copy.deepcopy().
  325. 58 """
  326. 59 obj = Node(connector=self.connector, negated=self.negated)
  327. 60 obj.__class__ = self.__class__
  328. 61 ==> obj.children = copy.deepcopy(self.children, memodict)
  329. 62 obj.subtree_parents = copy.deepcopy(self.subtree_parents, memodict)
  330. 63 return obj
  331. 64
  332. 65 def __len__(self):
  333. 66 """
  334. 67 The size of a node if the number of children it has.
  335. Variables:
  336. memodict =
  337. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  338. 34613662712: [],
  339. 34614756272: []}
  340. obj = <django.db.models.sql.where.WhereNode object at 0x80f22c9d0>
  341. self = <django.db.models.sql.where.WhereNode object at 0x80f22c250>
  342. ------------------------------------------------------------------------
  343. File: /usr/local/lib/python2.7/copy.py (Line: 174)
  344. Function: deepcopy
  345. 167 except TypeError: # cls is not a class (old Boost; see SF #502085)
  346. 168 issc = 0
  347. 169 if issc:
  348. 170 y = _deepcopy_atomic(x, memo)
  349. 171 else:
  350. 172 copier = getattr(x, "__deepcopy__", None)
  351. 173 if copier:
  352. 174 ==> y = copier(memo)
  353. 175 else:
  354. 176 reductor = dispatch_table.get(cls)
  355. 177 if reductor:
  356. 178 rv = reductor(x)
  357. 179 else:
  358. 180 reductor = getattr(x, "__reduce_ex__", None)
  359. Variables:
  360. d = 34613674576
  361. issc = False
  362. memo =
  363. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  364. 34613662712: [],
  365. 34614756272: []}
  366. copier =
  367. <bound method WhereNode.__deepcopy__ of <django.db.models.sql.where.WhereNode object at 0x80f22c250>>
  368. _nil = []
  369. y = []
  370. x = <django.db.models.sql.where.WhereNode object at 0x80f22c250>
  371. cls = <class 'django.db.models.sql.where.WhereNode'>
  372. ------------------------------------------------------------------------
  373. File: /usr/local/lib/python2.7/copy.py (Line: 230)
  374. Function: _deepcopy_list
  375. 223 d[types.FunctionType] = _deepcopy_atomic
  376. 224 d[weakref.ref] = _deepcopy_atomic
  377. 225
  378. 226 def _deepcopy_list(x, memo):
  379. 227 y = []
  380. 228 memo[id(x)] = y
  381. 229 for a in x:
  382. 230 ==> y.append(deepcopy(a, memo))
  383. 231 return y
  384. 232 d[list] = _deepcopy_list
  385. 233
  386. 234 def _deepcopy_tuple(x, memo):
  387. 235 y = []
  388. 236 for a in x:
  389. Variables:
  390. a = <django.db.models.sql.where.WhereNode object at 0x80f22c250>
  391. y = []
  392. memo =
  393. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  394. 34613662712: [],
  395. 34614756272: []}
  396. x = [<django.db.models.sql.where.WhereNode object at 0x80f22c250>]
  397. ------------------------------------------------------------------------
  398. File: /usr/local/lib/python2.7/copy.py (Line: 163)
  399. Function: deepcopy
  400. 156 if y is not _nil:
  401. 157 return y
  402. 158
  403. 159 cls = type(x)
  404. 160
  405. 161 copier = _deepcopy_dispatch.get(cls)
  406. 162 if copier:
  407. 163 ==> y = copier(x, memo)
  408. 164 else:
  409. 165 try:
  410. 166 issc = issubclass(cls, type)
  411. 167 except TypeError: # cls is not a class (old Boost; see SF #502085)
  412. 168 issc = 0
  413. 169 if issc:
  414. Variables:
  415. d = 34614756272
  416. memo =
  417. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  418. 34613662712: [],
  419. 34614756272: []}
  420. copier = <function _deepcopy_list at 0x801a8bc80>
  421. _nil = []
  422. y = []
  423. x = [<django.db.models.sql.where.WhereNode object at 0x80f22c250>]
  424. cls = <type 'list'>
  425. ------------------------------------------------------------------------
  426. File: /opt/noc/lib/python2.7/site-packages/django/utils/tree.py (Line: 61)
  427. Function: __deepcopy__
  428. 54
  429. 55 def __deepcopy__(self, memodict):
  430. 56 """
  431. 57 Utility method used by copy.deepcopy().
  432. 58 """
  433. 59 obj = Node(connector=self.connector, negated=self.negated)
  434. 60 obj.__class__ = self.__class__
  435. 61 ==> obj.children = copy.deepcopy(self.children, memodict)
  436. 62 obj.subtree_parents = copy.deepcopy(self.subtree_parents, memodict)
  437. 63 return obj
  438. 64
  439. 65 def __len__(self):
  440. 66 """
  441. 67 The size of a node if the number of children it has.
  442. Variables:
  443. memodict =
  444. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  445. 34613662712: [],
  446. 34614756272: []}
  447. obj = <django.db.models.sql.where.WhereNode object at 0x80f22c290>
  448. self = <django.db.models.sql.where.WhereNode object at 0x80f22cb10>
  449. ------------------------------------------------------------------------
  450. File: /usr/local/lib/python2.7/copy.py (Line: 174)
  451. Function: deepcopy
  452. 167 except TypeError: # cls is not a class (old Boost; see SF #502085)
  453. 168 issc = 0
  454. 169 if issc:
  455. 170 y = _deepcopy_atomic(x, memo)
  456. 171 else:
  457. 172 copier = getattr(x, "__deepcopy__", None)
  458. 173 if copier:
  459. 174 ==> y = copier(memo)
  460. 175 else:
  461. 176 reductor = dispatch_table.get(cls)
  462. 177 if reductor:
  463. 178 rv = reductor(x)
  464. 179 else:
  465. 180 reductor = getattr(x, "__reduce_ex__", None)
  466. Variables:
  467. d = 34613676816
  468. issc = False
  469. memo =
  470. {34463277088: <class 'django.db.models.sql.where.Constraint'>,
  471. 34613662712: [],
  472. 34614756272: []}
  473. copier =
  474. <bound method WhereNode.__deepcopy__ of <django.db.models.sql.where.WhereNode object at 0x80f22cb10>>
  475. _nil = []
  476. y = []
  477. x = <django.db.models.sql.where.WhereNode object at 0x80f22cb10>
  478. cls = <class 'django.db.models.sql.where.WhereNode'>
  479. ------------------------------------------------------------------------
  480. File: /opt/noc/lib/python2.7/site-packages/django/db/models/sql/query.py (Line: 259)
  481. Function: clone
  482. 252 obj.included_inherited_models = self.included_inherited_models.copy()
  483. 253 obj.ordering_aliases = []
  484. 254 obj.select_fields = self.select_fields[:]
  485. 255 obj.related_select_fields = self.related_select_fields[:]
  486. 256 obj.dupe_avoidance = self.dupe_avoidance.copy()
  487. 257 obj.select = self.select[:]
  488. 258 obj.tables = self.tables[:]
  489. 259 ==> obj.where = copy.deepcopy(self.where, memo=memo)
  490. 260 obj.where_class = self.where_class
  491. 261 if self.group_by is None:
  492. 262 obj.group_by = None
  493. 263 else:
  494. 264 obj.group_by = self.group_by[:]
  495. 265 obj.having = copy.deepcopy(self.having, memo=memo)
  496. Variables:
  497. self = <django.db.models.sql.query.Query object at 0x80f22cc10>
  498. memo = None
  499. obj = <django.db.models.sql.query.Query object at 0x80f22c410>
  500. klass = None
  501. kwargs = {}
  502. ------------------------------------------------------------------------
  503. File: /opt/noc/lib/python2.7/site-packages/django/db/models/query.py (Line: 873)
  504. Function: _clone
  505. 866 for i in range(0, len(objs), batch_size)]:
  506. 867 self.model._base_manager._insert(batch, fields=fields,
  507. 868 using=self.db)
  508. 869
  509. 870 def _clone(self, klass=None, setup=False, **kwargs):
  510. 871 if klass is None:
  511. 872 klass = self.__class__
  512. 873 ==> query = self.query.clone()
  513. 874 if self._sticky_filter:
  514. 875 query.filter_is_sticky = True
  515. 876 c = klass(model=self.model, query=query, using=self._db)
  516. 877 c._for_write = self._for_write
  517. 878 c._prefetch_related_lookups = self._prefetch_related_lookups[:]
  518. 879 c.__dict__.update(kwargs)
  519. Variables:
  520. self = [<Prefix: Global(6): ::/0>]
  521. setup = False
  522. klass = <class 'django.db.models.query.QuerySet'>
  523. kwargs = {}
  524. ------------------------------------------------------------------------
  525. File: /opt/noc/lib/python2.7/site-packages/django/db/models/query.py (Line: 757)
  526. Function: order_by
  527. 750
  528. 751 def order_by(self, *field_names):
  529. 752 """
  530. 753 Returns a new QuerySet instance with the ordering changed.
  531. 754 """
  532. 755 assert self.query.can_filter(), \
  533. 756 "Cannot reorder a query once a slice has been taken."
  534. 757 ==> obj = self._clone()
  535. 758 obj.query.clear_ordering()
  536. 759 obj.query.add_ordering(*field_names)
  537. 760 return obj
  538. 761
  539. 762 def distinct(self, *field_names):
  540. 763 """
  541. Variables:
  542. field_names = ()
  543. self = [<Prefix: Global(6): ::/0>]
  544. ------------------------------------------------------------------------
  545. File: /opt/noc/lib/python2.7/site-packages/django/db/models/query.py (Line: 360)
  546. Function: get
  547. 353 def get(self, *args, **kwargs):
  548. 354 """
  549. 355 Performs the query and returns a single object matching the given
  550. 356 keyword arguments.
  551. 357 """
  552. 358 clone = self.filter(*args, **kwargs)
  553. 359 if self.query.can_filter():
  554. 360 ==> clone = clone.order_by()
  555. 361 num = len(clone)
  556. 362 if num == 1:
  557. 363 return clone._result_cache[0]
  558. 364 if not num:
  559. 365 raise self.model.DoesNotExist("%s matching query does not exist."
  560. 366 % self.model._meta.object_name)
  561. Variables:
  562. clone = [<Prefix: Global(6): ::/0>]
  563. args = ()
  564. self =
  565. [<Prefix: Global(4): 212.92.149.8/30>, <Prefix: Global(4): 212.92.130.0/24>, <Prefix: shpd(4): 0.0.0.0/0>, <Prefix: media(4): 0.0.0.0/0>, <Prefix: merins(4): 0.0.0.0/0>, <Prefix: Global(4): 149.62.0.76/30>, <Prefix: sov(4): 0.0.0.0/0>, <Prefix: bca(4): 0.0.0.0/0>, <Prefix: avangard(4): 0.0.0.0/0>, <Prefix: softswitch(4): 0.0.0.0/0>, <Prefix: Global(4): 92.242.65.40/30>, <Prefix: Global(4): 212.92.169.88/30>, <Prefix: Global(4): 89.189.10.12/30>, <Prefix: Global(4): 89.189.8.128/30>, <Prefix: Global(4): 212.92.152.176/30>, <Prefix: Global(4): 212.92.155.152/30>, <Prefix: Global(4): 195.98.63.240/28>, <Prefix: Global(4): 89.189.6.196/30>, <Prefix: Global(4): 212.92.159.28/30>, <Prefix: Global(4): 212.92.160.116/30>, '...(remaining elements truncated)...']
  566. kwargs = {'id__exact': 2}
  567. ------------------------------------------------------------------------
  568. File: /opt/noc/lib/python2.7/site-packages/django/db/models/fields/related.py (Line: 350)
  569. Function: __get__
  570. 343 raise self.field.rel.to.DoesNotExist
  571. 344 other_field = self.field.rel.get_related_field()
  572. 345 if other_field.rel:
  573. 346 params = {'%s__pk' % self.field.rel.field_name: val}
  574. 347 else:
  575. 348 params = {'%s__exact' % self.field.rel.field_name: val}
  576. 349 qs = self.get_query_set(instance=instance)
  577. 350 ==> rel_obj = qs.get(**params)
  578. 351 setattr(instance, self.cache_name, rel_obj)
  579. 352 return rel_obj
  580. 353
  581. 354 def __set__(self, instance, value):
  582. 355 if instance is None:
  583. 356 raise AttributeError("%s must be accessed via instance" % self._field.name)
  584. Variables:
  585. qs =
  586. [<Prefix: Global(4): 212.92.149.8/30>, <Prefix: Global(4): 212.92.130.0/24>, <Prefix: shpd(4): 0.0.0.0/0>, <Prefix: media(4): 0.0.0.0/0>, <Prefix: merins(4): 0.0.0.0/0>, <Prefix: Global(4): 149.62.0.76/30>, <Prefix: sov(4): 0.0.0.0/0>, <Prefix: bca(4): 0.0.0.0/0>, <Prefix: avangard(4): 0.0.0.0/0>, <Prefix: softswitch(4): 0.0.0.0/0>, <Prefix: Global(4): 92.242.65.40/30>, <Prefix: Global(4): 212.92.169.88/30>, <Prefix: Global(4): 89.189.10.12/30>, <Prefix: Global(4): 89.189.8.128/30>, <Prefix: Global(4): 212.92.152.176/30>, <Prefix: Global(4): 212.92.155.152/30>, <Prefix: Global(4): 195.98.63.240/28>, <Prefix: Global(4): 89.189.6.196/30>, <Prefix: Global(4): 212.92.159.28/30>, <Prefix: Global(4): 212.92.160.116/30>, '...(remaining elements truncated)...']
  587. val = 2
  588. instance = <Prefix: Global(6): ::/0>
  589. other_field = <django.db.models.fields.AutoField: id>
  590. self =
  591. <django.db.models.fields.related.ReverseSingleRelatedObjectDescriptor object at 0x80d324610>
  592. instance_type = <class 'noc.ip.models.prefix.Prefix'>
  593. params = {'id__exact': 2}
  594. ------------------------------------------------------------------------
  595. File: /opt/noc/ip/models/prefix.py (Line: 520)
  596. Function: effective_ip_discovery
  597. 513 for fp in IP.prefix(self.prefix).iter_free(
  598. 514 [p.prefix for p in self.children_set.all()]):
  599. 515 yield str(fp)
  600. 516
  601. 517 @property
  602. 518 def effective_ip_discovery(self):
  603. 519 if self.enable_ip_discovery == "I":
  604. 520 ==> if self.parent:
  605. 521 return self.parent.effective_ip_discovery
  606. 522 else:
  607. 523 return "E"
  608. 524 else:
  609. 525 return self.enable_ip_discovery
  610. 526
  611. Variables:
  612. self = <Prefix: Global(6): ::/0>
  613. ------------------------------------------------------------------------
  614. File: /opt/noc/ip/models/prefix.py (Line: 521)
  615. Function: effective_ip_discovery
  616. 514 [p.prefix for p in self.children_set.all()]):
  617. 515 yield str(fp)
  618. 516
  619. 517 @property
  620. 518 def effective_ip_discovery(self):
  621. 519 if self.enable_ip_discovery == "I":
  622. 520 if self.parent:
  623. 521 ==> return self.parent.effective_ip_discovery
  624. 522 else:
  625. 523 return "E"
  626. 524 else:
  627. 525 return self.enable_ip_discovery
  628. 526
  629. 527
  630. Variables:
  631. self = <Prefix: Global(6): ::/0>
  632. ------------------------------------------------------------------------
  633. File: /opt/noc/ip/models/prefix.py (Line: 521)
  634. Function: effective_ip_discovery
  635. 514 [p.prefix for p in self.children_set.all()]):
  636. 515 yield str(fp)
  637. 516
  638. 517 @property
  639. 518 def effective_ip_discovery(self):
  640. 519 if self.enable_ip_discovery == "I":
  641. 520 if self.parent:
  642. 521 ==> return self.parent.effective_ip_discovery
  643. 522 else:
  644. 523 return "E"
  645. 524 else:
  646. 525 return self.enable_ip_discovery
  647. 526
  648. 527
  649. Variables:
  650. self = <Prefix: Global(6): ::/0>
  651. ------------------------------------------------------------------------
  652. File: /opt/noc/ip/models/prefix.py (Line: 521)
  653. Function: effective_ip_discovery
  654. 514 [p.prefix for p in self.children_set.all()]):
  655. 515 yield str(fp)
  656. 516
  657. 517 @property
  658. 518 def effective_ip_discovery(self):
  659. 519 if self.enable_ip_discovery == "I":
  660. 520 if self.parent:
  661. 521 ==> return self.parent.effective_ip_discovery
  662. 522 else:
  663. 523 return "E"
  664. 524 else:
  665. 525 return self.enable_ip_discovery
  666. 526
  667. 527
  668. Variables:
  669. self = <Prefix: Global(6): ::/0>
  670. ------------------------------------------------------------------------
  671. File: /opt/noc/ip/models/prefix.py (Line: 521)
  672. Function: effective_ip_discovery
  673. 514 [p.prefix for p in self.children_set.all()]):
  674. 515 yield str(fp)
  675. 516
  676. 517 @property
  677. 518 def effective_ip_discovery(self):
  678. 519 if self.enable_ip_discovery == "I":
  679. 520 if self.parent:
  680. 521 ==> return self.parent.effective_ip_discovery
  681. 522 else:
  682. 523 return "E"
  683. 524 else:
  684. 525 return self.enable_ip_discovery
  685. 526
  686. 527
  687. Variables:
  688. self = <Prefix: Global(6): ::/0>
  689. ------------------------------------------------------------------------
  690. File: /opt/noc/ip/models/prefix.py (Line: 521)
  691. Function: effective_ip_discovery
  692. 514 [p.prefix for p in self.children_set.all()]):
  693. 515 yield str(fp)
  694. 516
  695. 517 @property
  696. 518 def effective_ip_discovery(self):
  697. 519 if self.enable_ip_discovery == "I":
  698. 520 if self.parent:
  699. 521 ==> return self.parent.effective_ip_discovery
  700. 522 else:
  701. 523 return "E"
  702. 524 else:
  703. 525 return self.enable_ip_discovery
  704. 526
  705. 527
  706. Variables:
  707. self = <Prefix: Global(6): ::/0>
  708. ------------------------------------------------------------------------
  709. File: /opt/noc/ip/models/prefix.py (Line: 521)
  710. Function: effective_ip_discovery
  711. 514 [p.prefix for p in self.children_set.all()]):
  712. 515 yield str(fp)
  713. 516
  714. 517 @property
  715. 518 def effective_ip_discovery(self):
  716. 519 if self.enable_ip_discovery == "I":
  717. 520 if self.parent:
  718. 521 ==> return self.parent.effective_ip_discovery
  719. 522 else:
  720. 523 return "E"
  721. 524 else:
  722. 525 return self.enable_ip_discovery
  723. 526
  724. 527
  725. Variables:
  726. self = <Prefix: Global(6): ::/0>
  727. ------------------------------------------------------------------------
  728. File: /opt/noc/ip/models/prefix.py (Line: 521)
  729. Function: effective_ip_discovery
  730. 514 [p.prefix for p in self.children_set.all()]):
  731. 515 yield str(fp)
  732. 516
  733. 517 @property
  734. 518 def effective_ip_discovery(self):
  735. 519 if self.enable_ip_discovery == "I":
  736. 520 if self.parent:
  737. 521 ==> return self.parent.effective_ip_discovery
  738. 522 else:
  739. 523 return "E"
  740. 524 else:
  741. 525 return self.enable_ip_discovery
  742. 526
  743. 527
  744. Variables:
  745. self = <Prefix: Global(6): ::/0>
  746. ------------------------------------------------------------------------
  747. File: /opt/noc/ip/models/prefix.py (Line: 521)
  748. Function: effective_ip_discovery
  749. 514 [p.prefix for p in self.children_set.all()]):
  750. 515 yield str(fp)
  751. 516
  752. 517 @property
  753. 518 def effective_ip_discovery(self):
  754. 519 if self.enable_ip_discovery == "I":
  755. 520 if self.parent:
  756. 521 ==> return self.parent.effective_ip_discovery
  757. 522 else:
  758. 523 return "E"
  759. 524 else:
  760. 525 return self.enable_ip_discovery
  761. 526
  762. 527
  763. Variables:
  764. self = <Prefix: Global(6): ::/0>
  765. ------------------------------------------------------------------------
  766. File: /opt/noc/ip/models/prefix.py (Line: 521)
  767. Function: effective_ip_discovery
  768. 514 [p.prefix for p in self.children_set.all()]):
  769. 515 yield str(fp)
  770. 516
  771. 517 @property
  772. 518 def effective_ip_discovery(self):
  773. 519 if self.enable_ip_discovery == "I":
  774. 520 if self.parent:
  775. 521 ==> return self.parent.effective_ip_discovery
  776. 522 else:
  777. 523 return "E"
  778. 524 else:
  779. 525 return self.enable_ip_discovery
  780. 526
  781. 527
  782. Variables:
  783. self = <Prefix: Global(6): ::/0>
  784. ------------------------------------------------------------------------
  785. File: /opt/noc/ip/models/prefix.py (Line: 521)
  786. Function: effective_ip_discovery
  787. 514 [p.prefix for p in self.children_set.all()]):
  788. 515 yield str(fp)
  789. 516
  790. 517 @property
  791. 518 def effective_ip_discovery(self):
  792. 519 if self.enable_ip_discovery == "I":
  793. 520 if self.parent:
  794. 521 ==> return self.parent.effective_ip_discovery
  795. 522 else:
  796. 523 return "E"
  797. 524 else:
  798. 525 return self.enable_ip_discovery
  799. 526
  800. 527
  801. Variables:
  802. self = <Prefix: Global(6): ::/0>
  803. ------------------------------------------------------------------------
  804. File: /opt/noc/ip/models/prefix.py (Line: 521)
  805. Function: effective_ip_discovery
  806. 514 [p.prefix for p in self.children_set.all()]):
  807. 515 yield str(fp)
  808. 516
  809. 517 @property
  810. 518 def effective_ip_discovery(self):
  811. 519 if self.enable_ip_discovery == "I":
  812. 520 if self.parent:
  813. 521 ==> return self.parent.effective_ip_discovery
  814. 522 else:
  815. 523 return "E"
  816. 524 else:
  817. 525 return self.enable_ip_discovery
  818. 526
  819. 527
  820. Variables:
  821. self = <Prefix: Global(6): ::/0>
  822. ------------------------------------------------------------------------
  823. File: /opt/noc/ip/models/prefix.py (Line: 521)
  824. Function: effective_ip_discovery
  825. 514 [p.prefix for p in self.children_set.all()]):
  826. 515 yield str(fp)
  827. 516
  828. 517 @property
  829. 518 def effective_ip_discovery(self):
  830. 519 if self.enable_ip_discovery == "I":
  831. 520 if self.parent:
  832. 521 ==> return self.parent.effective_ip_discovery
  833. 522 else:
  834. 523 return "E"
  835. 524 else:
  836. 525 return self.enable_ip_discovery
  837. 526
  838. 527
  839. Variables:
  840. self = <Prefix: Global(6): ::/0>
  841. ------------------------------------------------------------------------
  842. File: /opt/noc/ip/models/prefix.py (Line: 521)
  843. Function: effective_ip_discovery
  844. 514 [p.prefix for p in self.children_set.all()]):
  845. 515 yield str(fp)
  846. 516
  847. 517 @property
  848. 518 def effective_ip_discovery(self):
  849. 519 if self.enable_ip_discovery == "I":
  850. 520 if self.parent:
  851. 521 ==> return self.parent.effective_ip_discovery
  852. 522 else:
  853. 523 return "E"
  854. 524 else:
  855. 525 return self.enable_ip_discovery
  856. 526
  857. 527
  858. Variables:
  859. self = <Prefix: Global(6): ::/0>
  860. ------------------------------------------------------------------------
  861. File: /opt/noc/ip/models/prefix.py (Line: 521)
  862. Function: effective_ip_discovery
  863. 514 [p.prefix for p in self.children_set.all()]):
  864. 515 yield str(fp)
  865. 516
  866. 517 @property
  867. 518 def effective_ip_discovery(self):
  868. 519 if self.enable_ip_discovery == "I":
  869. 520 if self.parent:
  870. 521 ==> return self.parent.effective_ip_discovery
  871. 522 else:
  872. 523 return "E"
  873. 524 else:
  874. 525 return self.enable_ip_discovery
  875. 526
  876. 527
  877. Variables:
  878. self = <Prefix: Global(6): ::/0>
  879. ------------------------------------------------------------------------
  880. File: /opt/noc/ip/models/prefix.py (Line: 521)
  881. Function: effective_ip_discovery
  882. 514 [p.prefix for p in self.children_set.all()]):
  883. 515 yield str(fp)
  884. 516
  885. 517 @property
  886. 518 def effective_ip_discovery(self):
  887. 519 if self.enable_ip_discovery == "I":
  888. 520 if self.parent:
  889. 521 ==> return self.parent.effective_ip_discovery
  890. 522 else:
  891. 523 return "E"
  892. 524 else:
  893. 525 return self.enable_ip_discovery
  894. 526
  895. 527
  896. Variables:
  897. self = <Prefix: Global(6): ::/0>
  898. ------------------------------------------------------------------------
  899. File: /opt/noc/ip/models/prefix.py (Line: 521)
  900. Function: effective_ip_discovery
  901. 514 [p.prefix for p in self.children_set.all()]):
  902. 515 yield str(fp)
  903. 516
  904. 517 @property
  905. 518 def effective_ip_discovery(self):
  906. 519 if self.enable_ip_discovery == "I":
  907. 520 if self.parent:
  908. 521 ==> return self.parent.effective_ip_discovery
  909. 522 else:
  910. 523 return "E"
  911. 524 else:
  912. 525 return self.enable_ip_discovery
  913. 526
  914. 527
  915. Variables:
  916. self = <Prefix: Global(6): ::/0>
  917. ------------------------------------------------------------------------
  918. File: /opt/noc/ip/models/prefix.py (Line: 521)
  919. Function: effective_ip_discovery
  920. 514 [p.prefix for p in self.children_set.all()]):
  921. 515 yield str(fp)
  922. 516
  923. 517 @property
  924. 518 def effective_ip_discovery(self):
  925. 519 if self.enable_ip_discovery == "I":
  926. 520 if self.parent:
  927. 521 ==> return self.parent.effective_ip_discovery
  928. 522 else:
  929. 523 return "E"
  930. 524 else:
  931. 525 return self.enable_ip_discovery
  932. 526
  933. 527
  934. Variables:
  935. self = <Prefix: Global(6): ::/0>
  936. ------------------------------------------------------------------------
  937. File: /opt/noc/ip/models/prefix.py (Line: 521)
  938. Function: effective_ip_discovery
  939. 514 [p.prefix for p in self.children_set.all()]):
  940. 515 yield str(fp)
  941. 516
  942. 517 @property
  943. 518 def effective_ip_discovery(self):
  944. 519 if self.enable_ip_discovery == "I":
  945. 520 if self.parent:
  946. 521 ==> return self.parent.effective_ip_discovery
  947. 522 else:
  948. 523 return "E"
  949. 524 else:
  950. 525 return self.enable_ip_discovery
  951. 526
  952. 527
  953. Variables:
  954. self = <Prefix: Global(6): ::/0>
  955. ------------------------------------------------------------------------
  956. File: /opt/noc/ip/models/prefix.py (Line: 521)
  957. Function: effective_ip_discovery
  958. 514 [p.prefix for p in self.children_set.all()]):
  959. 515 yield str(fp)
  960. 516
  961. 517 @property
  962. 518 def effective_ip_discovery(self):
  963. 519 if self.enable_ip_discovery == "I":
  964. 520 if self.parent:
  965. 521 ==> return self.parent.effective_ip_discovery
  966. 522 else:
  967. 523 return "E"
  968. 524 else:
  969. 525 return self.enable_ip_discovery
  970. 526
  971. 527
  972. Variables:
  973. self = <Prefix: Global(6): ::/0>
  974. ------------------------------------------------------------------------
  975. File: /opt/noc/ip/models/prefix.py (Line: 521)
  976. Function: effective_ip_discovery
  977. 514 [p.prefix for p in self.children_set.all()]):
  978. 515 yield str(fp)
  979. 516
  980. 517 @property
  981. 518 def effective_ip_discovery(self):
  982. 519 if self.enable_ip_discovery == "I":
  983. 520 if self.parent:
  984. 521 ==> return self.parent.effective_ip_discovery
  985. 522 else:
  986. 523 return "E"
  987. 524 else:
  988. 525 return self.enable_ip_discovery
  989. 526
  990. 527
  991. Variables:
  992. self = <Prefix: Global(6): ::/0>
  993. ------------------------------------------------------------------------
  994. File: /opt/noc/ip/models/prefix.py (Line: 521)
  995. Function: effective_ip_discovery
  996. 514 [p.prefix for p in self.children_set.all()]):
  997. 515 yield str(fp)
  998. 516
  999. 517 @property
  1000. 518 def effective_ip_discovery(self):
  1001. 519 if self.enable_ip_discovery == "I":
  1002. 520 if self.parent:
  1003. 521 ==> return self.parent.effective_ip_discovery
  1004. 522 else:
  1005. 523 return "E"
  1006. 524 else:
  1007. 525 return self.enable_ip_discovery
  1008. 526
  1009. 527
  1010. Variables:
  1011. self = <Prefix: Global(6): ::/0>
  1012. ------------------------------------------------------------------------
  1013. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1014. Function: effective_ip_discovery
  1015. 514 [p.prefix for p in self.children_set.all()]):
  1016. 515 yield str(fp)
  1017. 516
  1018. 517 @property
  1019. 518 def effective_ip_discovery(self):
  1020. 519 if self.enable_ip_discovery == "I":
  1021. 520 if self.parent:
  1022. 521 ==> return self.parent.effective_ip_discovery
  1023. 522 else:
  1024. 523 return "E"
  1025. 524 else:
  1026. 525 return self.enable_ip_discovery
  1027. 526
  1028. 527
  1029. Variables:
  1030. self = <Prefix: Global(6): ::/0>
  1031. ------------------------------------------------------------------------
  1032. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1033. Function: effective_ip_discovery
  1034. 514 [p.prefix for p in self.children_set.all()]):
  1035. 515 yield str(fp)
  1036. 516
  1037. 517 @property
  1038. 518 def effective_ip_discovery(self):
  1039. 519 if self.enable_ip_discovery == "I":
  1040. 520 if self.parent:
  1041. 521 ==> return self.parent.effective_ip_discovery
  1042. 522 else:
  1043. 523 return "E"
  1044. 524 else:
  1045. 525 return self.enable_ip_discovery
  1046. 526
  1047. 527
  1048. Variables:
  1049. self = <Prefix: Global(6): ::/0>
  1050. ------------------------------------------------------------------------
  1051. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1052. Function: effective_ip_discovery
  1053. 514 [p.prefix for p in self.children_set.all()]):
  1054. 515 yield str(fp)
  1055. 516
  1056. 517 @property
  1057. 518 def effective_ip_discovery(self):
  1058. 519 if self.enable_ip_discovery == "I":
  1059. 520 if self.parent:
  1060. 521 ==> return self.parent.effective_ip_discovery
  1061. 522 else:
  1062. 523 return "E"
  1063. 524 else:
  1064. 525 return self.enable_ip_discovery
  1065. 526
  1066. 527
  1067. Variables:
  1068. self = <Prefix: Global(6): ::/0>
  1069. ------------------------------------------------------------------------
  1070. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1071. Function: effective_ip_discovery
  1072. 514 [p.prefix for p in self.children_set.all()]):
  1073. 515 yield str(fp)
  1074. 516
  1075. 517 @property
  1076. 518 def effective_ip_discovery(self):
  1077. 519 if self.enable_ip_discovery == "I":
  1078. 520 if self.parent:
  1079. 521 ==> return self.parent.effective_ip_discovery
  1080. 522 else:
  1081. 523 return "E"
  1082. 524 else:
  1083. 525 return self.enable_ip_discovery
  1084. 526
  1085. 527
  1086. Variables:
  1087. self = <Prefix: Global(6): ::/0>
  1088. ------------------------------------------------------------------------
  1089. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1090. Function: effective_ip_discovery
  1091. 514 [p.prefix for p in self.children_set.all()]):
  1092. 515 yield str(fp)
  1093. 516
  1094. 517 @property
  1095. 518 def effective_ip_discovery(self):
  1096. 519 if self.enable_ip_discovery == "I":
  1097. 520 if self.parent:
  1098. 521 ==> return self.parent.effective_ip_discovery
  1099. 522 else:
  1100. 523 return "E"
  1101. 524 else:
  1102. 525 return self.enable_ip_discovery
  1103. 526
  1104. 527
  1105. Variables:
  1106. self = <Prefix: Global(6): ::/0>
  1107. ------------------------------------------------------------------------
  1108. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1109. Function: effective_ip_discovery
  1110. 514 [p.prefix for p in self.children_set.all()]):
  1111. 515 yield str(fp)
  1112. 516
  1113. 517 @property
  1114. 518 def effective_ip_discovery(self):
  1115. 519 if self.enable_ip_discovery == "I":
  1116. 520 if self.parent:
  1117. 521 ==> return self.parent.effective_ip_discovery
  1118. 522 else:
  1119. 523 return "E"
  1120. 524 else:
  1121. 525 return self.enable_ip_discovery
  1122. 526
  1123. 527
  1124. Variables:
  1125. self = <Prefix: Global(6): ::/0>
  1126. ------------------------------------------------------------------------
  1127. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1128. Function: effective_ip_discovery
  1129. 514 [p.prefix for p in self.children_set.all()]):
  1130. 515 yield str(fp)
  1131. 516
  1132. 517 @property
  1133. 518 def effective_ip_discovery(self):
  1134. 519 if self.enable_ip_discovery == "I":
  1135. 520 if self.parent:
  1136. 521 ==> return self.parent.effective_ip_discovery
  1137. 522 else:
  1138. 523 return "E"
  1139. 524 else:
  1140. 525 return self.enable_ip_discovery
  1141. 526
  1142. 527
  1143. Variables:
  1144. self = <Prefix: Global(6): ::/0>
  1145. ------------------------------------------------------------------------
  1146. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1147. Function: effective_ip_discovery
  1148. 514 [p.prefix for p in self.children_set.all()]):
  1149. 515 yield str(fp)
  1150. 516
  1151. 517 @property
  1152. 518 def effective_ip_discovery(self):
  1153. 519 if self.enable_ip_discovery == "I":
  1154. 520 if self.parent:
  1155. 521 ==> return self.parent.effective_ip_discovery
  1156. 522 else:
  1157. 523 return "E"
  1158. 524 else:
  1159. 525 return self.enable_ip_discovery
  1160. 526
  1161. 527
  1162. Variables:
  1163. self = <Prefix: Global(6): ::/0>
  1164. ------------------------------------------------------------------------
  1165. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1166. Function: effective_ip_discovery
  1167. 514 [p.prefix for p in self.children_set.all()]):
  1168. 515 yield str(fp)
  1169. 516
  1170. 517 @property
  1171. 518 def effective_ip_discovery(self):
  1172. 519 if self.enable_ip_discovery == "I":
  1173. 520 if self.parent:
  1174. 521 ==> return self.parent.effective_ip_discovery
  1175. 522 else:
  1176. 523 return "E"
  1177. 524 else:
  1178. 525 return self.enable_ip_discovery
  1179. 526
  1180. 527
  1181. Variables:
  1182. self = <Prefix: Global(6): ::/0>
  1183. ------------------------------------------------------------------------
  1184. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1185. Function: effective_ip_discovery
  1186. 514 [p.prefix for p in self.children_set.all()]):
  1187. 515 yield str(fp)
  1188. 516
  1189. 517 @property
  1190. 518 def effective_ip_discovery(self):
  1191. 519 if self.enable_ip_discovery == "I":
  1192. 520 if self.parent:
  1193. 521 ==> return self.parent.effective_ip_discovery
  1194. 522 else:
  1195. 523 return "E"
  1196. 524 else:
  1197. 525 return self.enable_ip_discovery
  1198. 526
  1199. 527
  1200. Variables:
  1201. self = <Prefix: Global(6): ::/0>
  1202. ------------------------------------------------------------------------
  1203. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1204. Function: effective_ip_discovery
  1205. 514 [p.prefix for p in self.children_set.all()]):
  1206. 515 yield str(fp)
  1207. 516
  1208. 517 @property
  1209. 518 def effective_ip_discovery(self):
  1210. 519 if self.enable_ip_discovery == "I":
  1211. 520 if self.parent:
  1212. 521 ==> return self.parent.effective_ip_discovery
  1213. 522 else:
  1214. 523 return "E"
  1215. 524 else:
  1216. 525 return self.enable_ip_discovery
  1217. 526
  1218. 527
  1219. Variables:
  1220. self = <Prefix: Global(6): ::/0>
  1221. ------------------------------------------------------------------------
  1222. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1223. Function: effective_ip_discovery
  1224. 514 [p.prefix for p in self.children_set.all()]):
  1225. 515 yield str(fp)
  1226. 516
  1227. 517 @property
  1228. 518 def effective_ip_discovery(self):
  1229. 519 if self.enable_ip_discovery == "I":
  1230. 520 if self.parent:
  1231. 521 ==> return self.parent.effective_ip_discovery
  1232. 522 else:
  1233. 523 return "E"
  1234. 524 else:
  1235. 525 return self.enable_ip_discovery
  1236. 526
  1237. 527
  1238. Variables:
  1239. self = <Prefix: Global(6): ::/0>
  1240. ------------------------------------------------------------------------
  1241. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1242. Function: effective_ip_discovery
  1243. 514 [p.prefix for p in self.children_set.all()]):
  1244. 515 yield str(fp)
  1245. 516
  1246. 517 @property
  1247. 518 def effective_ip_discovery(self):
  1248. 519 if self.enable_ip_discovery == "I":
  1249. 520 if self.parent:
  1250. 521 ==> return self.parent.effective_ip_discovery
  1251. 522 else:
  1252. 523 return "E"
  1253. 524 else:
  1254. 525 return self.enable_ip_discovery
  1255. 526
  1256. 527
  1257. Variables:
  1258. self = <Prefix: Global(6): ::/0>
  1259. ------------------------------------------------------------------------
  1260. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1261. Function: effective_ip_discovery
  1262. 514 [p.prefix for p in self.children_set.all()]):
  1263. 515 yield str(fp)
  1264. 516
  1265. 517 @property
  1266. 518 def effective_ip_discovery(self):
  1267. 519 if self.enable_ip_discovery == "I":
  1268. 520 if self.parent:
  1269. 521 ==> return self.parent.effective_ip_discovery
  1270. 522 else:
  1271. 523 return "E"
  1272. 524 else:
  1273. 525 return self.enable_ip_discovery
  1274. 526
  1275. 527
  1276. Variables:
  1277. self = <Prefix: Global(6): ::/0>
  1278. ------------------------------------------------------------------------
  1279. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1280. Function: effective_ip_discovery
  1281. 514 [p.prefix for p in self.children_set.all()]):
  1282. 515 yield str(fp)
  1283. 516
  1284. 517 @property
  1285. 518 def effective_ip_discovery(self):
  1286. 519 if self.enable_ip_discovery == "I":
  1287. 520 if self.parent:
  1288. 521 ==> return self.parent.effective_ip_discovery
  1289. 522 else:
  1290. 523 return "E"
  1291. 524 else:
  1292. 525 return self.enable_ip_discovery
  1293. 526
  1294. 527
  1295. Variables:
  1296. self = <Prefix: Global(6): ::/0>
  1297. ------------------------------------------------------------------------
  1298. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1299. Function: effective_ip_discovery
  1300. 514 [p.prefix for p in self.children_set.all()]):
  1301. 515 yield str(fp)
  1302. 516
  1303. 517 @property
  1304. 518 def effective_ip_discovery(self):
  1305. 519 if self.enable_ip_discovery == "I":
  1306. 520 if self.parent:
  1307. 521 ==> return self.parent.effective_ip_discovery
  1308. 522 else:
  1309. 523 return "E"
  1310. 524 else:
  1311. 525 return self.enable_ip_discovery
  1312. 526
  1313. 527
  1314. Variables:
  1315. self = <Prefix: Global(6): ::/0>
  1316. ------------------------------------------------------------------------
  1317. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1318. Function: effective_ip_discovery
  1319. 514 [p.prefix for p in self.children_set.all()]):
  1320. 515 yield str(fp)
  1321. 516
  1322. 517 @property
  1323. 518 def effective_ip_discovery(self):
  1324. 519 if self.enable_ip_discovery == "I":
  1325. 520 if self.parent:
  1326. 521 ==> return self.parent.effective_ip_discovery
  1327. 522 else:
  1328. 523 return "E"
  1329. 524 else:
  1330. 525 return self.enable_ip_discovery
  1331. 526
  1332. 527
  1333. Variables:
  1334. self = <Prefix: Global(6): ::/0>
  1335. ------------------------------------------------------------------------
  1336. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1337. Function: effective_ip_discovery
  1338. 514 [p.prefix for p in self.children_set.all()]):
  1339. 515 yield str(fp)
  1340. 516
  1341. 517 @property
  1342. 518 def effective_ip_discovery(self):
  1343. 519 if self.enable_ip_discovery == "I":
  1344. 520 if self.parent:
  1345. 521 ==> return self.parent.effective_ip_discovery
  1346. 522 else:
  1347. 523 return "E"
  1348. 524 else:
  1349. 525 return self.enable_ip_discovery
  1350. 526
  1351. 527
  1352. Variables:
  1353. self = <Prefix: Global(6): ::/0>
  1354. ------------------------------------------------------------------------
  1355. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1356. Function: effective_ip_discovery
  1357. 514 [p.prefix for p in self.children_set.all()]):
  1358. 515 yield str(fp)
  1359. 516
  1360. 517 @property
  1361. 518 def effective_ip_discovery(self):
  1362. 519 if self.enable_ip_discovery == "I":
  1363. 520 if self.parent:
  1364. 521 ==> return self.parent.effective_ip_discovery
  1365. 522 else:
  1366. 523 return "E"
  1367. 524 else:
  1368. 525 return self.enable_ip_discovery
  1369. 526
  1370. 527
  1371. Variables:
  1372. self = <Prefix: Global(6): ::/0>
  1373. ------------------------------------------------------------------------
  1374. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1375. Function: effective_ip_discovery
  1376. 514 [p.prefix for p in self.children_set.all()]):
  1377. 515 yield str(fp)
  1378. 516
  1379. 517 @property
  1380. 518 def effective_ip_discovery(self):
  1381. 519 if self.enable_ip_discovery == "I":
  1382. 520 if self.parent:
  1383. 521 ==> return self.parent.effective_ip_discovery
  1384. 522 else:
  1385. 523 return "E"
  1386. 524 else:
  1387. 525 return self.enable_ip_discovery
  1388. 526
  1389. 527
  1390. Variables:
  1391. self = <Prefix: Global(6): ::/0>
  1392. ------------------------------------------------------------------------
  1393. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1394. Function: effective_ip_discovery
  1395. 514 [p.prefix for p in self.children_set.all()]):
  1396. 515 yield str(fp)
  1397. 516
  1398. 517 @property
  1399. 518 def effective_ip_discovery(self):
  1400. 519 if self.enable_ip_discovery == "I":
  1401. 520 if self.parent:
  1402. 521 ==> return self.parent.effective_ip_discovery
  1403. 522 else:
  1404. 523 return "E"
  1405. 524 else:
  1406. 525 return self.enable_ip_discovery
  1407. 526
  1408. 527
  1409. Variables:
  1410. self = <Prefix: Global(6): ::/0>
  1411. ------------------------------------------------------------------------
  1412. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1413. Function: effective_ip_discovery
  1414. 514 [p.prefix for p in self.children_set.all()]):
  1415. 515 yield str(fp)
  1416. 516
  1417. 517 @property
  1418. 518 def effective_ip_discovery(self):
  1419. 519 if self.enable_ip_discovery == "I":
  1420. 520 if self.parent:
  1421. 521 ==> return self.parent.effective_ip_discovery
  1422. 522 else:
  1423. 523 return "E"
  1424. 524 else:
  1425. 525 return self.enable_ip_discovery
  1426. 526
  1427. 527
  1428. Variables:
  1429. self = <Prefix: Global(6): ::/0>
  1430. ------------------------------------------------------------------------
  1431. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1432. Function: effective_ip_discovery
  1433. 514 [p.prefix for p in self.children_set.all()]):
  1434. 515 yield str(fp)
  1435. 516
  1436. 517 @property
  1437. 518 def effective_ip_discovery(self):
  1438. 519 if self.enable_ip_discovery == "I":
  1439. 520 if self.parent:
  1440. 521 ==> return self.parent.effective_ip_discovery
  1441. 522 else:
  1442. 523 return "E"
  1443. 524 else:
  1444. 525 return self.enable_ip_discovery
  1445. 526
  1446. 527
  1447. Variables:
  1448. self = <Prefix: Global(6): ::/0>
  1449. ------------------------------------------------------------------------
  1450. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1451. Function: effective_ip_discovery
  1452. 514 [p.prefix for p in self.children_set.all()]):
  1453. 515 yield str(fp)
  1454. 516
  1455. 517 @property
  1456. 518 def effective_ip_discovery(self):
  1457. 519 if self.enable_ip_discovery == "I":
  1458. 520 if self.parent:
  1459. 521 ==> return self.parent.effective_ip_discovery
  1460. 522 else:
  1461. 523 return "E"
  1462. 524 else:
  1463. 525 return self.enable_ip_discovery
  1464. 526
  1465. 527
  1466. Variables:
  1467. self = <Prefix: Global(6): ::/0>
  1468. ------------------------------------------------------------------------
  1469. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1470. Function: effective_ip_discovery
  1471. 514 [p.prefix for p in self.children_set.all()]):
  1472. 515 yield str(fp)
  1473. 516
  1474. 517 @property
  1475. 518 def effective_ip_discovery(self):
  1476. 519 if self.enable_ip_discovery == "I":
  1477. 520 if self.parent:
  1478. 521 ==> return self.parent.effective_ip_discovery
  1479. 522 else:
  1480. 523 return "E"
  1481. 524 else:
  1482. 525 return self.enable_ip_discovery
  1483. 526
  1484. 527
  1485. Variables:
  1486. self = <Prefix: Global(6): ::/0>
  1487. ------------------------------------------------------------------------
  1488. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1489. Function: effective_ip_discovery
  1490. 514 [p.prefix for p in self.children_set.all()]):
  1491. 515 yield str(fp)
  1492. 516
  1493. 517 @property
  1494. 518 def effective_ip_discovery(self):
  1495. 519 if self.enable_ip_discovery == "I":
  1496. 520 if self.parent:
  1497. 521 ==> return self.parent.effective_ip_discovery
  1498. 522 else:
  1499. 523 return "E"
  1500. 524 else:
  1501. 525 return self.enable_ip_discovery
  1502. 526
  1503. 527
  1504. Variables:
  1505. self = <Prefix: Global(6): ::/0>
  1506. ------------------------------------------------------------------------
  1507. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1508. Function: effective_ip_discovery
  1509. 514 [p.prefix for p in self.children_set.all()]):
  1510. 515 yield str(fp)
  1511. 516
  1512. 517 @property
  1513. 518 def effective_ip_discovery(self):
  1514. 519 if self.enable_ip_discovery == "I":
  1515. 520 if self.parent:
  1516. 521 ==> return self.parent.effective_ip_discovery
  1517. 522 else:
  1518. 523 return "E"
  1519. 524 else:
  1520. 525 return self.enable_ip_discovery
  1521. 526
  1522. 527
  1523. Variables:
  1524. self = <Prefix: Global(6): ::/0>
  1525. ------------------------------------------------------------------------
  1526. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1527. Function: effective_ip_discovery
  1528. 514 [p.prefix for p in self.children_set.all()]):
  1529. 515 yield str(fp)
  1530. 516
  1531. 517 @property
  1532. 518 def effective_ip_discovery(self):
  1533. 519 if self.enable_ip_discovery == "I":
  1534. 520 if self.parent:
  1535. 521 ==> return self.parent.effective_ip_discovery
  1536. 522 else:
  1537. 523 return "E"
  1538. 524 else:
  1539. 525 return self.enable_ip_discovery
  1540. 526
  1541. 527
  1542. Variables:
  1543. self = <Prefix: Global(6): ::/0>
  1544. ------------------------------------------------------------------------
  1545. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1546. Function: effective_ip_discovery
  1547. 514 [p.prefix for p in self.children_set.all()]):
  1548. 515 yield str(fp)
  1549. 516
  1550. 517 @property
  1551. 518 def effective_ip_discovery(self):
  1552. 519 if self.enable_ip_discovery == "I":
  1553. 520 if self.parent:
  1554. 521 ==> return self.parent.effective_ip_discovery
  1555. 522 else:
  1556. 523 return "E"
  1557. 524 else:
  1558. 525 return self.enable_ip_discovery
  1559. 526
  1560. 527
  1561. Variables:
  1562. self = <Prefix: Global(6): ::/0>
  1563. ------------------------------------------------------------------------
  1564. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1565. Function: effective_ip_discovery
  1566. 514 [p.prefix for p in self.children_set.all()]):
  1567. 515 yield str(fp)
  1568. 516
  1569. 517 @property
  1570. 518 def effective_ip_discovery(self):
  1571. 519 if self.enable_ip_discovery == "I":
  1572. 520 if self.parent:
  1573. 521 ==> return self.parent.effective_ip_discovery
  1574. 522 else:
  1575. 523 return "E"
  1576. 524 else:
  1577. 525 return self.enable_ip_discovery
  1578. 526
  1579. 527
  1580. Variables:
  1581. self = <Prefix: Global(6): ::/0>
  1582. ------------------------------------------------------------------------
  1583. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1584. Function: effective_ip_discovery
  1585. 514 [p.prefix for p in self.children_set.all()]):
  1586. 515 yield str(fp)
  1587. 516
  1588. 517 @property
  1589. 518 def effective_ip_discovery(self):
  1590. 519 if self.enable_ip_discovery == "I":
  1591. 520 if self.parent:
  1592. 521 ==> return self.parent.effective_ip_discovery
  1593. 522 else:
  1594. 523 return "E"
  1595. 524 else:
  1596. 525 return self.enable_ip_discovery
  1597. 526
  1598. 527
  1599. Variables:
  1600. self = <Prefix: Global(6): ::/0>
  1601. ------------------------------------------------------------------------
  1602. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1603. Function: effective_ip_discovery
  1604. 514 [p.prefix for p in self.children_set.all()]):
  1605. 515 yield str(fp)
  1606. 516
  1607. 517 @property
  1608. 518 def effective_ip_discovery(self):
  1609. 519 if self.enable_ip_discovery == "I":
  1610. 520 if self.parent:
  1611. 521 ==> return self.parent.effective_ip_discovery
  1612. 522 else:
  1613. 523 return "E"
  1614. 524 else:
  1615. 525 return self.enable_ip_discovery
  1616. 526
  1617. 527
  1618. Variables:
  1619. self = <Prefix: Global(6): ::/0>
  1620. ------------------------------------------------------------------------
  1621. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1622. Function: effective_ip_discovery
  1623. 514 [p.prefix for p in self.children_set.all()]):
  1624. 515 yield str(fp)
  1625. 516
  1626. 517 @property
  1627. 518 def effective_ip_discovery(self):
  1628. 519 if self.enable_ip_discovery == "I":
  1629. 520 if self.parent:
  1630. 521 ==> return self.parent.effective_ip_discovery
  1631. 522 else:
  1632. 523 return "E"
  1633. 524 else:
  1634. 525 return self.enable_ip_discovery
  1635. 526
  1636. 527
  1637. Variables:
  1638. self = <Prefix: Global(6): ::/0>
  1639. ------------------------------------------------------------------------
  1640. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1641. Function: effective_ip_discovery
  1642. 514 [p.prefix for p in self.children_set.all()]):
  1643. 515 yield str(fp)
  1644. 516
  1645. 517 @property
  1646. 518 def effective_ip_discovery(self):
  1647. 519 if self.enable_ip_discovery == "I":
  1648. 520 if self.parent:
  1649. 521 ==> return self.parent.effective_ip_discovery
  1650. 522 else:
  1651. 523 return "E"
  1652. 524 else:
  1653. 525 return self.enable_ip_discovery
  1654. 526
  1655. 527
  1656. Variables:
  1657. self = <Prefix: Global(6): ::/0>
  1658. ------------------------------------------------------------------------
  1659. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1660. Function: effective_ip_discovery
  1661. 514 [p.prefix for p in self.children_set.all()]):
  1662. 515 yield str(fp)
  1663. 516
  1664. 517 @property
  1665. 518 def effective_ip_discovery(self):
  1666. 519 if self.enable_ip_discovery == "I":
  1667. 520 if self.parent:
  1668. 521 ==> return self.parent.effective_ip_discovery
  1669. 522 else:
  1670. 523 return "E"
  1671. 524 else:
  1672. 525 return self.enable_ip_discovery
  1673. 526
  1674. 527
  1675. Variables:
  1676. self = <Prefix: Global(6): ::/0>
  1677. ------------------------------------------------------------------------
  1678. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1679. Function: effective_ip_discovery
  1680. 514 [p.prefix for p in self.children_set.all()]):
  1681. 515 yield str(fp)
  1682. 516
  1683. 517 @property
  1684. 518 def effective_ip_discovery(self):
  1685. 519 if self.enable_ip_discovery == "I":
  1686. 520 if self.parent:
  1687. 521 ==> return self.parent.effective_ip_discovery
  1688. 522 else:
  1689. 523 return "E"
  1690. 524 else:
  1691. 525 return self.enable_ip_discovery
  1692. 526
  1693. 527
  1694. Variables:
  1695. self = <Prefix: Global(6): ::/0>
  1696. ------------------------------------------------------------------------
  1697. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1698. Function: effective_ip_discovery
  1699. 514 [p.prefix for p in self.children_set.all()]):
  1700. 515 yield str(fp)
  1701. 516
  1702. 517 @property
  1703. 518 def effective_ip_discovery(self):
  1704. 519 if self.enable_ip_discovery == "I":
  1705. 520 if self.parent:
  1706. 521 ==> return self.parent.effective_ip_discovery
  1707. 522 else:
  1708. 523 return "E"
  1709. 524 else:
  1710. 525 return self.enable_ip_discovery
  1711. 526
  1712. 527
  1713. Variables:
  1714. self = <Prefix: Global(6): ::/0>
  1715. ------------------------------------------------------------------------
  1716. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1717. Function: effective_ip_discovery
  1718. 514 [p.prefix for p in self.children_set.all()]):
  1719. 515 yield str(fp)
  1720. 516
  1721. 517 @property
  1722. 518 def effective_ip_discovery(self):
  1723. 519 if self.enable_ip_discovery == "I":
  1724. 520 if self.parent:
  1725. 521 ==> return self.parent.effective_ip_discovery
  1726. 522 else:
  1727. 523 return "E"
  1728. 524 else:
  1729. 525 return self.enable_ip_discovery
  1730. 526
  1731. 527
  1732. Variables:
  1733. self = <Prefix: Global(6): ::/0>
  1734. ------------------------------------------------------------------------
  1735. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1736. Function: effective_ip_discovery
  1737. 514 [p.prefix for p in self.children_set.all()]):
  1738. 515 yield str(fp)
  1739. 516
  1740. 517 @property
  1741. 518 def effective_ip_discovery(self):
  1742. 519 if self.enable_ip_discovery == "I":
  1743. 520 if self.parent:
  1744. 521 ==> return self.parent.effective_ip_discovery
  1745. 522 else:
  1746. 523 return "E"
  1747. 524 else:
  1748. 525 return self.enable_ip_discovery
  1749. 526
  1750. 527
  1751. Variables:
  1752. self = <Prefix: Global(6): ::/0>
  1753. ------------------------------------------------------------------------
  1754. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1755. Function: effective_ip_discovery
  1756. 514 [p.prefix for p in self.children_set.all()]):
  1757. 515 yield str(fp)
  1758. 516
  1759. 517 @property
  1760. 518 def effective_ip_discovery(self):
  1761. 519 if self.enable_ip_discovery == "I":
  1762. 520 if self.parent:
  1763. 521 ==> return self.parent.effective_ip_discovery
  1764. 522 else:
  1765. 523 return "E"
  1766. 524 else:
  1767. 525 return self.enable_ip_discovery
  1768. 526
  1769. 527
  1770. Variables:
  1771. self = <Prefix: Global(6): ::/0>
  1772. ------------------------------------------------------------------------
  1773. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1774. Function: effective_ip_discovery
  1775. 514 [p.prefix for p in self.children_set.all()]):
  1776. 515 yield str(fp)
  1777. 516
  1778. 517 @property
  1779. 518 def effective_ip_discovery(self):
  1780. 519 if self.enable_ip_discovery == "I":
  1781. 520 if self.parent:
  1782. 521 ==> return self.parent.effective_ip_discovery
  1783. 522 else:
  1784. 523 return "E"
  1785. 524 else:
  1786. 525 return self.enable_ip_discovery
  1787. 526
  1788. 527
  1789. Variables:
  1790. self = <Prefix: Global(6): ::/0>
  1791. ------------------------------------------------------------------------
  1792. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1793. Function: effective_ip_discovery
  1794. 514 [p.prefix for p in self.children_set.all()]):
  1795. 515 yield str(fp)
  1796. 516
  1797. 517 @property
  1798. 518 def effective_ip_discovery(self):
  1799. 519 if self.enable_ip_discovery == "I":
  1800. 520 if self.parent:
  1801. 521 ==> return self.parent.effective_ip_discovery
  1802. 522 else:
  1803. 523 return "E"
  1804. 524 else:
  1805. 525 return self.enable_ip_discovery
  1806. 526
  1807. 527
  1808. Variables:
  1809. self = <Prefix: Global(6): ::/0>
  1810. ------------------------------------------------------------------------
  1811. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1812. Function: effective_ip_discovery
  1813. 514 [p.prefix for p in self.children_set.all()]):
  1814. 515 yield str(fp)
  1815. 516
  1816. 517 @property
  1817. 518 def effective_ip_discovery(self):
  1818. 519 if self.enable_ip_discovery == "I":
  1819. 520 if self.parent:
  1820. 521 ==> return self.parent.effective_ip_discovery
  1821. 522 else:
  1822. 523 return "E"
  1823. 524 else:
  1824. 525 return self.enable_ip_discovery
  1825. 526
  1826. 527
  1827. Variables:
  1828. self = <Prefix: Global(6): ::/0>
  1829. ------------------------------------------------------------------------
  1830. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1831. Function: effective_ip_discovery
  1832. 514 [p.prefix for p in self.children_set.all()]):
  1833. 515 yield str(fp)
  1834. 516
  1835. 517 @property
  1836. 518 def effective_ip_discovery(self):
  1837. 519 if self.enable_ip_discovery == "I":
  1838. 520 if self.parent:
  1839. 521 ==> return self.parent.effective_ip_discovery
  1840. 522 else:
  1841. 523 return "E"
  1842. 524 else:
  1843. 525 return self.enable_ip_discovery
  1844. 526
  1845. 527
  1846. Variables:
  1847. self = <Prefix: Global(6): ::/0>
  1848. ------------------------------------------------------------------------
  1849. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1850. Function: effective_ip_discovery
  1851. 514 [p.prefix for p in self.children_set.all()]):
  1852. 515 yield str(fp)
  1853. 516
  1854. 517 @property
  1855. 518 def effective_ip_discovery(self):
  1856. 519 if self.enable_ip_discovery == "I":
  1857. 520 if self.parent:
  1858. 521 ==> return self.parent.effective_ip_discovery
  1859. 522 else:
  1860. 523 return "E"
  1861. 524 else:
  1862. 525 return self.enable_ip_discovery
  1863. 526
  1864. 527
  1865. Variables:
  1866. self = <Prefix: Global(6): ::/0>
  1867. ------------------------------------------------------------------------
  1868. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1869. Function: effective_ip_discovery
  1870. 514 [p.prefix for p in self.children_set.all()]):
  1871. 515 yield str(fp)
  1872. 516
  1873. 517 @property
  1874. 518 def effective_ip_discovery(self):
  1875. 519 if self.enable_ip_discovery == "I":
  1876. 520 if self.parent:
  1877. 521 ==> return self.parent.effective_ip_discovery
  1878. 522 else:
  1879. 523 return "E"
  1880. 524 else:
  1881. 525 return self.enable_ip_discovery
  1882. 526
  1883. 527
  1884. Variables:
  1885. self = <Prefix: Global(6): ::/0>
  1886. ------------------------------------------------------------------------
  1887. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1888. Function: effective_ip_discovery
  1889. 514 [p.prefix for p in self.children_set.all()]):
  1890. 515 yield str(fp)
  1891. 516
  1892. 517 @property
  1893. 518 def effective_ip_discovery(self):
  1894. 519 if self.enable_ip_discovery == "I":
  1895. 520 if self.parent:
  1896. 521 ==> return self.parent.effective_ip_discovery
  1897. 522 else:
  1898. 523 return "E"
  1899. 524 else:
  1900. 525 return self.enable_ip_discovery
  1901. 526
  1902. 527
  1903. Variables:
  1904. self = <Prefix: Global(6): ::/0>
  1905. ------------------------------------------------------------------------
  1906. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1907. Function: effective_ip_discovery
  1908. 514 [p.prefix for p in self.children_set.all()]):
  1909. 515 yield str(fp)
  1910. 516
  1911. 517 @property
  1912. 518 def effective_ip_discovery(self):
  1913. 519 if self.enable_ip_discovery == "I":
  1914. 520 if self.parent:
  1915. 521 ==> return self.parent.effective_ip_discovery
  1916. 522 else:
  1917. 523 return "E"
  1918. 524 else:
  1919. 525 return self.enable_ip_discovery
  1920. 526
  1921. 527
  1922. Variables:
  1923. self = <Prefix: Global(6): ::/0>
  1924. ------------------------------------------------------------------------
  1925. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1926. Function: effective_ip_discovery
  1927. 514 [p.prefix for p in self.children_set.all()]):
  1928. 515 yield str(fp)
  1929. 516
  1930. 517 @property
  1931. 518 def effective_ip_discovery(self):
  1932. 519 if self.enable_ip_discovery == "I":
  1933. 520 if self.parent:
  1934. 521 ==> return self.parent.effective_ip_discovery
  1935. 522 else:
  1936. 523 return "E"
  1937. 524 else:
  1938. 525 return self.enable_ip_discovery
  1939. 526
  1940. 527
  1941. Variables:
  1942. self = <Prefix: Global(6): ::/0>
  1943. ------------------------------------------------------------------------
  1944. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1945. Function: effective_ip_discovery
  1946. 514 [p.prefix for p in self.children_set.all()]):
  1947. 515 yield str(fp)
  1948. 516
  1949. 517 @property
  1950. 518 def effective_ip_discovery(self):
  1951. 519 if self.enable_ip_discovery == "I":
  1952. 520 if self.parent:
  1953. 521 ==> return self.parent.effective_ip_discovery
  1954. 522 else:
  1955. 523 return "E"
  1956. 524 else:
  1957. 525 return self.enable_ip_discovery
  1958. 526
  1959. 527
  1960. Variables:
  1961. self = <Prefix: Global(6): ::/0>
  1962. ------------------------------------------------------------------------
  1963. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1964. Function: effective_ip_discovery
  1965. 514 [p.prefix for p in self.children_set.all()]):
  1966. 515 yield str(fp)
  1967. 516
  1968. 517 @property
  1969. 518 def effective_ip_discovery(self):
  1970. 519 if self.enable_ip_discovery == "I":
  1971. 520 if self.parent:
  1972. 521 ==> return self.parent.effective_ip_discovery
  1973. 522 else:
  1974. 523 return "E"
  1975. 524 else:
  1976. 525 return self.enable_ip_discovery
  1977. 526
  1978. 527
  1979. Variables:
  1980. self = <Prefix: Global(6): ::/0>
  1981. ------------------------------------------------------------------------
  1982. File: /opt/noc/ip/models/prefix.py (Line: 521)
  1983. Function: effective_ip_discovery
  1984. 514 [p.prefix for p in self.children_set.all()]):
  1985. 515 yield str(fp)
  1986. 516
  1987. 517 @property
  1988. 518 def effective_ip_discovery(self):
  1989. 519 if self.enable_ip_discovery == "I":
  1990. 520 if self.parent:
  1991. 521 ==> return self.parent.effective_ip_discovery
  1992. 522 else:
  1993. 523 return "E"
  1994. 524 else:
  1995. 525 return self.enable_ip_discovery
  1996. 526
  1997. 527
  1998. Variables:
  1999. self = <Prefix: Global(6): ::/0>
  2000. ------------------------------------------------------------------------
  2001. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2002. Function: effective_ip_discovery
  2003. 514 [p.prefix for p in self.children_set.all()]):
  2004. 515 yield str(fp)
  2005. 516
  2006. 517 @property
  2007. 518 def effective_ip_discovery(self):
  2008. 519 if self.enable_ip_discovery == "I":
  2009. 520 if self.parent:
  2010. 521 ==> return self.parent.effective_ip_discovery
  2011. 522 else:
  2012. 523 return "E"
  2013. 524 else:
  2014. 525 return self.enable_ip_discovery
  2015. 526
  2016. 527
  2017. Variables:
  2018. self = <Prefix: Global(6): ::/0>
  2019. ------------------------------------------------------------------------
  2020. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2021. Function: effective_ip_discovery
  2022. 514 [p.prefix for p in self.children_set.all()]):
  2023. 515 yield str(fp)
  2024. 516
  2025. 517 @property
  2026. 518 def effective_ip_discovery(self):
  2027. 519 if self.enable_ip_discovery == "I":
  2028. 520 if self.parent:
  2029. 521 ==> return self.parent.effective_ip_discovery
  2030. 522 else:
  2031. 523 return "E"
  2032. 524 else:
  2033. 525 return self.enable_ip_discovery
  2034. 526
  2035. 527
  2036. Variables:
  2037. self = <Prefix: Global(6): ::/0>
  2038. ------------------------------------------------------------------------
  2039. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2040. Function: effective_ip_discovery
  2041. 514 [p.prefix for p in self.children_set.all()]):
  2042. 515 yield str(fp)
  2043. 516
  2044. 517 @property
  2045. 518 def effective_ip_discovery(self):
  2046. 519 if self.enable_ip_discovery == "I":
  2047. 520 if self.parent:
  2048. 521 ==> return self.parent.effective_ip_discovery
  2049. 522 else:
  2050. 523 return "E"
  2051. 524 else:
  2052. 525 return self.enable_ip_discovery
  2053. 526
  2054. 527
  2055. Variables:
  2056. self = <Prefix: Global(6): ::/0>
  2057. ------------------------------------------------------------------------
  2058. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2059. Function: effective_ip_discovery
  2060. 514 [p.prefix for p in self.children_set.all()]):
  2061. 515 yield str(fp)
  2062. 516
  2063. 517 @property
  2064. 518 def effective_ip_discovery(self):
  2065. 519 if self.enable_ip_discovery == "I":
  2066. 520 if self.parent:
  2067. 521 ==> return self.parent.effective_ip_discovery
  2068. 522 else:
  2069. 523 return "E"
  2070. 524 else:
  2071. 525 return self.enable_ip_discovery
  2072. 526
  2073. 527
  2074. Variables:
  2075. self = <Prefix: Global(6): ::/0>
  2076. ------------------------------------------------------------------------
  2077. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2078. Function: effective_ip_discovery
  2079. 514 [p.prefix for p in self.children_set.all()]):
  2080. 515 yield str(fp)
  2081. 516
  2082. 517 @property
  2083. 518 def effective_ip_discovery(self):
  2084. 519 if self.enable_ip_discovery == "I":
  2085. 520 if self.parent:
  2086. 521 ==> return self.parent.effective_ip_discovery
  2087. 522 else:
  2088. 523 return "E"
  2089. 524 else:
  2090. 525 return self.enable_ip_discovery
  2091. 526
  2092. 527
  2093. Variables:
  2094. self = <Prefix: Global(6): ::/0>
  2095. ------------------------------------------------------------------------
  2096. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2097. Function: effective_ip_discovery
  2098. 514 [p.prefix for p in self.children_set.all()]):
  2099. 515 yield str(fp)
  2100. 516
  2101. 517 @property
  2102. 518 def effective_ip_discovery(self):
  2103. 519 if self.enable_ip_discovery == "I":
  2104. 520 if self.parent:
  2105. 521 ==> return self.parent.effective_ip_discovery
  2106. 522 else:
  2107. 523 return "E"
  2108. 524 else:
  2109. 525 return self.enable_ip_discovery
  2110. 526
  2111. 527
  2112. Variables:
  2113. self = <Prefix: Global(6): ::/0>
  2114. ------------------------------------------------------------------------
  2115. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2116. Function: effective_ip_discovery
  2117. 514 [p.prefix for p in self.children_set.all()]):
  2118. 515 yield str(fp)
  2119. 516
  2120. 517 @property
  2121. 518 def effective_ip_discovery(self):
  2122. 519 if self.enable_ip_discovery == "I":
  2123. 520 if self.parent:
  2124. 521 ==> return self.parent.effective_ip_discovery
  2125. 522 else:
  2126. 523 return "E"
  2127. 524 else:
  2128. 525 return self.enable_ip_discovery
  2129. 526
  2130. 527
  2131. Variables:
  2132. self = <Prefix: Global(6): ::/0>
  2133. ------------------------------------------------------------------------
  2134. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2135. Function: effective_ip_discovery
  2136. 514 [p.prefix for p in self.children_set.all()]):
  2137. 515 yield str(fp)
  2138. 516
  2139. 517 @property
  2140. 518 def effective_ip_discovery(self):
  2141. 519 if self.enable_ip_discovery == "I":
  2142. 520 if self.parent:
  2143. 521 ==> return self.parent.effective_ip_discovery
  2144. 522 else:
  2145. 523 return "E"
  2146. 524 else:
  2147. 525 return self.enable_ip_discovery
  2148. 526
  2149. 527
  2150. Variables:
  2151. self = <Prefix: Global(6): ::/0>
  2152. ------------------------------------------------------------------------
  2153. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2154. Function: effective_ip_discovery
  2155. 514 [p.prefix for p in self.children_set.all()]):
  2156. 515 yield str(fp)
  2157. 516
  2158. 517 @property
  2159. 518 def effective_ip_discovery(self):
  2160. 519 if self.enable_ip_discovery == "I":
  2161. 520 if self.parent:
  2162. 521 ==> return self.parent.effective_ip_discovery
  2163. 522 else:
  2164. 523 return "E"
  2165. 524 else:
  2166. 525 return self.enable_ip_discovery
  2167. 526
  2168. 527
  2169. Variables:
  2170. self = <Prefix: Global(6): ::/0>
  2171. ------------------------------------------------------------------------
  2172. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2173. Function: effective_ip_discovery
  2174. 514 [p.prefix for p in self.children_set.all()]):
  2175. 515 yield str(fp)
  2176. 516
  2177. 517 @property
  2178. 518 def effective_ip_discovery(self):
  2179. 519 if self.enable_ip_discovery == "I":
  2180. 520 if self.parent:
  2181. 521 ==> return self.parent.effective_ip_discovery
  2182. 522 else:
  2183. 523 return "E"
  2184. 524 else:
  2185. 525 return self.enable_ip_discovery
  2186. 526
  2187. 527
  2188. Variables:
  2189. self = <Prefix: Global(6): ::/0>
  2190. ------------------------------------------------------------------------
  2191. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2192. Function: effective_ip_discovery
  2193. 514 [p.prefix for p in self.children_set.all()]):
  2194. 515 yield str(fp)
  2195. 516
  2196. 517 @property
  2197. 518 def effective_ip_discovery(self):
  2198. 519 if self.enable_ip_discovery == "I":
  2199. 520 if self.parent:
  2200. 521 ==> return self.parent.effective_ip_discovery
  2201. 522 else:
  2202. 523 return "E"
  2203. 524 else:
  2204. 525 return self.enable_ip_discovery
  2205. 526
  2206. 527
  2207. Variables:
  2208. self = <Prefix: Global(6): ::/0>
  2209. ------------------------------------------------------------------------
  2210. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2211. Function: effective_ip_discovery
  2212. 514 [p.prefix for p in self.children_set.all()]):
  2213. 515 yield str(fp)
  2214. 516
  2215. 517 @property
  2216. 518 def effective_ip_discovery(self):
  2217. 519 if self.enable_ip_discovery == "I":
  2218. 520 if self.parent:
  2219. 521 ==> return self.parent.effective_ip_discovery
  2220. 522 else:
  2221. 523 return "E"
  2222. 524 else:
  2223. 525 return self.enable_ip_discovery
  2224. 526
  2225. 527
  2226. Variables:
  2227. self = <Prefix: Global(6): ::/0>
  2228. ------------------------------------------------------------------------
  2229. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2230. Function: effective_ip_discovery
  2231. 514 [p.prefix for p in self.children_set.all()]):
  2232. 515 yield str(fp)
  2233. 516
  2234. 517 @property
  2235. 518 def effective_ip_discovery(self):
  2236. 519 if self.enable_ip_discovery == "I":
  2237. 520 if self.parent:
  2238. 521 ==> return self.parent.effective_ip_discovery
  2239. 522 else:
  2240. 523 return "E"
  2241. 524 else:
  2242. 525 return self.enable_ip_discovery
  2243. 526
  2244. 527
  2245. Variables:
  2246. self = <Prefix: Global(6): ::/0>
  2247. ------------------------------------------------------------------------
  2248. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2249. Function: effective_ip_discovery
  2250. 514 [p.prefix for p in self.children_set.all()]):
  2251. 515 yield str(fp)
  2252. 516
  2253. 517 @property
  2254. 518 def effective_ip_discovery(self):
  2255. 519 if self.enable_ip_discovery == "I":
  2256. 520 if self.parent:
  2257. 521 ==> return self.parent.effective_ip_discovery
  2258. 522 else:
  2259. 523 return "E"
  2260. 524 else:
  2261. 525 return self.enable_ip_discovery
  2262. 526
  2263. 527
  2264. Variables:
  2265. self = <Prefix: Global(6): ::/0>
  2266. ------------------------------------------------------------------------
  2267. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2268. Function: effective_ip_discovery
  2269. 514 [p.prefix for p in self.children_set.all()]):
  2270. 515 yield str(fp)
  2271. 516
  2272. 517 @property
  2273. 518 def effective_ip_discovery(self):
  2274. 519 if self.enable_ip_discovery == "I":
  2275. 520 if self.parent:
  2276. 521 ==> return self.parent.effective_ip_discovery
  2277. 522 else:
  2278. 523 return "E"
  2279. 524 else:
  2280. 525 return self.enable_ip_discovery
  2281. 526
  2282. 527
  2283. Variables:
  2284. self = <Prefix: Global(6): ::/0>
  2285. ------------------------------------------------------------------------
  2286. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2287. Function: effective_ip_discovery
  2288. 514 [p.prefix for p in self.children_set.all()]):
  2289. 515 yield str(fp)
  2290. 516
  2291. 517 @property
  2292. 518 def effective_ip_discovery(self):
  2293. 519 if self.enable_ip_discovery == "I":
  2294. 520 if self.parent:
  2295. 521 ==> return self.parent.effective_ip_discovery
  2296. 522 else:
  2297. 523 return "E"
  2298. 524 else:
  2299. 525 return self.enable_ip_discovery
  2300. 526
  2301. 527
  2302. Variables:
  2303. self = <Prefix: Global(6): ::/0>
  2304. ------------------------------------------------------------------------
  2305. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2306. Function: effective_ip_discovery
  2307. 514 [p.prefix for p in self.children_set.all()]):
  2308. 515 yield str(fp)
  2309. 516
  2310. 517 @property
  2311. 518 def effective_ip_discovery(self):
  2312. 519 if self.enable_ip_discovery == "I":
  2313. 520 if self.parent:
  2314. 521 ==> return self.parent.effective_ip_discovery
  2315. 522 else:
  2316. 523 return "E"
  2317. 524 else:
  2318. 525 return self.enable_ip_discovery
  2319. 526
  2320. 527
  2321. Variables:
  2322. self = <Prefix: Global(6): ::/0>
  2323. ------------------------------------------------------------------------
  2324. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2325. Function: effective_ip_discovery
  2326. 514 [p.prefix for p in self.children_set.all()]):
  2327. 515 yield str(fp)
  2328. 516
  2329. 517 @property
  2330. 518 def effective_ip_discovery(self):
  2331. 519 if self.enable_ip_discovery == "I":
  2332. 520 if self.parent:
  2333. 521 ==> return self.parent.effective_ip_discovery
  2334. 522 else:
  2335. 523 return "E"
  2336. 524 else:
  2337. 525 return self.enable_ip_discovery
  2338. 526
  2339. 527
  2340. Variables:
  2341. self = <Prefix: Global(6): ::/0>
  2342. ------------------------------------------------------------------------
  2343. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2344. Function: effective_ip_discovery
  2345. 514 [p.prefix for p in self.children_set.all()]):
  2346. 515 yield str(fp)
  2347. 516
  2348. 517 @property
  2349. 518 def effective_ip_discovery(self):
  2350. 519 if self.enable_ip_discovery == "I":
  2351. 520 if self.parent:
  2352. 521 ==> return self.parent.effective_ip_discovery
  2353. 522 else:
  2354. 523 return "E"
  2355. 524 else:
  2356. 525 return self.enable_ip_discovery
  2357. 526
  2358. 527
  2359. Variables:
  2360. self = <Prefix: Global(6): ::/0>
  2361. ------------------------------------------------------------------------
  2362. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2363. Function: effective_ip_discovery
  2364. 514 [p.prefix for p in self.children_set.all()]):
  2365. 515 yield str(fp)
  2366. 516
  2367. 517 @property
  2368. 518 def effective_ip_discovery(self):
  2369. 519 if self.enable_ip_discovery == "I":
  2370. 520 if self.parent:
  2371. 521 ==> return self.parent.effective_ip_discovery
  2372. 522 else:
  2373. 523 return "E"
  2374. 524 else:
  2375. 525 return self.enable_ip_discovery
  2376. 526
  2377. 527
  2378. Variables:
  2379. self = <Prefix: Global(6): ::/0>
  2380. ------------------------------------------------------------------------
  2381. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2382. Function: effective_ip_discovery
  2383. 514 [p.prefix for p in self.children_set.all()]):
  2384. 515 yield str(fp)
  2385. 516
  2386. 517 @property
  2387. 518 def effective_ip_discovery(self):
  2388. 519 if self.enable_ip_discovery == "I":
  2389. 520 if self.parent:
  2390. 521 ==> return self.parent.effective_ip_discovery
  2391. 522 else:
  2392. 523 return "E"
  2393. 524 else:
  2394. 525 return self.enable_ip_discovery
  2395. 526
  2396. 527
  2397. Variables:
  2398. self = <Prefix: Global(6): ::/0>
  2399. ------------------------------------------------------------------------
  2400. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2401. Function: effective_ip_discovery
  2402. 514 [p.prefix for p in self.children_set.all()]):
  2403. 515 yield str(fp)
  2404. 516
  2405. 517 @property
  2406. 518 def effective_ip_discovery(self):
  2407. 519 if self.enable_ip_discovery == "I":
  2408. 520 if self.parent:
  2409. 521 ==> return self.parent.effective_ip_discovery
  2410. 522 else:
  2411. 523 return "E"
  2412. 524 else:
  2413. 525 return self.enable_ip_discovery
  2414. 526
  2415. 527
  2416. Variables:
  2417. self = <Prefix: Global(6): ::/0>
  2418. ------------------------------------------------------------------------
  2419. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2420. Function: effective_ip_discovery
  2421. 514 [p.prefix for p in self.children_set.all()]):
  2422. 515 yield str(fp)
  2423. 516
  2424. 517 @property
  2425. 518 def effective_ip_discovery(self):
  2426. 519 if self.enable_ip_discovery == "I":
  2427. 520 if self.parent:
  2428. 521 ==> return self.parent.effective_ip_discovery
  2429. 522 else:
  2430. 523 return "E"
  2431. 524 else:
  2432. 525 return self.enable_ip_discovery
  2433. 526
  2434. 527
  2435. Variables:
  2436. self = <Prefix: Global(6): ::/0>
  2437. ------------------------------------------------------------------------
  2438. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2439. Function: effective_ip_discovery
  2440. 514 [p.prefix for p in self.children_set.all()]):
  2441. 515 yield str(fp)
  2442. 516
  2443. 517 @property
  2444. 518 def effective_ip_discovery(self):
  2445. 519 if self.enable_ip_discovery == "I":
  2446. 520 if self.parent:
  2447. 521 ==> return self.parent.effective_ip_discovery
  2448. 522 else:
  2449. 523 return "E"
  2450. 524 else:
  2451. 525 return self.enable_ip_discovery
  2452. 526
  2453. 527
  2454. Variables:
  2455. self = <Prefix: Global(6): ::/0>
  2456. ------------------------------------------------------------------------
  2457. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2458. Function: effective_ip_discovery
  2459. 514 [p.prefix for p in self.children_set.all()]):
  2460. 515 yield str(fp)
  2461. 516
  2462. 517 @property
  2463. 518 def effective_ip_discovery(self):
  2464. 519 if self.enable_ip_discovery == "I":
  2465. 520 if self.parent:
  2466. 521 ==> return self.parent.effective_ip_discovery
  2467. 522 else:
  2468. 523 return "E"
  2469. 524 else:
  2470. 525 return self.enable_ip_discovery
  2471. 526
  2472. 527
  2473. Variables:
  2474. self = <Prefix: Global(6): ::/0>
  2475. ------------------------------------------------------------------------
  2476. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2477. Function: effective_ip_discovery
  2478. 514 [p.prefix for p in self.children_set.all()]):
  2479. 515 yield str(fp)
  2480. 516
  2481. 517 @property
  2482. 518 def effective_ip_discovery(self):
  2483. 519 if self.enable_ip_discovery == "I":
  2484. 520 if self.parent:
  2485. 521 ==> return self.parent.effective_ip_discovery
  2486. 522 else:
  2487. 523 return "E"
  2488. 524 else:
  2489. 525 return self.enable_ip_discovery
  2490. 526
  2491. 527
  2492. Variables:
  2493. self = <Prefix: Global(6): ::/0>
  2494. ------------------------------------------------------------------------
  2495. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2496. Function: effective_ip_discovery
  2497. 514 [p.prefix for p in self.children_set.all()]):
  2498. 515 yield str(fp)
  2499. 516
  2500. 517 @property
  2501. 518 def effective_ip_discovery(self):
  2502. 519 if self.enable_ip_discovery == "I":
  2503. 520 if self.parent:
  2504. 521 ==> return self.parent.effective_ip_discovery
  2505. 522 else:
  2506. 523 return "E"
  2507. 524 else:
  2508. 525 return self.enable_ip_discovery
  2509. 526
  2510. 527
  2511. Variables:
  2512. self = <Prefix: Global(6): ::/0>
  2513. ------------------------------------------------------------------------
  2514. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2515. Function: effective_ip_discovery
  2516. 514 [p.prefix for p in self.children_set.all()]):
  2517. 515 yield str(fp)
  2518. 516
  2519. 517 @property
  2520. 518 def effective_ip_discovery(self):
  2521. 519 if self.enable_ip_discovery == "I":
  2522. 520 if self.parent:
  2523. 521 ==> return self.parent.effective_ip_discovery
  2524. 522 else:
  2525. 523 return "E"
  2526. 524 else:
  2527. 525 return self.enable_ip_discovery
  2528. 526
  2529. 527
  2530. Variables:
  2531. self = <Prefix: Global(6): ::/0>
  2532. ------------------------------------------------------------------------
  2533. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2534. Function: effective_ip_discovery
  2535. 514 [p.prefix for p in self.children_set.all()]):
  2536. 515 yield str(fp)
  2537. 516
  2538. 517 @property
  2539. 518 def effective_ip_discovery(self):
  2540. 519 if self.enable_ip_discovery == "I":
  2541. 520 if self.parent:
  2542. 521 ==> return self.parent.effective_ip_discovery
  2543. 522 else:
  2544. 523 return "E"
  2545. 524 else:
  2546. 525 return self.enable_ip_discovery
  2547. 526
  2548. 527
  2549. Variables:
  2550. self = <Prefix: Global(6): ::/0>
  2551. ------------------------------------------------------------------------
  2552. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2553. Function: effective_ip_discovery
  2554. 514 [p.prefix for p in self.children_set.all()]):
  2555. 515 yield str(fp)
  2556. 516
  2557. 517 @property
  2558. 518 def effective_ip_discovery(self):
  2559. 519 if self.enable_ip_discovery == "I":
  2560. 520 if self.parent:
  2561. 521 ==> return self.parent.effective_ip_discovery
  2562. 522 else:
  2563. 523 return "E"
  2564. 524 else:
  2565. 525 return self.enable_ip_discovery
  2566. 526
  2567. 527
  2568. Variables:
  2569. self = <Prefix: Global(6): ::/0>
  2570. ------------------------------------------------------------------------
  2571. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2572. Function: effective_ip_discovery
  2573. 514 [p.prefix for p in self.children_set.all()]):
  2574. 515 yield str(fp)
  2575. 516
  2576. 517 @property
  2577. 518 def effective_ip_discovery(self):
  2578. 519 if self.enable_ip_discovery == "I":
  2579. 520 if self.parent:
  2580. 521 ==> return self.parent.effective_ip_discovery
  2581. 522 else:
  2582. 523 return "E"
  2583. 524 else:
  2584. 525 return self.enable_ip_discovery
  2585. 526
  2586. 527
  2587. Variables:
  2588. self = <Prefix: Global(6): ::/0>
  2589. ------------------------------------------------------------------------
  2590. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2591. Function: effective_ip_discovery
  2592. 514 [p.prefix for p in self.children_set.all()]):
  2593. 515 yield str(fp)
  2594. 516
  2595. 517 @property
  2596. 518 def effective_ip_discovery(self):
  2597. 519 if self.enable_ip_discovery == "I":
  2598. 520 if self.parent:
  2599. 521 ==> return self.parent.effective_ip_discovery
  2600. 522 else:
  2601. 523 return "E"
  2602. 524 else:
  2603. 525 return self.enable_ip_discovery
  2604. 526
  2605. 527
  2606. Variables:
  2607. self = <Prefix: Global(6): ::/0>
  2608. ------------------------------------------------------------------------
  2609. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2610. Function: effective_ip_discovery
  2611. 514 [p.prefix for p in self.children_set.all()]):
  2612. 515 yield str(fp)
  2613. 516
  2614. 517 @property
  2615. 518 def effective_ip_discovery(self):
  2616. 519 if self.enable_ip_discovery == "I":
  2617. 520 if self.parent:
  2618. 521 ==> return self.parent.effective_ip_discovery
  2619. 522 else:
  2620. 523 return "E"
  2621. 524 else:
  2622. 525 return self.enable_ip_discovery
  2623. 526
  2624. 527
  2625. Variables:
  2626. self = <Prefix: Global(6): ::/0>
  2627. ------------------------------------------------------------------------
  2628. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2629. Function: effective_ip_discovery
  2630. 514 [p.prefix for p in self.children_set.all()]):
  2631. 515 yield str(fp)
  2632. 516
  2633. 517 @property
  2634. 518 def effective_ip_discovery(self):
  2635. 519 if self.enable_ip_discovery == "I":
  2636. 520 if self.parent:
  2637. 521 ==> return self.parent.effective_ip_discovery
  2638. 522 else:
  2639. 523 return "E"
  2640. 524 else:
  2641. 525 return self.enable_ip_discovery
  2642. 526
  2643. 527
  2644. Variables:
  2645. self = <Prefix: Global(6): ::/0>
  2646. ------------------------------------------------------------------------
  2647. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2648. Function: effective_ip_discovery
  2649. 514 [p.prefix for p in self.children_set.all()]):
  2650. 515 yield str(fp)
  2651. 516
  2652. 517 @property
  2653. 518 def effective_ip_discovery(self):
  2654. 519 if self.enable_ip_discovery == "I":
  2655. 520 if self.parent:
  2656. 521 ==> return self.parent.effective_ip_discovery
  2657. 522 else:
  2658. 523 return "E"
  2659. 524 else:
  2660. 525 return self.enable_ip_discovery
  2661. 526
  2662. 527
  2663. Variables:
  2664. self = <Prefix: Global(6): ::/0>
  2665. ------------------------------------------------------------------------
  2666. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2667. Function: effective_ip_discovery
  2668. 514 [p.prefix for p in self.children_set.all()]):
  2669. 515 yield str(fp)
  2670. 516
  2671. 517 @property
  2672. 518 def effective_ip_discovery(self):
  2673. 519 if self.enable_ip_discovery == "I":
  2674. 520 if self.parent:
  2675. 521 ==> return self.parent.effective_ip_discovery
  2676. 522 else:
  2677. 523 return "E"
  2678. 524 else:
  2679. 525 return self.enable_ip_discovery
  2680. 526
  2681. 527
  2682. Variables:
  2683. self = <Prefix: Global(6): ::/0>
  2684. ------------------------------------------------------------------------
  2685. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2686. Function: effective_ip_discovery
  2687. 514 [p.prefix for p in self.children_set.all()]):
  2688. 515 yield str(fp)
  2689. 516
  2690. 517 @property
  2691. 518 def effective_ip_discovery(self):
  2692. 519 if self.enable_ip_discovery == "I":
  2693. 520 if self.parent:
  2694. 521 ==> return self.parent.effective_ip_discovery
  2695. 522 else:
  2696. 523 return "E"
  2697. 524 else:
  2698. 525 return self.enable_ip_discovery
  2699. 526
  2700. 527
  2701. Variables:
  2702. self = <Prefix: Global(6): ::/0>
  2703. ------------------------------------------------------------------------
  2704. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2705. Function: effective_ip_discovery
  2706. 514 [p.prefix for p in self.children_set.all()]):
  2707. 515 yield str(fp)
  2708. 516
  2709. 517 @property
  2710. 518 def effective_ip_discovery(self):
  2711. 519 if self.enable_ip_discovery == "I":
  2712. 520 if self.parent:
  2713. 521 ==> return self.parent.effective_ip_discovery
  2714. 522 else:
  2715. 523 return "E"
  2716. 524 else:
  2717. 525 return self.enable_ip_discovery
  2718. 526
  2719. 527
  2720. Variables:
  2721. self = <Prefix: Global(6): ::/0>
  2722. ------------------------------------------------------------------------
  2723. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2724. Function: effective_ip_discovery
  2725. 514 [p.prefix for p in self.children_set.all()]):
  2726. 515 yield str(fp)
  2727. 516
  2728. 517 @property
  2729. 518 def effective_ip_discovery(self):
  2730. 519 if self.enable_ip_discovery == "I":
  2731. 520 if self.parent:
  2732. 521 ==> return self.parent.effective_ip_discovery
  2733. 522 else:
  2734. 523 return "E"
  2735. 524 else:
  2736. 525 return self.enable_ip_discovery
  2737. 526
  2738. 527
  2739. Variables:
  2740. self = <Prefix: Global(6): ::/0>
  2741. ------------------------------------------------------------------------
  2742. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2743. Function: effective_ip_discovery
  2744. 514 [p.prefix for p in self.children_set.all()]):
  2745. 515 yield str(fp)
  2746. 516
  2747. 517 @property
  2748. 518 def effective_ip_discovery(self):
  2749. 519 if self.enable_ip_discovery == "I":
  2750. 520 if self.parent:
  2751. 521 ==> return self.parent.effective_ip_discovery
  2752. 522 else:
  2753. 523 return "E"
  2754. 524 else:
  2755. 525 return self.enable_ip_discovery
  2756. 526
  2757. 527
  2758. Variables:
  2759. self = <Prefix: Global(6): ::/0>
  2760. ------------------------------------------------------------------------
  2761. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2762. Function: effective_ip_discovery
  2763. 514 [p.prefix for p in self.children_set.all()]):
  2764. 515 yield str(fp)
  2765. 516
  2766. 517 @property
  2767. 518 def effective_ip_discovery(self):
  2768. 519 if self.enable_ip_discovery == "I":
  2769. 520 if self.parent:
  2770. 521 ==> return self.parent.effective_ip_discovery
  2771. 522 else:
  2772. 523 return "E"
  2773. 524 else:
  2774. 525 return self.enable_ip_discovery
  2775. 526
  2776. 527
  2777. Variables:
  2778. self = <Prefix: Global(6): ::/0>
  2779. ------------------------------------------------------------------------
  2780. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2781. Function: effective_ip_discovery
  2782. 514 [p.prefix for p in self.children_set.all()]):
  2783. 515 yield str(fp)
  2784. 516
  2785. 517 @property
  2786. 518 def effective_ip_discovery(self):
  2787. 519 if self.enable_ip_discovery == "I":
  2788. 520 if self.parent:
  2789. 521 ==> return self.parent.effective_ip_discovery
  2790. 522 else:
  2791. 523 return "E"
  2792. 524 else:
  2793. 525 return self.enable_ip_discovery
  2794. 526
  2795. 527
  2796. Variables:
  2797. self = <Prefix: Global(6): ::/0>
  2798. ------------------------------------------------------------------------
  2799. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2800. Function: effective_ip_discovery
  2801. 514 [p.prefix for p in self.children_set.all()]):
  2802. 515 yield str(fp)
  2803. 516
  2804. 517 @property
  2805. 518 def effective_ip_discovery(self):
  2806. 519 if self.enable_ip_discovery == "I":
  2807. 520 if self.parent:
  2808. 521 ==> return self.parent.effective_ip_discovery
  2809. 522 else:
  2810. 523 return "E"
  2811. 524 else:
  2812. 525 return self.enable_ip_discovery
  2813. 526
  2814. 527
  2815. Variables:
  2816. self = <Prefix: Global(6): ::/0>
  2817. ------------------------------------------------------------------------
  2818. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2819. Function: effective_ip_discovery
  2820. 514 [p.prefix for p in self.children_set.all()]):
  2821. 515 yield str(fp)
  2822. 516
  2823. 517 @property
  2824. 518 def effective_ip_discovery(self):
  2825. 519 if self.enable_ip_discovery == "I":
  2826. 520 if self.parent:
  2827. 521 ==> return self.parent.effective_ip_discovery
  2828. 522 else:
  2829. 523 return "E"
  2830. 524 else:
  2831. 525 return self.enable_ip_discovery
  2832. 526
  2833. 527
  2834. Variables:
  2835. self = <Prefix: Global(6): ::/0>
  2836. ------------------------------------------------------------------------
  2837. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2838. Function: effective_ip_discovery
  2839. 514 [p.prefix for p in self.children_set.all()]):
  2840. 515 yield str(fp)
  2841. 516
  2842. 517 @property
  2843. 518 def effective_ip_discovery(self):
  2844. 519 if self.enable_ip_discovery == "I":
  2845. 520 if self.parent:
  2846. 521 ==> return self.parent.effective_ip_discovery
  2847. 522 else:
  2848. 523 return "E"
  2849. 524 else:
  2850. 525 return self.enable_ip_discovery
  2851. 526
  2852. 527
  2853. Variables:
  2854. self = <Prefix: Global(6): ::/0>
  2855. ------------------------------------------------------------------------
  2856. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2857. Function: effective_ip_discovery
  2858. 514 [p.prefix for p in self.children_set.all()]):
  2859. 515 yield str(fp)
  2860. 516
  2861. 517 @property
  2862. 518 def effective_ip_discovery(self):
  2863. 519 if self.enable_ip_discovery == "I":
  2864. 520 if self.parent:
  2865. 521 ==> return self.parent.effective_ip_discovery
  2866. 522 else:
  2867. 523 return "E"
  2868. 524 else:
  2869. 525 return self.enable_ip_discovery
  2870. 526
  2871. 527
  2872. Variables:
  2873. self = <Prefix: Global(6): ::/0>
  2874. ------------------------------------------------------------------------
  2875. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2876. Function: effective_ip_discovery
  2877. 514 [p.prefix for p in self.children_set.all()]):
  2878. 515 yield str(fp)
  2879. 516
  2880. 517 @property
  2881. 518 def effective_ip_discovery(self):
  2882. 519 if self.enable_ip_discovery == "I":
  2883. 520 if self.parent:
  2884. 521 ==> return self.parent.effective_ip_discovery
  2885. 522 else:
  2886. 523 return "E"
  2887. 524 else:
  2888. 525 return self.enable_ip_discovery
  2889. 526
  2890. 527
  2891. Variables:
  2892. self = <Prefix: Global(6): ::/0>
  2893. ------------------------------------------------------------------------
  2894. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2895. Function: effective_ip_discovery
  2896. 514 [p.prefix for p in self.children_set.all()]):
  2897. 515 yield str(fp)
  2898. 516
  2899. 517 @property
  2900. 518 def effective_ip_discovery(self):
  2901. 519 if self.enable_ip_discovery == "I":
  2902. 520 if self.parent:
  2903. 521 ==> return self.parent.effective_ip_discovery
  2904. 522 else:
  2905. 523 return "E"
  2906. 524 else:
  2907. 525 return self.enable_ip_discovery
  2908. 526
  2909. 527
  2910. Variables:
  2911. self = <Prefix: Global(6): ::/0>
  2912. ------------------------------------------------------------------------
  2913. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2914. Function: effective_ip_discovery
  2915. 514 [p.prefix for p in self.children_set.all()]):
  2916. 515 yield str(fp)
  2917. 516
  2918. 517 @property
  2919. 518 def effective_ip_discovery(self):
  2920. 519 if self.enable_ip_discovery == "I":
  2921. 520 if self.parent:
  2922. 521 ==> return self.parent.effective_ip_discovery
  2923. 522 else:
  2924. 523 return "E"
  2925. 524 else:
  2926. 525 return self.enable_ip_discovery
  2927. 526
  2928. 527
  2929. Variables:
  2930. self = <Prefix: Global(6): ::/0>
  2931. ------------------------------------------------------------------------
  2932. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2933. Function: effective_ip_discovery
  2934. 514 [p.prefix for p in self.children_set.all()]):
  2935. 515 yield str(fp)
  2936. 516
  2937. 517 @property
  2938. 518 def effective_ip_discovery(self):
  2939. 519 if self.enable_ip_discovery == "I":
  2940. 520 if self.parent:
  2941. 521 ==> return self.parent.effective_ip_discovery
  2942. 522 else:
  2943. 523 return "E"
  2944. 524 else:
  2945. 525 return self.enable_ip_discovery
  2946. 526
  2947. 527
  2948. Variables:
  2949. self = <Prefix: Global(6): ::/0>
  2950. ------------------------------------------------------------------------
  2951. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2952. Function: effective_ip_discovery
  2953. 514 [p.prefix for p in self.children_set.all()]):
  2954. 515 yield str(fp)
  2955. 516
  2956. 517 @property
  2957. 518 def effective_ip_discovery(self):
  2958. 519 if self.enable_ip_discovery == "I":
  2959. 520 if self.parent:
  2960. 521 ==> return self.parent.effective_ip_discovery
  2961. 522 else:
  2962. 523 return "E"
  2963. 524 else:
  2964. 525 return self.enable_ip_discovery
  2965. 526
  2966. 527
  2967. Variables:
  2968. self = <Prefix: Global(6): ::/0>
  2969. ------------------------------------------------------------------------
  2970. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2971. Function: effective_ip_discovery
  2972. 514 [p.prefix for p in self.children_set.all()]):
  2973. 515 yield str(fp)
  2974. 516
  2975. 517 @property
  2976. 518 def effective_ip_discovery(self):
  2977. 519 if self.enable_ip_discovery == "I":
  2978. 520 if self.parent:
  2979. 521 ==> return self.parent.effective_ip_discovery
  2980. 522 else:
  2981. 523 return "E"
  2982. 524 else:
  2983. 525 return self.enable_ip_discovery
  2984. 526
  2985. 527
  2986. Variables:
  2987. self = <Prefix: Global(6): ::/0>
  2988. ------------------------------------------------------------------------
  2989. File: /opt/noc/ip/models/prefix.py (Line: 521)
  2990. Function: effective_ip_discovery
  2991. 514 [p.prefix for p in self.children_set.all()]):
  2992. 515 yield str(fp)
  2993. 516
  2994. 517 @property
  2995. 518 def effective_ip_discovery(self):
  2996. 519 if self.enable_ip_discovery == "I":
  2997. 520 if self.parent:
  2998. 521 ==> return self.parent.effective_ip_discovery
  2999. 522 else:
  3000. 523 return "E"
  3001. 524 else:
  3002. 525 return self.enable_ip_discovery
  3003. 526
  3004. 527
  3005. Variables:
  3006. self = <Prefix: Global(6): ::/0>
  3007. ------------------------------------------------------------------------
  3008. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3009. Function: effective_ip_discovery
  3010. 514 [p.prefix for p in self.children_set.all()]):
  3011. 515 yield str(fp)
  3012. 516
  3013. 517 @property
  3014. 518 def effective_ip_discovery(self):
  3015. 519 if self.enable_ip_discovery == "I":
  3016. 520 if self.parent:
  3017. 521 ==> return self.parent.effective_ip_discovery
  3018. 522 else:
  3019. 523 return "E"
  3020. 524 else:
  3021. 525 return self.enable_ip_discovery
  3022. 526
  3023. 527
  3024. Variables:
  3025. self = <Prefix: Global(6): ::/0>
  3026. ------------------------------------------------------------------------
  3027. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3028. Function: effective_ip_discovery
  3029. 514 [p.prefix for p in self.children_set.all()]):
  3030. 515 yield str(fp)
  3031. 516
  3032. 517 @property
  3033. 518 def effective_ip_discovery(self):
  3034. 519 if self.enable_ip_discovery == "I":
  3035. 520 if self.parent:
  3036. 521 ==> return self.parent.effective_ip_discovery
  3037. 522 else:
  3038. 523 return "E"
  3039. 524 else:
  3040. 525 return self.enable_ip_discovery
  3041. 526
  3042. 527
  3043. Variables:
  3044. self = <Prefix: Global(6): ::/0>
  3045. ------------------------------------------------------------------------
  3046. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3047. Function: effective_ip_discovery
  3048. 514 [p.prefix for p in self.children_set.all()]):
  3049. 515 yield str(fp)
  3050. 516
  3051. 517 @property
  3052. 518 def effective_ip_discovery(self):
  3053. 519 if self.enable_ip_discovery == "I":
  3054. 520 if self.parent:
  3055. 521 ==> return self.parent.effective_ip_discovery
  3056. 522 else:
  3057. 523 return "E"
  3058. 524 else:
  3059. 525 return self.enable_ip_discovery
  3060. 526
  3061. 527
  3062. Variables:
  3063. self = <Prefix: Global(6): ::/0>
  3064. ------------------------------------------------------------------------
  3065. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3066. Function: effective_ip_discovery
  3067. 514 [p.prefix for p in self.children_set.all()]):
  3068. 515 yield str(fp)
  3069. 516
  3070. 517 @property
  3071. 518 def effective_ip_discovery(self):
  3072. 519 if self.enable_ip_discovery == "I":
  3073. 520 if self.parent:
  3074. 521 ==> return self.parent.effective_ip_discovery
  3075. 522 else:
  3076. 523 return "E"
  3077. 524 else:
  3078. 525 return self.enable_ip_discovery
  3079. 526
  3080. 527
  3081. Variables:
  3082. self = <Prefix: Global(6): ::/0>
  3083. ------------------------------------------------------------------------
  3084. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3085. Function: effective_ip_discovery
  3086. 514 [p.prefix for p in self.children_set.all()]):
  3087. 515 yield str(fp)
  3088. 516
  3089. 517 @property
  3090. 518 def effective_ip_discovery(self):
  3091. 519 if self.enable_ip_discovery == "I":
  3092. 520 if self.parent:
  3093. 521 ==> return self.parent.effective_ip_discovery
  3094. 522 else:
  3095. 523 return "E"
  3096. 524 else:
  3097. 525 return self.enable_ip_discovery
  3098. 526
  3099. 527
  3100. Variables:
  3101. self = <Prefix: Global(6): ::/0>
  3102. ------------------------------------------------------------------------
  3103. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3104. Function: effective_ip_discovery
  3105. 514 [p.prefix for p in self.children_set.all()]):
  3106. 515 yield str(fp)
  3107. 516
  3108. 517 @property
  3109. 518 def effective_ip_discovery(self):
  3110. 519 if self.enable_ip_discovery == "I":
  3111. 520 if self.parent:
  3112. 521 ==> return self.parent.effective_ip_discovery
  3113. 522 else:
  3114. 523 return "E"
  3115. 524 else:
  3116. 525 return self.enable_ip_discovery
  3117. 526
  3118. 527
  3119. Variables:
  3120. self = <Prefix: Global(6): ::/0>
  3121. ------------------------------------------------------------------------
  3122. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3123. Function: effective_ip_discovery
  3124. 514 [p.prefix for p in self.children_set.all()]):
  3125. 515 yield str(fp)
  3126. 516
  3127. 517 @property
  3128. 518 def effective_ip_discovery(self):
  3129. 519 if self.enable_ip_discovery == "I":
  3130. 520 if self.parent:
  3131. 521 ==> return self.parent.effective_ip_discovery
  3132. 522 else:
  3133. 523 return "E"
  3134. 524 else:
  3135. 525 return self.enable_ip_discovery
  3136. 526
  3137. 527
  3138. Variables:
  3139. self = <Prefix: Global(6): ::/0>
  3140. ------------------------------------------------------------------------
  3141. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3142. Function: effective_ip_discovery
  3143. 514 [p.prefix for p in self.children_set.all()]):
  3144. 515 yield str(fp)
  3145. 516
  3146. 517 @property
  3147. 518 def effective_ip_discovery(self):
  3148. 519 if self.enable_ip_discovery == "I":
  3149. 520 if self.parent:
  3150. 521 ==> return self.parent.effective_ip_discovery
  3151. 522 else:
  3152. 523 return "E"
  3153. 524 else:
  3154. 525 return self.enable_ip_discovery
  3155. 526
  3156. 527
  3157. Variables:
  3158. self = <Prefix: Global(6): ::/0>
  3159. ------------------------------------------------------------------------
  3160. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3161. Function: effective_ip_discovery
  3162. 514 [p.prefix for p in self.children_set.all()]):
  3163. 515 yield str(fp)
  3164. 516
  3165. 517 @property
  3166. 518 def effective_ip_discovery(self):
  3167. 519 if self.enable_ip_discovery == "I":
  3168. 520 if self.parent:
  3169. 521 ==> return self.parent.effective_ip_discovery
  3170. 522 else:
  3171. 523 return "E"
  3172. 524 else:
  3173. 525 return self.enable_ip_discovery
  3174. 526
  3175. 527
  3176. Variables:
  3177. self = <Prefix: Global(6): ::/0>
  3178. ------------------------------------------------------------------------
  3179. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3180. Function: effective_ip_discovery
  3181. 514 [p.prefix for p in self.children_set.all()]):
  3182. 515 yield str(fp)
  3183. 516
  3184. 517 @property
  3185. 518 def effective_ip_discovery(self):
  3186. 519 if self.enable_ip_discovery == "I":
  3187. 520 if self.parent:
  3188. 521 ==> return self.parent.effective_ip_discovery
  3189. 522 else:
  3190. 523 return "E"
  3191. 524 else:
  3192. 525 return self.enable_ip_discovery
  3193. 526
  3194. 527
  3195. Variables:
  3196. self = <Prefix: Global(6): ::/0>
  3197. ------------------------------------------------------------------------
  3198. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3199. Function: effective_ip_discovery
  3200. 514 [p.prefix for p in self.children_set.all()]):
  3201. 515 yield str(fp)
  3202. 516
  3203. 517 @property
  3204. 518 def effective_ip_discovery(self):
  3205. 519 if self.enable_ip_discovery == "I":
  3206. 520 if self.parent:
  3207. 521 ==> return self.parent.effective_ip_discovery
  3208. 522 else:
  3209. 523 return "E"
  3210. 524 else:
  3211. 525 return self.enable_ip_discovery
  3212. 526
  3213. 527
  3214. Variables:
  3215. self = <Prefix: Global(6): ::/0>
  3216. ------------------------------------------------------------------------
  3217. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3218. Function: effective_ip_discovery
  3219. 514 [p.prefix for p in self.children_set.all()]):
  3220. 515 yield str(fp)
  3221. 516
  3222. 517 @property
  3223. 518 def effective_ip_discovery(self):
  3224. 519 if self.enable_ip_discovery == "I":
  3225. 520 if self.parent:
  3226. 521 ==> return self.parent.effective_ip_discovery
  3227. 522 else:
  3228. 523 return "E"
  3229. 524 else:
  3230. 525 return self.enable_ip_discovery
  3231. 526
  3232. 527
  3233. Variables:
  3234. self = <Prefix: Global(6): ::/0>
  3235. ------------------------------------------------------------------------
  3236. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3237. Function: effective_ip_discovery
  3238. 514 [p.prefix for p in self.children_set.all()]):
  3239. 515 yield str(fp)
  3240. 516
  3241. 517 @property
  3242. 518 def effective_ip_discovery(self):
  3243. 519 if self.enable_ip_discovery == "I":
  3244. 520 if self.parent:
  3245. 521 ==> return self.parent.effective_ip_discovery
  3246. 522 else:
  3247. 523 return "E"
  3248. 524 else:
  3249. 525 return self.enable_ip_discovery
  3250. 526
  3251. 527
  3252. Variables:
  3253. self = <Prefix: Global(6): ::/0>
  3254. ------------------------------------------------------------------------
  3255. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3256. Function: effective_ip_discovery
  3257. 514 [p.prefix for p in self.children_set.all()]):
  3258. 515 yield str(fp)
  3259. 516
  3260. 517 @property
  3261. 518 def effective_ip_discovery(self):
  3262. 519 if self.enable_ip_discovery == "I":
  3263. 520 if self.parent:
  3264. 521 ==> return self.parent.effective_ip_discovery
  3265. 522 else:
  3266. 523 return "E"
  3267. 524 else:
  3268. 525 return self.enable_ip_discovery
  3269. 526
  3270. 527
  3271. Variables:
  3272. self = <Prefix: Global(6): ::/0>
  3273. ------------------------------------------------------------------------
  3274. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3275. Function: effective_ip_discovery
  3276. 514 [p.prefix for p in self.children_set.all()]):
  3277. 515 yield str(fp)
  3278. 516
  3279. 517 @property
  3280. 518 def effective_ip_discovery(self):
  3281. 519 if self.enable_ip_discovery == "I":
  3282. 520 if self.parent:
  3283. 521 ==> return self.parent.effective_ip_discovery
  3284. 522 else:
  3285. 523 return "E"
  3286. 524 else:
  3287. 525 return self.enable_ip_discovery
  3288. 526
  3289. 527
  3290. Variables:
  3291. self = <Prefix: Global(6): ::/0>
  3292. ------------------------------------------------------------------------
  3293. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3294. Function: effective_ip_discovery
  3295. 514 [p.prefix for p in self.children_set.all()]):
  3296. 515 yield str(fp)
  3297. 516
  3298. 517 @property
  3299. 518 def effective_ip_discovery(self):
  3300. 519 if self.enable_ip_discovery == "I":
  3301. 520 if self.parent:
  3302. 521 ==> return self.parent.effective_ip_discovery
  3303. 522 else:
  3304. 523 return "E"
  3305. 524 else:
  3306. 525 return self.enable_ip_discovery
  3307. 526
  3308. 527
  3309. Variables:
  3310. self = <Prefix: Global(6): ::/0>
  3311. ------------------------------------------------------------------------
  3312. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3313. Function: effective_ip_discovery
  3314. 514 [p.prefix for p in self.children_set.all()]):
  3315. 515 yield str(fp)
  3316. 516
  3317. 517 @property
  3318. 518 def effective_ip_discovery(self):
  3319. 519 if self.enable_ip_discovery == "I":
  3320. 520 if self.parent:
  3321. 521 ==> return self.parent.effective_ip_discovery
  3322. 522 else:
  3323. 523 return "E"
  3324. 524 else:
  3325. 525 return self.enable_ip_discovery
  3326. 526
  3327. 527
  3328. Variables:
  3329. self = <Prefix: Global(6): ::/0>
  3330. ------------------------------------------------------------------------
  3331. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3332. Function: effective_ip_discovery
  3333. 514 [p.prefix for p in self.children_set.all()]):
  3334. 515 yield str(fp)
  3335. 516
  3336. 517 @property
  3337. 518 def effective_ip_discovery(self):
  3338. 519 if self.enable_ip_discovery == "I":
  3339. 520 if self.parent:
  3340. 521 ==> return self.parent.effective_ip_discovery
  3341. 522 else:
  3342. 523 return "E"
  3343. 524 else:
  3344. 525 return self.enable_ip_discovery
  3345. 526
  3346. 527
  3347. Variables:
  3348. self = <Prefix: Global(6): ::/0>
  3349. ------------------------------------------------------------------------
  3350. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3351. Function: effective_ip_discovery
  3352. 514 [p.prefix for p in self.children_set.all()]):
  3353. 515 yield str(fp)
  3354. 516
  3355. 517 @property
  3356. 518 def effective_ip_discovery(self):
  3357. 519 if self.enable_ip_discovery == "I":
  3358. 520 if self.parent:
  3359. 521 ==> return self.parent.effective_ip_discovery
  3360. 522 else:
  3361. 523 return "E"
  3362. 524 else:
  3363. 525 return self.enable_ip_discovery
  3364. 526
  3365. 527
  3366. Variables:
  3367. self = <Prefix: Global(6): ::/0>
  3368. ------------------------------------------------------------------------
  3369. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3370. Function: effective_ip_discovery
  3371. 514 [p.prefix for p in self.children_set.all()]):
  3372. 515 yield str(fp)
  3373. 516
  3374. 517 @property
  3375. 518 def effective_ip_discovery(self):
  3376. 519 if self.enable_ip_discovery == "I":
  3377. 520 if self.parent:
  3378. 521 ==> return self.parent.effective_ip_discovery
  3379. 522 else:
  3380. 523 return "E"
  3381. 524 else:
  3382. 525 return self.enable_ip_discovery
  3383. 526
  3384. 527
  3385. Variables:
  3386. self = <Prefix: Global(6): ::/0>
  3387. ------------------------------------------------------------------------
  3388. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3389. Function: effective_ip_discovery
  3390. 514 [p.prefix for p in self.children_set.all()]):
  3391. 515 yield str(fp)
  3392. 516
  3393. 517 @property
  3394. 518 def effective_ip_discovery(self):
  3395. 519 if self.enable_ip_discovery == "I":
  3396. 520 if self.parent:
  3397. 521 ==> return self.parent.effective_ip_discovery
  3398. 522 else:
  3399. 523 return "E"
  3400. 524 else:
  3401. 525 return self.enable_ip_discovery
  3402. 526
  3403. 527
  3404. Variables:
  3405. self = <Prefix: Global(6): ::/0>
  3406. ------------------------------------------------------------------------
  3407. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3408. Function: effective_ip_discovery
  3409. 514 [p.prefix for p in self.children_set.all()]):
  3410. 515 yield str(fp)
  3411. 516
  3412. 517 @property
  3413. 518 def effective_ip_discovery(self):
  3414. 519 if self.enable_ip_discovery == "I":
  3415. 520 if self.parent:
  3416. 521 ==> return self.parent.effective_ip_discovery
  3417. 522 else:
  3418. 523 return "E"
  3419. 524 else:
  3420. 525 return self.enable_ip_discovery
  3421. 526
  3422. 527
  3423. Variables:
  3424. self = <Prefix: Global(6): ::/0>
  3425. ------------------------------------------------------------------------
  3426. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3427. Function: effective_ip_discovery
  3428. 514 [p.prefix for p in self.children_set.all()]):
  3429. 515 yield str(fp)
  3430. 516
  3431. 517 @property
  3432. 518 def effective_ip_discovery(self):
  3433. 519 if self.enable_ip_discovery == "I":
  3434. 520 if self.parent:
  3435. 521 ==> return self.parent.effective_ip_discovery
  3436. 522 else:
  3437. 523 return "E"
  3438. 524 else:
  3439. 525 return self.enable_ip_discovery
  3440. 526
  3441. 527
  3442. Variables:
  3443. self = <Prefix: Global(6): ::/0>
  3444. ------------------------------------------------------------------------
  3445. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3446. Function: effective_ip_discovery
  3447. 514 [p.prefix for p in self.children_set.all()]):
  3448. 515 yield str(fp)
  3449. 516
  3450. 517 @property
  3451. 518 def effective_ip_discovery(self):
  3452. 519 if self.enable_ip_discovery == "I":
  3453. 520 if self.parent:
  3454. 521 ==> return self.parent.effective_ip_discovery
  3455. 522 else:
  3456. 523 return "E"
  3457. 524 else:
  3458. 525 return self.enable_ip_discovery
  3459. 526
  3460. 527
  3461. Variables:
  3462. self = <Prefix: Global(6): ::/0>
  3463. ------------------------------------------------------------------------
  3464. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3465. Function: effective_ip_discovery
  3466. 514 [p.prefix for p in self.children_set.all()]):
  3467. 515 yield str(fp)
  3468. 516
  3469. 517 @property
  3470. 518 def effective_ip_discovery(self):
  3471. 519 if self.enable_ip_discovery == "I":
  3472. 520 if self.parent:
  3473. 521 ==> return self.parent.effective_ip_discovery
  3474. 522 else:
  3475. 523 return "E"
  3476. 524 else:
  3477. 525 return self.enable_ip_discovery
  3478. 526
  3479. 527
  3480. Variables:
  3481. self = <Prefix: Global(6): ::/0>
  3482. ------------------------------------------------------------------------
  3483. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3484. Function: effective_ip_discovery
  3485. 514 [p.prefix for p in self.children_set.all()]):
  3486. 515 yield str(fp)
  3487. 516
  3488. 517 @property
  3489. 518 def effective_ip_discovery(self):
  3490. 519 if self.enable_ip_discovery == "I":
  3491. 520 if self.parent:
  3492. 521 ==> return self.parent.effective_ip_discovery
  3493. 522 else:
  3494. 523 return "E"
  3495. 524 else:
  3496. 525 return self.enable_ip_discovery
  3497. 526
  3498. 527
  3499. Variables:
  3500. self = <Prefix: Global(6): ::/0>
  3501. ------------------------------------------------------------------------
  3502. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3503. Function: effective_ip_discovery
  3504. 514 [p.prefix for p in self.children_set.all()]):
  3505. 515 yield str(fp)
  3506. 516
  3507. 517 @property
  3508. 518 def effective_ip_discovery(self):
  3509. 519 if self.enable_ip_discovery == "I":
  3510. 520 if self.parent:
  3511. 521 ==> return self.parent.effective_ip_discovery
  3512. 522 else:
  3513. 523 return "E"
  3514. 524 else:
  3515. 525 return self.enable_ip_discovery
  3516. 526
  3517. 527
  3518. Variables:
  3519. self = <Prefix: Global(6): ::/0>
  3520. ------------------------------------------------------------------------
  3521. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3522. Function: effective_ip_discovery
  3523. 514 [p.prefix for p in self.children_set.all()]):
  3524. 515 yield str(fp)
  3525. 516
  3526. 517 @property
  3527. 518 def effective_ip_discovery(self):
  3528. 519 if self.enable_ip_discovery == "I":
  3529. 520 if self.parent:
  3530. 521 ==> return self.parent.effective_ip_discovery
  3531. 522 else:
  3532. 523 return "E"
  3533. 524 else:
  3534. 525 return self.enable_ip_discovery
  3535. 526
  3536. 527
  3537. Variables:
  3538. self = <Prefix: Global(6): ::/0>
  3539. ------------------------------------------------------------------------
  3540. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3541. Function: effective_ip_discovery
  3542. 514 [p.prefix for p in self.children_set.all()]):
  3543. 515 yield str(fp)
  3544. 516
  3545. 517 @property
  3546. 518 def effective_ip_discovery(self):
  3547. 519 if self.enable_ip_discovery == "I":
  3548. 520 if self.parent:
  3549. 521 ==> return self.parent.effective_ip_discovery
  3550. 522 else:
  3551. 523 return "E"
  3552. 524 else:
  3553. 525 return self.enable_ip_discovery
  3554. 526
  3555. 527
  3556. Variables:
  3557. self = <Prefix: Global(6): ::/0>
  3558. ------------------------------------------------------------------------
  3559. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3560. Function: effective_ip_discovery
  3561. 514 [p.prefix for p in self.children_set.all()]):
  3562. 515 yield str(fp)
  3563. 516
  3564. 517 @property
  3565. 518 def effective_ip_discovery(self):
  3566. 519 if self.enable_ip_discovery == "I":
  3567. 520 if self.parent:
  3568. 521 ==> return self.parent.effective_ip_discovery
  3569. 522 else:
  3570. 523 return "E"
  3571. 524 else:
  3572. 525 return self.enable_ip_discovery
  3573. 526
  3574. 527
  3575. Variables:
  3576. self = <Prefix: Global(6): ::/0>
  3577. ------------------------------------------------------------------------
  3578. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3579. Function: effective_ip_discovery
  3580. 514 [p.prefix for p in self.children_set.all()]):
  3581. 515 yield str(fp)
  3582. 516
  3583. 517 @property
  3584. 518 def effective_ip_discovery(self):
  3585. 519 if self.enable_ip_discovery == "I":
  3586. 520 if self.parent:
  3587. 521 ==> return self.parent.effective_ip_discovery
  3588. 522 else:
  3589. 523 return "E"
  3590. 524 else:
  3591. 525 return self.enable_ip_discovery
  3592. 526
  3593. 527
  3594. Variables:
  3595. self = <Prefix: Global(6): ::/0>
  3596. ------------------------------------------------------------------------
  3597. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3598. Function: effective_ip_discovery
  3599. 514 [p.prefix for p in self.children_set.all()]):
  3600. 515 yield str(fp)
  3601. 516
  3602. 517 @property
  3603. 518 def effective_ip_discovery(self):
  3604. 519 if self.enable_ip_discovery == "I":
  3605. 520 if self.parent:
  3606. 521 ==> return self.parent.effective_ip_discovery
  3607. 522 else:
  3608. 523 return "E"
  3609. 524 else:
  3610. 525 return self.enable_ip_discovery
  3611. 526
  3612. 527
  3613. Variables:
  3614. self = <Prefix: Global(6): ::/0>
  3615. ------------------------------------------------------------------------
  3616. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3617. Function: effective_ip_discovery
  3618. 514 [p.prefix for p in self.children_set.all()]):
  3619. 515 yield str(fp)
  3620. 516
  3621. 517 @property
  3622. 518 def effective_ip_discovery(self):
  3623. 519 if self.enable_ip_discovery == "I":
  3624. 520 if self.parent:
  3625. 521 ==> return self.parent.effective_ip_discovery
  3626. 522 else:
  3627. 523 return "E"
  3628. 524 else:
  3629. 525 return self.enable_ip_discovery
  3630. 526
  3631. 527
  3632. Variables:
  3633. self = <Prefix: Global(6): ::/0>
  3634. ------------------------------------------------------------------------
  3635. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3636. Function: effective_ip_discovery
  3637. 514 [p.prefix for p in self.children_set.all()]):
  3638. 515 yield str(fp)
  3639. 516
  3640. 517 @property
  3641. 518 def effective_ip_discovery(self):
  3642. 519 if self.enable_ip_discovery == "I":
  3643. 520 if self.parent:
  3644. 521 ==> return self.parent.effective_ip_discovery
  3645. 522 else:
  3646. 523 return "E"
  3647. 524 else:
  3648. 525 return self.enable_ip_discovery
  3649. 526
  3650. 527
  3651. Variables:
  3652. self = <Prefix: Global(6): ::/0>
  3653. ------------------------------------------------------------------------
  3654. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3655. Function: effective_ip_discovery
  3656. 514 [p.prefix for p in self.children_set.all()]):
  3657. 515 yield str(fp)
  3658. 516
  3659. 517 @property
  3660. 518 def effective_ip_discovery(self):
  3661. 519 if self.enable_ip_discovery == "I":
  3662. 520 if self.parent:
  3663. 521 ==> return self.parent.effective_ip_discovery
  3664. 522 else:
  3665. 523 return "E"
  3666. 524 else:
  3667. 525 return self.enable_ip_discovery
  3668. 526
  3669. 527
  3670. Variables:
  3671. self = <Prefix: Global(6): ::/0>
  3672. ------------------------------------------------------------------------
  3673. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3674. Function: effective_ip_discovery
  3675. 514 [p.prefix for p in self.children_set.all()]):
  3676. 515 yield str(fp)
  3677. 516
  3678. 517 @property
  3679. 518 def effective_ip_discovery(self):
  3680. 519 if self.enable_ip_discovery == "I":
  3681. 520 if self.parent:
  3682. 521 ==> return self.parent.effective_ip_discovery
  3683. 522 else:
  3684. 523 return "E"
  3685. 524 else:
  3686. 525 return self.enable_ip_discovery
  3687. 526
  3688. 527
  3689. Variables:
  3690. self = <Prefix: Global(6): ::/0>
  3691. ------------------------------------------------------------------------
  3692. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3693. Function: effective_ip_discovery
  3694. 514 [p.prefix for p in self.children_set.all()]):
  3695. 515 yield str(fp)
  3696. 516
  3697. 517 @property
  3698. 518 def effective_ip_discovery(self):
  3699. 519 if self.enable_ip_discovery == "I":
  3700. 520 if self.parent:
  3701. 521 ==> return self.parent.effective_ip_discovery
  3702. 522 else:
  3703. 523 return "E"
  3704. 524 else:
  3705. 525 return self.enable_ip_discovery
  3706. 526
  3707. 527
  3708. Variables:
  3709. self = <Prefix: Global(6): ::/0>
  3710. ------------------------------------------------------------------------
  3711. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3712. Function: effective_ip_discovery
  3713. 514 [p.prefix for p in self.children_set.all()]):
  3714. 515 yield str(fp)
  3715. 516
  3716. 517 @property
  3717. 518 def effective_ip_discovery(self):
  3718. 519 if self.enable_ip_discovery == "I":
  3719. 520 if self.parent:
  3720. 521 ==> return self.parent.effective_ip_discovery
  3721. 522 else:
  3722. 523 return "E"
  3723. 524 else:
  3724. 525 return self.enable_ip_discovery
  3725. 526
  3726. 527
  3727. Variables:
  3728. self = <Prefix: Global(6): ::/0>
  3729. ------------------------------------------------------------------------
  3730. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3731. Function: effective_ip_discovery
  3732. 514 [p.prefix for p in self.children_set.all()]):
  3733. 515 yield str(fp)
  3734. 516
  3735. 517 @property
  3736. 518 def effective_ip_discovery(self):
  3737. 519 if self.enable_ip_discovery == "I":
  3738. 520 if self.parent:
  3739. 521 ==> return self.parent.effective_ip_discovery
  3740. 522 else:
  3741. 523 return "E"
  3742. 524 else:
  3743. 525 return self.enable_ip_discovery
  3744. 526
  3745. 527
  3746. Variables:
  3747. self = <Prefix: Global(6): ::/0>
  3748. ------------------------------------------------------------------------
  3749. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3750. Function: effective_ip_discovery
  3751. 514 [p.prefix for p in self.children_set.all()]):
  3752. 515 yield str(fp)
  3753. 516
  3754. 517 @property
  3755. 518 def effective_ip_discovery(self):
  3756. 519 if self.enable_ip_discovery == "I":
  3757. 520 if self.parent:
  3758. 521 ==> return self.parent.effective_ip_discovery
  3759. 522 else:
  3760. 523 return "E"
  3761. 524 else:
  3762. 525 return self.enable_ip_discovery
  3763. 526
  3764. 527
  3765. Variables:
  3766. self = <Prefix: Global(6): ::/0>
  3767. ------------------------------------------------------------------------
  3768. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3769. Function: effective_ip_discovery
  3770. 514 [p.prefix for p in self.children_set.all()]):
  3771. 515 yield str(fp)
  3772. 516
  3773. 517 @property
  3774. 518 def effective_ip_discovery(self):
  3775. 519 if self.enable_ip_discovery == "I":
  3776. 520 if self.parent:
  3777. 521 ==> return self.parent.effective_ip_discovery
  3778. 522 else:
  3779. 523 return "E"
  3780. 524 else:
  3781. 525 return self.enable_ip_discovery
  3782. 526
  3783. 527
  3784. Variables:
  3785. self = <Prefix: Global(6): ::/0>
  3786. ------------------------------------------------------------------------
  3787. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3788. Function: effective_ip_discovery
  3789. 514 [p.prefix for p in self.children_set.all()]):
  3790. 515 yield str(fp)
  3791. 516
  3792. 517 @property
  3793. 518 def effective_ip_discovery(self):
  3794. 519 if self.enable_ip_discovery == "I":
  3795. 520 if self.parent:
  3796. 521 ==> return self.parent.effective_ip_discovery
  3797. 522 else:
  3798. 523 return "E"
  3799. 524 else:
  3800. 525 return self.enable_ip_discovery
  3801. 526
  3802. 527
  3803. Variables:
  3804. self = <Prefix: Global(6): ::/0>
  3805. ------------------------------------------------------------------------
  3806. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3807. Function: effective_ip_discovery
  3808. 514 [p.prefix for p in self.children_set.all()]):
  3809. 515 yield str(fp)
  3810. 516
  3811. 517 @property
  3812. 518 def effective_ip_discovery(self):
  3813. 519 if self.enable_ip_discovery == "I":
  3814. 520 if self.parent:
  3815. 521 ==> return self.parent.effective_ip_discovery
  3816. 522 else:
  3817. 523 return "E"
  3818. 524 else:
  3819. 525 return self.enable_ip_discovery
  3820. 526
  3821. 527
  3822. Variables:
  3823. self = <Prefix: Global(6): ::/0>
  3824. ------------------------------------------------------------------------
  3825. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3826. Function: effective_ip_discovery
  3827. 514 [p.prefix for p in self.children_set.all()]):
  3828. 515 yield str(fp)
  3829. 516
  3830. 517 @property
  3831. 518 def effective_ip_discovery(self):
  3832. 519 if self.enable_ip_discovery == "I":
  3833. 520 if self.parent:
  3834. 521 ==> return self.parent.effective_ip_discovery
  3835. 522 else:
  3836. 523 return "E"
  3837. 524 else:
  3838. 525 return self.enable_ip_discovery
  3839. 526
  3840. 527
  3841. Variables:
  3842. self = <Prefix: Global(6): ::/0>
  3843. ------------------------------------------------------------------------
  3844. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3845. Function: effective_ip_discovery
  3846. 514 [p.prefix for p in self.children_set.all()]):
  3847. 515 yield str(fp)
  3848. 516
  3849. 517 @property
  3850. 518 def effective_ip_discovery(self):
  3851. 519 if self.enable_ip_discovery == "I":
  3852. 520 if self.parent:
  3853. 521 ==> return self.parent.effective_ip_discovery
  3854. 522 else:
  3855. 523 return "E"
  3856. 524 else:
  3857. 525 return self.enable_ip_discovery
  3858. 526
  3859. 527
  3860. Variables:
  3861. self = <Prefix: Global(6): ::/0>
  3862. ------------------------------------------------------------------------
  3863. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3864. Function: effective_ip_discovery
  3865. 514 [p.prefix for p in self.children_set.all()]):
  3866. 515 yield str(fp)
  3867. 516
  3868. 517 @property
  3869. 518 def effective_ip_discovery(self):
  3870. 519 if self.enable_ip_discovery == "I":
  3871. 520 if self.parent:
  3872. 521 ==> return self.parent.effective_ip_discovery
  3873. 522 else:
  3874. 523 return "E"
  3875. 524 else:
  3876. 525 return self.enable_ip_discovery
  3877. 526
  3878. 527
  3879. Variables:
  3880. self = <Prefix: Global(6): ::/0>
  3881. ------------------------------------------------------------------------
  3882. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3883. Function: effective_ip_discovery
  3884. 514 [p.prefix for p in self.children_set.all()]):
  3885. 515 yield str(fp)
  3886. 516
  3887. 517 @property
  3888. 518 def effective_ip_discovery(self):
  3889. 519 if self.enable_ip_discovery == "I":
  3890. 520 if self.parent:
  3891. 521 ==> return self.parent.effective_ip_discovery
  3892. 522 else:
  3893. 523 return "E"
  3894. 524 else:
  3895. 525 return self.enable_ip_discovery
  3896. 526
  3897. 527
  3898. Variables:
  3899. self = <Prefix: Global(6): ::/0>
  3900. ------------------------------------------------------------------------
  3901. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3902. Function: effective_ip_discovery
  3903. 514 [p.prefix for p in self.children_set.all()]):
  3904. 515 yield str(fp)
  3905. 516
  3906. 517 @property
  3907. 518 def effective_ip_discovery(self):
  3908. 519 if self.enable_ip_discovery == "I":
  3909. 520 if self.parent:
  3910. 521 ==> return self.parent.effective_ip_discovery
  3911. 522 else:
  3912. 523 return "E"
  3913. 524 else:
  3914. 525 return self.enable_ip_discovery
  3915. 526
  3916. 527
  3917. Variables:
  3918. self = <Prefix: Global(6): ::/0>
  3919. ------------------------------------------------------------------------
  3920. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3921. Function: effective_ip_discovery
  3922. 514 [p.prefix for p in self.children_set.all()]):
  3923. 515 yield str(fp)
  3924. 516
  3925. 517 @property
  3926. 518 def effective_ip_discovery(self):
  3927. 519 if self.enable_ip_discovery == "I":
  3928. 520 if self.parent:
  3929. 521 ==> return self.parent.effective_ip_discovery
  3930. 522 else:
  3931. 523 return "E"
  3932. 524 else:
  3933. 525 return self.enable_ip_discovery
  3934. 526
  3935. 527
  3936. Variables:
  3937. self = <Prefix: Global(6): ::/0>
  3938. ------------------------------------------------------------------------
  3939. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3940. Function: effective_ip_discovery
  3941. 514 [p.prefix for p in self.children_set.all()]):
  3942. 515 yield str(fp)
  3943. 516
  3944. 517 @property
  3945. 518 def effective_ip_discovery(self):
  3946. 519 if self.enable_ip_discovery == "I":
  3947. 520 if self.parent:
  3948. 521 ==> return self.parent.effective_ip_discovery
  3949. 522 else:
  3950. 523 return "E"
  3951. 524 else:
  3952. 525 return self.enable_ip_discovery
  3953. 526
  3954. 527
  3955. Variables:
  3956. self = <Prefix: Global(6): ::/0>
  3957. ------------------------------------------------------------------------
  3958. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3959. Function: effective_ip_discovery
  3960. 514 [p.prefix for p in self.children_set.all()]):
  3961. 515 yield str(fp)
  3962. 516
  3963. 517 @property
  3964. 518 def effective_ip_discovery(self):
  3965. 519 if self.enable_ip_discovery == "I":
  3966. 520 if self.parent:
  3967. 521 ==> return self.parent.effective_ip_discovery
  3968. 522 else:
  3969. 523 return "E"
  3970. 524 else:
  3971. 525 return self.enable_ip_discovery
  3972. 526
  3973. 527
  3974. Variables:
  3975. self = <Prefix: Global(6): ::/0>
  3976. ------------------------------------------------------------------------
  3977. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3978. Function: effective_ip_discovery
  3979. 514 [p.prefix for p in self.children_set.all()]):
  3980. 515 yield str(fp)
  3981. 516
  3982. 517 @property
  3983. 518 def effective_ip_discovery(self):
  3984. 519 if self.enable_ip_discovery == "I":
  3985. 520 if self.parent:
  3986. 521 ==> return self.parent.effective_ip_discovery
  3987. 522 else:
  3988. 523 return "E"
  3989. 524 else:
  3990. 525 return self.enable_ip_discovery
  3991. 526
  3992. 527
  3993. Variables:
  3994. self = <Prefix: Global(6): ::/0>
  3995. ------------------------------------------------------------------------
  3996. File: /opt/noc/ip/models/prefix.py (Line: 521)
  3997. Function: effective_ip_discovery
  3998. 514 [p.prefix for p in self.children_set.all()]):
  3999. 515 yield str(fp)
  4000. 516
  4001. 517 @property
  4002. 518 def effective_ip_discovery(self):
  4003. 519 if self.enable_ip_discovery == "I":
  4004. 520 if self.parent:
  4005. 521 ==> return self.parent.effective_ip_discovery
  4006. 522 else:
  4007. 523 return "E"
  4008. 524 else:
  4009. 525 return self.enable_ip_discovery
  4010. 526
  4011. 527
  4012. Variables:
  4013. self = <Prefix: Global(6): ::/0>
  4014. ------------------------------------------------------------------------
  4015. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4016. Function: effective_ip_discovery
  4017. 514 [p.prefix for p in self.children_set.all()]):
  4018. 515 yield str(fp)
  4019. 516
  4020. 517 @property
  4021. 518 def effective_ip_discovery(self):
  4022. 519 if self.enable_ip_discovery == "I":
  4023. 520 if self.parent:
  4024. 521 ==> return self.parent.effective_ip_discovery
  4025. 522 else:
  4026. 523 return "E"
  4027. 524 else:
  4028. 525 return self.enable_ip_discovery
  4029. 526
  4030. 527
  4031. Variables:
  4032. self = <Prefix: Global(6): ::/0>
  4033. ------------------------------------------------------------------------
  4034. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4035. Function: effective_ip_discovery
  4036. 514 [p.prefix for p in self.children_set.all()]):
  4037. 515 yield str(fp)
  4038. 516
  4039. 517 @property
  4040. 518 def effective_ip_discovery(self):
  4041. 519 if self.enable_ip_discovery == "I":
  4042. 520 if self.parent:
  4043. 521 ==> return self.parent.effective_ip_discovery
  4044. 522 else:
  4045. 523 return "E"
  4046. 524 else:
  4047. 525 return self.enable_ip_discovery
  4048. 526
  4049. 527
  4050. Variables:
  4051. self = <Prefix: Global(6): ::/0>
  4052. ------------------------------------------------------------------------
  4053. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4054. Function: effective_ip_discovery
  4055. 514 [p.prefix for p in self.children_set.all()]):
  4056. 515 yield str(fp)
  4057. 516
  4058. 517 @property
  4059. 518 def effective_ip_discovery(self):
  4060. 519 if self.enable_ip_discovery == "I":
  4061. 520 if self.parent:
  4062. 521 ==> return self.parent.effective_ip_discovery
  4063. 522 else:
  4064. 523 return "E"
  4065. 524 else:
  4066. 525 return self.enable_ip_discovery
  4067. 526
  4068. 527
  4069. Variables:
  4070. self = <Prefix: Global(6): ::/0>
  4071. ------------------------------------------------------------------------
  4072. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4073. Function: effective_ip_discovery
  4074. 514 [p.prefix for p in self.children_set.all()]):
  4075. 515 yield str(fp)
  4076. 516
  4077. 517 @property
  4078. 518 def effective_ip_discovery(self):
  4079. 519 if self.enable_ip_discovery == "I":
  4080. 520 if self.parent:
  4081. 521 ==> return self.parent.effective_ip_discovery
  4082. 522 else:
  4083. 523 return "E"
  4084. 524 else:
  4085. 525 return self.enable_ip_discovery
  4086. 526
  4087. 527
  4088. Variables:
  4089. self = <Prefix: Global(6): ::/0>
  4090. ------------------------------------------------------------------------
  4091. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4092. Function: effective_ip_discovery
  4093. 514 [p.prefix for p in self.children_set.all()]):
  4094. 515 yield str(fp)
  4095. 516
  4096. 517 @property
  4097. 518 def effective_ip_discovery(self):
  4098. 519 if self.enable_ip_discovery == "I":
  4099. 520 if self.parent:
  4100. 521 ==> return self.parent.effective_ip_discovery
  4101. 522 else:
  4102. 523 return "E"
  4103. 524 else:
  4104. 525 return self.enable_ip_discovery
  4105. 526
  4106. 527
  4107. Variables:
  4108. self = <Prefix: Global(6): ::/0>
  4109. ------------------------------------------------------------------------
  4110. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4111. Function: effective_ip_discovery
  4112. 514 [p.prefix for p in self.children_set.all()]):
  4113. 515 yield str(fp)
  4114. 516
  4115. 517 @property
  4116. 518 def effective_ip_discovery(self):
  4117. 519 if self.enable_ip_discovery == "I":
  4118. 520 if self.parent:
  4119. 521 ==> return self.parent.effective_ip_discovery
  4120. 522 else:
  4121. 523 return "E"
  4122. 524 else:
  4123. 525 return self.enable_ip_discovery
  4124. 526
  4125. 527
  4126. Variables:
  4127. self = <Prefix: Global(6): ::/0>
  4128. ------------------------------------------------------------------------
  4129. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4130. Function: effective_ip_discovery
  4131. 514 [p.prefix for p in self.children_set.all()]):
  4132. 515 yield str(fp)
  4133. 516
  4134. 517 @property
  4135. 518 def effective_ip_discovery(self):
  4136. 519 if self.enable_ip_discovery == "I":
  4137. 520 if self.parent:
  4138. 521 ==> return self.parent.effective_ip_discovery
  4139. 522 else:
  4140. 523 return "E"
  4141. 524 else:
  4142. 525 return self.enable_ip_discovery
  4143. 526
  4144. 527
  4145. Variables:
  4146. self = <Prefix: Global(6): ::/0>
  4147. ------------------------------------------------------------------------
  4148. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4149. Function: effective_ip_discovery
  4150. 514 [p.prefix for p in self.children_set.all()]):
  4151. 515 yield str(fp)
  4152. 516
  4153. 517 @property
  4154. 518 def effective_ip_discovery(self):
  4155. 519 if self.enable_ip_discovery == "I":
  4156. 520 if self.parent:
  4157. 521 ==> return self.parent.effective_ip_discovery
  4158. 522 else:
  4159. 523 return "E"
  4160. 524 else:
  4161. 525 return self.enable_ip_discovery
  4162. 526
  4163. 527
  4164. Variables:
  4165. self = <Prefix: Global(6): ::/0>
  4166. ------------------------------------------------------------------------
  4167. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4168. Function: effective_ip_discovery
  4169. 514 [p.prefix for p in self.children_set.all()]):
  4170. 515 yield str(fp)
  4171. 516
  4172. 517 @property
  4173. 518 def effective_ip_discovery(self):
  4174. 519 if self.enable_ip_discovery == "I":
  4175. 520 if self.parent:
  4176. 521 ==> return self.parent.effective_ip_discovery
  4177. 522 else:
  4178. 523 return "E"
  4179. 524 else:
  4180. 525 return self.enable_ip_discovery
  4181. 526
  4182. 527
  4183. Variables:
  4184. self = <Prefix: Global(6): ::/0>
  4185. ------------------------------------------------------------------------
  4186. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4187. Function: effective_ip_discovery
  4188. 514 [p.prefix for p in self.children_set.all()]):
  4189. 515 yield str(fp)
  4190. 516
  4191. 517 @property
  4192. 518 def effective_ip_discovery(self):
  4193. 519 if self.enable_ip_discovery == "I":
  4194. 520 if self.parent:
  4195. 521 ==> return self.parent.effective_ip_discovery
  4196. 522 else:
  4197. 523 return "E"
  4198. 524 else:
  4199. 525 return self.enable_ip_discovery
  4200. 526
  4201. 527
  4202. Variables:
  4203. self = <Prefix: Global(6): ::/0>
  4204. ------------------------------------------------------------------------
  4205. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4206. Function: effective_ip_discovery
  4207. 514 [p.prefix for p in self.children_set.all()]):
  4208. 515 yield str(fp)
  4209. 516
  4210. 517 @property
  4211. 518 def effective_ip_discovery(self):
  4212. 519 if self.enable_ip_discovery == "I":
  4213. 520 if self.parent:
  4214. 521 ==> return self.parent.effective_ip_discovery
  4215. 522 else:
  4216. 523 return "E"
  4217. 524 else:
  4218. 525 return self.enable_ip_discovery
  4219. 526
  4220. 527
  4221. Variables:
  4222. self = <Prefix: Global(6): ::/0>
  4223. ------------------------------------------------------------------------
  4224. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4225. Function: effective_ip_discovery
  4226. 514 [p.prefix for p in self.children_set.all()]):
  4227. 515 yield str(fp)
  4228. 516
  4229. 517 @property
  4230. 518 def effective_ip_discovery(self):
  4231. 519 if self.enable_ip_discovery == "I":
  4232. 520 if self.parent:
  4233. 521 ==> return self.parent.effective_ip_discovery
  4234. 522 else:
  4235. 523 return "E"
  4236. 524 else:
  4237. 525 return self.enable_ip_discovery
  4238. 526
  4239. 527
  4240. Variables:
  4241. self = <Prefix: Global(6): ::/0>
  4242. ------------------------------------------------------------------------
  4243. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4244. Function: effective_ip_discovery
  4245. 514 [p.prefix for p in self.children_set.all()]):
  4246. 515 yield str(fp)
  4247. 516
  4248. 517 @property
  4249. 518 def effective_ip_discovery(self):
  4250. 519 if self.enable_ip_discovery == "I":
  4251. 520 if self.parent:
  4252. 521 ==> return self.parent.effective_ip_discovery
  4253. 522 else:
  4254. 523 return "E"
  4255. 524 else:
  4256. 525 return self.enable_ip_discovery
  4257. 526
  4258. 527
  4259. Variables:
  4260. self = <Prefix: Global(6): ::/0>
  4261. ------------------------------------------------------------------------
  4262. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4263. Function: effective_ip_discovery
  4264. 514 [p.prefix for p in self.children_set.all()]):
  4265. 515 yield str(fp)
  4266. 516
  4267. 517 @property
  4268. 518 def effective_ip_discovery(self):
  4269. 519 if self.enable_ip_discovery == "I":
  4270. 520 if self.parent:
  4271. 521 ==> return self.parent.effective_ip_discovery
  4272. 522 else:
  4273. 523 return "E"
  4274. 524 else:
  4275. 525 return self.enable_ip_discovery
  4276. 526
  4277. 527
  4278. Variables:
  4279. self = <Prefix: Global(6): ::/0>
  4280. ------------------------------------------------------------------------
  4281. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4282. Function: effective_ip_discovery
  4283. 514 [p.prefix for p in self.children_set.all()]):
  4284. 515 yield str(fp)
  4285. 516
  4286. 517 @property
  4287. 518 def effective_ip_discovery(self):
  4288. 519 if self.enable_ip_discovery == "I":
  4289. 520 if self.parent:
  4290. 521 ==> return self.parent.effective_ip_discovery
  4291. 522 else:
  4292. 523 return "E"
  4293. 524 else:
  4294. 525 return self.enable_ip_discovery
  4295. 526
  4296. 527
  4297. Variables:
  4298. self = <Prefix: Global(6): ::/0>
  4299. ------------------------------------------------------------------------
  4300. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4301. Function: effective_ip_discovery
  4302. 514 [p.prefix for p in self.children_set.all()]):
  4303. 515 yield str(fp)
  4304. 516
  4305. 517 @property
  4306. 518 def effective_ip_discovery(self):
  4307. 519 if self.enable_ip_discovery == "I":
  4308. 520 if self.parent:
  4309. 521 ==> return self.parent.effective_ip_discovery
  4310. 522 else:
  4311. 523 return "E"
  4312. 524 else:
  4313. 525 return self.enable_ip_discovery
  4314. 526
  4315. 527
  4316. Variables:
  4317. self = <Prefix: Global(6): ::/0>
  4318. ------------------------------------------------------------------------
  4319. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4320. Function: effective_ip_discovery
  4321. 514 [p.prefix for p in self.children_set.all()]):
  4322. 515 yield str(fp)
  4323. 516
  4324. 517 @property
  4325. 518 def effective_ip_discovery(self):
  4326. 519 if self.enable_ip_discovery == "I":
  4327. 520 if self.parent:
  4328. 521 ==> return self.parent.effective_ip_discovery
  4329. 522 else:
  4330. 523 return "E"
  4331. 524 else:
  4332. 525 return self.enable_ip_discovery
  4333. 526
  4334. 527
  4335. Variables:
  4336. self = <Prefix: Global(6): ::/0>
  4337. ------------------------------------------------------------------------
  4338. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4339. Function: effective_ip_discovery
  4340. 514 [p.prefix for p in self.children_set.all()]):
  4341. 515 yield str(fp)
  4342. 516
  4343. 517 @property
  4344. 518 def effective_ip_discovery(self):
  4345. 519 if self.enable_ip_discovery == "I":
  4346. 520 if self.parent:
  4347. 521 ==> return self.parent.effective_ip_discovery
  4348. 522 else:
  4349. 523 return "E"
  4350. 524 else:
  4351. 525 return self.enable_ip_discovery
  4352. 526
  4353. 527
  4354. Variables:
  4355. self = <Prefix: Global(6): ::/0>
  4356. ------------------------------------------------------------------------
  4357. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4358. Function: effective_ip_discovery
  4359. 514 [p.prefix for p in self.children_set.all()]):
  4360. 515 yield str(fp)
  4361. 516
  4362. 517 @property
  4363. 518 def effective_ip_discovery(self):
  4364. 519 if self.enable_ip_discovery == "I":
  4365. 520 if self.parent:
  4366. 521 ==> return self.parent.effective_ip_discovery
  4367. 522 else:
  4368. 523 return "E"
  4369. 524 else:
  4370. 525 return self.enable_ip_discovery
  4371. 526
  4372. 527
  4373. Variables:
  4374. self = <Prefix: Global(6): ::/0>
  4375. ------------------------------------------------------------------------
  4376. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4377. Function: effective_ip_discovery
  4378. 514 [p.prefix for p in self.children_set.all()]):
  4379. 515 yield str(fp)
  4380. 516
  4381. 517 @property
  4382. 518 def effective_ip_discovery(self):
  4383. 519 if self.enable_ip_discovery == "I":
  4384. 520 if self.parent:
  4385. 521 ==> return self.parent.effective_ip_discovery
  4386. 522 else:
  4387. 523 return "E"
  4388. 524 else:
  4389. 525 return self.enable_ip_discovery
  4390. 526
  4391. 527
  4392. Variables:
  4393. self = <Prefix: Global(6): ::/0>
  4394. ------------------------------------------------------------------------
  4395. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4396. Function: effective_ip_discovery
  4397. 514 [p.prefix for p in self.children_set.all()]):
  4398. 515 yield str(fp)
  4399. 516
  4400. 517 @property
  4401. 518 def effective_ip_discovery(self):
  4402. 519 if self.enable_ip_discovery == "I":
  4403. 520 if self.parent:
  4404. 521 ==> return self.parent.effective_ip_discovery
  4405. 522 else:
  4406. 523 return "E"
  4407. 524 else:
  4408. 525 return self.enable_ip_discovery
  4409. 526
  4410. 527
  4411. Variables:
  4412. self = <Prefix: Global(6): ::/0>
  4413. ------------------------------------------------------------------------
  4414. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4415. Function: effective_ip_discovery
  4416. 514 [p.prefix for p in self.children_set.all()]):
  4417. 515 yield str(fp)
  4418. 516
  4419. 517 @property
  4420. 518 def effective_ip_discovery(self):
  4421. 519 if self.enable_ip_discovery == "I":
  4422. 520 if self.parent:
  4423. 521 ==> return self.parent.effective_ip_discovery
  4424. 522 else:
  4425. 523 return "E"
  4426. 524 else:
  4427. 525 return self.enable_ip_discovery
  4428. 526
  4429. 527
  4430. Variables:
  4431. self = <Prefix: Global(6): ::/0>
  4432. ------------------------------------------------------------------------
  4433. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4434. Function: effective_ip_discovery
  4435. 514 [p.prefix for p in self.children_set.all()]):
  4436. 515 yield str(fp)
  4437. 516
  4438. 517 @property
  4439. 518 def effective_ip_discovery(self):
  4440. 519 if self.enable_ip_discovery == "I":
  4441. 520 if self.parent:
  4442. 521 ==> return self.parent.effective_ip_discovery
  4443. 522 else:
  4444. 523 return "E"
  4445. 524 else:
  4446. 525 return self.enable_ip_discovery
  4447. 526
  4448. 527
  4449. Variables:
  4450. self = <Prefix: Global(6): ::/0>
  4451. ------------------------------------------------------------------------
  4452. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4453. Function: effective_ip_discovery
  4454. 514 [p.prefix for p in self.children_set.all()]):
  4455. 515 yield str(fp)
  4456. 516
  4457. 517 @property
  4458. 518 def effective_ip_discovery(self):
  4459. 519 if self.enable_ip_discovery == "I":
  4460. 520 if self.parent:
  4461. 521 ==> return self.parent.effective_ip_discovery
  4462. 522 else:
  4463. 523 return "E"
  4464. 524 else:
  4465. 525 return self.enable_ip_discovery
  4466. 526
  4467. 527
  4468. Variables:
  4469. self = <Prefix: Global(6): ::/0>
  4470. ------------------------------------------------------------------------
  4471. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4472. Function: effective_ip_discovery
  4473. 514 [p.prefix for p in self.children_set.all()]):
  4474. 515 yield str(fp)
  4475. 516
  4476. 517 @property
  4477. 518 def effective_ip_discovery(self):
  4478. 519 if self.enable_ip_discovery == "I":
  4479. 520 if self.parent:
  4480. 521 ==> return self.parent.effective_ip_discovery
  4481. 522 else:
  4482. 523 return "E"
  4483. 524 else:
  4484. 525 return self.enable_ip_discovery
  4485. 526
  4486. 527
  4487. Variables:
  4488. self = <Prefix: Global(6): ::/0>
  4489. ------------------------------------------------------------------------
  4490. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4491. Function: effective_ip_discovery
  4492. 514 [p.prefix for p in self.children_set.all()]):
  4493. 515 yield str(fp)
  4494. 516
  4495. 517 @property
  4496. 518 def effective_ip_discovery(self):
  4497. 519 if self.enable_ip_discovery == "I":
  4498. 520 if self.parent:
  4499. 521 ==> return self.parent.effective_ip_discovery
  4500. 522 else:
  4501. 523 return "E"
  4502. 524 else:
  4503. 525 return self.enable_ip_discovery
  4504. 526
  4505. 527
  4506. Variables:
  4507. self = <Prefix: Global(6): ::/0>
  4508. ------------------------------------------------------------------------
  4509. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4510. Function: effective_ip_discovery
  4511. 514 [p.prefix for p in self.children_set.all()]):
  4512. 515 yield str(fp)
  4513. 516
  4514. 517 @property
  4515. 518 def effective_ip_discovery(self):
  4516. 519 if self.enable_ip_discovery == "I":
  4517. 520 if self.parent:
  4518. 521 ==> return self.parent.effective_ip_discovery
  4519. 522 else:
  4520. 523 return "E"
  4521. 524 else:
  4522. 525 return self.enable_ip_discovery
  4523. 526
  4524. 527
  4525. Variables:
  4526. self = <Prefix: Global(6): ::/0>
  4527. ------------------------------------------------------------------------
  4528. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4529. Function: effective_ip_discovery
  4530. 514 [p.prefix for p in self.children_set.all()]):
  4531. 515 yield str(fp)
  4532. 516
  4533. 517 @property
  4534. 518 def effective_ip_discovery(self):
  4535. 519 if self.enable_ip_discovery == "I":
  4536. 520 if self.parent:
  4537. 521 ==> return self.parent.effective_ip_discovery
  4538. 522 else:
  4539. 523 return "E"
  4540. 524 else:
  4541. 525 return self.enable_ip_discovery
  4542. 526
  4543. 527
  4544. Variables:
  4545. self = <Prefix: Global(6): ::/0>
  4546. ------------------------------------------------------------------------
  4547. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4548. Function: effective_ip_discovery
  4549. 514 [p.prefix for p in self.children_set.all()]):
  4550. 515 yield str(fp)
  4551. 516
  4552. 517 @property
  4553. 518 def effective_ip_discovery(self):
  4554. 519 if self.enable_ip_discovery == "I":
  4555. 520 if self.parent:
  4556. 521 ==> return self.parent.effective_ip_discovery
  4557. 522 else:
  4558. 523 return "E"
  4559. 524 else:
  4560. 525 return self.enable_ip_discovery
  4561. 526
  4562. 527
  4563. Variables:
  4564. self = <Prefix: Global(6): ::/0>
  4565. ------------------------------------------------------------------------
  4566. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4567. Function: effective_ip_discovery
  4568. 514 [p.prefix for p in self.children_set.all()]):
  4569. 515 yield str(fp)
  4570. 516
  4571. 517 @property
  4572. 518 def effective_ip_discovery(self):
  4573. 519 if self.enable_ip_discovery == "I":
  4574. 520 if self.parent:
  4575. 521 ==> return self.parent.effective_ip_discovery
  4576. 522 else:
  4577. 523 return "E"
  4578. 524 else:
  4579. 525 return self.enable_ip_discovery
  4580. 526
  4581. 527
  4582. Variables:
  4583. self = <Prefix: Global(6): ::/0>
  4584. ------------------------------------------------------------------------
  4585. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4586. Function: effective_ip_discovery
  4587. 514 [p.prefix for p in self.children_set.all()]):
  4588. 515 yield str(fp)
  4589. 516
  4590. 517 @property
  4591. 518 def effective_ip_discovery(self):
  4592. 519 if self.enable_ip_discovery == "I":
  4593. 520 if self.parent:
  4594. 521 ==> return self.parent.effective_ip_discovery
  4595. 522 else:
  4596. 523 return "E"
  4597. 524 else:
  4598. 525 return self.enable_ip_discovery
  4599. 526
  4600. 527
  4601. Variables:
  4602. self = <Prefix: Global(6): ::/0>
  4603. ------------------------------------------------------------------------
  4604. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4605. Function: effective_ip_discovery
  4606. 514 [p.prefix for p in self.children_set.all()]):
  4607. 515 yield str(fp)
  4608. 516
  4609. 517 @property
  4610. 518 def effective_ip_discovery(self):
  4611. 519 if self.enable_ip_discovery == "I":
  4612. 520 if self.parent:
  4613. 521 ==> return self.parent.effective_ip_discovery
  4614. 522 else:
  4615. 523 return "E"
  4616. 524 else:
  4617. 525 return self.enable_ip_discovery
  4618. 526
  4619. 527
  4620. Variables:
  4621. self = <Prefix: Global(6): ::/0>
  4622. ------------------------------------------------------------------------
  4623. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4624. Function: effective_ip_discovery
  4625. 514 [p.prefix for p in self.children_set.all()]):
  4626. 515 yield str(fp)
  4627. 516
  4628. 517 @property
  4629. 518 def effective_ip_discovery(self):
  4630. 519 if self.enable_ip_discovery == "I":
  4631. 520 if self.parent:
  4632. 521 ==> return self.parent.effective_ip_discovery
  4633. 522 else:
  4634. 523 return "E"
  4635. 524 else:
  4636. 525 return self.enable_ip_discovery
  4637. 526
  4638. 527
  4639. Variables:
  4640. self = <Prefix: Global(6): ::/0>
  4641. ------------------------------------------------------------------------
  4642. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4643. Function: effective_ip_discovery
  4644. 514 [p.prefix for p in self.children_set.all()]):
  4645. 515 yield str(fp)
  4646. 516
  4647. 517 @property
  4648. 518 def effective_ip_discovery(self):
  4649. 519 if self.enable_ip_discovery == "I":
  4650. 520 if self.parent:
  4651. 521 ==> return self.parent.effective_ip_discovery
  4652. 522 else:
  4653. 523 return "E"
  4654. 524 else:
  4655. 525 return self.enable_ip_discovery
  4656. 526
  4657. 527
  4658. Variables:
  4659. self = <Prefix: Global(6): ::/0>
  4660. ------------------------------------------------------------------------
  4661. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4662. Function: effective_ip_discovery
  4663. 514 [p.prefix for p in self.children_set.all()]):
  4664. 515 yield str(fp)
  4665. 516
  4666. 517 @property
  4667. 518 def effective_ip_discovery(self):
  4668. 519 if self.enable_ip_discovery == "I":
  4669. 520 if self.parent:
  4670. 521 ==> return self.parent.effective_ip_discovery
  4671. 522 else:
  4672. 523 return "E"
  4673. 524 else:
  4674. 525 return self.enable_ip_discovery
  4675. 526
  4676. 527
  4677. Variables:
  4678. self = <Prefix: Global(6): ::/0>
  4679. ------------------------------------------------------------------------
  4680. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4681. Function: effective_ip_discovery
  4682. 514 [p.prefix for p in self.children_set.all()]):
  4683. 515 yield str(fp)
  4684. 516
  4685. 517 @property
  4686. 518 def effective_ip_discovery(self):
  4687. 519 if self.enable_ip_discovery == "I":
  4688. 520 if self.parent:
  4689. 521 ==> return self.parent.effective_ip_discovery
  4690. 522 else:
  4691. 523 return "E"
  4692. 524 else:
  4693. 525 return self.enable_ip_discovery
  4694. 526
  4695. 527
  4696. Variables:
  4697. self = <Prefix: Global(6): ::/0>
  4698. ------------------------------------------------------------------------
  4699. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4700. Function: effective_ip_discovery
  4701. 514 [p.prefix for p in self.children_set.all()]):
  4702. 515 yield str(fp)
  4703. 516
  4704. 517 @property
  4705. 518 def effective_ip_discovery(self):
  4706. 519 if self.enable_ip_discovery == "I":
  4707. 520 if self.parent:
  4708. 521 ==> return self.parent.effective_ip_discovery
  4709. 522 else:
  4710. 523 return "E"
  4711. 524 else:
  4712. 525 return self.enable_ip_discovery
  4713. 526
  4714. 527
  4715. Variables:
  4716. self = <Prefix: Global(6): ::/0>
  4717. ------------------------------------------------------------------------
  4718. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4719. Function: effective_ip_discovery
  4720. 514 [p.prefix for p in self.children_set.all()]):
  4721. 515 yield str(fp)
  4722. 516
  4723. 517 @property
  4724. 518 def effective_ip_discovery(self):
  4725. 519 if self.enable_ip_discovery == "I":
  4726. 520 if self.parent:
  4727. 521 ==> return self.parent.effective_ip_discovery
  4728. 522 else:
  4729. 523 return "E"
  4730. 524 else:
  4731. 525 return self.enable_ip_discovery
  4732. 526
  4733. 527
  4734. Variables:
  4735. self = <Prefix: Global(6): ::/0>
  4736. ------------------------------------------------------------------------
  4737. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4738. Function: effective_ip_discovery
  4739. 514 [p.prefix for p in self.children_set.all()]):
  4740. 515 yield str(fp)
  4741. 516
  4742. 517 @property
  4743. 518 def effective_ip_discovery(self):
  4744. 519 if self.enable_ip_discovery == "I":
  4745. 520 if self.parent:
  4746. 521 ==> return self.parent.effective_ip_discovery
  4747. 522 else:
  4748. 523 return "E"
  4749. 524 else:
  4750. 525 return self.enable_ip_discovery
  4751. 526
  4752. 527
  4753. Variables:
  4754. self = <Prefix: Global(6): ::/0>
  4755. ------------------------------------------------------------------------
  4756. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4757. Function: effective_ip_discovery
  4758. 514 [p.prefix for p in self.children_set.all()]):
  4759. 515 yield str(fp)
  4760. 516
  4761. 517 @property
  4762. 518 def effective_ip_discovery(self):
  4763. 519 if self.enable_ip_discovery == "I":
  4764. 520 if self.parent:
  4765. 521 ==> return self.parent.effective_ip_discovery
  4766. 522 else:
  4767. 523 return "E"
  4768. 524 else:
  4769. 525 return self.enable_ip_discovery
  4770. 526
  4771. 527
  4772. Variables:
  4773. self = <Prefix: Global(6): ::/0>
  4774. ------------------------------------------------------------------------
  4775. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4776. Function: effective_ip_discovery
  4777. 514 [p.prefix for p in self.children_set.all()]):
  4778. 515 yield str(fp)
  4779. 516
  4780. 517 @property
  4781. 518 def effective_ip_discovery(self):
  4782. 519 if self.enable_ip_discovery == "I":
  4783. 520 if self.parent:
  4784. 521 ==> return self.parent.effective_ip_discovery
  4785. 522 else:
  4786. 523 return "E"
  4787. 524 else:
  4788. 525 return self.enable_ip_discovery
  4789. 526
  4790. 527
  4791. Variables:
  4792. self = <Prefix: Global(6): ::/0>
  4793. ------------------------------------------------------------------------
  4794. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4795. Function: effective_ip_discovery
  4796. 514 [p.prefix for p in self.children_set.all()]):
  4797. 515 yield str(fp)
  4798. 516
  4799. 517 @property
  4800. 518 def effective_ip_discovery(self):
  4801. 519 if self.enable_ip_discovery == "I":
  4802. 520 if self.parent:
  4803. 521 ==> return self.parent.effective_ip_discovery
  4804. 522 else:
  4805. 523 return "E"
  4806. 524 else:
  4807. 525 return self.enable_ip_discovery
  4808. 526
  4809. 527
  4810. Variables:
  4811. self = <Prefix: Global(6): ::/0>
  4812. ------------------------------------------------------------------------
  4813. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4814. Function: effective_ip_discovery
  4815. 514 [p.prefix for p in self.children_set.all()]):
  4816. 515 yield str(fp)
  4817. 516
  4818. 517 @property
  4819. 518 def effective_ip_discovery(self):
  4820. 519 if self.enable_ip_discovery == "I":
  4821. 520 if self.parent:
  4822. 521 ==> return self.parent.effective_ip_discovery
  4823. 522 else:
  4824. 523 return "E"
  4825. 524 else:
  4826. 525 return self.enable_ip_discovery
  4827. 526
  4828. 527
  4829. Variables:
  4830. self = <Prefix: Global(6): ::/0>
  4831. ------------------------------------------------------------------------
  4832. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4833. Function: effective_ip_discovery
  4834. 514 [p.prefix for p in self.children_set.all()]):
  4835. 515 yield str(fp)
  4836. 516
  4837. 517 @property
  4838. 518 def effective_ip_discovery(self):
  4839. 519 if self.enable_ip_discovery == "I":
  4840. 520 if self.parent:
  4841. 521 ==> return self.parent.effective_ip_discovery
  4842. 522 else:
  4843. 523 return "E"
  4844. 524 else:
  4845. 525 return self.enable_ip_discovery
  4846. 526
  4847. 527
  4848. Variables:
  4849. self = <Prefix: Global(6): ::/0>
  4850. ------------------------------------------------------------------------
  4851. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4852. Function: effective_ip_discovery
  4853. 514 [p.prefix for p in self.children_set.all()]):
  4854. 515 yield str(fp)
  4855. 516
  4856. 517 @property
  4857. 518 def effective_ip_discovery(self):
  4858. 519 if self.enable_ip_discovery == "I":
  4859. 520 if self.parent:
  4860. 521 ==> return self.parent.effective_ip_discovery
  4861. 522 else:
  4862. 523 return "E"
  4863. 524 else:
  4864. 525 return self.enable_ip_discovery
  4865. 526
  4866. 527
  4867. Variables:
  4868. self = <Prefix: Global(6): ::/0>
  4869. ------------------------------------------------------------------------
  4870. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4871. Function: effective_ip_discovery
  4872. 514 [p.prefix for p in self.children_set.all()]):
  4873. 515 yield str(fp)
  4874. 516
  4875. 517 @property
  4876. 518 def effective_ip_discovery(self):
  4877. 519 if self.enable_ip_discovery == "I":
  4878. 520 if self.parent:
  4879. 521 ==> return self.parent.effective_ip_discovery
  4880. 522 else:
  4881. 523 return "E"
  4882. 524 else:
  4883. 525 return self.enable_ip_discovery
  4884. 526
  4885. 527
  4886. Variables:
  4887. self = <Prefix: Global(6): ::/0>
  4888. ------------------------------------------------------------------------
  4889. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4890. Function: effective_ip_discovery
  4891. 514 [p.prefix for p in self.children_set.all()]):
  4892. 515 yield str(fp)
  4893. 516
  4894. 517 @property
  4895. 518 def effective_ip_discovery(self):
  4896. 519 if self.enable_ip_discovery == "I":
  4897. 520 if self.parent:
  4898. 521 ==> return self.parent.effective_ip_discovery
  4899. 522 else:
  4900. 523 return "E"
  4901. 524 else:
  4902. 525 return self.enable_ip_discovery
  4903. 526
  4904. 527
  4905. Variables:
  4906. self = <Prefix: Global(6): ::/0>
  4907. ------------------------------------------------------------------------
  4908. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4909. Function: effective_ip_discovery
  4910. 514 [p.prefix for p in self.children_set.all()]):
  4911. 515 yield str(fp)
  4912. 516
  4913. 517 @property
  4914. 518 def effective_ip_discovery(self):
  4915. 519 if self.enable_ip_discovery == "I":
  4916. 520 if self.parent:
  4917. 521 ==> return self.parent.effective_ip_discovery
  4918. 522 else:
  4919. 523 return "E"
  4920. 524 else:
  4921. 525 return self.enable_ip_discovery
  4922. 526
  4923. 527
  4924. Variables:
  4925. self = <Prefix: Global(6): ::/0>
  4926. ------------------------------------------------------------------------
  4927. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4928. Function: effective_ip_discovery
  4929. 514 [p.prefix for p in self.children_set.all()]):
  4930. 515 yield str(fp)
  4931. 516
  4932. 517 @property
  4933. 518 def effective_ip_discovery(self):
  4934. 519 if self.enable_ip_discovery == "I":
  4935. 520 if self.parent:
  4936. 521 ==> return self.parent.effective_ip_discovery
  4937. 522 else:
  4938. 523 return "E"
  4939. 524 else:
  4940. 525 return self.enable_ip_discovery
  4941. 526
  4942. 527
  4943. Variables:
  4944. self = <Prefix: Global(6): ::/0>
  4945. ------------------------------------------------------------------------
  4946. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4947. Function: effective_ip_discovery
  4948. 514 [p.prefix for p in self.children_set.all()]):
  4949. 515 yield str(fp)
  4950. 516
  4951. 517 @property
  4952. 518 def effective_ip_discovery(self):
  4953. 519 if self.enable_ip_discovery == "I":
  4954. 520 if self.parent:
  4955. 521 ==> return self.parent.effective_ip_discovery
  4956. 522 else:
  4957. 523 return "E"
  4958. 524 else:
  4959. 525 return self.enable_ip_discovery
  4960. 526
  4961. 527
  4962. Variables:
  4963. self = <Prefix: Global(6): ::/0>
  4964. ------------------------------------------------------------------------
  4965. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4966. Function: effective_ip_discovery
  4967. 514 [p.prefix for p in self.children_set.all()]):
  4968. 515 yield str(fp)
  4969. 516
  4970. 517 @property
  4971. 518 def effective_ip_discovery(self):
  4972. 519 if self.enable_ip_discovery == "I":
  4973. 520 if self.parent:
  4974. 521 ==> return self.parent.effective_ip_discovery
  4975. 522 else:
  4976. 523 return "E"
  4977. 524 else:
  4978. 525 return self.enable_ip_discovery
  4979. 526
  4980. 527
  4981. Variables:
  4982. self = <Prefix: Global(6): ::/0>
  4983. ------------------------------------------------------------------------
  4984. File: /opt/noc/ip/models/prefix.py (Line: 521)
  4985. Function: effective_ip_discovery
  4986. 514 [p.prefix for p in self.children_set.all()]):
  4987. 515 yield str(fp)
  4988. 516
  4989. 517 @property
  4990. 518 def effective_ip_discovery(self):
  4991. 519 if self.enable_ip_discovery == "I":
  4992. 520 if self.parent:
  4993. 521 ==> return self.parent.effective_ip_discovery
  4994. 522 else:
  4995. 523 return "E"
  4996. 524 else:
  4997. 525 return self.enable_ip_discovery
  4998. 526
  4999. 527
  5000. Variables:
  5001. self = <Prefix: Global(6): ::/0>
  5002. ------------------------------------------------------------------------
  5003. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5004. Function: effective_ip_discovery
  5005. 514 [p.prefix for p in self.children_set.all()]):
  5006. 515 yield str(fp)
  5007. 516
  5008. 517 @property
  5009. 518 def effective_ip_discovery(self):
  5010. 519 if self.enable_ip_discovery == "I":
  5011. 520 if self.parent:
  5012. 521 ==> return self.parent.effective_ip_discovery
  5013. 522 else:
  5014. 523 return "E"
  5015. 524 else:
  5016. 525 return self.enable_ip_discovery
  5017. 526
  5018. 527
  5019. Variables:
  5020. self = <Prefix: Global(6): ::/0>
  5021. ------------------------------------------------------------------------
  5022. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5023. Function: effective_ip_discovery
  5024. 514 [p.prefix for p in self.children_set.all()]):
  5025. 515 yield str(fp)
  5026. 516
  5027. 517 @property
  5028. 518 def effective_ip_discovery(self):
  5029. 519 if self.enable_ip_discovery == "I":
  5030. 520 if self.parent:
  5031. 521 ==> return self.parent.effective_ip_discovery
  5032. 522 else:
  5033. 523 return "E"
  5034. 524 else:
  5035. 525 return self.enable_ip_discovery
  5036. 526
  5037. 527
  5038. Variables:
  5039. self = <Prefix: Global(6): ::/0>
  5040. ------------------------------------------------------------------------
  5041. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5042. Function: effective_ip_discovery
  5043. 514 [p.prefix for p in self.children_set.all()]):
  5044. 515 yield str(fp)
  5045. 516
  5046. 517 @property
  5047. 518 def effective_ip_discovery(self):
  5048. 519 if self.enable_ip_discovery == "I":
  5049. 520 if self.parent:
  5050. 521 ==> return self.parent.effective_ip_discovery
  5051. 522 else:
  5052. 523 return "E"
  5053. 524 else:
  5054. 525 return self.enable_ip_discovery
  5055. 526
  5056. 527
  5057. Variables:
  5058. self = <Prefix: Global(6): ::/0>
  5059. ------------------------------------------------------------------------
  5060. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5061. Function: effective_ip_discovery
  5062. 514 [p.prefix for p in self.children_set.all()]):
  5063. 515 yield str(fp)
  5064. 516
  5065. 517 @property
  5066. 518 def effective_ip_discovery(self):
  5067. 519 if self.enable_ip_discovery == "I":
  5068. 520 if self.parent:
  5069. 521 ==> return self.parent.effective_ip_discovery
  5070. 522 else:
  5071. 523 return "E"
  5072. 524 else:
  5073. 525 return self.enable_ip_discovery
  5074. 526
  5075. 527
  5076. Variables:
  5077. self = <Prefix: Global(6): ::/0>
  5078. ------------------------------------------------------------------------
  5079. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5080. Function: effective_ip_discovery
  5081. 514 [p.prefix for p in self.children_set.all()]):
  5082. 515 yield str(fp)
  5083. 516
  5084. 517 @property
  5085. 518 def effective_ip_discovery(self):
  5086. 519 if self.enable_ip_discovery == "I":
  5087. 520 if self.parent:
  5088. 521 ==> return self.parent.effective_ip_discovery
  5089. 522 else:
  5090. 523 return "E"
  5091. 524 else:
  5092. 525 return self.enable_ip_discovery
  5093. 526
  5094. 527
  5095. Variables:
  5096. self = <Prefix: Global(6): ::/0>
  5097. ------------------------------------------------------------------------
  5098. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5099. Function: effective_ip_discovery
  5100. 514 [p.prefix for p in self.children_set.all()]):
  5101. 515 yield str(fp)
  5102. 516
  5103. 517 @property
  5104. 518 def effective_ip_discovery(self):
  5105. 519 if self.enable_ip_discovery == "I":
  5106. 520 if self.parent:
  5107. 521 ==> return self.parent.effective_ip_discovery
  5108. 522 else:
  5109. 523 return "E"
  5110. 524 else:
  5111. 525 return self.enable_ip_discovery
  5112. 526
  5113. 527
  5114. Variables:
  5115. self = <Prefix: Global(6): ::/0>
  5116. ------------------------------------------------------------------------
  5117. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5118. Function: effective_ip_discovery
  5119. 514 [p.prefix for p in self.children_set.all()]):
  5120. 515 yield str(fp)
  5121. 516
  5122. 517 @property
  5123. 518 def effective_ip_discovery(self):
  5124. 519 if self.enable_ip_discovery == "I":
  5125. 520 if self.parent:
  5126. 521 ==> return self.parent.effective_ip_discovery
  5127. 522 else:
  5128. 523 return "E"
  5129. 524 else:
  5130. 525 return self.enable_ip_discovery
  5131. 526
  5132. 527
  5133. Variables:
  5134. self = <Prefix: Global(6): ::/0>
  5135. ------------------------------------------------------------------------
  5136. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5137. Function: effective_ip_discovery
  5138. 514 [p.prefix for p in self.children_set.all()]):
  5139. 515 yield str(fp)
  5140. 516
  5141. 517 @property
  5142. 518 def effective_ip_discovery(self):
  5143. 519 if self.enable_ip_discovery == "I":
  5144. 520 if self.parent:
  5145. 521 ==> return self.parent.effective_ip_discovery
  5146. 522 else:
  5147. 523 return "E"
  5148. 524 else:
  5149. 525 return self.enable_ip_discovery
  5150. 526
  5151. 527
  5152. Variables:
  5153. self = <Prefix: Global(6): ::/0>
  5154. ------------------------------------------------------------------------
  5155. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5156. Function: effective_ip_discovery
  5157. 514 [p.prefix for p in self.children_set.all()]):
  5158. 515 yield str(fp)
  5159. 516
  5160. 517 @property
  5161. 518 def effective_ip_discovery(self):
  5162. 519 if self.enable_ip_discovery == "I":
  5163. 520 if self.parent:
  5164. 521 ==> return self.parent.effective_ip_discovery
  5165. 522 else:
  5166. 523 return "E"
  5167. 524 else:
  5168. 525 return self.enable_ip_discovery
  5169. 526
  5170. 527
  5171. Variables:
  5172. self = <Prefix: Global(6): ::/0>
  5173. ------------------------------------------------------------------------
  5174. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5175. Function: effective_ip_discovery
  5176. 514 [p.prefix for p in self.children_set.all()]):
  5177. 515 yield str(fp)
  5178. 516
  5179. 517 @property
  5180. 518 def effective_ip_discovery(self):
  5181. 519 if self.enable_ip_discovery == "I":
  5182. 520 if self.parent:
  5183. 521 ==> return self.parent.effective_ip_discovery
  5184. 522 else:
  5185. 523 return "E"
  5186. 524 else:
  5187. 525 return self.enable_ip_discovery
  5188. 526
  5189. 527
  5190. Variables:
  5191. self = <Prefix: Global(6): ::/0>
  5192. ------------------------------------------------------------------------
  5193. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5194. Function: effective_ip_discovery
  5195. 514 [p.prefix for p in self.children_set.all()]):
  5196. 515 yield str(fp)
  5197. 516
  5198. 517 @property
  5199. 518 def effective_ip_discovery(self):
  5200. 519 if self.enable_ip_discovery == "I":
  5201. 520 if self.parent:
  5202. 521 ==> return self.parent.effective_ip_discovery
  5203. 522 else:
  5204. 523 return "E"
  5205. 524 else:
  5206. 525 return self.enable_ip_discovery
  5207. 526
  5208. 527
  5209. Variables:
  5210. self = <Prefix: Global(6): ::/0>
  5211. ------------------------------------------------------------------------
  5212. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5213. Function: effective_ip_discovery
  5214. 514 [p.prefix for p in self.children_set.all()]):
  5215. 515 yield str(fp)
  5216. 516
  5217. 517 @property
  5218. 518 def effective_ip_discovery(self):
  5219. 519 if self.enable_ip_discovery == "I":
  5220. 520 if self.parent:
  5221. 521 ==> return self.parent.effective_ip_discovery
  5222. 522 else:
  5223. 523 return "E"
  5224. 524 else:
  5225. 525 return self.enable_ip_discovery
  5226. 526
  5227. 527
  5228. Variables:
  5229. self = <Prefix: Global(6): ::/0>
  5230. ------------------------------------------------------------------------
  5231. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5232. Function: effective_ip_discovery
  5233. 514 [p.prefix for p in self.children_set.all()]):
  5234. 515 yield str(fp)
  5235. 516
  5236. 517 @property
  5237. 518 def effective_ip_discovery(self):
  5238. 519 if self.enable_ip_discovery == "I":
  5239. 520 if self.parent:
  5240. 521 ==> return self.parent.effective_ip_discovery
  5241. 522 else:
  5242. 523 return "E"
  5243. 524 else:
  5244. 525 return self.enable_ip_discovery
  5245. 526
  5246. 527
  5247. Variables:
  5248. self = <Prefix: Global(6): ::/0>
  5249. ------------------------------------------------------------------------
  5250. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5251. Function: effective_ip_discovery
  5252. 514 [p.prefix for p in self.children_set.all()]):
  5253. 515 yield str(fp)
  5254. 516
  5255. 517 @property
  5256. 518 def effective_ip_discovery(self):
  5257. 519 if self.enable_ip_discovery == "I":
  5258. 520 if self.parent:
  5259. 521 ==> return self.parent.effective_ip_discovery
  5260. 522 else:
  5261. 523 return "E"
  5262. 524 else:
  5263. 525 return self.enable_ip_discovery
  5264. 526
  5265. 527
  5266. Variables:
  5267. self = <Prefix: Global(6): ::/0>
  5268. ------------------------------------------------------------------------
  5269. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5270. Function: effective_ip_discovery
  5271. 514 [p.prefix for p in self.children_set.all()]):
  5272. 515 yield str(fp)
  5273. 516
  5274. 517 @property
  5275. 518 def effective_ip_discovery(self):
  5276. 519 if self.enable_ip_discovery == "I":
  5277. 520 if self.parent:
  5278. 521 ==> return self.parent.effective_ip_discovery
  5279. 522 else:
  5280. 523 return "E"
  5281. 524 else:
  5282. 525 return self.enable_ip_discovery
  5283. 526
  5284. 527
  5285. Variables:
  5286. self = <Prefix: Global(6): ::/0>
  5287. ------------------------------------------------------------------------
  5288. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5289. Function: effective_ip_discovery
  5290. 514 [p.prefix for p in self.children_set.all()]):
  5291. 515 yield str(fp)
  5292. 516
  5293. 517 @property
  5294. 518 def effective_ip_discovery(self):
  5295. 519 if self.enable_ip_discovery == "I":
  5296. 520 if self.parent:
  5297. 521 ==> return self.parent.effective_ip_discovery
  5298. 522 else:
  5299. 523 return "E"
  5300. 524 else:
  5301. 525 return self.enable_ip_discovery
  5302. 526
  5303. 527
  5304. Variables:
  5305. self = <Prefix: Global(6): ::/0>
  5306. ------------------------------------------------------------------------
  5307. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5308. Function: effective_ip_discovery
  5309. 514 [p.prefix for p in self.children_set.all()]):
  5310. 515 yield str(fp)
  5311. 516
  5312. 517 @property
  5313. 518 def effective_ip_discovery(self):
  5314. 519 if self.enable_ip_discovery == "I":
  5315. 520 if self.parent:
  5316. 521 ==> return self.parent.effective_ip_discovery
  5317. 522 else:
  5318. 523 return "E"
  5319. 524 else:
  5320. 525 return self.enable_ip_discovery
  5321. 526
  5322. 527
  5323. Variables:
  5324. self = <Prefix: Global(6): ::/0>
  5325. ------------------------------------------------------------------------
  5326. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5327. Function: effective_ip_discovery
  5328. 514 [p.prefix for p in self.children_set.all()]):
  5329. 515 yield str(fp)
  5330. 516
  5331. 517 @property
  5332. 518 def effective_ip_discovery(self):
  5333. 519 if self.enable_ip_discovery == "I":
  5334. 520 if self.parent:
  5335. 521 ==> return self.parent.effective_ip_discovery
  5336. 522 else:
  5337. 523 return "E"
  5338. 524 else:
  5339. 525 return self.enable_ip_discovery
  5340. 526
  5341. 527
  5342. Variables:
  5343. self = <Prefix: Global(6): ::/0>
  5344. ------------------------------------------------------------------------
  5345. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5346. Function: effective_ip_discovery
  5347. 514 [p.prefix for p in self.children_set.all()]):
  5348. 515 yield str(fp)
  5349. 516
  5350. 517 @property
  5351. 518 def effective_ip_discovery(self):
  5352. 519 if self.enable_ip_discovery == "I":
  5353. 520 if self.parent:
  5354. 521 ==> return self.parent.effective_ip_discovery
  5355. 522 else:
  5356. 523 return "E"
  5357. 524 else:
  5358. 525 return self.enable_ip_discovery
  5359. 526
  5360. 527
  5361. Variables:
  5362. self = <Prefix: Global(6): ::/0>
  5363. ------------------------------------------------------------------------
  5364. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5365. Function: effective_ip_discovery
  5366. 514 [p.prefix for p in self.children_set.all()]):
  5367. 515 yield str(fp)
  5368. 516
  5369. 517 @property
  5370. 518 def effective_ip_discovery(self):
  5371. 519 if self.enable_ip_discovery == "I":
  5372. 520 if self.parent:
  5373. 521 ==> return self.parent.effective_ip_discovery
  5374. 522 else:
  5375. 523 return "E"
  5376. 524 else:
  5377. 525 return self.enable_ip_discovery
  5378. 526
  5379. 527
  5380. Variables:
  5381. self = <Prefix: Global(6): ::/0>
  5382. ------------------------------------------------------------------------
  5383. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5384. Function: effective_ip_discovery
  5385. 514 [p.prefix for p in self.children_set.all()]):
  5386. 515 yield str(fp)
  5387. 516
  5388. 517 @property
  5389. 518 def effective_ip_discovery(self):
  5390. 519 if self.enable_ip_discovery == "I":
  5391. 520 if self.parent:
  5392. 521 ==> return self.parent.effective_ip_discovery
  5393. 522 else:
  5394. 523 return "E"
  5395. 524 else:
  5396. 525 return self.enable_ip_discovery
  5397. 526
  5398. 527
  5399. Variables:
  5400. self = <Prefix: Global(6): ::/0>
  5401. ------------------------------------------------------------------------
  5402. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5403. Function: effective_ip_discovery
  5404. 514 [p.prefix for p in self.children_set.all()]):
  5405. 515 yield str(fp)
  5406. 516
  5407. 517 @property
  5408. 518 def effective_ip_discovery(self):
  5409. 519 if self.enable_ip_discovery == "I":
  5410. 520 if self.parent:
  5411. 521 ==> return self.parent.effective_ip_discovery
  5412. 522 else:
  5413. 523 return "E"
  5414. 524 else:
  5415. 525 return self.enable_ip_discovery
  5416. 526
  5417. 527
  5418. Variables:
  5419. self = <Prefix: Global(6): ::/0>
  5420. ------------------------------------------------------------------------
  5421. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5422. Function: effective_ip_discovery
  5423. 514 [p.prefix for p in self.children_set.all()]):
  5424. 515 yield str(fp)
  5425. 516
  5426. 517 @property
  5427. 518 def effective_ip_discovery(self):
  5428. 519 if self.enable_ip_discovery == "I":
  5429. 520 if self.parent:
  5430. 521 ==> return self.parent.effective_ip_discovery
  5431. 522 else:
  5432. 523 return "E"
  5433. 524 else:
  5434. 525 return self.enable_ip_discovery
  5435. 526
  5436. 527
  5437. Variables:
  5438. self = <Prefix: Global(6): ::/0>
  5439. ------------------------------------------------------------------------
  5440. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5441. Function: effective_ip_discovery
  5442. 514 [p.prefix for p in self.children_set.all()]):
  5443. 515 yield str(fp)
  5444. 516
  5445. 517 @property
  5446. 518 def effective_ip_discovery(self):
  5447. 519 if self.enable_ip_discovery == "I":
  5448. 520 if self.parent:
  5449. 521 ==> return self.parent.effective_ip_discovery
  5450. 522 else:
  5451. 523 return "E"
  5452. 524 else:
  5453. 525 return self.enable_ip_discovery
  5454. 526
  5455. 527
  5456. Variables:
  5457. self = <Prefix: Global(6): ::/0>
  5458. ------------------------------------------------------------------------
  5459. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5460. Function: effective_ip_discovery
  5461. 514 [p.prefix for p in self.children_set.all()]):
  5462. 515 yield str(fp)
  5463. 516
  5464. 517 @property
  5465. 518 def effective_ip_discovery(self):
  5466. 519 if self.enable_ip_discovery == "I":
  5467. 520 if self.parent:
  5468. 521 ==> return self.parent.effective_ip_discovery
  5469. 522 else:
  5470. 523 return "E"
  5471. 524 else:
  5472. 525 return self.enable_ip_discovery
  5473. 526
  5474. 527
  5475. Variables:
  5476. self = <Prefix: Global(6): ::/0>
  5477. ------------------------------------------------------------------------
  5478. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5479. Function: effective_ip_discovery
  5480. 514 [p.prefix for p in self.children_set.all()]):
  5481. 515 yield str(fp)
  5482. 516
  5483. 517 @property
  5484. 518 def effective_ip_discovery(self):
  5485. 519 if self.enable_ip_discovery == "I":
  5486. 520 if self.parent:
  5487. 521 ==> return self.parent.effective_ip_discovery
  5488. 522 else:
  5489. 523 return "E"
  5490. 524 else:
  5491. 525 return self.enable_ip_discovery
  5492. 526
  5493. 527
  5494. Variables:
  5495. self = <Prefix: Global(6): ::/0>
  5496. ------------------------------------------------------------------------
  5497. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5498. Function: effective_ip_discovery
  5499. 514 [p.prefix for p in self.children_set.all()]):
  5500. 515 yield str(fp)
  5501. 516
  5502. 517 @property
  5503. 518 def effective_ip_discovery(self):
  5504. 519 if self.enable_ip_discovery == "I":
  5505. 520 if self.parent:
  5506. 521 ==> return self.parent.effective_ip_discovery
  5507. 522 else:
  5508. 523 return "E"
  5509. 524 else:
  5510. 525 return self.enable_ip_discovery
  5511. 526
  5512. 527
  5513. Variables:
  5514. self = <Prefix: Global(6): ::/0>
  5515. ------------------------------------------------------------------------
  5516. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5517. Function: effective_ip_discovery
  5518. 514 [p.prefix for p in self.children_set.all()]):
  5519. 515 yield str(fp)
  5520. 516
  5521. 517 @property
  5522. 518 def effective_ip_discovery(self):
  5523. 519 if self.enable_ip_discovery == "I":
  5524. 520 if self.parent:
  5525. 521 ==> return self.parent.effective_ip_discovery
  5526. 522 else:
  5527. 523 return "E"
  5528. 524 else:
  5529. 525 return self.enable_ip_discovery
  5530. 526
  5531. 527
  5532. Variables:
  5533. self = <Prefix: Global(6): ::/0>
  5534. ------------------------------------------------------------------------
  5535. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5536. Function: effective_ip_discovery
  5537. 514 [p.prefix for p in self.children_set.all()]):
  5538. 515 yield str(fp)
  5539. 516
  5540. 517 @property
  5541. 518 def effective_ip_discovery(self):
  5542. 519 if self.enable_ip_discovery == "I":
  5543. 520 if self.parent:
  5544. 521 ==> return self.parent.effective_ip_discovery
  5545. 522 else:
  5546. 523 return "E"
  5547. 524 else:
  5548. 525 return self.enable_ip_discovery
  5549. 526
  5550. 527
  5551. Variables:
  5552. self = <Prefix: Global(6): ::/0>
  5553. ------------------------------------------------------------------------
  5554. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5555. Function: effective_ip_discovery
  5556. 514 [p.prefix for p in self.children_set.all()]):
  5557. 515 yield str(fp)
  5558. 516
  5559. 517 @property
  5560. 518 def effective_ip_discovery(self):
  5561. 519 if self.enable_ip_discovery == "I":
  5562. 520 if self.parent:
  5563. 521 ==> return self.parent.effective_ip_discovery
  5564. 522 else:
  5565. 523 return "E"
  5566. 524 else:
  5567. 525 return self.enable_ip_discovery
  5568. 526
  5569. 527
  5570. Variables:
  5571. self = <Prefix: Global(6): ::/0>
  5572. ------------------------------------------------------------------------
  5573. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5574. Function: effective_ip_discovery
  5575. 514 [p.prefix for p in self.children_set.all()]):
  5576. 515 yield str(fp)
  5577. 516
  5578. 517 @property
  5579. 518 def effective_ip_discovery(self):
  5580. 519 if self.enable_ip_discovery == "I":
  5581. 520 if self.parent:
  5582. 521 ==> return self.parent.effective_ip_discovery
  5583. 522 else:
  5584. 523 return "E"
  5585. 524 else:
  5586. 525 return self.enable_ip_discovery
  5587. 526
  5588. 527
  5589. Variables:
  5590. self = <Prefix: Global(6): ::/0>
  5591. ------------------------------------------------------------------------
  5592. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5593. Function: effective_ip_discovery
  5594. 514 [p.prefix for p in self.children_set.all()]):
  5595. 515 yield str(fp)
  5596. 516
  5597. 517 @property
  5598. 518 def effective_ip_discovery(self):
  5599. 519 if self.enable_ip_discovery == "I":
  5600. 520 if self.parent:
  5601. 521 ==> return self.parent.effective_ip_discovery
  5602. 522 else:
  5603. 523 return "E"
  5604. 524 else:
  5605. 525 return self.enable_ip_discovery
  5606. 526
  5607. 527
  5608. Variables:
  5609. self = <Prefix: Global(6): ::/0>
  5610. ------------------------------------------------------------------------
  5611. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5612. Function: effective_ip_discovery
  5613. 514 [p.prefix for p in self.children_set.all()]):
  5614. 515 yield str(fp)
  5615. 516
  5616. 517 @property
  5617. 518 def effective_ip_discovery(self):
  5618. 519 if self.enable_ip_discovery == "I":
  5619. 520 if self.parent:
  5620. 521 ==> return self.parent.effective_ip_discovery
  5621. 522 else:
  5622. 523 return "E"
  5623. 524 else:
  5624. 525 return self.enable_ip_discovery
  5625. 526
  5626. 527
  5627. Variables:
  5628. self = <Prefix: Global(6): ::/0>
  5629. ------------------------------------------------------------------------
  5630. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5631. Function: effective_ip_discovery
  5632. 514 [p.prefix for p in self.children_set.all()]):
  5633. 515 yield str(fp)
  5634. 516
  5635. 517 @property
  5636. 518 def effective_ip_discovery(self):
  5637. 519 if self.enable_ip_discovery == "I":
  5638. 520 if self.parent:
  5639. 521 ==> return self.parent.effective_ip_discovery
  5640. 522 else:
  5641. 523 return "E"
  5642. 524 else:
  5643. 525 return self.enable_ip_discovery
  5644. 526
  5645. 527
  5646. Variables:
  5647. self = <Prefix: Global(6): ::/0>
  5648. ------------------------------------------------------------------------
  5649. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5650. Function: effective_ip_discovery
  5651. 514 [p.prefix for p in self.children_set.all()]):
  5652. 515 yield str(fp)
  5653. 516
  5654. 517 @property
  5655. 518 def effective_ip_discovery(self):
  5656. 519 if self.enable_ip_discovery == "I":
  5657. 520 if self.parent:
  5658. 521 ==> return self.parent.effective_ip_discovery
  5659. 522 else:
  5660. 523 return "E"
  5661. 524 else:
  5662. 525 return self.enable_ip_discovery
  5663. 526
  5664. 527
  5665. Variables:
  5666. self = <Prefix: Global(6): ::/0>
  5667. ------------------------------------------------------------------------
  5668. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5669. Function: effective_ip_discovery
  5670. 514 [p.prefix for p in self.children_set.all()]):
  5671. 515 yield str(fp)
  5672. 516
  5673. 517 @property
  5674. 518 def effective_ip_discovery(self):
  5675. 519 if self.enable_ip_discovery == "I":
  5676. 520 if self.parent:
  5677. 521 ==> return self.parent.effective_ip_discovery
  5678. 522 else:
  5679. 523 return "E"
  5680. 524 else:
  5681. 525 return self.enable_ip_discovery
  5682. 526
  5683. 527
  5684. Variables:
  5685. self = <Prefix: Global(6): ::/0>
  5686. ------------------------------------------------------------------------
  5687. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5688. Function: effective_ip_discovery
  5689. 514 [p.prefix for p in self.children_set.all()]):
  5690. 515 yield str(fp)
  5691. 516
  5692. 517 @property
  5693. 518 def effective_ip_discovery(self):
  5694. 519 if self.enable_ip_discovery == "I":
  5695. 520 if self.parent:
  5696. 521 ==> return self.parent.effective_ip_discovery
  5697. 522 else:
  5698. 523 return "E"
  5699. 524 else:
  5700. 525 return self.enable_ip_discovery
  5701. 526
  5702. 527
  5703. Variables:
  5704. self = <Prefix: Global(6): ::/0>
  5705. ------------------------------------------------------------------------
  5706. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5707. Function: effective_ip_discovery
  5708. 514 [p.prefix for p in self.children_set.all()]):
  5709. 515 yield str(fp)
  5710. 516
  5711. 517 @property
  5712. 518 def effective_ip_discovery(self):
  5713. 519 if self.enable_ip_discovery == "I":
  5714. 520 if self.parent:
  5715. 521 ==> return self.parent.effective_ip_discovery
  5716. 522 else:
  5717. 523 return "E"
  5718. 524 else:
  5719. 525 return self.enable_ip_discovery
  5720. 526
  5721. 527
  5722. Variables:
  5723. self = <Prefix: Global(6): ::/0>
  5724. ------------------------------------------------------------------------
  5725. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5726. Function: effective_ip_discovery
  5727. 514 [p.prefix for p in self.children_set.all()]):
  5728. 515 yield str(fp)
  5729. 516
  5730. 517 @property
  5731. 518 def effective_ip_discovery(self):
  5732. 519 if self.enable_ip_discovery == "I":
  5733. 520 if self.parent:
  5734. 521 ==> return self.parent.effective_ip_discovery
  5735. 522 else:
  5736. 523 return "E"
  5737. 524 else:
  5738. 525 return self.enable_ip_discovery
  5739. 526
  5740. 527
  5741. Variables:
  5742. self = <Prefix: Global(6): ::/0>
  5743. ------------------------------------------------------------------------
  5744. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5745. Function: effective_ip_discovery
  5746. 514 [p.prefix for p in self.children_set.all()]):
  5747. 515 yield str(fp)
  5748. 516
  5749. 517 @property
  5750. 518 def effective_ip_discovery(self):
  5751. 519 if self.enable_ip_discovery == "I":
  5752. 520 if self.parent:
  5753. 521 ==> return self.parent.effective_ip_discovery
  5754. 522 else:
  5755. 523 return "E"
  5756. 524 else:
  5757. 525 return self.enable_ip_discovery
  5758. 526
  5759. 527
  5760. Variables:
  5761. self = <Prefix: Global(6): ::/0>
  5762. ------------------------------------------------------------------------
  5763. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5764. Function: effective_ip_discovery
  5765. 514 [p.prefix for p in self.children_set.all()]):
  5766. 515 yield str(fp)
  5767. 516
  5768. 517 @property
  5769. 518 def effective_ip_discovery(self):
  5770. 519 if self.enable_ip_discovery == "I":
  5771. 520 if self.parent:
  5772. 521 ==> return self.parent.effective_ip_discovery
  5773. 522 else:
  5774. 523 return "E"
  5775. 524 else:
  5776. 525 return self.enable_ip_discovery
  5777. 526
  5778. 527
  5779. Variables:
  5780. self = <Prefix: Global(6): ::/0>
  5781. ------------------------------------------------------------------------
  5782. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5783. Function: effective_ip_discovery
  5784. 514 [p.prefix for p in self.children_set.all()]):
  5785. 515 yield str(fp)
  5786. 516
  5787. 517 @property
  5788. 518 def effective_ip_discovery(self):
  5789. 519 if self.enable_ip_discovery == "I":
  5790. 520 if self.parent:
  5791. 521 ==> return self.parent.effective_ip_discovery
  5792. 522 else:
  5793. 523 return "E"
  5794. 524 else:
  5795. 525 return self.enable_ip_discovery
  5796. 526
  5797. 527
  5798. Variables:
  5799. self = <Prefix: Global(6): ::/0>
  5800. ------------------------------------------------------------------------
  5801. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5802. Function: effective_ip_discovery
  5803. 514 [p.prefix for p in self.children_set.all()]):
  5804. 515 yield str(fp)
  5805. 516
  5806. 517 @property
  5807. 518 def effective_ip_discovery(self):
  5808. 519 if self.enable_ip_discovery == "I":
  5809. 520 if self.parent:
  5810. 521 ==> return self.parent.effective_ip_discovery
  5811. 522 else:
  5812. 523 return "E"
  5813. 524 else:
  5814. 525 return self.enable_ip_discovery
  5815. 526
  5816. 527
  5817. Variables:
  5818. self = <Prefix: Global(6): ::/0>
  5819. ------------------------------------------------------------------------
  5820. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5821. Function: effective_ip_discovery
  5822. 514 [p.prefix for p in self.children_set.all()]):
  5823. 515 yield str(fp)
  5824. 516
  5825. 517 @property
  5826. 518 def effective_ip_discovery(self):
  5827. 519 if self.enable_ip_discovery == "I":
  5828. 520 if self.parent:
  5829. 521 ==> return self.parent.effective_ip_discovery
  5830. 522 else:
  5831. 523 return "E"
  5832. 524 else:
  5833. 525 return self.enable_ip_discovery
  5834. 526
  5835. 527
  5836. Variables:
  5837. self = <Prefix: Global(6): ::/0>
  5838. ------------------------------------------------------------------------
  5839. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5840. Function: effective_ip_discovery
  5841. 514 [p.prefix for p in self.children_set.all()]):
  5842. 515 yield str(fp)
  5843. 516
  5844. 517 @property
  5845. 518 def effective_ip_discovery(self):
  5846. 519 if self.enable_ip_discovery == "I":
  5847. 520 if self.parent:
  5848. 521 ==> return self.parent.effective_ip_discovery
  5849. 522 else:
  5850. 523 return "E"
  5851. 524 else:
  5852. 525 return self.enable_ip_discovery
  5853. 526
  5854. 527
  5855. Variables:
  5856. self = <Prefix: Global(6): ::/0>
  5857. ------------------------------------------------------------------------
  5858. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5859. Function: effective_ip_discovery
  5860. 514 [p.prefix for p in self.children_set.all()]):
  5861. 515 yield str(fp)
  5862. 516
  5863. 517 @property
  5864. 518 def effective_ip_discovery(self):
  5865. 519 if self.enable_ip_discovery == "I":
  5866. 520 if self.parent:
  5867. 521 ==> return self.parent.effective_ip_discovery
  5868. 522 else:
  5869. 523 return "E"
  5870. 524 else:
  5871. 525 return self.enable_ip_discovery
  5872. 526
  5873. 527
  5874. Variables:
  5875. self = <Prefix: Global(6): ::/0>
  5876. ------------------------------------------------------------------------
  5877. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5878. Function: effective_ip_discovery
  5879. 514 [p.prefix for p in self.children_set.all()]):
  5880. 515 yield str(fp)
  5881. 516
  5882. 517 @property
  5883. 518 def effective_ip_discovery(self):
  5884. 519 if self.enable_ip_discovery == "I":
  5885. 520 if self.parent:
  5886. 521 ==> return self.parent.effective_ip_discovery
  5887. 522 else:
  5888. 523 return "E"
  5889. 524 else:
  5890. 525 return self.enable_ip_discovery
  5891. 526
  5892. 527
  5893. Variables:
  5894. self = <Prefix: Global(6): ::/0>
  5895. ------------------------------------------------------------------------
  5896. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5897. Function: effective_ip_discovery
  5898. 514 [p.prefix for p in self.children_set.all()]):
  5899. 515 yield str(fp)
  5900. 516
  5901. 517 @property
  5902. 518 def effective_ip_discovery(self):
  5903. 519 if self.enable_ip_discovery == "I":
  5904. 520 if self.parent:
  5905. 521 ==> return self.parent.effective_ip_discovery
  5906. 522 else:
  5907. 523 return "E"
  5908. 524 else:
  5909. 525 return self.enable_ip_discovery
  5910. 526
  5911. 527
  5912. Variables:
  5913. self = <Prefix: Global(6): ::/0>
  5914. ------------------------------------------------------------------------
  5915. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5916. Function: effective_ip_discovery
  5917. 514 [p.prefix for p in self.children_set.all()]):
  5918. 515 yield str(fp)
  5919. 516
  5920. 517 @property
  5921. 518 def effective_ip_discovery(self):
  5922. 519 if self.enable_ip_discovery == "I":
  5923. 520 if self.parent:
  5924. 521 ==> return self.parent.effective_ip_discovery
  5925. 522 else:
  5926. 523 return "E"
  5927. 524 else:
  5928. 525 return self.enable_ip_discovery
  5929. 526
  5930. 527
  5931. Variables:
  5932. self = <Prefix: Global(6): ::/0>
  5933. ------------------------------------------------------------------------
  5934. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5935. Function: effective_ip_discovery
  5936. 514 [p.prefix for p in self.children_set.all()]):
  5937. 515 yield str(fp)
  5938. 516
  5939. 517 @property
  5940. 518 def effective_ip_discovery(self):
  5941. 519 if self.enable_ip_discovery == "I":
  5942. 520 if self.parent:
  5943. 521 ==> return self.parent.effective_ip_discovery
  5944. 522 else:
  5945. 523 return "E"
  5946. 524 else:
  5947. 525 return self.enable_ip_discovery
  5948. 526
  5949. 527
  5950. Variables:
  5951. self = <Prefix: Global(6): ::/0>
  5952. ------------------------------------------------------------------------
  5953. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5954. Function: effective_ip_discovery
  5955. 514 [p.prefix for p in self.children_set.all()]):
  5956. 515 yield str(fp)
  5957. 516
  5958. 517 @property
  5959. 518 def effective_ip_discovery(self):
  5960. 519 if self.enable_ip_discovery == "I":
  5961. 520 if self.parent:
  5962. 521 ==> return self.parent.effective_ip_discovery
  5963. 522 else:
  5964. 523 return "E"
  5965. 524 else:
  5966. 525 return self.enable_ip_discovery
  5967. 526
  5968. 527
  5969. Variables:
  5970. self = <Prefix: Global(6): ::/0>
  5971. ------------------------------------------------------------------------
  5972. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5973. Function: effective_ip_discovery
  5974. 514 [p.prefix for p in self.children_set.all()]):
  5975. 515 yield str(fp)
  5976. 516
  5977. 517 @property
  5978. 518 def effective_ip_discovery(self):
  5979. 519 if self.enable_ip_discovery == "I":
  5980. 520 if self.parent:
  5981. 521 ==> return self.parent.effective_ip_discovery
  5982. 522 else:
  5983. 523 return "E"
  5984. 524 else:
  5985. 525 return self.enable_ip_discovery
  5986. 526
  5987. 527
  5988. Variables:
  5989. self = <Prefix: Global(6): ::/0>
  5990. ------------------------------------------------------------------------
  5991. File: /opt/noc/ip/models/prefix.py (Line: 521)
  5992. Function: effective_ip_discovery
  5993. 514 [p.prefix for p in self.children_set.all()]):
  5994. 515 yield str(fp)
  5995. 516
  5996. 517 @property
  5997. 518 def effective_ip_discovery(self):
  5998. 519 if self.enable_ip_discovery == "I":
  5999. 520 if self.parent:
  6000. 521 ==> return self.parent.effective_ip_discovery
  6001. 522 else:
  6002. 523 return "E"
  6003. 524 else:
  6004. 525 return self.enable_ip_discovery
  6005. 526
  6006. 527
  6007. Variables:
  6008. self = <Prefix: Global(6): ::/0>
  6009. ------------------------------------------------------------------------
  6010. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6011. Function: effective_ip_discovery
  6012. 514 [p.prefix for p in self.children_set.all()]):
  6013. 515 yield str(fp)
  6014. 516
  6015. 517 @property
  6016. 518 def effective_ip_discovery(self):
  6017. 519 if self.enable_ip_discovery == "I":
  6018. 520 if self.parent:
  6019. 521 ==> return self.parent.effective_ip_discovery
  6020. 522 else:
  6021. 523 return "E"
  6022. 524 else:
  6023. 525 return self.enable_ip_discovery
  6024. 526
  6025. 527
  6026. Variables:
  6027. self = <Prefix: Global(6): ::/0>
  6028. ------------------------------------------------------------------------
  6029. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6030. Function: effective_ip_discovery
  6031. 514 [p.prefix for p in self.children_set.all()]):
  6032. 515 yield str(fp)
  6033. 516
  6034. 517 @property
  6035. 518 def effective_ip_discovery(self):
  6036. 519 if self.enable_ip_discovery == "I":
  6037. 520 if self.parent:
  6038. 521 ==> return self.parent.effective_ip_discovery
  6039. 522 else:
  6040. 523 return "E"
  6041. 524 else:
  6042. 525 return self.enable_ip_discovery
  6043. 526
  6044. 527
  6045. Variables:
  6046. self = <Prefix: Global(6): ::/0>
  6047. ------------------------------------------------------------------------
  6048. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6049. Function: effective_ip_discovery
  6050. 514 [p.prefix for p in self.children_set.all()]):
  6051. 515 yield str(fp)
  6052. 516
  6053. 517 @property
  6054. 518 def effective_ip_discovery(self):
  6055. 519 if self.enable_ip_discovery == "I":
  6056. 520 if self.parent:
  6057. 521 ==> return self.parent.effective_ip_discovery
  6058. 522 else:
  6059. 523 return "E"
  6060. 524 else:
  6061. 525 return self.enable_ip_discovery
  6062. 526
  6063. 527
  6064. Variables:
  6065. self = <Prefix: Global(6): ::/0>
  6066. ------------------------------------------------------------------------
  6067. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6068. Function: effective_ip_discovery
  6069. 514 [p.prefix for p in self.children_set.all()]):
  6070. 515 yield str(fp)
  6071. 516
  6072. 517 @property
  6073. 518 def effective_ip_discovery(self):
  6074. 519 if self.enable_ip_discovery == "I":
  6075. 520 if self.parent:
  6076. 521 ==> return self.parent.effective_ip_discovery
  6077. 522 else:
  6078. 523 return "E"
  6079. 524 else:
  6080. 525 return self.enable_ip_discovery
  6081. 526
  6082. 527
  6083. Variables:
  6084. self = <Prefix: Global(6): ::/0>
  6085. ------------------------------------------------------------------------
  6086. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6087. Function: effective_ip_discovery
  6088. 514 [p.prefix for p in self.children_set.all()]):
  6089. 515 yield str(fp)
  6090. 516
  6091. 517 @property
  6092. 518 def effective_ip_discovery(self):
  6093. 519 if self.enable_ip_discovery == "I":
  6094. 520 if self.parent:
  6095. 521 ==> return self.parent.effective_ip_discovery
  6096. 522 else:
  6097. 523 return "E"
  6098. 524 else:
  6099. 525 return self.enable_ip_discovery
  6100. 526
  6101. 527
  6102. Variables:
  6103. self = <Prefix: Global(6): ::/0>
  6104. ------------------------------------------------------------------------
  6105. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6106. Function: effective_ip_discovery
  6107. 514 [p.prefix for p in self.children_set.all()]):
  6108. 515 yield str(fp)
  6109. 516
  6110. 517 @property
  6111. 518 def effective_ip_discovery(self):
  6112. 519 if self.enable_ip_discovery == "I":
  6113. 520 if self.parent:
  6114. 521 ==> return self.parent.effective_ip_discovery
  6115. 522 else:
  6116. 523 return "E"
  6117. 524 else:
  6118. 525 return self.enable_ip_discovery
  6119. 526
  6120. 527
  6121. Variables:
  6122. self = <Prefix: Global(6): ::/0>
  6123. ------------------------------------------------------------------------
  6124. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6125. Function: effective_ip_discovery
  6126. 514 [p.prefix for p in self.children_set.all()]):
  6127. 515 yield str(fp)
  6128. 516
  6129. 517 @property
  6130. 518 def effective_ip_discovery(self):
  6131. 519 if self.enable_ip_discovery == "I":
  6132. 520 if self.parent:
  6133. 521 ==> return self.parent.effective_ip_discovery
  6134. 522 else:
  6135. 523 return "E"
  6136. 524 else:
  6137. 525 return self.enable_ip_discovery
  6138. 526
  6139. 527
  6140. Variables:
  6141. self = <Prefix: Global(6): ::/0>
  6142. ------------------------------------------------------------------------
  6143. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6144. Function: effective_ip_discovery
  6145. 514 [p.prefix for p in self.children_set.all()]):
  6146. 515 yield str(fp)
  6147. 516
  6148. 517 @property
  6149. 518 def effective_ip_discovery(self):
  6150. 519 if self.enable_ip_discovery == "I":
  6151. 520 if self.parent:
  6152. 521 ==> return self.parent.effective_ip_discovery
  6153. 522 else:
  6154. 523 return "E"
  6155. 524 else:
  6156. 525 return self.enable_ip_discovery
  6157. 526
  6158. 527
  6159. Variables:
  6160. self = <Prefix: Global(6): ::/0>
  6161. ------------------------------------------------------------------------
  6162. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6163. Function: effective_ip_discovery
  6164. 514 [p.prefix for p in self.children_set.all()]):
  6165. 515 yield str(fp)
  6166. 516
  6167. 517 @property
  6168. 518 def effective_ip_discovery(self):
  6169. 519 if self.enable_ip_discovery == "I":
  6170. 520 if self.parent:
  6171. 521 ==> return self.parent.effective_ip_discovery
  6172. 522 else:
  6173. 523 return "E"
  6174. 524 else:
  6175. 525 return self.enable_ip_discovery
  6176. 526
  6177. 527
  6178. Variables:
  6179. self = <Prefix: Global(6): ::/0>
  6180. ------------------------------------------------------------------------
  6181. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6182. Function: effective_ip_discovery
  6183. 514 [p.prefix for p in self.children_set.all()]):
  6184. 515 yield str(fp)
  6185. 516
  6186. 517 @property
  6187. 518 def effective_ip_discovery(self):
  6188. 519 if self.enable_ip_discovery == "I":
  6189. 520 if self.parent:
  6190. 521 ==> return self.parent.effective_ip_discovery
  6191. 522 else:
  6192. 523 return "E"
  6193. 524 else:
  6194. 525 return self.enable_ip_discovery
  6195. 526
  6196. 527
  6197. Variables:
  6198. self = <Prefix: Global(6): ::/0>
  6199. ------------------------------------------------------------------------
  6200. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6201. Function: effective_ip_discovery
  6202. 514 [p.prefix for p in self.children_set.all()]):
  6203. 515 yield str(fp)
  6204. 516
  6205. 517 @property
  6206. 518 def effective_ip_discovery(self):
  6207. 519 if self.enable_ip_discovery == "I":
  6208. 520 if self.parent:
  6209. 521 ==> return self.parent.effective_ip_discovery
  6210. 522 else:
  6211. 523 return "E"
  6212. 524 else:
  6213. 525 return self.enable_ip_discovery
  6214. 526
  6215. 527
  6216. Variables:
  6217. self = <Prefix: Global(6): ::/0>
  6218. ------------------------------------------------------------------------
  6219. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6220. Function: effective_ip_discovery
  6221. 514 [p.prefix for p in self.children_set.all()]):
  6222. 515 yield str(fp)
  6223. 516
  6224. 517 @property
  6225. 518 def effective_ip_discovery(self):
  6226. 519 if self.enable_ip_discovery == "I":
  6227. 520 if self.parent:
  6228. 521 ==> return self.parent.effective_ip_discovery
  6229. 522 else:
  6230. 523 return "E"
  6231. 524 else:
  6232. 525 return self.enable_ip_discovery
  6233. 526
  6234. 527
  6235. Variables:
  6236. self = <Prefix: Global(6): ::/0>
  6237. ------------------------------------------------------------------------
  6238. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6239. Function: effective_ip_discovery
  6240. 514 [p.prefix for p in self.children_set.all()]):
  6241. 515 yield str(fp)
  6242. 516
  6243. 517 @property
  6244. 518 def effective_ip_discovery(self):
  6245. 519 if self.enable_ip_discovery == "I":
  6246. 520 if self.parent:
  6247. 521 ==> return self.parent.effective_ip_discovery
  6248. 522 else:
  6249. 523 return "E"
  6250. 524 else:
  6251. 525 return self.enable_ip_discovery
  6252. 526
  6253. 527
  6254. Variables:
  6255. self = <Prefix: Global(6): ::/0>
  6256. ------------------------------------------------------------------------
  6257. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6258. Function: effective_ip_discovery
  6259. 514 [p.prefix for p in self.children_set.all()]):
  6260. 515 yield str(fp)
  6261. 516
  6262. 517 @property
  6263. 518 def effective_ip_discovery(self):
  6264. 519 if self.enable_ip_discovery == "I":
  6265. 520 if self.parent:
  6266. 521 ==> return self.parent.effective_ip_discovery
  6267. 522 else:
  6268. 523 return "E"
  6269. 524 else:
  6270. 525 return self.enable_ip_discovery
  6271. 526
  6272. 527
  6273. Variables:
  6274. self = <Prefix: Global(6): ::/0>
  6275. ------------------------------------------------------------------------
  6276. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6277. Function: effective_ip_discovery
  6278. 514 [p.prefix for p in self.children_set.all()]):
  6279. 515 yield str(fp)
  6280. 516
  6281. 517 @property
  6282. 518 def effective_ip_discovery(self):
  6283. 519 if self.enable_ip_discovery == "I":
  6284. 520 if self.parent:
  6285. 521 ==> return self.parent.effective_ip_discovery
  6286. 522 else:
  6287. 523 return "E"
  6288. 524 else:
  6289. 525 return self.enable_ip_discovery
  6290. 526
  6291. 527
  6292. Variables:
  6293. self = <Prefix: Global(6): ::/0>
  6294. ------------------------------------------------------------------------
  6295. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6296. Function: effective_ip_discovery
  6297. 514 [p.prefix for p in self.children_set.all()]):
  6298. 515 yield str(fp)
  6299. 516
  6300. 517 @property
  6301. 518 def effective_ip_discovery(self):
  6302. 519 if self.enable_ip_discovery == "I":
  6303. 520 if self.parent:
  6304. 521 ==> return self.parent.effective_ip_discovery
  6305. 522 else:
  6306. 523 return "E"
  6307. 524 else:
  6308. 525 return self.enable_ip_discovery
  6309. 526
  6310. 527
  6311. Variables:
  6312. self = <Prefix: Global(6): ::/0>
  6313. ------------------------------------------------------------------------
  6314. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6315. Function: effective_ip_discovery
  6316. 514 [p.prefix for p in self.children_set.all()]):
  6317. 515 yield str(fp)
  6318. 516
  6319. 517 @property
  6320. 518 def effective_ip_discovery(self):
  6321. 519 if self.enable_ip_discovery == "I":
  6322. 520 if self.parent:
  6323. 521 ==> return self.parent.effective_ip_discovery
  6324. 522 else:
  6325. 523 return "E"
  6326. 524 else:
  6327. 525 return self.enable_ip_discovery
  6328. 526
  6329. 527
  6330. Variables:
  6331. self = <Prefix: Global(6): ::/0>
  6332. ------------------------------------------------------------------------
  6333. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6334. Function: effective_ip_discovery
  6335. 514 [p.prefix for p in self.children_set.all()]):
  6336. 515 yield str(fp)
  6337. 516
  6338. 517 @property
  6339. 518 def effective_ip_discovery(self):
  6340. 519 if self.enable_ip_discovery == "I":
  6341. 520 if self.parent:
  6342. 521 ==> return self.parent.effective_ip_discovery
  6343. 522 else:
  6344. 523 return "E"
  6345. 524 else:
  6346. 525 return self.enable_ip_discovery
  6347. 526
  6348. 527
  6349. Variables:
  6350. self = <Prefix: Global(6): ::/0>
  6351. ------------------------------------------------------------------------
  6352. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6353. Function: effective_ip_discovery
  6354. 514 [p.prefix for p in self.children_set.all()]):
  6355. 515 yield str(fp)
  6356. 516
  6357. 517 @property
  6358. 518 def effective_ip_discovery(self):
  6359. 519 if self.enable_ip_discovery == "I":
  6360. 520 if self.parent:
  6361. 521 ==> return self.parent.effective_ip_discovery
  6362. 522 else:
  6363. 523 return "E"
  6364. 524 else:
  6365. 525 return self.enable_ip_discovery
  6366. 526
  6367. 527
  6368. Variables:
  6369. self = <Prefix: Global(6): ::/0>
  6370. ------------------------------------------------------------------------
  6371. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6372. Function: effective_ip_discovery
  6373. 514 [p.prefix for p in self.children_set.all()]):
  6374. 515 yield str(fp)
  6375. 516
  6376. 517 @property
  6377. 518 def effective_ip_discovery(self):
  6378. 519 if self.enable_ip_discovery == "I":
  6379. 520 if self.parent:
  6380. 521 ==> return self.parent.effective_ip_discovery
  6381. 522 else:
  6382. 523 return "E"
  6383. 524 else:
  6384. 525 return self.enable_ip_discovery
  6385. 526
  6386. 527
  6387. Variables:
  6388. self = <Prefix: Global(6): ::/0>
  6389. ------------------------------------------------------------------------
  6390. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6391. Function: effective_ip_discovery
  6392. 514 [p.prefix for p in self.children_set.all()]):
  6393. 515 yield str(fp)
  6394. 516
  6395. 517 @property
  6396. 518 def effective_ip_discovery(self):
  6397. 519 if self.enable_ip_discovery == "I":
  6398. 520 if self.parent:
  6399. 521 ==> return self.parent.effective_ip_discovery
  6400. 522 else:
  6401. 523 return "E"
  6402. 524 else:
  6403. 525 return self.enable_ip_discovery
  6404. 526
  6405. 527
  6406. Variables:
  6407. self = <Prefix: Global(6): ::/0>
  6408. ------------------------------------------------------------------------
  6409. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6410. Function: effective_ip_discovery
  6411. 514 [p.prefix for p in self.children_set.all()]):
  6412. 515 yield str(fp)
  6413. 516
  6414. 517 @property
  6415. 518 def effective_ip_discovery(self):
  6416. 519 if self.enable_ip_discovery == "I":
  6417. 520 if self.parent:
  6418. 521 ==> return self.parent.effective_ip_discovery
  6419. 522 else:
  6420. 523 return "E"
  6421. 524 else:
  6422. 525 return self.enable_ip_discovery
  6423. 526
  6424. 527
  6425. Variables:
  6426. self = <Prefix: Global(6): ::/0>
  6427. ------------------------------------------------------------------------
  6428. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6429. Function: effective_ip_discovery
  6430. 514 [p.prefix for p in self.children_set.all()]):
  6431. 515 yield str(fp)
  6432. 516
  6433. 517 @property
  6434. 518 def effective_ip_discovery(self):
  6435. 519 if self.enable_ip_discovery == "I":
  6436. 520 if self.parent:
  6437. 521 ==> return self.parent.effective_ip_discovery
  6438. 522 else:
  6439. 523 return "E"
  6440. 524 else:
  6441. 525 return self.enable_ip_discovery
  6442. 526
  6443. 527
  6444. Variables:
  6445. self = <Prefix: Global(6): ::/0>
  6446. ------------------------------------------------------------------------
  6447. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6448. Function: effective_ip_discovery
  6449. 514 [p.prefix for p in self.children_set.all()]):
  6450. 515 yield str(fp)
  6451. 516
  6452. 517 @property
  6453. 518 def effective_ip_discovery(self):
  6454. 519 if self.enable_ip_discovery == "I":
  6455. 520 if self.parent:
  6456. 521 ==> return self.parent.effective_ip_discovery
  6457. 522 else:
  6458. 523 return "E"
  6459. 524 else:
  6460. 525 return self.enable_ip_discovery
  6461. 526
  6462. 527
  6463. Variables:
  6464. self = <Prefix: Global(6): ::/0>
  6465. ------------------------------------------------------------------------
  6466. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6467. Function: effective_ip_discovery
  6468. 514 [p.prefix for p in self.children_set.all()]):
  6469. 515 yield str(fp)
  6470. 516
  6471. 517 @property
  6472. 518 def effective_ip_discovery(self):
  6473. 519 if self.enable_ip_discovery == "I":
  6474. 520 if self.parent:
  6475. 521 ==> return self.parent.effective_ip_discovery
  6476. 522 else:
  6477. 523 return "E"
  6478. 524 else:
  6479. 525 return self.enable_ip_discovery
  6480. 526
  6481. 527
  6482. Variables:
  6483. self = <Prefix: Global(6): ::/0>
  6484. ------------------------------------------------------------------------
  6485. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6486. Function: effective_ip_discovery
  6487. 514 [p.prefix for p in self.children_set.all()]):
  6488. 515 yield str(fp)
  6489. 516
  6490. 517 @property
  6491. 518 def effective_ip_discovery(self):
  6492. 519 if self.enable_ip_discovery == "I":
  6493. 520 if self.parent:
  6494. 521 ==> return self.parent.effective_ip_discovery
  6495. 522 else:
  6496. 523 return "E"
  6497. 524 else:
  6498. 525 return self.enable_ip_discovery
  6499. 526
  6500. 527
  6501. Variables:
  6502. self = <Prefix: Global(6): ::/0>
  6503. ------------------------------------------------------------------------
  6504. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6505. Function: effective_ip_discovery
  6506. 514 [p.prefix for p in self.children_set.all()]):
  6507. 515 yield str(fp)
  6508. 516
  6509. 517 @property
  6510. 518 def effective_ip_discovery(self):
  6511. 519 if self.enable_ip_discovery == "I":
  6512. 520 if self.parent:
  6513. 521 ==> return self.parent.effective_ip_discovery
  6514. 522 else:
  6515. 523 return "E"
  6516. 524 else:
  6517. 525 return self.enable_ip_discovery
  6518. 526
  6519. 527
  6520. Variables:
  6521. self = <Prefix: Global(6): ::/0>
  6522. ------------------------------------------------------------------------
  6523. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6524. Function: effective_ip_discovery
  6525. 514 [p.prefix for p in self.children_set.all()]):
  6526. 515 yield str(fp)
  6527. 516
  6528. 517 @property
  6529. 518 def effective_ip_discovery(self):
  6530. 519 if self.enable_ip_discovery == "I":
  6531. 520 if self.parent:
  6532. 521 ==> return self.parent.effective_ip_discovery
  6533. 522 else:
  6534. 523 return "E"
  6535. 524 else:
  6536. 525 return self.enable_ip_discovery
  6537. 526
  6538. 527
  6539. Variables:
  6540. self = <Prefix: Global(6): ::/0>
  6541. ------------------------------------------------------------------------
  6542. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6543. Function: effective_ip_discovery
  6544. 514 [p.prefix for p in self.children_set.all()]):
  6545. 515 yield str(fp)
  6546. 516
  6547. 517 @property
  6548. 518 def effective_ip_discovery(self):
  6549. 519 if self.enable_ip_discovery == "I":
  6550. 520 if self.parent:
  6551. 521 ==> return self.parent.effective_ip_discovery
  6552. 522 else:
  6553. 523 return "E"
  6554. 524 else:
  6555. 525 return self.enable_ip_discovery
  6556. 526
  6557. 527
  6558. Variables:
  6559. self = <Prefix: Global(6): ::/0>
  6560. ------------------------------------------------------------------------
  6561. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6562. Function: effective_ip_discovery
  6563. 514 [p.prefix for p in self.children_set.all()]):
  6564. 515 yield str(fp)
  6565. 516
  6566. 517 @property
  6567. 518 def effective_ip_discovery(self):
  6568. 519 if self.enable_ip_discovery == "I":
  6569. 520 if self.parent:
  6570. 521 ==> return self.parent.effective_ip_discovery
  6571. 522 else:
  6572. 523 return "E"
  6573. 524 else:
  6574. 525 return self.enable_ip_discovery
  6575. 526
  6576. 527
  6577. Variables:
  6578. self = <Prefix: Global(6): ::/0>
  6579. ------------------------------------------------------------------------
  6580. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6581. Function: effective_ip_discovery
  6582. 514 [p.prefix for p in self.children_set.all()]):
  6583. 515 yield str(fp)
  6584. 516
  6585. 517 @property
  6586. 518 def effective_ip_discovery(self):
  6587. 519 if self.enable_ip_discovery == "I":
  6588. 520 if self.parent:
  6589. 521 ==> return self.parent.effective_ip_discovery
  6590. 522 else:
  6591. 523 return "E"
  6592. 524 else:
  6593. 525 return self.enable_ip_discovery
  6594. 526
  6595. 527
  6596. Variables:
  6597. self = <Prefix: Global(6): ::/0>
  6598. ------------------------------------------------------------------------
  6599. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6600. Function: effective_ip_discovery
  6601. 514 [p.prefix for p in self.children_set.all()]):
  6602. 515 yield str(fp)
  6603. 516
  6604. 517 @property
  6605. 518 def effective_ip_discovery(self):
  6606. 519 if self.enable_ip_discovery == "I":
  6607. 520 if self.parent:
  6608. 521 ==> return self.parent.effective_ip_discovery
  6609. 522 else:
  6610. 523 return "E"
  6611. 524 else:
  6612. 525 return self.enable_ip_discovery
  6613. 526
  6614. 527
  6615. Variables:
  6616. self = <Prefix: Global(6): ::/0>
  6617. ------------------------------------------------------------------------
  6618. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6619. Function: effective_ip_discovery
  6620. 514 [p.prefix for p in self.children_set.all()]):
  6621. 515 yield str(fp)
  6622. 516
  6623. 517 @property
  6624. 518 def effective_ip_discovery(self):
  6625. 519 if self.enable_ip_discovery == "I":
  6626. 520 if self.parent:
  6627. 521 ==> return self.parent.effective_ip_discovery
  6628. 522 else:
  6629. 523 return "E"
  6630. 524 else:
  6631. 525 return self.enable_ip_discovery
  6632. 526
  6633. 527
  6634. Variables:
  6635. self = <Prefix: Global(6): ::/0>
  6636. ------------------------------------------------------------------------
  6637. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6638. Function: effective_ip_discovery
  6639. 514 [p.prefix for p in self.children_set.all()]):
  6640. 515 yield str(fp)
  6641. 516
  6642. 517 @property
  6643. 518 def effective_ip_discovery(self):
  6644. 519 if self.enable_ip_discovery == "I":
  6645. 520 if self.parent:
  6646. 521 ==> return self.parent.effective_ip_discovery
  6647. 522 else:
  6648. 523 return "E"
  6649. 524 else:
  6650. 525 return self.enable_ip_discovery
  6651. 526
  6652. 527
  6653. Variables:
  6654. self = <Prefix: Global(6): ::/0>
  6655. ------------------------------------------------------------------------
  6656. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6657. Function: effective_ip_discovery
  6658. 514 [p.prefix for p in self.children_set.all()]):
  6659. 515 yield str(fp)
  6660. 516
  6661. 517 @property
  6662. 518 def effective_ip_discovery(self):
  6663. 519 if self.enable_ip_discovery == "I":
  6664. 520 if self.parent:
  6665. 521 ==> return self.parent.effective_ip_discovery
  6666. 522 else:
  6667. 523 return "E"
  6668. 524 else:
  6669. 525 return self.enable_ip_discovery
  6670. 526
  6671. 527
  6672. Variables:
  6673. self = <Prefix: Global(6): ::/0>
  6674. ------------------------------------------------------------------------
  6675. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6676. Function: effective_ip_discovery
  6677. 514 [p.prefix for p in self.children_set.all()]):
  6678. 515 yield str(fp)
  6679. 516
  6680. 517 @property
  6681. 518 def effective_ip_discovery(self):
  6682. 519 if self.enable_ip_discovery == "I":
  6683. 520 if self.parent:
  6684. 521 ==> return self.parent.effective_ip_discovery
  6685. 522 else:
  6686. 523 return "E"
  6687. 524 else:
  6688. 525 return self.enable_ip_discovery
  6689. 526
  6690. 527
  6691. Variables:
  6692. self = <Prefix: Global(6): ::/0>
  6693. ------------------------------------------------------------------------
  6694. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6695. Function: effective_ip_discovery
  6696. 514 [p.prefix for p in self.children_set.all()]):
  6697. 515 yield str(fp)
  6698. 516
  6699. 517 @property
  6700. 518 def effective_ip_discovery(self):
  6701. 519 if self.enable_ip_discovery == "I":
  6702. 520 if self.parent:
  6703. 521 ==> return self.parent.effective_ip_discovery
  6704. 522 else:
  6705. 523 return "E"
  6706. 524 else:
  6707. 525 return self.enable_ip_discovery
  6708. 526
  6709. 527
  6710. Variables:
  6711. self = <Prefix: Global(6): ::/0>
  6712. ------------------------------------------------------------------------
  6713. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6714. Function: effective_ip_discovery
  6715. 514 [p.prefix for p in self.children_set.all()]):
  6716. 515 yield str(fp)
  6717. 516
  6718. 517 @property
  6719. 518 def effective_ip_discovery(self):
  6720. 519 if self.enable_ip_discovery == "I":
  6721. 520 if self.parent:
  6722. 521 ==> return self.parent.effective_ip_discovery
  6723. 522 else:
  6724. 523 return "E"
  6725. 524 else:
  6726. 525 return self.enable_ip_discovery
  6727. 526
  6728. 527
  6729. Variables:
  6730. self = <Prefix: Global(6): ::/0>
  6731. ------------------------------------------------------------------------
  6732. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6733. Function: effective_ip_discovery
  6734. 514 [p.prefix for p in self.children_set.all()]):
  6735. 515 yield str(fp)
  6736. 516
  6737. 517 @property
  6738. 518 def effective_ip_discovery(self):
  6739. 519 if self.enable_ip_discovery == "I":
  6740. 520 if self.parent:
  6741. 521 ==> return self.parent.effective_ip_discovery
  6742. 522 else:
  6743. 523 return "E"
  6744. 524 else:
  6745. 525 return self.enable_ip_discovery
  6746. 526
  6747. 527
  6748. Variables:
  6749. self = <Prefix: Global(6): ::/0>
  6750. ------------------------------------------------------------------------
  6751. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6752. Function: effective_ip_discovery
  6753. 514 [p.prefix for p in self.children_set.all()]):
  6754. 515 yield str(fp)
  6755. 516
  6756. 517 @property
  6757. 518 def effective_ip_discovery(self):
  6758. 519 if self.enable_ip_discovery == "I":
  6759. 520 if self.parent:
  6760. 521 ==> return self.parent.effective_ip_discovery
  6761. 522 else:
  6762. 523 return "E"
  6763. 524 else:
  6764. 525 return self.enable_ip_discovery
  6765. 526
  6766. 527
  6767. Variables:
  6768. self = <Prefix: Global(6): ::/0>
  6769. ------------------------------------------------------------------------
  6770. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6771. Function: effective_ip_discovery
  6772. 514 [p.prefix for p in self.children_set.all()]):
  6773. 515 yield str(fp)
  6774. 516
  6775. 517 @property
  6776. 518 def effective_ip_discovery(self):
  6777. 519 if self.enable_ip_discovery == "I":
  6778. 520 if self.parent:
  6779. 521 ==> return self.parent.effective_ip_discovery
  6780. 522 else:
  6781. 523 return "E"
  6782. 524 else:
  6783. 525 return self.enable_ip_discovery
  6784. 526
  6785. 527
  6786. Variables:
  6787. self = <Prefix: Global(6): ::/0>
  6788. ------------------------------------------------------------------------
  6789. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6790. Function: effective_ip_discovery
  6791. 514 [p.prefix for p in self.children_set.all()]):
  6792. 515 yield str(fp)
  6793. 516
  6794. 517 @property
  6795. 518 def effective_ip_discovery(self):
  6796. 519 if self.enable_ip_discovery == "I":
  6797. 520 if self.parent:
  6798. 521 ==> return self.parent.effective_ip_discovery
  6799. 522 else:
  6800. 523 return "E"
  6801. 524 else:
  6802. 525 return self.enable_ip_discovery
  6803. 526
  6804. 527
  6805. Variables:
  6806. self = <Prefix: Global(6): ::/0>
  6807. ------------------------------------------------------------------------
  6808. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6809. Function: effective_ip_discovery
  6810. 514 [p.prefix for p in self.children_set.all()]):
  6811. 515 yield str(fp)
  6812. 516
  6813. 517 @property
  6814. 518 def effective_ip_discovery(self):
  6815. 519 if self.enable_ip_discovery == "I":
  6816. 520 if self.parent:
  6817. 521 ==> return self.parent.effective_ip_discovery
  6818. 522 else:
  6819. 523 return "E"
  6820. 524 else:
  6821. 525 return self.enable_ip_discovery
  6822. 526
  6823. 527
  6824. Variables:
  6825. self = <Prefix: Global(6): ::/0>
  6826. ------------------------------------------------------------------------
  6827. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6828. Function: effective_ip_discovery
  6829. 514 [p.prefix for p in self.children_set.all()]):
  6830. 515 yield str(fp)
  6831. 516
  6832. 517 @property
  6833. 518 def effective_ip_discovery(self):
  6834. 519 if self.enable_ip_discovery == "I":
  6835. 520 if self.parent:
  6836. 521 ==> return self.parent.effective_ip_discovery
  6837. 522 else:
  6838. 523 return "E"
  6839. 524 else:
  6840. 525 return self.enable_ip_discovery
  6841. 526
  6842. 527
  6843. Variables:
  6844. self = <Prefix: Global(6): ::/0>
  6845. ------------------------------------------------------------------------
  6846. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6847. Function: effective_ip_discovery
  6848. 514 [p.prefix for p in self.children_set.all()]):
  6849. 515 yield str(fp)
  6850. 516
  6851. 517 @property
  6852. 518 def effective_ip_discovery(self):
  6853. 519 if self.enable_ip_discovery == "I":
  6854. 520 if self.parent:
  6855. 521 ==> return self.parent.effective_ip_discovery
  6856. 522 else:
  6857. 523 return "E"
  6858. 524 else:
  6859. 525 return self.enable_ip_discovery
  6860. 526
  6861. 527
  6862. Variables:
  6863. self = <Prefix: Global(6): ::/0>
  6864. ------------------------------------------------------------------------
  6865. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6866. Function: effective_ip_discovery
  6867. 514 [p.prefix for p in self.children_set.all()]):
  6868. 515 yield str(fp)
  6869. 516
  6870. 517 @property
  6871. 518 def effective_ip_discovery(self):
  6872. 519 if self.enable_ip_discovery == "I":
  6873. 520 if self.parent:
  6874. 521 ==> return self.parent.effective_ip_discovery
  6875. 522 else:
  6876. 523 return "E"
  6877. 524 else:
  6878. 525 return self.enable_ip_discovery
  6879. 526
  6880. 527
  6881. Variables:
  6882. self = <Prefix: Global(6): ::/0>
  6883. ------------------------------------------------------------------------
  6884. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6885. Function: effective_ip_discovery
  6886. 514 [p.prefix for p in self.children_set.all()]):
  6887. 515 yield str(fp)
  6888. 516
  6889. 517 @property
  6890. 518 def effective_ip_discovery(self):
  6891. 519 if self.enable_ip_discovery == "I":
  6892. 520 if self.parent:
  6893. 521 ==> return self.parent.effective_ip_discovery
  6894. 522 else:
  6895. 523 return "E"
  6896. 524 else:
  6897. 525 return self.enable_ip_discovery
  6898. 526
  6899. 527
  6900. Variables:
  6901. self = <Prefix: Global(6): ::/0>
  6902. ------------------------------------------------------------------------
  6903. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6904. Function: effective_ip_discovery
  6905. 514 [p.prefix for p in self.children_set.all()]):
  6906. 515 yield str(fp)
  6907. 516
  6908. 517 @property
  6909. 518 def effective_ip_discovery(self):
  6910. 519 if self.enable_ip_discovery == "I":
  6911. 520 if self.parent:
  6912. 521 ==> return self.parent.effective_ip_discovery
  6913. 522 else:
  6914. 523 return "E"
  6915. 524 else:
  6916. 525 return self.enable_ip_discovery
  6917. 526
  6918. 527
  6919. Variables:
  6920. self = <Prefix: Global(6): ::/0>
  6921. ------------------------------------------------------------------------
  6922. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6923. Function: effective_ip_discovery
  6924. 514 [p.prefix for p in self.children_set.all()]):
  6925. 515 yield str(fp)
  6926. 516
  6927. 517 @property
  6928. 518 def effective_ip_discovery(self):
  6929. 519 if self.enable_ip_discovery == "I":
  6930. 520 if self.parent:
  6931. 521 ==> return self.parent.effective_ip_discovery
  6932. 522 else:
  6933. 523 return "E"
  6934. 524 else:
  6935. 525 return self.enable_ip_discovery
  6936. 526
  6937. 527
  6938. Variables:
  6939. self = <Prefix: Global(6): ::/0>
  6940. ------------------------------------------------------------------------
  6941. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6942. Function: effective_ip_discovery
  6943. 514 [p.prefix for p in self.children_set.all()]):
  6944. 515 yield str(fp)
  6945. 516
  6946. 517 @property
  6947. 518 def effective_ip_discovery(self):
  6948. 519 if self.enable_ip_discovery == "I":
  6949. 520 if self.parent:
  6950. 521 ==> return self.parent.effective_ip_discovery
  6951. 522 else:
  6952. 523 return "E"
  6953. 524 else:
  6954. 525 return self.enable_ip_discovery
  6955. 526
  6956. 527
  6957. Variables:
  6958. self = <Prefix: Global(6): ::/0>
  6959. ------------------------------------------------------------------------
  6960. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6961. Function: effective_ip_discovery
  6962. 514 [p.prefix for p in self.children_set.all()]):
  6963. 515 yield str(fp)
  6964. 516
  6965. 517 @property
  6966. 518 def effective_ip_discovery(self):
  6967. 519 if self.enable_ip_discovery == "I":
  6968. 520 if self.parent:
  6969. 521 ==> return self.parent.effective_ip_discovery
  6970. 522 else:
  6971. 523 return "E"
  6972. 524 else:
  6973. 525 return self.enable_ip_discovery
  6974. 526
  6975. 527
  6976. Variables:
  6977. self = <Prefix: Global(6): ::/0>
  6978. ------------------------------------------------------------------------
  6979. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6980. Function: effective_ip_discovery
  6981. 514 [p.prefix for p in self.children_set.all()]):
  6982. 515 yield str(fp)
  6983. 516
  6984. 517 @property
  6985. 518 def effective_ip_discovery(self):
  6986. 519 if self.enable_ip_discovery == "I":
  6987. 520 if self.parent:
  6988. 521 ==> return self.parent.effective_ip_discovery
  6989. 522 else:
  6990. 523 return "E"
  6991. 524 else:
  6992. 525 return self.enable_ip_discovery
  6993. 526
  6994. 527
  6995. Variables:
  6996. self = <Prefix: Global(6): ::/0>
  6997. ------------------------------------------------------------------------
  6998. File: /opt/noc/ip/models/prefix.py (Line: 521)
  6999. Function: effective_ip_discovery
  7000. 514 [p.prefix for p in self.children_set.all()]):
  7001. 515 yield str(fp)
  7002. 516
  7003. 517 @property
  7004. 518 def effective_ip_discovery(self):
  7005. 519 if self.enable_ip_discovery == "I":
  7006. 520 if self.parent:
  7007. 521 ==> return self.parent.effective_ip_discovery
  7008. 522 else:
  7009. 523 return "E"
  7010. 524 else:
  7011. 525 return self.enable_ip_discovery
  7012. 526
  7013. 527
  7014. Variables:
  7015. self = <Prefix: Global(6): ::/0>
  7016. ------------------------------------------------------------------------
  7017. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7018. Function: effective_ip_discovery
  7019. 514 [p.prefix for p in self.children_set.all()]):
  7020. 515 yield str(fp)
  7021. 516
  7022. 517 @property
  7023. 518 def effective_ip_discovery(self):
  7024. 519 if self.enable_ip_discovery == "I":
  7025. 520 if self.parent:
  7026. 521 ==> return self.parent.effective_ip_discovery
  7027. 522 else:
  7028. 523 return "E"
  7029. 524 else:
  7030. 525 return self.enable_ip_discovery
  7031. 526
  7032. 527
  7033. Variables:
  7034. self = <Prefix: Global(6): ::/0>
  7035. ------------------------------------------------------------------------
  7036. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7037. Function: effective_ip_discovery
  7038. 514 [p.prefix for p in self.children_set.all()]):
  7039. 515 yield str(fp)
  7040. 516
  7041. 517 @property
  7042. 518 def effective_ip_discovery(self):
  7043. 519 if self.enable_ip_discovery == "I":
  7044. 520 if self.parent:
  7045. 521 ==> return self.parent.effective_ip_discovery
  7046. 522 else:
  7047. 523 return "E"
  7048. 524 else:
  7049. 525 return self.enable_ip_discovery
  7050. 526
  7051. 527
  7052. Variables:
  7053. self = <Prefix: Global(6): ::/0>
  7054. ------------------------------------------------------------------------
  7055. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7056. Function: effective_ip_discovery
  7057. 514 [p.prefix for p in self.children_set.all()]):
  7058. 515 yield str(fp)
  7059. 516
  7060. 517 @property
  7061. 518 def effective_ip_discovery(self):
  7062. 519 if self.enable_ip_discovery == "I":
  7063. 520 if self.parent:
  7064. 521 ==> return self.parent.effective_ip_discovery
  7065. 522 else:
  7066. 523 return "E"
  7067. 524 else:
  7068. 525 return self.enable_ip_discovery
  7069. 526
  7070. 527
  7071. Variables:
  7072. self = <Prefix: Global(6): ::/0>
  7073. ------------------------------------------------------------------------
  7074. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7075. Function: effective_ip_discovery
  7076. 514 [p.prefix for p in self.children_set.all()]):
  7077. 515 yield str(fp)
  7078. 516
  7079. 517 @property
  7080. 518 def effective_ip_discovery(self):
  7081. 519 if self.enable_ip_discovery == "I":
  7082. 520 if self.parent:
  7083. 521 ==> return self.parent.effective_ip_discovery
  7084. 522 else:
  7085. 523 return "E"
  7086. 524 else:
  7087. 525 return self.enable_ip_discovery
  7088. 526
  7089. 527
  7090. Variables:
  7091. self = <Prefix: Global(6): ::/0>
  7092. ------------------------------------------------------------------------
  7093. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7094. Function: effective_ip_discovery
  7095. 514 [p.prefix for p in self.children_set.all()]):
  7096. 515 yield str(fp)
  7097. 516
  7098. 517 @property
  7099. 518 def effective_ip_discovery(self):
  7100. 519 if self.enable_ip_discovery == "I":
  7101. 520 if self.parent:
  7102. 521 ==> return self.parent.effective_ip_discovery
  7103. 522 else:
  7104. 523 return "E"
  7105. 524 else:
  7106. 525 return self.enable_ip_discovery
  7107. 526
  7108. 527
  7109. Variables:
  7110. self = <Prefix: Global(6): ::/0>
  7111. ------------------------------------------------------------------------
  7112. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7113. Function: effective_ip_discovery
  7114. 514 [p.prefix for p in self.children_set.all()]):
  7115. 515 yield str(fp)
  7116. 516
  7117. 517 @property
  7118. 518 def effective_ip_discovery(self):
  7119. 519 if self.enable_ip_discovery == "I":
  7120. 520 if self.parent:
  7121. 521 ==> return self.parent.effective_ip_discovery
  7122. 522 else:
  7123. 523 return "E"
  7124. 524 else:
  7125. 525 return self.enable_ip_discovery
  7126. 526
  7127. 527
  7128. Variables:
  7129. self = <Prefix: Global(6): ::/0>
  7130. ------------------------------------------------------------------------
  7131. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7132. Function: effective_ip_discovery
  7133. 514 [p.prefix for p in self.children_set.all()]):
  7134. 515 yield str(fp)
  7135. 516
  7136. 517 @property
  7137. 518 def effective_ip_discovery(self):
  7138. 519 if self.enable_ip_discovery == "I":
  7139. 520 if self.parent:
  7140. 521 ==> return self.parent.effective_ip_discovery
  7141. 522 else:
  7142. 523 return "E"
  7143. 524 else:
  7144. 525 return self.enable_ip_discovery
  7145. 526
  7146. 527
  7147. Variables:
  7148. self = <Prefix: Global(6): ::/0>
  7149. ------------------------------------------------------------------------
  7150. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7151. Function: effective_ip_discovery
  7152. 514 [p.prefix for p in self.children_set.all()]):
  7153. 515 yield str(fp)
  7154. 516
  7155. 517 @property
  7156. 518 def effective_ip_discovery(self):
  7157. 519 if self.enable_ip_discovery == "I":
  7158. 520 if self.parent:
  7159. 521 ==> return self.parent.effective_ip_discovery
  7160. 522 else:
  7161. 523 return "E"
  7162. 524 else:
  7163. 525 return self.enable_ip_discovery
  7164. 526
  7165. 527
  7166. Variables:
  7167. self = <Prefix: Global(6): ::/0>
  7168. ------------------------------------------------------------------------
  7169. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7170. Function: effective_ip_discovery
  7171. 514 [p.prefix for p in self.children_set.all()]):
  7172. 515 yield str(fp)
  7173. 516
  7174. 517 @property
  7175. 518 def effective_ip_discovery(self):
  7176. 519 if self.enable_ip_discovery == "I":
  7177. 520 if self.parent:
  7178. 521 ==> return self.parent.effective_ip_discovery
  7179. 522 else:
  7180. 523 return "E"
  7181. 524 else:
  7182. 525 return self.enable_ip_discovery
  7183. 526
  7184. 527
  7185. Variables:
  7186. self = <Prefix: Global(6): ::/0>
  7187. ------------------------------------------------------------------------
  7188. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7189. Function: effective_ip_discovery
  7190. 514 [p.prefix for p in self.children_set.all()]):
  7191. 515 yield str(fp)
  7192. 516
  7193. 517 @property
  7194. 518 def effective_ip_discovery(self):
  7195. 519 if self.enable_ip_discovery == "I":
  7196. 520 if self.parent:
  7197. 521 ==> return self.parent.effective_ip_discovery
  7198. 522 else:
  7199. 523 return "E"
  7200. 524 else:
  7201. 525 return self.enable_ip_discovery
  7202. 526
  7203. 527
  7204. Variables:
  7205. self = <Prefix: Global(6): ::/0>
  7206. ------------------------------------------------------------------------
  7207. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7208. Function: effective_ip_discovery
  7209. 514 [p.prefix for p in self.children_set.all()]):
  7210. 515 yield str(fp)
  7211. 516
  7212. 517 @property
  7213. 518 def effective_ip_discovery(self):
  7214. 519 if self.enable_ip_discovery == "I":
  7215. 520 if self.parent:
  7216. 521 ==> return self.parent.effective_ip_discovery
  7217. 522 else:
  7218. 523 return "E"
  7219. 524 else:
  7220. 525 return self.enable_ip_discovery
  7221. 526
  7222. 527
  7223. Variables:
  7224. self = <Prefix: Global(6): ::/0>
  7225. ------------------------------------------------------------------------
  7226. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7227. Function: effective_ip_discovery
  7228. 514 [p.prefix for p in self.children_set.all()]):
  7229. 515 yield str(fp)
  7230. 516
  7231. 517 @property
  7232. 518 def effective_ip_discovery(self):
  7233. 519 if self.enable_ip_discovery == "I":
  7234. 520 if self.parent:
  7235. 521 ==> return self.parent.effective_ip_discovery
  7236. 522 else:
  7237. 523 return "E"
  7238. 524 else:
  7239. 525 return self.enable_ip_discovery
  7240. 526
  7241. 527
  7242. Variables:
  7243. self = <Prefix: Global(6): ::/0>
  7244. ------------------------------------------------------------------------
  7245. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7246. Function: effective_ip_discovery
  7247. 514 [p.prefix for p in self.children_set.all()]):
  7248. 515 yield str(fp)
  7249. 516
  7250. 517 @property
  7251. 518 def effective_ip_discovery(self):
  7252. 519 if self.enable_ip_discovery == "I":
  7253. 520 if self.parent:
  7254. 521 ==> return self.parent.effective_ip_discovery
  7255. 522 else:
  7256. 523 return "E"
  7257. 524 else:
  7258. 525 return self.enable_ip_discovery
  7259. 526
  7260. 527
  7261. Variables:
  7262. self = <Prefix: Global(6): ::/0>
  7263. ------------------------------------------------------------------------
  7264. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7265. Function: effective_ip_discovery
  7266. 514 [p.prefix for p in self.children_set.all()]):
  7267. 515 yield str(fp)
  7268. 516
  7269. 517 @property
  7270. 518 def effective_ip_discovery(self):
  7271. 519 if self.enable_ip_discovery == "I":
  7272. 520 if self.parent:
  7273. 521 ==> return self.parent.effective_ip_discovery
  7274. 522 else:
  7275. 523 return "E"
  7276. 524 else:
  7277. 525 return self.enable_ip_discovery
  7278. 526
  7279. 527
  7280. Variables:
  7281. self = <Prefix: Global(6): ::/0>
  7282. ------------------------------------------------------------------------
  7283. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7284. Function: effective_ip_discovery
  7285. 514 [p.prefix for p in self.children_set.all()]):
  7286. 515 yield str(fp)
  7287. 516
  7288. 517 @property
  7289. 518 def effective_ip_discovery(self):
  7290. 519 if self.enable_ip_discovery == "I":
  7291. 520 if self.parent:
  7292. 521 ==> return self.parent.effective_ip_discovery
  7293. 522 else:
  7294. 523 return "E"
  7295. 524 else:
  7296. 525 return self.enable_ip_discovery
  7297. 526
  7298. 527
  7299. Variables:
  7300. self = <Prefix: Global(6): ::/0>
  7301. ------------------------------------------------------------------------
  7302. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7303. Function: effective_ip_discovery
  7304. 514 [p.prefix for p in self.children_set.all()]):
  7305. 515 yield str(fp)
  7306. 516
  7307. 517 @property
  7308. 518 def effective_ip_discovery(self):
  7309. 519 if self.enable_ip_discovery == "I":
  7310. 520 if self.parent:
  7311. 521 ==> return self.parent.effective_ip_discovery
  7312. 522 else:
  7313. 523 return "E"
  7314. 524 else:
  7315. 525 return self.enable_ip_discovery
  7316. 526
  7317. 527
  7318. Variables:
  7319. self = <Prefix: Global(6): ::/0>
  7320. ------------------------------------------------------------------------
  7321. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7322. Function: effective_ip_discovery
  7323. 514 [p.prefix for p in self.children_set.all()]):
  7324. 515 yield str(fp)
  7325. 516
  7326. 517 @property
  7327. 518 def effective_ip_discovery(self):
  7328. 519 if self.enable_ip_discovery == "I":
  7329. 520 if self.parent:
  7330. 521 ==> return self.parent.effective_ip_discovery
  7331. 522 else:
  7332. 523 return "E"
  7333. 524 else:
  7334. 525 return self.enable_ip_discovery
  7335. 526
  7336. 527
  7337. Variables:
  7338. self = <Prefix: Global(6): ::/0>
  7339. ------------------------------------------------------------------------
  7340. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7341. Function: effective_ip_discovery
  7342. 514 [p.prefix for p in self.children_set.all()]):
  7343. 515 yield str(fp)
  7344. 516
  7345. 517 @property
  7346. 518 def effective_ip_discovery(self):
  7347. 519 if self.enable_ip_discovery == "I":
  7348. 520 if self.parent:
  7349. 521 ==> return self.parent.effective_ip_discovery
  7350. 522 else:
  7351. 523 return "E"
  7352. 524 else:
  7353. 525 return self.enable_ip_discovery
  7354. 526
  7355. 527
  7356. Variables:
  7357. self = <Prefix: Global(6): ::/0>
  7358. ------------------------------------------------------------------------
  7359. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7360. Function: effective_ip_discovery
  7361. 514 [p.prefix for p in self.children_set.all()]):
  7362. 515 yield str(fp)
  7363. 516
  7364. 517 @property
  7365. 518 def effective_ip_discovery(self):
  7366. 519 if self.enable_ip_discovery == "I":
  7367. 520 if self.parent:
  7368. 521 ==> return self.parent.effective_ip_discovery
  7369. 522 else:
  7370. 523 return "E"
  7371. 524 else:
  7372. 525 return self.enable_ip_discovery
  7373. 526
  7374. 527
  7375. Variables:
  7376. self = <Prefix: Global(6): ::/0>
  7377. ------------------------------------------------------------------------
  7378. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7379. Function: effective_ip_discovery
  7380. 514 [p.prefix for p in self.children_set.all()]):
  7381. 515 yield str(fp)
  7382. 516
  7383. 517 @property
  7384. 518 def effective_ip_discovery(self):
  7385. 519 if self.enable_ip_discovery == "I":
  7386. 520 if self.parent:
  7387. 521 ==> return self.parent.effective_ip_discovery
  7388. 522 else:
  7389. 523 return "E"
  7390. 524 else:
  7391. 525 return self.enable_ip_discovery
  7392. 526
  7393. 527
  7394. Variables:
  7395. self = <Prefix: Global(6): ::/0>
  7396. ------------------------------------------------------------------------
  7397. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7398. Function: effective_ip_discovery
  7399. 514 [p.prefix for p in self.children_set.all()]):
  7400. 515 yield str(fp)
  7401. 516
  7402. 517 @property
  7403. 518 def effective_ip_discovery(self):
  7404. 519 if self.enable_ip_discovery == "I":
  7405. 520 if self.parent:
  7406. 521 ==> return self.parent.effective_ip_discovery
  7407. 522 else:
  7408. 523 return "E"
  7409. 524 else:
  7410. 525 return self.enable_ip_discovery
  7411. 526
  7412. 527
  7413. Variables:
  7414. self = <Prefix: Global(6): ::/0>
  7415. ------------------------------------------------------------------------
  7416. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7417. Function: effective_ip_discovery
  7418. 514 [p.prefix for p in self.children_set.all()]):
  7419. 515 yield str(fp)
  7420. 516
  7421. 517 @property
  7422. 518 def effective_ip_discovery(self):
  7423. 519 if self.enable_ip_discovery == "I":
  7424. 520 if self.parent:
  7425. 521 ==> return self.parent.effective_ip_discovery
  7426. 522 else:
  7427. 523 return "E"
  7428. 524 else:
  7429. 525 return self.enable_ip_discovery
  7430. 526
  7431. 527
  7432. Variables:
  7433. self = <Prefix: Global(6): ::/0>
  7434. ------------------------------------------------------------------------
  7435. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7436. Function: effective_ip_discovery
  7437. 514 [p.prefix for p in self.children_set.all()]):
  7438. 515 yield str(fp)
  7439. 516
  7440. 517 @property
  7441. 518 def effective_ip_discovery(self):
  7442. 519 if self.enable_ip_discovery == "I":
  7443. 520 if self.parent:
  7444. 521 ==> return self.parent.effective_ip_discovery
  7445. 522 else:
  7446. 523 return "E"
  7447. 524 else:
  7448. 525 return self.enable_ip_discovery
  7449. 526
  7450. 527
  7451. Variables:
  7452. self = <Prefix: Global(6): ::/0>
  7453. ------------------------------------------------------------------------
  7454. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7455. Function: effective_ip_discovery
  7456. 514 [p.prefix for p in self.children_set.all()]):
  7457. 515 yield str(fp)
  7458. 516
  7459. 517 @property
  7460. 518 def effective_ip_discovery(self):
  7461. 519 if self.enable_ip_discovery == "I":
  7462. 520 if self.parent:
  7463. 521 ==> return self.parent.effective_ip_discovery
  7464. 522 else:
  7465. 523 return "E"
  7466. 524 else:
  7467. 525 return self.enable_ip_discovery
  7468. 526
  7469. 527
  7470. Variables:
  7471. self = <Prefix: Global(6): ::/0>
  7472. ------------------------------------------------------------------------
  7473. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7474. Function: effective_ip_discovery
  7475. 514 [p.prefix for p in self.children_set.all()]):
  7476. 515 yield str(fp)
  7477. 516
  7478. 517 @property
  7479. 518 def effective_ip_discovery(self):
  7480. 519 if self.enable_ip_discovery == "I":
  7481. 520 if self.parent:
  7482. 521 ==> return self.parent.effective_ip_discovery
  7483. 522 else:
  7484. 523 return "E"
  7485. 524 else:
  7486. 525 return self.enable_ip_discovery
  7487. 526
  7488. 527
  7489. Variables:
  7490. self = <Prefix: Global(6): ::/0>
  7491. ------------------------------------------------------------------------
  7492. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7493. Function: effective_ip_discovery
  7494. 514 [p.prefix for p in self.children_set.all()]):
  7495. 515 yield str(fp)
  7496. 516
  7497. 517 @property
  7498. 518 def effective_ip_discovery(self):
  7499. 519 if self.enable_ip_discovery == "I":
  7500. 520 if self.parent:
  7501. 521 ==> return self.parent.effective_ip_discovery
  7502. 522 else:
  7503. 523 return "E"
  7504. 524 else:
  7505. 525 return self.enable_ip_discovery
  7506. 526
  7507. 527
  7508. Variables:
  7509. self = <Prefix: Global(6): ::/0>
  7510. ------------------------------------------------------------------------
  7511. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7512. Function: effective_ip_discovery
  7513. 514 [p.prefix for p in self.children_set.all()]):
  7514. 515 yield str(fp)
  7515. 516
  7516. 517 @property
  7517. 518 def effective_ip_discovery(self):
  7518. 519 if self.enable_ip_discovery == "I":
  7519. 520 if self.parent:
  7520. 521 ==> return self.parent.effective_ip_discovery
  7521. 522 else:
  7522. 523 return "E"
  7523. 524 else:
  7524. 525 return self.enable_ip_discovery
  7525. 526
  7526. 527
  7527. Variables:
  7528. self = <Prefix: Global(6): ::/0>
  7529. ------------------------------------------------------------------------
  7530. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7531. Function: effective_ip_discovery
  7532. 514 [p.prefix for p in self.children_set.all()]):
  7533. 515 yield str(fp)
  7534. 516
  7535. 517 @property
  7536. 518 def effective_ip_discovery(self):
  7537. 519 if self.enable_ip_discovery == "I":
  7538. 520 if self.parent:
  7539. 521 ==> return self.parent.effective_ip_discovery
  7540. 522 else:
  7541. 523 return "E"
  7542. 524 else:
  7543. 525 return self.enable_ip_discovery
  7544. 526
  7545. 527
  7546. Variables:
  7547. self = <Prefix: Global(6): ::/0>
  7548. ------------------------------------------------------------------------
  7549. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7550. Function: effective_ip_discovery
  7551. 514 [p.prefix for p in self.children_set.all()]):
  7552. 515 yield str(fp)
  7553. 516
  7554. 517 @property
  7555. 518 def effective_ip_discovery(self):
  7556. 519 if self.enable_ip_discovery == "I":
  7557. 520 if self.parent:
  7558. 521 ==> return self.parent.effective_ip_discovery
  7559. 522 else:
  7560. 523 return "E"
  7561. 524 else:
  7562. 525 return self.enable_ip_discovery
  7563. 526
  7564. 527
  7565. Variables:
  7566. self = <Prefix: Global(6): ::/0>
  7567. ------------------------------------------------------------------------
  7568. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7569. Function: effective_ip_discovery
  7570. 514 [p.prefix for p in self.children_set.all()]):
  7571. 515 yield str(fp)
  7572. 516
  7573. 517 @property
  7574. 518 def effective_ip_discovery(self):
  7575. 519 if self.enable_ip_discovery == "I":
  7576. 520 if self.parent:
  7577. 521 ==> return self.parent.effective_ip_discovery
  7578. 522 else:
  7579. 523 return "E"
  7580. 524 else:
  7581. 525 return self.enable_ip_discovery
  7582. 526
  7583. 527
  7584. Variables:
  7585. self = <Prefix: Global(6): ::/0>
  7586. ------------------------------------------------------------------------
  7587. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7588. Function: effective_ip_discovery
  7589. 514 [p.prefix for p in self.children_set.all()]):
  7590. 515 yield str(fp)
  7591. 516
  7592. 517 @property
  7593. 518 def effective_ip_discovery(self):
  7594. 519 if self.enable_ip_discovery == "I":
  7595. 520 if self.parent:
  7596. 521 ==> return self.parent.effective_ip_discovery
  7597. 522 else:
  7598. 523 return "E"
  7599. 524 else:
  7600. 525 return self.enable_ip_discovery
  7601. 526
  7602. 527
  7603. Variables:
  7604. self = <Prefix: Global(6): ::/0>
  7605. ------------------------------------------------------------------------
  7606. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7607. Function: effective_ip_discovery
  7608. 514 [p.prefix for p in self.children_set.all()]):
  7609. 515 yield str(fp)
  7610. 516
  7611. 517 @property
  7612. 518 def effective_ip_discovery(self):
  7613. 519 if self.enable_ip_discovery == "I":
  7614. 520 if self.parent:
  7615. 521 ==> return self.parent.effective_ip_discovery
  7616. 522 else:
  7617. 523 return "E"
  7618. 524 else:
  7619. 525 return self.enable_ip_discovery
  7620. 526
  7621. 527
  7622. Variables:
  7623. self = <Prefix: Global(6): ::/0>
  7624. ------------------------------------------------------------------------
  7625. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7626. Function: effective_ip_discovery
  7627. 514 [p.prefix for p in self.children_set.all()]):
  7628. 515 yield str(fp)
  7629. 516
  7630. 517 @property
  7631. 518 def effective_ip_discovery(self):
  7632. 519 if self.enable_ip_discovery == "I":
  7633. 520 if self.parent:
  7634. 521 ==> return self.parent.effective_ip_discovery
  7635. 522 else:
  7636. 523 return "E"
  7637. 524 else:
  7638. 525 return self.enable_ip_discovery
  7639. 526
  7640. 527
  7641. Variables:
  7642. self = <Prefix: Global(6): ::/0>
  7643. ------------------------------------------------------------------------
  7644. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7645. Function: effective_ip_discovery
  7646. 514 [p.prefix for p in self.children_set.all()]):
  7647. 515 yield str(fp)
  7648. 516
  7649. 517 @property
  7650. 518 def effective_ip_discovery(self):
  7651. 519 if self.enable_ip_discovery == "I":
  7652. 520 if self.parent:
  7653. 521 ==> return self.parent.effective_ip_discovery
  7654. 522 else:
  7655. 523 return "E"
  7656. 524 else:
  7657. 525 return self.enable_ip_discovery
  7658. 526
  7659. 527
  7660. Variables:
  7661. self = <Prefix: Global(6): ::/0>
  7662. ------------------------------------------------------------------------
  7663. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7664. Function: effective_ip_discovery
  7665. 514 [p.prefix for p in self.children_set.all()]):
  7666. 515 yield str(fp)
  7667. 516
  7668. 517 @property
  7669. 518 def effective_ip_discovery(self):
  7670. 519 if self.enable_ip_discovery == "I":
  7671. 520 if self.parent:
  7672. 521 ==> return self.parent.effective_ip_discovery
  7673. 522 else:
  7674. 523 return "E"
  7675. 524 else:
  7676. 525 return self.enable_ip_discovery
  7677. 526
  7678. 527
  7679. Variables:
  7680. self = <Prefix: Global(6): ::/0>
  7681. ------------------------------------------------------------------------
  7682. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7683. Function: effective_ip_discovery
  7684. 514 [p.prefix for p in self.children_set.all()]):
  7685. 515 yield str(fp)
  7686. 516
  7687. 517 @property
  7688. 518 def effective_ip_discovery(self):
  7689. 519 if self.enable_ip_discovery == "I":
  7690. 520 if self.parent:
  7691. 521 ==> return self.parent.effective_ip_discovery
  7692. 522 else:
  7693. 523 return "E"
  7694. 524 else:
  7695. 525 return self.enable_ip_discovery
  7696. 526
  7697. 527
  7698. Variables:
  7699. self = <Prefix: Global(6): ::/0>
  7700. ------------------------------------------------------------------------
  7701. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7702. Function: effective_ip_discovery
  7703. 514 [p.prefix for p in self.children_set.all()]):
  7704. 515 yield str(fp)
  7705. 516
  7706. 517 @property
  7707. 518 def effective_ip_discovery(self):
  7708. 519 if self.enable_ip_discovery == "I":
  7709. 520 if self.parent:
  7710. 521 ==> return self.parent.effective_ip_discovery
  7711. 522 else:
  7712. 523 return "E"
  7713. 524 else:
  7714. 525 return self.enable_ip_discovery
  7715. 526
  7716. 527
  7717. Variables:
  7718. self = <Prefix: Global(6): ::/0>
  7719. ------------------------------------------------------------------------
  7720. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7721. Function: effective_ip_discovery
  7722. 514 [p.prefix for p in self.children_set.all()]):
  7723. 515 yield str(fp)
  7724. 516
  7725. 517 @property
  7726. 518 def effective_ip_discovery(self):
  7727. 519 if self.enable_ip_discovery == "I":
  7728. 520 if self.parent:
  7729. 521 ==> return self.parent.effective_ip_discovery
  7730. 522 else:
  7731. 523 return "E"
  7732. 524 else:
  7733. 525 return self.enable_ip_discovery
  7734. 526
  7735. 527
  7736. Variables:
  7737. self = <Prefix: Global(6): ::/0>
  7738. ------------------------------------------------------------------------
  7739. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7740. Function: effective_ip_discovery
  7741. 514 [p.prefix for p in self.children_set.all()]):
  7742. 515 yield str(fp)
  7743. 516
  7744. 517 @property
  7745. 518 def effective_ip_discovery(self):
  7746. 519 if self.enable_ip_discovery == "I":
  7747. 520 if self.parent:
  7748. 521 ==> return self.parent.effective_ip_discovery
  7749. 522 else:
  7750. 523 return "E"
  7751. 524 else:
  7752. 525 return self.enable_ip_discovery
  7753. 526
  7754. 527
  7755. Variables:
  7756. self = <Prefix: Global(6): ::/0>
  7757. ------------------------------------------------------------------------
  7758. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7759. Function: effective_ip_discovery
  7760. 514 [p.prefix for p in self.children_set.all()]):
  7761. 515 yield str(fp)
  7762. 516
  7763. 517 @property
  7764. 518 def effective_ip_discovery(self):
  7765. 519 if self.enable_ip_discovery == "I":
  7766. 520 if self.parent:
  7767. 521 ==> return self.parent.effective_ip_discovery
  7768. 522 else:
  7769. 523 return "E"
  7770. 524 else:
  7771. 525 return self.enable_ip_discovery
  7772. 526
  7773. 527
  7774. Variables:
  7775. self = <Prefix: Global(6): ::/0>
  7776. ------------------------------------------------------------------------
  7777. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7778. Function: effective_ip_discovery
  7779. 514 [p.prefix for p in self.children_set.all()]):
  7780. 515 yield str(fp)
  7781. 516
  7782. 517 @property
  7783. 518 def effective_ip_discovery(self):
  7784. 519 if self.enable_ip_discovery == "I":
  7785. 520 if self.parent:
  7786. 521 ==> return self.parent.effective_ip_discovery
  7787. 522 else:
  7788. 523 return "E"
  7789. 524 else:
  7790. 525 return self.enable_ip_discovery
  7791. 526
  7792. 527
  7793. Variables:
  7794. self = <Prefix: Global(6): ::/0>
  7795. ------------------------------------------------------------------------
  7796. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7797. Function: effective_ip_discovery
  7798. 514 [p.prefix for p in self.children_set.all()]):
  7799. 515 yield str(fp)
  7800. 516
  7801. 517 @property
  7802. 518 def effective_ip_discovery(self):
  7803. 519 if self.enable_ip_discovery == "I":
  7804. 520 if self.parent:
  7805. 521 ==> return self.parent.effective_ip_discovery
  7806. 522 else:
  7807. 523 return "E"
  7808. 524 else:
  7809. 525 return self.enable_ip_discovery
  7810. 526
  7811. 527
  7812. Variables:
  7813. self = <Prefix: Global(6): ::/0>
  7814. ------------------------------------------------------------------------
  7815. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7816. Function: effective_ip_discovery
  7817. 514 [p.prefix for p in self.children_set.all()]):
  7818. 515 yield str(fp)
  7819. 516
  7820. 517 @property
  7821. 518 def effective_ip_discovery(self):
  7822. 519 if self.enable_ip_discovery == "I":
  7823. 520 if self.parent:
  7824. 521 ==> return self.parent.effective_ip_discovery
  7825. 522 else:
  7826. 523 return "E"
  7827. 524 else:
  7828. 525 return self.enable_ip_discovery
  7829. 526
  7830. 527
  7831. Variables:
  7832. self = <Prefix: Global(6): ::/0>
  7833. ------------------------------------------------------------------------
  7834. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7835. Function: effective_ip_discovery
  7836. 514 [p.prefix for p in self.children_set.all()]):
  7837. 515 yield str(fp)
  7838. 516
  7839. 517 @property
  7840. 518 def effective_ip_discovery(self):
  7841. 519 if self.enable_ip_discovery == "I":
  7842. 520 if self.parent:
  7843. 521 ==> return self.parent.effective_ip_discovery
  7844. 522 else:
  7845. 523 return "E"
  7846. 524 else:
  7847. 525 return self.enable_ip_discovery
  7848. 526
  7849. 527
  7850. Variables:
  7851. self = <Prefix: Global(6): ::/0>
  7852. ------------------------------------------------------------------------
  7853. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7854. Function: effective_ip_discovery
  7855. 514 [p.prefix for p in self.children_set.all()]):
  7856. 515 yield str(fp)
  7857. 516
  7858. 517 @property
  7859. 518 def effective_ip_discovery(self):
  7860. 519 if self.enable_ip_discovery == "I":
  7861. 520 if self.parent:
  7862. 521 ==> return self.parent.effective_ip_discovery
  7863. 522 else:
  7864. 523 return "E"
  7865. 524 else:
  7866. 525 return self.enable_ip_discovery
  7867. 526
  7868. 527
  7869. Variables:
  7870. self = <Prefix: Global(6): ::/0>
  7871. ------------------------------------------------------------------------
  7872. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7873. Function: effective_ip_discovery
  7874. 514 [p.prefix for p in self.children_set.all()]):
  7875. 515 yield str(fp)
  7876. 516
  7877. 517 @property
  7878. 518 def effective_ip_discovery(self):
  7879. 519 if self.enable_ip_discovery == "I":
  7880. 520 if self.parent:
  7881. 521 ==> return self.parent.effective_ip_discovery
  7882. 522 else:
  7883. 523 return "E"
  7884. 524 else:
  7885. 525 return self.enable_ip_discovery
  7886. 526
  7887. 527
  7888. Variables:
  7889. self = <Prefix: Global(6): ::/0>
  7890. ------------------------------------------------------------------------
  7891. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7892. Function: effective_ip_discovery
  7893. 514 [p.prefix for p in self.children_set.all()]):
  7894. 515 yield str(fp)
  7895. 516
  7896. 517 @property
  7897. 518 def effective_ip_discovery(self):
  7898. 519 if self.enable_ip_discovery == "I":
  7899. 520 if self.parent:
  7900. 521 ==> return self.parent.effective_ip_discovery
  7901. 522 else:
  7902. 523 return "E"
  7903. 524 else:
  7904. 525 return self.enable_ip_discovery
  7905. 526
  7906. 527
  7907. Variables:
  7908. self = <Prefix: Global(6): ::/0>
  7909. ------------------------------------------------------------------------
  7910. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7911. Function: effective_ip_discovery
  7912. 514 [p.prefix for p in self.children_set.all()]):
  7913. 515 yield str(fp)
  7914. 516
  7915. 517 @property
  7916. 518 def effective_ip_discovery(self):
  7917. 519 if self.enable_ip_discovery == "I":
  7918. 520 if self.parent:
  7919. 521 ==> return self.parent.effective_ip_discovery
  7920. 522 else:
  7921. 523 return "E"
  7922. 524 else:
  7923. 525 return self.enable_ip_discovery
  7924. 526
  7925. 527
  7926. Variables:
  7927. self = <Prefix: Global(6): ::/0>
  7928. ------------------------------------------------------------------------
  7929. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7930. Function: effective_ip_discovery
  7931. 514 [p.prefix for p in self.children_set.all()]):
  7932. 515 yield str(fp)
  7933. 516
  7934. 517 @property
  7935. 518 def effective_ip_discovery(self):
  7936. 519 if self.enable_ip_discovery == "I":
  7937. 520 if self.parent:
  7938. 521 ==> return self.parent.effective_ip_discovery
  7939. 522 else:
  7940. 523 return "E"
  7941. 524 else:
  7942. 525 return self.enable_ip_discovery
  7943. 526
  7944. 527
  7945. Variables:
  7946. self = <Prefix: Global(6): ::/0>
  7947. ------------------------------------------------------------------------
  7948. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7949. Function: effective_ip_discovery
  7950. 514 [p.prefix for p in self.children_set.all()]):
  7951. 515 yield str(fp)
  7952. 516
  7953. 517 @property
  7954. 518 def effective_ip_discovery(self):
  7955. 519 if self.enable_ip_discovery == "I":
  7956. 520 if self.parent:
  7957. 521 ==> return self.parent.effective_ip_discovery
  7958. 522 else:
  7959. 523 return "E"
  7960. 524 else:
  7961. 525 return self.enable_ip_discovery
  7962. 526
  7963. 527
  7964. Variables:
  7965. self = <Prefix: Global(6): ::/0>
  7966. ------------------------------------------------------------------------
  7967. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7968. Function: effective_ip_discovery
  7969. 514 [p.prefix for p in self.children_set.all()]):
  7970. 515 yield str(fp)
  7971. 516
  7972. 517 @property
  7973. 518 def effective_ip_discovery(self):
  7974. 519 if self.enable_ip_discovery == "I":
  7975. 520 if self.parent:
  7976. 521 ==> return self.parent.effective_ip_discovery
  7977. 522 else:
  7978. 523 return "E"
  7979. 524 else:
  7980. 525 return self.enable_ip_discovery
  7981. 526
  7982. 527
  7983. Variables:
  7984. self = <Prefix: Global(6): ::/0>
  7985. ------------------------------------------------------------------------
  7986. File: /opt/noc/ip/models/prefix.py (Line: 521)
  7987. Function: effective_ip_discovery
  7988. 514 [p.prefix for p in self.children_set.all()]):
  7989. 515 yield str(fp)
  7990. 516
  7991. 517 @property
  7992. 518 def effective_ip_discovery(self):
  7993. 519 if self.enable_ip_discovery == "I":
  7994. 520 if self.parent:
  7995. 521 ==> return self.parent.effective_ip_discovery
  7996. 522 else:
  7997. 523 return "E"
  7998. 524 else:
  7999. 525 return self.enable_ip_discovery
  8000. 526
  8001. 527
  8002. Variables:
  8003. self = <Prefix: Global(6): ::/0>
  8004. ------------------------------------------------------------------------
  8005. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8006. Function: effective_ip_discovery
  8007. 514 [p.prefix for p in self.children_set.all()]):
  8008. 515 yield str(fp)
  8009. 516
  8010. 517 @property
  8011. 518 def effective_ip_discovery(self):
  8012. 519 if self.enable_ip_discovery == "I":
  8013. 520 if self.parent:
  8014. 521 ==> return self.parent.effective_ip_discovery
  8015. 522 else:
  8016. 523 return "E"
  8017. 524 else:
  8018. 525 return self.enable_ip_discovery
  8019. 526
  8020. 527
  8021. Variables:
  8022. self = <Prefix: Global(6): ::/0>
  8023. ------------------------------------------------------------------------
  8024. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8025. Function: effective_ip_discovery
  8026. 514 [p.prefix for p in self.children_set.all()]):
  8027. 515 yield str(fp)
  8028. 516
  8029. 517 @property
  8030. 518 def effective_ip_discovery(self):
  8031. 519 if self.enable_ip_discovery == "I":
  8032. 520 if self.parent:
  8033. 521 ==> return self.parent.effective_ip_discovery
  8034. 522 else:
  8035. 523 return "E"
  8036. 524 else:
  8037. 525 return self.enable_ip_discovery
  8038. 526
  8039. 527
  8040. Variables:
  8041. self = <Prefix: Global(6): ::/0>
  8042. ------------------------------------------------------------------------
  8043. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8044. Function: effective_ip_discovery
  8045. 514 [p.prefix for p in self.children_set.all()]):
  8046. 515 yield str(fp)
  8047. 516
  8048. 517 @property
  8049. 518 def effective_ip_discovery(self):
  8050. 519 if self.enable_ip_discovery == "I":
  8051. 520 if self.parent:
  8052. 521 ==> return self.parent.effective_ip_discovery
  8053. 522 else:
  8054. 523 return "E"
  8055. 524 else:
  8056. 525 return self.enable_ip_discovery
  8057. 526
  8058. 527
  8059. Variables:
  8060. self = <Prefix: Global(6): ::/0>
  8061. ------------------------------------------------------------------------
  8062. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8063. Function: effective_ip_discovery
  8064. 514 [p.prefix for p in self.children_set.all()]):
  8065. 515 yield str(fp)
  8066. 516
  8067. 517 @property
  8068. 518 def effective_ip_discovery(self):
  8069. 519 if self.enable_ip_discovery == "I":
  8070. 520 if self.parent:
  8071. 521 ==> return self.parent.effective_ip_discovery
  8072. 522 else:
  8073. 523 return "E"
  8074. 524 else:
  8075. 525 return self.enable_ip_discovery
  8076. 526
  8077. 527
  8078. Variables:
  8079. self = <Prefix: Global(6): ::/0>
  8080. ------------------------------------------------------------------------
  8081. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8082. Function: effective_ip_discovery
  8083. 514 [p.prefix for p in self.children_set.all()]):
  8084. 515 yield str(fp)
  8085. 516
  8086. 517 @property
  8087. 518 def effective_ip_discovery(self):
  8088. 519 if self.enable_ip_discovery == "I":
  8089. 520 if self.parent:
  8090. 521 ==> return self.parent.effective_ip_discovery
  8091. 522 else:
  8092. 523 return "E"
  8093. 524 else:
  8094. 525 return self.enable_ip_discovery
  8095. 526
  8096. 527
  8097. Variables:
  8098. self = <Prefix: Global(6): ::/0>
  8099. ------------------------------------------------------------------------
  8100. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8101. Function: effective_ip_discovery
  8102. 514 [p.prefix for p in self.children_set.all()]):
  8103. 515 yield str(fp)
  8104. 516
  8105. 517 @property
  8106. 518 def effective_ip_discovery(self):
  8107. 519 if self.enable_ip_discovery == "I":
  8108. 520 if self.parent:
  8109. 521 ==> return self.parent.effective_ip_discovery
  8110. 522 else:
  8111. 523 return "E"
  8112. 524 else:
  8113. 525 return self.enable_ip_discovery
  8114. 526
  8115. 527
  8116. Variables:
  8117. self = <Prefix: Global(6): ::/0>
  8118. ------------------------------------------------------------------------
  8119. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8120. Function: effective_ip_discovery
  8121. 514 [p.prefix for p in self.children_set.all()]):
  8122. 515 yield str(fp)
  8123. 516
  8124. 517 @property
  8125. 518 def effective_ip_discovery(self):
  8126. 519 if self.enable_ip_discovery == "I":
  8127. 520 if self.parent:
  8128. 521 ==> return self.parent.effective_ip_discovery
  8129. 522 else:
  8130. 523 return "E"
  8131. 524 else:
  8132. 525 return self.enable_ip_discovery
  8133. 526
  8134. 527
  8135. Variables:
  8136. self = <Prefix: Global(6): ::/0>
  8137. ------------------------------------------------------------------------
  8138. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8139. Function: effective_ip_discovery
  8140. 514 [p.prefix for p in self.children_set.all()]):
  8141. 515 yield str(fp)
  8142. 516
  8143. 517 @property
  8144. 518 def effective_ip_discovery(self):
  8145. 519 if self.enable_ip_discovery == "I":
  8146. 520 if self.parent:
  8147. 521 ==> return self.parent.effective_ip_discovery
  8148. 522 else:
  8149. 523 return "E"
  8150. 524 else:
  8151. 525 return self.enable_ip_discovery
  8152. 526
  8153. 527
  8154. Variables:
  8155. self = <Prefix: Global(6): ::/0>
  8156. ------------------------------------------------------------------------
  8157. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8158. Function: effective_ip_discovery
  8159. 514 [p.prefix for p in self.children_set.all()]):
  8160. 515 yield str(fp)
  8161. 516
  8162. 517 @property
  8163. 518 def effective_ip_discovery(self):
  8164. 519 if self.enable_ip_discovery == "I":
  8165. 520 if self.parent:
  8166. 521 ==> return self.parent.effective_ip_discovery
  8167. 522 else:
  8168. 523 return "E"
  8169. 524 else:
  8170. 525 return self.enable_ip_discovery
  8171. 526
  8172. 527
  8173. Variables:
  8174. self = <Prefix: Global(6): ::/0>
  8175. ------------------------------------------------------------------------
  8176. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8177. Function: effective_ip_discovery
  8178. 514 [p.prefix for p in self.children_set.all()]):
  8179. 515 yield str(fp)
  8180. 516
  8181. 517 @property
  8182. 518 def effective_ip_discovery(self):
  8183. 519 if self.enable_ip_discovery == "I":
  8184. 520 if self.parent:
  8185. 521 ==> return self.parent.effective_ip_discovery
  8186. 522 else:
  8187. 523 return "E"
  8188. 524 else:
  8189. 525 return self.enable_ip_discovery
  8190. 526
  8191. 527
  8192. Variables:
  8193. self = <Prefix: Global(6): ::/0>
  8194. ------------------------------------------------------------------------
  8195. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8196. Function: effective_ip_discovery
  8197. 514 [p.prefix for p in self.children_set.all()]):
  8198. 515 yield str(fp)
  8199. 516
  8200. 517 @property
  8201. 518 def effective_ip_discovery(self):
  8202. 519 if self.enable_ip_discovery == "I":
  8203. 520 if self.parent:
  8204. 521 ==> return self.parent.effective_ip_discovery
  8205. 522 else:
  8206. 523 return "E"
  8207. 524 else:
  8208. 525 return self.enable_ip_discovery
  8209. 526
  8210. 527
  8211. Variables:
  8212. self = <Prefix: Global(6): ::/0>
  8213. ------------------------------------------------------------------------
  8214. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8215. Function: effective_ip_discovery
  8216. 514 [p.prefix for p in self.children_set.all()]):
  8217. 515 yield str(fp)
  8218. 516
  8219. 517 @property
  8220. 518 def effective_ip_discovery(self):
  8221. 519 if self.enable_ip_discovery == "I":
  8222. 520 if self.parent:
  8223. 521 ==> return self.parent.effective_ip_discovery
  8224. 522 else:
  8225. 523 return "E"
  8226. 524 else:
  8227. 525 return self.enable_ip_discovery
  8228. 526
  8229. 527
  8230. Variables:
  8231. self = <Prefix: Global(6): ::/0>
  8232. ------------------------------------------------------------------------
  8233. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8234. Function: effective_ip_discovery
  8235. 514 [p.prefix for p in self.children_set.all()]):
  8236. 515 yield str(fp)
  8237. 516
  8238. 517 @property
  8239. 518 def effective_ip_discovery(self):
  8240. 519 if self.enable_ip_discovery == "I":
  8241. 520 if self.parent:
  8242. 521 ==> return self.parent.effective_ip_discovery
  8243. 522 else:
  8244. 523 return "E"
  8245. 524 else:
  8246. 525 return self.enable_ip_discovery
  8247. 526
  8248. 527
  8249. Variables:
  8250. self = <Prefix: Global(6): ::/0>
  8251. ------------------------------------------------------------------------
  8252. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8253. Function: effective_ip_discovery
  8254. 514 [p.prefix for p in self.children_set.all()]):
  8255. 515 yield str(fp)
  8256. 516
  8257. 517 @property
  8258. 518 def effective_ip_discovery(self):
  8259. 519 if self.enable_ip_discovery == "I":
  8260. 520 if self.parent:
  8261. 521 ==> return self.parent.effective_ip_discovery
  8262. 522 else:
  8263. 523 return "E"
  8264. 524 else:
  8265. 525 return self.enable_ip_discovery
  8266. 526
  8267. 527
  8268. Variables:
  8269. self = <Prefix: Global(6): ::/0>
  8270. ------------------------------------------------------------------------
  8271. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8272. Function: effective_ip_discovery
  8273. 514 [p.prefix for p in self.children_set.all()]):
  8274. 515 yield str(fp)
  8275. 516
  8276. 517 @property
  8277. 518 def effective_ip_discovery(self):
  8278. 519 if self.enable_ip_discovery == "I":
  8279. 520 if self.parent:
  8280. 521 ==> return self.parent.effective_ip_discovery
  8281. 522 else:
  8282. 523 return "E"
  8283. 524 else:
  8284. 525 return self.enable_ip_discovery
  8285. 526
  8286. 527
  8287. Variables:
  8288. self = <Prefix: Global(6): ::/0>
  8289. ------------------------------------------------------------------------
  8290. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8291. Function: effective_ip_discovery
  8292. 514 [p.prefix for p in self.children_set.all()]):
  8293. 515 yield str(fp)
  8294. 516
  8295. 517 @property
  8296. 518 def effective_ip_discovery(self):
  8297. 519 if self.enable_ip_discovery == "I":
  8298. 520 if self.parent:
  8299. 521 ==> return self.parent.effective_ip_discovery
  8300. 522 else:
  8301. 523 return "E"
  8302. 524 else:
  8303. 525 return self.enable_ip_discovery
  8304. 526
  8305. 527
  8306. Variables:
  8307. self = <Prefix: Global(6): ::/0>
  8308. ------------------------------------------------------------------------
  8309. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8310. Function: effective_ip_discovery
  8311. 514 [p.prefix for p in self.children_set.all()]):
  8312. 515 yield str(fp)
  8313. 516
  8314. 517 @property
  8315. 518 def effective_ip_discovery(self):
  8316. 519 if self.enable_ip_discovery == "I":
  8317. 520 if self.parent:
  8318. 521 ==> return self.parent.effective_ip_discovery
  8319. 522 else:
  8320. 523 return "E"
  8321. 524 else:
  8322. 525 return self.enable_ip_discovery
  8323. 526
  8324. 527
  8325. Variables:
  8326. self = <Prefix: Global(6): ::/0>
  8327. ------------------------------------------------------------------------
  8328. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8329. Function: effective_ip_discovery
  8330. 514 [p.prefix for p in self.children_set.all()]):
  8331. 515 yield str(fp)
  8332. 516
  8333. 517 @property
  8334. 518 def effective_ip_discovery(self):
  8335. 519 if self.enable_ip_discovery == "I":
  8336. 520 if self.parent:
  8337. 521 ==> return self.parent.effective_ip_discovery
  8338. 522 else:
  8339. 523 return "E"
  8340. 524 else:
  8341. 525 return self.enable_ip_discovery
  8342. 526
  8343. 527
  8344. Variables:
  8345. self = <Prefix: Global(6): ::/0>
  8346. ------------------------------------------------------------------------
  8347. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8348. Function: effective_ip_discovery
  8349. 514 [p.prefix for p in self.children_set.all()]):
  8350. 515 yield str(fp)
  8351. 516
  8352. 517 @property
  8353. 518 def effective_ip_discovery(self):
  8354. 519 if self.enable_ip_discovery == "I":
  8355. 520 if self.parent:
  8356. 521 ==> return self.parent.effective_ip_discovery
  8357. 522 else:
  8358. 523 return "E"
  8359. 524 else:
  8360. 525 return self.enable_ip_discovery
  8361. 526
  8362. 527
  8363. Variables:
  8364. self = <Prefix: Global(6): ::/0>
  8365. ------------------------------------------------------------------------
  8366. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8367. Function: effective_ip_discovery
  8368. 514 [p.prefix for p in self.children_set.all()]):
  8369. 515 yield str(fp)
  8370. 516
  8371. 517 @property
  8372. 518 def effective_ip_discovery(self):
  8373. 519 if self.enable_ip_discovery == "I":
  8374. 520 if self.parent:
  8375. 521 ==> return self.parent.effective_ip_discovery
  8376. 522 else:
  8377. 523 return "E"
  8378. 524 else:
  8379. 525 return self.enable_ip_discovery
  8380. 526
  8381. 527
  8382. Variables:
  8383. self = <Prefix: Global(6): ::/0>
  8384. ------------------------------------------------------------------------
  8385. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8386. Function: effective_ip_discovery
  8387. 514 [p.prefix for p in self.children_set.all()]):
  8388. 515 yield str(fp)
  8389. 516
  8390. 517 @property
  8391. 518 def effective_ip_discovery(self):
  8392. 519 if self.enable_ip_discovery == "I":
  8393. 520 if self.parent:
  8394. 521 ==> return self.parent.effective_ip_discovery
  8395. 522 else:
  8396. 523 return "E"
  8397. 524 else:
  8398. 525 return self.enable_ip_discovery
  8399. 526
  8400. 527
  8401. Variables:
  8402. self = <Prefix: Global(6): ::/0>
  8403. ------------------------------------------------------------------------
  8404. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8405. Function: effective_ip_discovery
  8406. 514 [p.prefix for p in self.children_set.all()]):
  8407. 515 yield str(fp)
  8408. 516
  8409. 517 @property
  8410. 518 def effective_ip_discovery(self):
  8411. 519 if self.enable_ip_discovery == "I":
  8412. 520 if self.parent:
  8413. 521 ==> return self.parent.effective_ip_discovery
  8414. 522 else:
  8415. 523 return "E"
  8416. 524 else:
  8417. 525 return self.enable_ip_discovery
  8418. 526
  8419. 527
  8420. Variables:
  8421. self = <Prefix: Global(6): ::/0>
  8422. ------------------------------------------------------------------------
  8423. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8424. Function: effective_ip_discovery
  8425. 514 [p.prefix for p in self.children_set.all()]):
  8426. 515 yield str(fp)
  8427. 516
  8428. 517 @property
  8429. 518 def effective_ip_discovery(self):
  8430. 519 if self.enable_ip_discovery == "I":
  8431. 520 if self.parent:
  8432. 521 ==> return self.parent.effective_ip_discovery
  8433. 522 else:
  8434. 523 return "E"
  8435. 524 else:
  8436. 525 return self.enable_ip_discovery
  8437. 526
  8438. 527
  8439. Variables:
  8440. self = <Prefix: Global(6): ::/0>
  8441. ------------------------------------------------------------------------
  8442. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8443. Function: effective_ip_discovery
  8444. 514 [p.prefix for p in self.children_set.all()]):
  8445. 515 yield str(fp)
  8446. 516
  8447. 517 @property
  8448. 518 def effective_ip_discovery(self):
  8449. 519 if self.enable_ip_discovery == "I":
  8450. 520 if self.parent:
  8451. 521 ==> return self.parent.effective_ip_discovery
  8452. 522 else:
  8453. 523 return "E"
  8454. 524 else:
  8455. 525 return self.enable_ip_discovery
  8456. 526
  8457. 527
  8458. Variables:
  8459. self = <Prefix: Global(6): ::/0>
  8460. ------------------------------------------------------------------------
  8461. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8462. Function: effective_ip_discovery
  8463. 514 [p.prefix for p in self.children_set.all()]):
  8464. 515 yield str(fp)
  8465. 516
  8466. 517 @property
  8467. 518 def effective_ip_discovery(self):
  8468. 519 if self.enable_ip_discovery == "I":
  8469. 520 if self.parent:
  8470. 521 ==> return self.parent.effective_ip_discovery
  8471. 522 else:
  8472. 523 return "E"
  8473. 524 else:
  8474. 525 return self.enable_ip_discovery
  8475. 526
  8476. 527
  8477. Variables:
  8478. self = <Prefix: Global(6): ::/0>
  8479. ------------------------------------------------------------------------
  8480. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8481. Function: effective_ip_discovery
  8482. 514 [p.prefix for p in self.children_set.all()]):
  8483. 515 yield str(fp)
  8484. 516
  8485. 517 @property
  8486. 518 def effective_ip_discovery(self):
  8487. 519 if self.enable_ip_discovery == "I":
  8488. 520 if self.parent:
  8489. 521 ==> return self.parent.effective_ip_discovery
  8490. 522 else:
  8491. 523 return "E"
  8492. 524 else:
  8493. 525 return self.enable_ip_discovery
  8494. 526
  8495. 527
  8496. Variables:
  8497. self = <Prefix: Global(6): ::/0>
  8498. ------------------------------------------------------------------------
  8499. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8500. Function: effective_ip_discovery
  8501. 514 [p.prefix for p in self.children_set.all()]):
  8502. 515 yield str(fp)
  8503. 516
  8504. 517 @property
  8505. 518 def effective_ip_discovery(self):
  8506. 519 if self.enable_ip_discovery == "I":
  8507. 520 if self.parent:
  8508. 521 ==> return self.parent.effective_ip_discovery
  8509. 522 else:
  8510. 523 return "E"
  8511. 524 else:
  8512. 525 return self.enable_ip_discovery
  8513. 526
  8514. 527
  8515. Variables:
  8516. self = <Prefix: Global(6): ::/0>
  8517. ------------------------------------------------------------------------
  8518. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8519. Function: effective_ip_discovery
  8520. 514 [p.prefix for p in self.children_set.all()]):
  8521. 515 yield str(fp)
  8522. 516
  8523. 517 @property
  8524. 518 def effective_ip_discovery(self):
  8525. 519 if self.enable_ip_discovery == "I":
  8526. 520 if self.parent:
  8527. 521 ==> return self.parent.effective_ip_discovery
  8528. 522 else:
  8529. 523 return "E"
  8530. 524 else:
  8531. 525 return self.enable_ip_discovery
  8532. 526
  8533. 527
  8534. Variables:
  8535. self = <Prefix: Global(6): ::/0>
  8536. ------------------------------------------------------------------------
  8537. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8538. Function: effective_ip_discovery
  8539. 514 [p.prefix for p in self.children_set.all()]):
  8540. 515 yield str(fp)
  8541. 516
  8542. 517 @property
  8543. 518 def effective_ip_discovery(self):
  8544. 519 if self.enable_ip_discovery == "I":
  8545. 520 if self.parent:
  8546. 521 ==> return self.parent.effective_ip_discovery
  8547. 522 else:
  8548. 523 return "E"
  8549. 524 else:
  8550. 525 return self.enable_ip_discovery
  8551. 526
  8552. 527
  8553. Variables:
  8554. self = <Prefix: Global(6): ::/0>
  8555. ------------------------------------------------------------------------
  8556. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8557. Function: effective_ip_discovery
  8558. 514 [p.prefix for p in self.children_set.all()]):
  8559. 515 yield str(fp)
  8560. 516
  8561. 517 @property
  8562. 518 def effective_ip_discovery(self):
  8563. 519 if self.enable_ip_discovery == "I":
  8564. 520 if self.parent:
  8565. 521 ==> return self.parent.effective_ip_discovery
  8566. 522 else:
  8567. 523 return "E"
  8568. 524 else:
  8569. 525 return self.enable_ip_discovery
  8570. 526
  8571. 527
  8572. Variables:
  8573. self = <Prefix: Global(6): ::/0>
  8574. ------------------------------------------------------------------------
  8575. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8576. Function: effective_ip_discovery
  8577. 514 [p.prefix for p in self.children_set.all()]):
  8578. 515 yield str(fp)
  8579. 516
  8580. 517 @property
  8581. 518 def effective_ip_discovery(self):
  8582. 519 if self.enable_ip_discovery == "I":
  8583. 520 if self.parent:
  8584. 521 ==> return self.parent.effective_ip_discovery
  8585. 522 else:
  8586. 523 return "E"
  8587. 524 else:
  8588. 525 return self.enable_ip_discovery
  8589. 526
  8590. 527
  8591. Variables:
  8592. self = <Prefix: Global(6): ::/0>
  8593. ------------------------------------------------------------------------
  8594. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8595. Function: effective_ip_discovery
  8596. 514 [p.prefix for p in self.children_set.all()]):
  8597. 515 yield str(fp)
  8598. 516
  8599. 517 @property
  8600. 518 def effective_ip_discovery(self):
  8601. 519 if self.enable_ip_discovery == "I":
  8602. 520 if self.parent:
  8603. 521 ==> return self.parent.effective_ip_discovery
  8604. 522 else:
  8605. 523 return "E"
  8606. 524 else:
  8607. 525 return self.enable_ip_discovery
  8608. 526
  8609. 527
  8610. Variables:
  8611. self = <Prefix: Global(6): ::/0>
  8612. ------------------------------------------------------------------------
  8613. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8614. Function: effective_ip_discovery
  8615. 514 [p.prefix for p in self.children_set.all()]):
  8616. 515 yield str(fp)
  8617. 516
  8618. 517 @property
  8619. 518 def effective_ip_discovery(self):
  8620. 519 if self.enable_ip_discovery == "I":
  8621. 520 if self.parent:
  8622. 521 ==> return self.parent.effective_ip_discovery
  8623. 522 else:
  8624. 523 return "E"
  8625. 524 else:
  8626. 525 return self.enable_ip_discovery
  8627. 526
  8628. 527
  8629. Variables:
  8630. self = <Prefix: Global(6): ::/0>
  8631. ------------------------------------------------------------------------
  8632. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8633. Function: effective_ip_discovery
  8634. 514 [p.prefix for p in self.children_set.all()]):
  8635. 515 yield str(fp)
  8636. 516
  8637. 517 @property
  8638. 518 def effective_ip_discovery(self):
  8639. 519 if self.enable_ip_discovery == "I":
  8640. 520 if self.parent:
  8641. 521 ==> return self.parent.effective_ip_discovery
  8642. 522 else:
  8643. 523 return "E"
  8644. 524 else:
  8645. 525 return self.enable_ip_discovery
  8646. 526
  8647. 527
  8648. Variables:
  8649. self = <Prefix: Global(6): ::/0>
  8650. ------------------------------------------------------------------------
  8651. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8652. Function: effective_ip_discovery
  8653. 514 [p.prefix for p in self.children_set.all()]):
  8654. 515 yield str(fp)
  8655. 516
  8656. 517 @property
  8657. 518 def effective_ip_discovery(self):
  8658. 519 if self.enable_ip_discovery == "I":
  8659. 520 if self.parent:
  8660. 521 ==> return self.parent.effective_ip_discovery
  8661. 522 else:
  8662. 523 return "E"
  8663. 524 else:
  8664. 525 return self.enable_ip_discovery
  8665. 526
  8666. 527
  8667. Variables:
  8668. self = <Prefix: Global(6): ::/0>
  8669. ------------------------------------------------------------------------
  8670. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8671. Function: effective_ip_discovery
  8672. 514 [p.prefix for p in self.children_set.all()]):
  8673. 515 yield str(fp)
  8674. 516
  8675. 517 @property
  8676. 518 def effective_ip_discovery(self):
  8677. 519 if self.enable_ip_discovery == "I":
  8678. 520 if self.parent:
  8679. 521 ==> return self.parent.effective_ip_discovery
  8680. 522 else:
  8681. 523 return "E"
  8682. 524 else:
  8683. 525 return self.enable_ip_discovery
  8684. 526
  8685. 527
  8686. Variables:
  8687. self = <Prefix: Global(6): ::/0>
  8688. ------------------------------------------------------------------------
  8689. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8690. Function: effective_ip_discovery
  8691. 514 [p.prefix for p in self.children_set.all()]):
  8692. 515 yield str(fp)
  8693. 516
  8694. 517 @property
  8695. 518 def effective_ip_discovery(self):
  8696. 519 if self.enable_ip_discovery == "I":
  8697. 520 if self.parent:
  8698. 521 ==> return self.parent.effective_ip_discovery
  8699. 522 else:
  8700. 523 return "E"
  8701. 524 else:
  8702. 525 return self.enable_ip_discovery
  8703. 526
  8704. 527
  8705. Variables:
  8706. self = <Prefix: Global(6): ::/0>
  8707. ------------------------------------------------------------------------
  8708. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8709. Function: effective_ip_discovery
  8710. 514 [p.prefix for p in self.children_set.all()]):
  8711. 515 yield str(fp)
  8712. 516
  8713. 517 @property
  8714. 518 def effective_ip_discovery(self):
  8715. 519 if self.enable_ip_discovery == "I":
  8716. 520 if self.parent:
  8717. 521 ==> return self.parent.effective_ip_discovery
  8718. 522 else:
  8719. 523 return "E"
  8720. 524 else:
  8721. 525 return self.enable_ip_discovery
  8722. 526
  8723. 527
  8724. Variables:
  8725. self = <Prefix: Global(6): ::/0>
  8726. ------------------------------------------------------------------------
  8727. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8728. Function: effective_ip_discovery
  8729. 514 [p.prefix for p in self.children_set.all()]):
  8730. 515 yield str(fp)
  8731. 516
  8732. 517 @property
  8733. 518 def effective_ip_discovery(self):
  8734. 519 if self.enable_ip_discovery == "I":
  8735. 520 if self.parent:
  8736. 521 ==> return self.parent.effective_ip_discovery
  8737. 522 else:
  8738. 523 return "E"
  8739. 524 else:
  8740. 525 return self.enable_ip_discovery
  8741. 526
  8742. 527
  8743. Variables:
  8744. self = <Prefix: Global(6): ::/0>
  8745. ------------------------------------------------------------------------
  8746. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8747. Function: effective_ip_discovery
  8748. 514 [p.prefix for p in self.children_set.all()]):
  8749. 515 yield str(fp)
  8750. 516
  8751. 517 @property
  8752. 518 def effective_ip_discovery(self):
  8753. 519 if self.enable_ip_discovery == "I":
  8754. 520 if self.parent:
  8755. 521 ==> return self.parent.effective_ip_discovery
  8756. 522 else:
  8757. 523 return "E"
  8758. 524 else:
  8759. 525 return self.enable_ip_discovery
  8760. 526
  8761. 527
  8762. Variables:
  8763. self = <Prefix: Global(6): ::/0>
  8764. ------------------------------------------------------------------------
  8765. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8766. Function: effective_ip_discovery
  8767. 514 [p.prefix for p in self.children_set.all()]):
  8768. 515 yield str(fp)
  8769. 516
  8770. 517 @property
  8771. 518 def effective_ip_discovery(self):
  8772. 519 if self.enable_ip_discovery == "I":
  8773. 520 if self.parent:
  8774. 521 ==> return self.parent.effective_ip_discovery
  8775. 522 else:
  8776. 523 return "E"
  8777. 524 else:
  8778. 525 return self.enable_ip_discovery
  8779. 526
  8780. 527
  8781. Variables:
  8782. self = <Prefix: Global(6): ::/0>
  8783. ------------------------------------------------------------------------
  8784. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8785. Function: effective_ip_discovery
  8786. 514 [p.prefix for p in self.children_set.all()]):
  8787. 515 yield str(fp)
  8788. 516
  8789. 517 @property
  8790. 518 def effective_ip_discovery(self):
  8791. 519 if self.enable_ip_discovery == "I":
  8792. 520 if self.parent:
  8793. 521 ==> return self.parent.effective_ip_discovery
  8794. 522 else:
  8795. 523 return "E"
  8796. 524 else:
  8797. 525 return self.enable_ip_discovery
  8798. 526
  8799. 527
  8800. Variables:
  8801. self = <Prefix: Global(6): ::/0>
  8802. ------------------------------------------------------------------------
  8803. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8804. Function: effective_ip_discovery
  8805. 514 [p.prefix for p in self.children_set.all()]):
  8806. 515 yield str(fp)
  8807. 516
  8808. 517 @property
  8809. 518 def effective_ip_discovery(self):
  8810. 519 if self.enable_ip_discovery == "I":
  8811. 520 if self.parent:
  8812. 521 ==> return self.parent.effective_ip_discovery
  8813. 522 else:
  8814. 523 return "E"
  8815. 524 else:
  8816. 525 return self.enable_ip_discovery
  8817. 526
  8818. 527
  8819. Variables:
  8820. self = <Prefix: Global(6): ::/0>
  8821. ------------------------------------------------------------------------
  8822. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8823. Function: effective_ip_discovery
  8824. 514 [p.prefix for p in self.children_set.all()]):
  8825. 515 yield str(fp)
  8826. 516
  8827. 517 @property
  8828. 518 def effective_ip_discovery(self):
  8829. 519 if self.enable_ip_discovery == "I":
  8830. 520 if self.parent:
  8831. 521 ==> return self.parent.effective_ip_discovery
  8832. 522 else:
  8833. 523 return "E"
  8834. 524 else:
  8835. 525 return self.enable_ip_discovery
  8836. 526
  8837. 527
  8838. Variables:
  8839. self = <Prefix: Global(6): ::/0>
  8840. ------------------------------------------------------------------------
  8841. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8842. Function: effective_ip_discovery
  8843. 514 [p.prefix for p in self.children_set.all()]):
  8844. 515 yield str(fp)
  8845. 516
  8846. 517 @property
  8847. 518 def effective_ip_discovery(self):
  8848. 519 if self.enable_ip_discovery == "I":
  8849. 520 if self.parent:
  8850. 521 ==> return self.parent.effective_ip_discovery
  8851. 522 else:
  8852. 523 return "E"
  8853. 524 else:
  8854. 525 return self.enable_ip_discovery
  8855. 526
  8856. 527
  8857. Variables:
  8858. self = <Prefix: Global(6): ::/0>
  8859. ------------------------------------------------------------------------
  8860. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8861. Function: effective_ip_discovery
  8862. 514 [p.prefix for p in self.children_set.all()]):
  8863. 515 yield str(fp)
  8864. 516
  8865. 517 @property
  8866. 518 def effective_ip_discovery(self):
  8867. 519 if self.enable_ip_discovery == "I":
  8868. 520 if self.parent:
  8869. 521 ==> return self.parent.effective_ip_discovery
  8870. 522 else:
  8871. 523 return "E"
  8872. 524 else:
  8873. 525 return self.enable_ip_discovery
  8874. 526
  8875. 527
  8876. Variables:
  8877. self = <Prefix: Global(6): ::/0>
  8878. ------------------------------------------------------------------------
  8879. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8880. Function: effective_ip_discovery
  8881. 514 [p.prefix for p in self.children_set.all()]):
  8882. 515 yield str(fp)
  8883. 516
  8884. 517 @property
  8885. 518 def effective_ip_discovery(self):
  8886. 519 if self.enable_ip_discovery == "I":
  8887. 520 if self.parent:
  8888. 521 ==> return self.parent.effective_ip_discovery
  8889. 522 else:
  8890. 523 return "E"
  8891. 524 else:
  8892. 525 return self.enable_ip_discovery
  8893. 526
  8894. 527
  8895. Variables:
  8896. self = <Prefix: Global(6): ::/0>
  8897. ------------------------------------------------------------------------
  8898. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8899. Function: effective_ip_discovery
  8900. 514 [p.prefix for p in self.children_set.all()]):
  8901. 515 yield str(fp)
  8902. 516
  8903. 517 @property
  8904. 518 def effective_ip_discovery(self):
  8905. 519 if self.enable_ip_discovery == "I":
  8906. 520 if self.parent:
  8907. 521 ==> return self.parent.effective_ip_discovery
  8908. 522 else:
  8909. 523 return "E"
  8910. 524 else:
  8911. 525 return self.enable_ip_discovery
  8912. 526
  8913. 527
  8914. Variables:
  8915. self = <Prefix: Global(6): ::/0>
  8916. ------------------------------------------------------------------------
  8917. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8918. Function: effective_ip_discovery
  8919. 514 [p.prefix for p in self.children_set.all()]):
  8920. 515 yield str(fp)
  8921. 516
  8922. 517 @property
  8923. 518 def effective_ip_discovery(self):
  8924. 519 if self.enable_ip_discovery == "I":
  8925. 520 if self.parent:
  8926. 521 ==> return self.parent.effective_ip_discovery
  8927. 522 else:
  8928. 523 return "E"
  8929. 524 else:
  8930. 525 return self.enable_ip_discovery
  8931. 526
  8932. 527
  8933. Variables:
  8934. self = <Prefix: Global(6): ::/0>
  8935. ------------------------------------------------------------------------
  8936. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8937. Function: effective_ip_discovery
  8938. 514 [p.prefix for p in self.children_set.all()]):
  8939. 515 yield str(fp)
  8940. 516
  8941. 517 @property
  8942. 518 def effective_ip_discovery(self):
  8943. 519 if self.enable_ip_discovery == "I":
  8944. 520 if self.parent:
  8945. 521 ==> return self.parent.effective_ip_discovery
  8946. 522 else:
  8947. 523 return "E"
  8948. 524 else:
  8949. 525 return self.enable_ip_discovery
  8950. 526
  8951. 527
  8952. Variables:
  8953. self = <Prefix: Global(6): ::/0>
  8954. ------------------------------------------------------------------------
  8955. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8956. Function: effective_ip_discovery
  8957. 514 [p.prefix for p in self.children_set.all()]):
  8958. 515 yield str(fp)
  8959. 516
  8960. 517 @property
  8961. 518 def effective_ip_discovery(self):
  8962. 519 if self.enable_ip_discovery == "I":
  8963. 520 if self.parent:
  8964. 521 ==> return self.parent.effective_ip_discovery
  8965. 522 else:
  8966. 523 return "E"
  8967. 524 else:
  8968. 525 return self.enable_ip_discovery
  8969. 526
  8970. 527
  8971. Variables:
  8972. self = <Prefix: Global(6): ::/0>
  8973. ------------------------------------------------------------------------
  8974. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8975. Function: effective_ip_discovery
  8976. 514 [p.prefix for p in self.children_set.all()]):
  8977. 515 yield str(fp)
  8978. 516
  8979. 517 @property
  8980. 518 def effective_ip_discovery(self):
  8981. 519 if self.enable_ip_discovery == "I":
  8982. 520 if self.parent:
  8983. 521 ==> return self.parent.effective_ip_discovery
  8984. 522 else:
  8985. 523 return "E"
  8986. 524 else:
  8987. 525 return self.enable_ip_discovery
  8988. 526
  8989. 527
  8990. Variables:
  8991. self = <Prefix: Global(6): ::/0>
  8992. ------------------------------------------------------------------------
  8993. File: /opt/noc/ip/models/prefix.py (Line: 521)
  8994. Function: effective_ip_discovery
  8995. 514 [p.prefix for p in self.children_set.all()]):
  8996. 515 yield str(fp)
  8997. 516
  8998. 517 @property
  8999. 518 def effective_ip_discovery(self):
  9000. 519 if self.enable_ip_discovery == "I":
  9001. 520 if self.parent:
  9002. 521 ==> return self.parent.effective_ip_discovery
  9003. 522 else:
  9004. 523 return "E"
  9005. 524 else:
  9006. 525 return self.enable_ip_discovery
  9007. 526
  9008. 527
  9009. Variables:
  9010. self = <Prefix: Global(6): ::/0>
  9011. ------------------------------------------------------------------------
  9012. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9013. Function: effective_ip_discovery
  9014. 514 [p.prefix for p in self.children_set.all()]):
  9015. 515 yield str(fp)
  9016. 516
  9017. 517 @property
  9018. 518 def effective_ip_discovery(self):
  9019. 519 if self.enable_ip_discovery == "I":
  9020. 520 if self.parent:
  9021. 521 ==> return self.parent.effective_ip_discovery
  9022. 522 else:
  9023. 523 return "E"
  9024. 524 else:
  9025. 525 return self.enable_ip_discovery
  9026. 526
  9027. 527
  9028. Variables:
  9029. self = <Prefix: Global(6): ::/0>
  9030. ------------------------------------------------------------------------
  9031. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9032. Function: effective_ip_discovery
  9033. 514 [p.prefix for p in self.children_set.all()]):
  9034. 515 yield str(fp)
  9035. 516
  9036. 517 @property
  9037. 518 def effective_ip_discovery(self):
  9038. 519 if self.enable_ip_discovery == "I":
  9039. 520 if self.parent:
  9040. 521 ==> return self.parent.effective_ip_discovery
  9041. 522 else:
  9042. 523 return "E"
  9043. 524 else:
  9044. 525 return self.enable_ip_discovery
  9045. 526
  9046. 527
  9047. Variables:
  9048. self = <Prefix: Global(6): ::/0>
  9049. ------------------------------------------------------------------------
  9050. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9051. Function: effective_ip_discovery
  9052. 514 [p.prefix for p in self.children_set.all()]):
  9053. 515 yield str(fp)
  9054. 516
  9055. 517 @property
  9056. 518 def effective_ip_discovery(self):
  9057. 519 if self.enable_ip_discovery == "I":
  9058. 520 if self.parent:
  9059. 521 ==> return self.parent.effective_ip_discovery
  9060. 522 else:
  9061. 523 return "E"
  9062. 524 else:
  9063. 525 return self.enable_ip_discovery
  9064. 526
  9065. 527
  9066. Variables:
  9067. self = <Prefix: Global(6): ::/0>
  9068. ------------------------------------------------------------------------
  9069. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9070. Function: effective_ip_discovery
  9071. 514 [p.prefix for p in self.children_set.all()]):
  9072. 515 yield str(fp)
  9073. 516
  9074. 517 @property
  9075. 518 def effective_ip_discovery(self):
  9076. 519 if self.enable_ip_discovery == "I":
  9077. 520 if self.parent:
  9078. 521 ==> return self.parent.effective_ip_discovery
  9079. 522 else:
  9080. 523 return "E"
  9081. 524 else:
  9082. 525 return self.enable_ip_discovery
  9083. 526
  9084. 527
  9085. Variables:
  9086. self = <Prefix: Global(6): ::/0>
  9087. ------------------------------------------------------------------------
  9088. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9089. Function: effective_ip_discovery
  9090. 514 [p.prefix for p in self.children_set.all()]):
  9091. 515 yield str(fp)
  9092. 516
  9093. 517 @property
  9094. 518 def effective_ip_discovery(self):
  9095. 519 if self.enable_ip_discovery == "I":
  9096. 520 if self.parent:
  9097. 521 ==> return self.parent.effective_ip_discovery
  9098. 522 else:
  9099. 523 return "E"
  9100. 524 else:
  9101. 525 return self.enable_ip_discovery
  9102. 526
  9103. 527
  9104. Variables:
  9105. self = <Prefix: Global(6): ::/0>
  9106. ------------------------------------------------------------------------
  9107. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9108. Function: effective_ip_discovery
  9109. 514 [p.prefix for p in self.children_set.all()]):
  9110. 515 yield str(fp)
  9111. 516
  9112. 517 @property
  9113. 518 def effective_ip_discovery(self):
  9114. 519 if self.enable_ip_discovery == "I":
  9115. 520 if self.parent:
  9116. 521 ==> return self.parent.effective_ip_discovery
  9117. 522 else:
  9118. 523 return "E"
  9119. 524 else:
  9120. 525 return self.enable_ip_discovery
  9121. 526
  9122. 527
  9123. Variables:
  9124. self = <Prefix: Global(6): ::/0>
  9125. ------------------------------------------------------------------------
  9126. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9127. Function: effective_ip_discovery
  9128. 514 [p.prefix for p in self.children_set.all()]):
  9129. 515 yield str(fp)
  9130. 516
  9131. 517 @property
  9132. 518 def effective_ip_discovery(self):
  9133. 519 if self.enable_ip_discovery == "I":
  9134. 520 if self.parent:
  9135. 521 ==> return self.parent.effective_ip_discovery
  9136. 522 else:
  9137. 523 return "E"
  9138. 524 else:
  9139. 525 return self.enable_ip_discovery
  9140. 526
  9141. 527
  9142. Variables:
  9143. self = <Prefix: Global(6): ::/0>
  9144. ------------------------------------------------------------------------
  9145. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9146. Function: effective_ip_discovery
  9147. 514 [p.prefix for p in self.children_set.all()]):
  9148. 515 yield str(fp)
  9149. 516
  9150. 517 @property
  9151. 518 def effective_ip_discovery(self):
  9152. 519 if self.enable_ip_discovery == "I":
  9153. 520 if self.parent:
  9154. 521 ==> return self.parent.effective_ip_discovery
  9155. 522 else:
  9156. 523 return "E"
  9157. 524 else:
  9158. 525 return self.enable_ip_discovery
  9159. 526
  9160. 527
  9161. Variables:
  9162. self = <Prefix: Global(6): ::/0>
  9163. ------------------------------------------------------------------------
  9164. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9165. Function: effective_ip_discovery
  9166. 514 [p.prefix for p in self.children_set.all()]):
  9167. 515 yield str(fp)
  9168. 516
  9169. 517 @property
  9170. 518 def effective_ip_discovery(self):
  9171. 519 if self.enable_ip_discovery == "I":
  9172. 520 if self.parent:
  9173. 521 ==> return self.parent.effective_ip_discovery
  9174. 522 else:
  9175. 523 return "E"
  9176. 524 else:
  9177. 525 return self.enable_ip_discovery
  9178. 526
  9179. 527
  9180. Variables:
  9181. self = <Prefix: Global(6): ::/0>
  9182. ------------------------------------------------------------------------
  9183. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9184. Function: effective_ip_discovery
  9185. 514 [p.prefix for p in self.children_set.all()]):
  9186. 515 yield str(fp)
  9187. 516
  9188. 517 @property
  9189. 518 def effective_ip_discovery(self):
  9190. 519 if self.enable_ip_discovery == "I":
  9191. 520 if self.parent:
  9192. 521 ==> return self.parent.effective_ip_discovery
  9193. 522 else:
  9194. 523 return "E"
  9195. 524 else:
  9196. 525 return self.enable_ip_discovery
  9197. 526
  9198. 527
  9199. Variables:
  9200. self = <Prefix: Global(6): ::/0>
  9201. ------------------------------------------------------------------------
  9202. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9203. Function: effective_ip_discovery
  9204. 514 [p.prefix for p in self.children_set.all()]):
  9205. 515 yield str(fp)
  9206. 516
  9207. 517 @property
  9208. 518 def effective_ip_discovery(self):
  9209. 519 if self.enable_ip_discovery == "I":
  9210. 520 if self.parent:
  9211. 521 ==> return self.parent.effective_ip_discovery
  9212. 522 else:
  9213. 523 return "E"
  9214. 524 else:
  9215. 525 return self.enable_ip_discovery
  9216. 526
  9217. 527
  9218. Variables:
  9219. self = <Prefix: Global(6): ::/0>
  9220. ------------------------------------------------------------------------
  9221. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9222. Function: effective_ip_discovery
  9223. 514 [p.prefix for p in self.children_set.all()]):
  9224. 515 yield str(fp)
  9225. 516
  9226. 517 @property
  9227. 518 def effective_ip_discovery(self):
  9228. 519 if self.enable_ip_discovery == "I":
  9229. 520 if self.parent:
  9230. 521 ==> return self.parent.effective_ip_discovery
  9231. 522 else:
  9232. 523 return "E"
  9233. 524 else:
  9234. 525 return self.enable_ip_discovery
  9235. 526
  9236. 527
  9237. Variables:
  9238. self = <Prefix: Global(6): ::/0>
  9239. ------------------------------------------------------------------------
  9240. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9241. Function: effective_ip_discovery
  9242. 514 [p.prefix for p in self.children_set.all()]):
  9243. 515 yield str(fp)
  9244. 516
  9245. 517 @property
  9246. 518 def effective_ip_discovery(self):
  9247. 519 if self.enable_ip_discovery == "I":
  9248. 520 if self.parent:
  9249. 521 ==> return self.parent.effective_ip_discovery
  9250. 522 else:
  9251. 523 return "E"
  9252. 524 else:
  9253. 525 return self.enable_ip_discovery
  9254. 526
  9255. 527
  9256. Variables:
  9257. self = <Prefix: Global(6): ::/0>
  9258. ------------------------------------------------------------------------
  9259. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9260. Function: effective_ip_discovery
  9261. 514 [p.prefix for p in self.children_set.all()]):
  9262. 515 yield str(fp)
  9263. 516
  9264. 517 @property
  9265. 518 def effective_ip_discovery(self):
  9266. 519 if self.enable_ip_discovery == "I":
  9267. 520 if self.parent:
  9268. 521 ==> return self.parent.effective_ip_discovery
  9269. 522 else:
  9270. 523 return "E"
  9271. 524 else:
  9272. 525 return self.enable_ip_discovery
  9273. 526
  9274. 527
  9275. Variables:
  9276. self = <Prefix: Global(6): ::/0>
  9277. ------------------------------------------------------------------------
  9278. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9279. Function: effective_ip_discovery
  9280. 514 [p.prefix for p in self.children_set.all()]):
  9281. 515 yield str(fp)
  9282. 516
  9283. 517 @property
  9284. 518 def effective_ip_discovery(self):
  9285. 519 if self.enable_ip_discovery == "I":
  9286. 520 if self.parent:
  9287. 521 ==> return self.parent.effective_ip_discovery
  9288. 522 else:
  9289. 523 return "E"
  9290. 524 else:
  9291. 525 return self.enable_ip_discovery
  9292. 526
  9293. 527
  9294. Variables:
  9295. self = <Prefix: Global(6): ::/0>
  9296. ------------------------------------------------------------------------
  9297. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9298. Function: effective_ip_discovery
  9299. 514 [p.prefix for p in self.children_set.all()]):
  9300. 515 yield str(fp)
  9301. 516
  9302. 517 @property
  9303. 518 def effective_ip_discovery(self):
  9304. 519 if self.enable_ip_discovery == "I":
  9305. 520 if self.parent:
  9306. 521 ==> return self.parent.effective_ip_discovery
  9307. 522 else:
  9308. 523 return "E"
  9309. 524 else:
  9310. 525 return self.enable_ip_discovery
  9311. 526
  9312. 527
  9313. Variables:
  9314. self = <Prefix: Global(6): ::/0>
  9315. ------------------------------------------------------------------------
  9316. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9317. Function: effective_ip_discovery
  9318. 514 [p.prefix for p in self.children_set.all()]):
  9319. 515 yield str(fp)
  9320. 516
  9321. 517 @property
  9322. 518 def effective_ip_discovery(self):
  9323. 519 if self.enable_ip_discovery == "I":
  9324. 520 if self.parent:
  9325. 521 ==> return self.parent.effective_ip_discovery
  9326. 522 else:
  9327. 523 return "E"
  9328. 524 else:
  9329. 525 return self.enable_ip_discovery
  9330. 526
  9331. 527
  9332. Variables:
  9333. self = <Prefix: Global(6): ::/0>
  9334. ------------------------------------------------------------------------
  9335. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9336. Function: effective_ip_discovery
  9337. 514 [p.prefix for p in self.children_set.all()]):
  9338. 515 yield str(fp)
  9339. 516
  9340. 517 @property
  9341. 518 def effective_ip_discovery(self):
  9342. 519 if self.enable_ip_discovery == "I":
  9343. 520 if self.parent:
  9344. 521 ==> return self.parent.effective_ip_discovery
  9345. 522 else:
  9346. 523 return "E"
  9347. 524 else:
  9348. 525 return self.enable_ip_discovery
  9349. 526
  9350. 527
  9351. Variables:
  9352. self = <Prefix: Global(6): ::/0>
  9353. ------------------------------------------------------------------------
  9354. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9355. Function: effective_ip_discovery
  9356. 514 [p.prefix for p in self.children_set.all()]):
  9357. 515 yield str(fp)
  9358. 516
  9359. 517 @property
  9360. 518 def effective_ip_discovery(self):
  9361. 519 if self.enable_ip_discovery == "I":
  9362. 520 if self.parent:
  9363. 521 ==> return self.parent.effective_ip_discovery
  9364. 522 else:
  9365. 523 return "E"
  9366. 524 else:
  9367. 525 return self.enable_ip_discovery
  9368. 526
  9369. 527
  9370. Variables:
  9371. self = <Prefix: Global(6): ::/0>
  9372. ------------------------------------------------------------------------
  9373. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9374. Function: effective_ip_discovery
  9375. 514 [p.prefix for p in self.children_set.all()]):
  9376. 515 yield str(fp)
  9377. 516
  9378. 517 @property
  9379. 518 def effective_ip_discovery(self):
  9380. 519 if self.enable_ip_discovery == "I":
  9381. 520 if self.parent:
  9382. 521 ==> return self.parent.effective_ip_discovery
  9383. 522 else:
  9384. 523 return "E"
  9385. 524 else:
  9386. 525 return self.enable_ip_discovery
  9387. 526
  9388. 527
  9389. Variables:
  9390. self = <Prefix: Global(6): ::/0>
  9391. ------------------------------------------------------------------------
  9392. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9393. Function: effective_ip_discovery
  9394. 514 [p.prefix for p in self.children_set.all()]):
  9395. 515 yield str(fp)
  9396. 516
  9397. 517 @property
  9398. 518 def effective_ip_discovery(self):
  9399. 519 if self.enable_ip_discovery == "I":
  9400. 520 if self.parent:
  9401. 521 ==> return self.parent.effective_ip_discovery
  9402. 522 else:
  9403. 523 return "E"
  9404. 524 else:
  9405. 525 return self.enable_ip_discovery
  9406. 526
  9407. 527
  9408. Variables:
  9409. self = <Prefix: Global(6): ::/0>
  9410. ------------------------------------------------------------------------
  9411. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9412. Function: effective_ip_discovery
  9413. 514 [p.prefix for p in self.children_set.all()]):
  9414. 515 yield str(fp)
  9415. 516
  9416. 517 @property
  9417. 518 def effective_ip_discovery(self):
  9418. 519 if self.enable_ip_discovery == "I":
  9419. 520 if self.parent:
  9420. 521 ==> return self.parent.effective_ip_discovery
  9421. 522 else:
  9422. 523 return "E"
  9423. 524 else:
  9424. 525 return self.enable_ip_discovery
  9425. 526
  9426. 527
  9427. Variables:
  9428. self = <Prefix: Global(6): ::/0>
  9429. ------------------------------------------------------------------------
  9430. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9431. Function: effective_ip_discovery
  9432. 514 [p.prefix for p in self.children_set.all()]):
  9433. 515 yield str(fp)
  9434. 516
  9435. 517 @property
  9436. 518 def effective_ip_discovery(self):
  9437. 519 if self.enable_ip_discovery == "I":
  9438. 520 if self.parent:
  9439. 521 ==> return self.parent.effective_ip_discovery
  9440. 522 else:
  9441. 523 return "E"
  9442. 524 else:
  9443. 525 return self.enable_ip_discovery
  9444. 526
  9445. 527
  9446. Variables:
  9447. self = <Prefix: Global(6): ::/0>
  9448. ------------------------------------------------------------------------
  9449. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9450. Function: effective_ip_discovery
  9451. 514 [p.prefix for p in self.children_set.all()]):
  9452. 515 yield str(fp)
  9453. 516
  9454. 517 @property
  9455. 518 def effective_ip_discovery(self):
  9456. 519 if self.enable_ip_discovery == "I":
  9457. 520 if self.parent:
  9458. 521 ==> return self.parent.effective_ip_discovery
  9459. 522 else:
  9460. 523 return "E"
  9461. 524 else:
  9462. 525 return self.enable_ip_discovery
  9463. 526
  9464. 527
  9465. Variables:
  9466. self = <Prefix: Global(6): ::/0>
  9467. ------------------------------------------------------------------------
  9468. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9469. Function: effective_ip_discovery
  9470. 514 [p.prefix for p in self.children_set.all()]):
  9471. 515 yield str(fp)
  9472. 516
  9473. 517 @property
  9474. 518 def effective_ip_discovery(self):
  9475. 519 if self.enable_ip_discovery == "I":
  9476. 520 if self.parent:
  9477. 521 ==> return self.parent.effective_ip_discovery
  9478. 522 else:
  9479. 523 return "E"
  9480. 524 else:
  9481. 525 return self.enable_ip_discovery
  9482. 526
  9483. 527
  9484. Variables:
  9485. self = <Prefix: Global(6): ::/0>
  9486. ------------------------------------------------------------------------
  9487. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9488. Function: effective_ip_discovery
  9489. 514 [p.prefix for p in self.children_set.all()]):
  9490. 515 yield str(fp)
  9491. 516
  9492. 517 @property
  9493. 518 def effective_ip_discovery(self):
  9494. 519 if self.enable_ip_discovery == "I":
  9495. 520 if self.parent:
  9496. 521 ==> return self.parent.effective_ip_discovery
  9497. 522 else:
  9498. 523 return "E"
  9499. 524 else:
  9500. 525 return self.enable_ip_discovery
  9501. 526
  9502. 527
  9503. Variables:
  9504. self = <Prefix: Global(6): ::/0>
  9505. ------------------------------------------------------------------------
  9506. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9507. Function: effective_ip_discovery
  9508. 514 [p.prefix for p in self.children_set.all()]):
  9509. 515 yield str(fp)
  9510. 516
  9511. 517 @property
  9512. 518 def effective_ip_discovery(self):
  9513. 519 if self.enable_ip_discovery == "I":
  9514. 520 if self.parent:
  9515. 521 ==> return self.parent.effective_ip_discovery
  9516. 522 else:
  9517. 523 return "E"
  9518. 524 else:
  9519. 525 return self.enable_ip_discovery
  9520. 526
  9521. 527
  9522. Variables:
  9523. self = <Prefix: Global(6): ::/0>
  9524. ------------------------------------------------------------------------
  9525. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9526. Function: effective_ip_discovery
  9527. 514 [p.prefix for p in self.children_set.all()]):
  9528. 515 yield str(fp)
  9529. 516
  9530. 517 @property
  9531. 518 def effective_ip_discovery(self):
  9532. 519 if self.enable_ip_discovery == "I":
  9533. 520 if self.parent:
  9534. 521 ==> return self.parent.effective_ip_discovery
  9535. 522 else:
  9536. 523 return "E"
  9537. 524 else:
  9538. 525 return self.enable_ip_discovery
  9539. 526
  9540. 527
  9541. Variables:
  9542. self = <Prefix: Global(6): ::/0>
  9543. ------------------------------------------------------------------------
  9544. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9545. Function: effective_ip_discovery
  9546. 514 [p.prefix for p in self.children_set.all()]):
  9547. 515 yield str(fp)
  9548. 516
  9549. 517 @property
  9550. 518 def effective_ip_discovery(self):
  9551. 519 if self.enable_ip_discovery == "I":
  9552. 520 if self.parent:
  9553. 521 ==> return self.parent.effective_ip_discovery
  9554. 522 else:
  9555. 523 return "E"
  9556. 524 else:
  9557. 525 return self.enable_ip_discovery
  9558. 526
  9559. 527
  9560. Variables:
  9561. self = <Prefix: Global(6): ::/0>
  9562. ------------------------------------------------------------------------
  9563. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9564. Function: effective_ip_discovery
  9565. 514 [p.prefix for p in self.children_set.all()]):
  9566. 515 yield str(fp)
  9567. 516
  9568. 517 @property
  9569. 518 def effective_ip_discovery(self):
  9570. 519 if self.enable_ip_discovery == "I":
  9571. 520 if self.parent:
  9572. 521 ==> return self.parent.effective_ip_discovery
  9573. 522 else:
  9574. 523 return "E"
  9575. 524 else:
  9576. 525 return self.enable_ip_discovery
  9577. 526
  9578. 527
  9579. Variables:
  9580. self = <Prefix: Global(6): ::/0>
  9581. ------------------------------------------------------------------------
  9582. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9583. Function: effective_ip_discovery
  9584. 514 [p.prefix for p in self.children_set.all()]):
  9585. 515 yield str(fp)
  9586. 516
  9587. 517 @property
  9588. 518 def effective_ip_discovery(self):
  9589. 519 if self.enable_ip_discovery == "I":
  9590. 520 if self.parent:
  9591. 521 ==> return self.parent.effective_ip_discovery
  9592. 522 else:
  9593. 523 return "E"
  9594. 524 else:
  9595. 525 return self.enable_ip_discovery
  9596. 526
  9597. 527
  9598. Variables:
  9599. self = <Prefix: Global(6): ::/0>
  9600. ------------------------------------------------------------------------
  9601. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9602. Function: effective_ip_discovery
  9603. 514 [p.prefix for p in self.children_set.all()]):
  9604. 515 yield str(fp)
  9605. 516
  9606. 517 @property
  9607. 518 def effective_ip_discovery(self):
  9608. 519 if self.enable_ip_discovery == "I":
  9609. 520 if self.parent:
  9610. 521 ==> return self.parent.effective_ip_discovery
  9611. 522 else:
  9612. 523 return "E"
  9613. 524 else:
  9614. 525 return self.enable_ip_discovery
  9615. 526
  9616. 527
  9617. Variables:
  9618. self = <Prefix: Global(6): ::/0>
  9619. ------------------------------------------------------------------------
  9620. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9621. Function: effective_ip_discovery
  9622. 514 [p.prefix for p in self.children_set.all()]):
  9623. 515 yield str(fp)
  9624. 516
  9625. 517 @property
  9626. 518 def effective_ip_discovery(self):
  9627. 519 if self.enable_ip_discovery == "I":
  9628. 520 if self.parent:
  9629. 521 ==> return self.parent.effective_ip_discovery
  9630. 522 else:
  9631. 523 return "E"
  9632. 524 else:
  9633. 525 return self.enable_ip_discovery
  9634. 526
  9635. 527
  9636. Variables:
  9637. self = <Prefix: Global(6): ::/0>
  9638. ------------------------------------------------------------------------
  9639. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9640. Function: effective_ip_discovery
  9641. 514 [p.prefix for p in self.children_set.all()]):
  9642. 515 yield str(fp)
  9643. 516
  9644. 517 @property
  9645. 518 def effective_ip_discovery(self):
  9646. 519 if self.enable_ip_discovery == "I":
  9647. 520 if self.parent:
  9648. 521 ==> return self.parent.effective_ip_discovery
  9649. 522 else:
  9650. 523 return "E"
  9651. 524 else:
  9652. 525 return self.enable_ip_discovery
  9653. 526
  9654. 527
  9655. Variables:
  9656. self = <Prefix: Global(6): ::/0>
  9657. ------------------------------------------------------------------------
  9658. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9659. Function: effective_ip_discovery
  9660. 514 [p.prefix for p in self.children_set.all()]):
  9661. 515 yield str(fp)
  9662. 516
  9663. 517 @property
  9664. 518 def effective_ip_discovery(self):
  9665. 519 if self.enable_ip_discovery == "I":
  9666. 520 if self.parent:
  9667. 521 ==> return self.parent.effective_ip_discovery
  9668. 522 else:
  9669. 523 return "E"
  9670. 524 else:
  9671. 525 return self.enable_ip_discovery
  9672. 526
  9673. 527
  9674. Variables:
  9675. self = <Prefix: Global(6): ::/0>
  9676. ------------------------------------------------------------------------
  9677. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9678. Function: effective_ip_discovery
  9679. 514 [p.prefix for p in self.children_set.all()]):
  9680. 515 yield str(fp)
  9681. 516
  9682. 517 @property
  9683. 518 def effective_ip_discovery(self):
  9684. 519 if self.enable_ip_discovery == "I":
  9685. 520 if self.parent:
  9686. 521 ==> return self.parent.effective_ip_discovery
  9687. 522 else:
  9688. 523 return "E"
  9689. 524 else:
  9690. 525 return self.enable_ip_discovery
  9691. 526
  9692. 527
  9693. Variables:
  9694. self = <Prefix: Global(6): ::/0>
  9695. ------------------------------------------------------------------------
  9696. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9697. Function: effective_ip_discovery
  9698. 514 [p.prefix for p in self.children_set.all()]):
  9699. 515 yield str(fp)
  9700. 516
  9701. 517 @property
  9702. 518 def effective_ip_discovery(self):
  9703. 519 if self.enable_ip_discovery == "I":
  9704. 520 if self.parent:
  9705. 521 ==> return self.parent.effective_ip_discovery
  9706. 522 else:
  9707. 523 return "E"
  9708. 524 else:
  9709. 525 return self.enable_ip_discovery
  9710. 526
  9711. 527
  9712. Variables:
  9713. self = <Prefix: Global(6): ::/0>
  9714. ------------------------------------------------------------------------
  9715. File: /opt/noc/ip/models/prefix.py (Line: 521)
  9716. Function: effective_ip_discovery
  9717. 514 [p.prefix for p in self.children_set.all()]):
  9718. 515 yield str(fp)
  9719. 516
  9720. 517 @property
  9721. 518 def effective_ip_discovery(self):
  9722. 519 if self.enable_ip_discovery == "I":
  9723. 520 if self.parent:
  9724. 521 ==> return self.parent.effective_ip_discovery
  9725. 522 else:
  9726. 523 return "E"
  9727. 524 else:
  9728. 525 return self.enable_ip_discovery
  9729. 526
  9730. 527
  9731. Variables:
  9732. self =
  9733. <Prefix_Deferred_Channel_ID_Login_Prefix_group_Pr92dbe0778fdde465aa0a39c5e9722041: Global(4): 0.0.0.0/0>
  9734. ------------------------------------------------------------------------
  9735. File: /opt/noc/inv/discovery/reports/ipreport.py (Line: 73)
  9736. Function: is_discovery_enabled
  9737. 66 @classmethod
  9738. 67 def is_discovery_enabled(cls, vrf, afi, address):
  9739. 68 prefix = Prefix.get_parent(vrf, afi, address)
  9740. 69 k = "ip-discovery-enable-%s" % prefix.id
  9741. 70 ds = cache.get(k)
  9742. 71 if ds:
  9743. 72 return ds == "E"
  9744. 73 ==> r = prefix.effective_ip_discovery
  9745. 74 cache.set(k, r, 600)
  9746. 75 return r == "E"
  9747. 76
  9748. 77 def is_ignored_mac(self, mac):
  9749. 78 """
  9750. 79 Check MAC address must be ignored
  9751. Variables:
  9752. afi = '4'
  9753. k = 'ip-discovery-enable-1'
  9754. prefix =
  9755. <Prefix_Deferred_Channel_ID_Login_Prefix_group_Pr92dbe0778fdde465aa0a39c5e9722041: Global(4): 0.0.0.0/0>
  9756. vrf = <VRF: global>
  9757. address = '89.189.3.58'
  9758. ds = None
  9759. cls = <class 'noc.inv.discovery.reports.ipreport.IPReport'>
  9760. ------------------------------------------------------------------------
  9761. File: /opt/noc/inv/discovery/reports/ipreport.py (Line: 53)
  9762. Function: submit
  9763. 46 return
  9764. 47 afi = "6" if ":" in address else "4"
  9765. 48 # Skip ignored MACs
  9766. 49 if mac and self.is_ignored_mac(mac):
  9767. 50 return
  9768. 51 # Check ip discovery enabled by prefix settings
  9769. 52 if (self.allow_prefix_restrictions and
  9770. 53 ==> not self.is_discovery_enabled(vrf, afi, address)):
  9771. 54 return
  9772. 55 # Check address not in locked range
  9773. 56 if self.is_locked_range(vrf, address):
  9774. 57 return
  9775. 58 # Check address in IPAM
  9776. 59 r = Address.objects.filter(vrf=vrf, afi=afi, address=address)
  9777. Variables:
  9778. afi = '4'
  9779. self = <noc.inv.discovery.reports.ipreport.IPReport object at 0x80f2a1a50>
  9780. mac = '00:0C:43:30:52:89'
  9781. vrf = <VRF: global>
  9782. address = '89.189.3.58'
  9783. interface = 'Fa 0/4'
  9784. description = None
  9785. ------------------------------------------------------------------------
  9786. File: /opt/noc/inv/discovery/jobs/ip_discovery.py (Line: 46)
  9787. Function: handler
  9788. 39 self.info("Skipping unknown VRF '%s'" % v["name"])
  9789. 40 continue
  9790. 41 for a in v["addresses"]:
  9791. 42 self.report.submit(
  9792. 43 vrf=vrf,
  9793. 44 address=a["ip"],
  9794. 45 interface=a["interface"],
  9795. 46 ==> mac=a["mac"])
  9796. 47 self.report.send()
  9797. 48 return True
  9798. 49
  9799. 50 @classmethod
  9800. 51 def initial_submit_queryset(cls):
  9801. 52 return {"object_profile__enable_ip_discovery": True}
  9802. Variables:
  9803. a =
  9804. {'afi': '4',
  9805. 'interface': 'Fa 0/4',
  9806. 'ip': '89.189.3.58',
  9807. 'mac': '00:0C:43:30:52:89'}
  9808. self =
  9809. <noc.inv.discovery.jobs.ip_discovery.IPDiscoveryJob object at 0x80e8a3650>
  9810. object = <ManagedObject: cat-7nebo-3-2>
  9811. result =
  9812. [{'addresses': [{'afi': '4',
  9813. 'interface': 'Fa 0/4',
  9814. 'ip': '89.189.3.58',
  9815. 'mac': '00:0C:43:30:52:89'},
  9816. {'afi': '4',
  9817. 'interface': 'Fa 0/6',
  9818. 'ip': '89.189.7.10',
  9819. 'mac': '28:10:7B:F2:78:6B'},
  9820. {'afi': '4',
  9821. 'interface': 'Fa 0/2',
  9822. 'ip': '89.189.8.226',
  9823. 'mac': 'C0:4A:00:58:B3:A3'},
  9824. {'afi': '4',
  9825. 'interface': 'Vl 121',
  9826. 'ip': '195.98.51.241',
  9827. 'mac': '00:11:93:D5:33:C0'},
  9828. {'afi': '4',
  9829. 'interface': 'Vl 121',
  9830. 'ip': '195.98.51.242',
  9831. 'mac': 'B8:62:1F:26:E7:41'},
  9832. {'afi': '4',
  9833. 'interface': 'Vl 121',
  9834. 'ip': '195.98.51.243',
  9835. 'mac': '64:AE:0C:89:0D:C1'},
  9836. {'afi': '4',
  9837. 'interface': 'Vl 121',
  9838. 'ip': '195.98.51.245',
  9839. 'mac': 'A0:CF:5B:43:1F:49'},
  9840. {'afi': '4',
  9841. 'interface': 'Vl 121',
  9842. 'ip': '195.98.51.246',
  9843. 'mac': 'A0:CF:5B:43:AD:51'},
  9844. {'afi': '4',
  9845. 'interface': 'Vl 121',
  9846. 'ip': '195.98.51.247',
  9847. 'mac': 'A0:CF:5B:43:6B:D2'},
  9848. {'afi': '4',
  9849. 'interface': 'Vl 121',
  9850. 'ip': '195.98.51.248',
  9851. 'mac': '64:D9:89:56:7B:42'},
  9852. {'afi': '4',
  9853. 'interface': 'Vl 121',
  9854. 'ip': '195.98.51.249',
  9855. 'mac': 'A0:CF:5B:43:2A:4D'},
  9856. {'afi': '4',
  9857. 'interface': 'Vl 121',
  9858. 'ip': '195.98.51.250',
  9859. 'mac': '6C:9C:ED:C0:2E:C7'},
  9860. {'afi': '4',
  9861. 'interface': 'Vl 121',
  9862. 'ip': '195.98.51.252',
  9863. 'mac': 'B8:62:1F:26:E3:C7'},
  9864. {'afi': '4',
  9865. 'interface': 'Vl 121',
  9866. 'ip': '195.98.51.253',
  9867. 'mac': 'B8:62:1F:26:D0:C1'},
  9868. {'afi': '4',
  9869. 'interface': 'Vl 121',
  9870. 'ip': '195.98.51.254',
  9871. 'mac': '64:AE:0C:62:AA:C1'},
  9872. {'afi': '4',
  9873. 'interface': 'Fa 0/3',
  9874. 'ip': '212.92.150.114',
  9875. 'mac': '84:C9:B2:DF:F0:8A'},
  9876. {'afi': '4',
  9877. 'interface': 'Fa 0/16',
  9878. 'ip': '212.92.158.34',
  9879. 'mac': '90:F6:52:95:D7:C9'},
  9880. {'afi': '4',
  9881. 'interface': 'Fa 0/1',
  9882. 'ip': '212.92.162.202',
  9883. 'mac': 'B8:A3:86:B8:8F:13'},
  9884. {'afi': '4',
  9885. 'interface': 'Fa 0/5',
  9886. 'ip': '212.92.168.162',
  9887. 'mac': 'D4:CA:6D:75:04:D3'}],
  9888. 'name': 'default'}]
  9889. v =
  9890. {'addresses': [{'afi': '4',
  9891. 'interface': 'Fa 0/4',
  9892. 'ip': '89.189.3.58',
  9893. 'mac': '00:0C:43:30:52:89'},
  9894. {'afi': '4',
  9895. 'interface': 'Fa 0/6',
  9896. 'ip': '89.189.7.10',
  9897. 'mac': '28:10:7B:F2:78:6B'},
  9898. {'afi': '4',
  9899. 'interface': 'Fa 0/2',
  9900. 'ip': '89.189.8.226',
  9901. 'mac': 'C0:4A:00:58:B3:A3'},
  9902. {'afi': '4',
  9903. 'interface': 'Vl 121',
  9904. 'ip': '195.98.51.241',
  9905. 'mac': '00:11:93:D5:33:C0'},
  9906. {'afi': '4',
  9907. 'interface': 'Vl 121',
  9908. 'ip': '195.98.51.242',
  9909. 'mac': 'B8:62:1F:26:E7:41'},
  9910. {'afi': '4',
  9911. 'interface': 'Vl 121',
  9912. 'ip': '195.98.51.243',
  9913. 'mac': '64:AE:0C:89:0D:C1'},
  9914. {'afi': '4',
  9915. 'interface': 'Vl 121',
  9916. 'ip': '195.98.51.245',
  9917. 'mac': 'A0:CF:5B:43:1F:49'},
  9918. {'afi': '4',
  9919. 'interface': 'Vl 121',
  9920. 'ip': '195.98.51.246',
  9921. 'mac': 'A0:CF:5B:43:AD:51'},
  9922. {'afi': '4',
  9923. 'interface': 'Vl 121',
  9924. 'ip': '195.98.51.247',
  9925. 'mac': 'A0:CF:5B:43:6B:D2'},
  9926. {'afi': '4',
  9927. 'interface': 'Vl 121',
  9928. 'ip': '195.98.51.248',
  9929. 'mac': '64:D9:89:56:7B:42'},
  9930. {'afi': '4',
  9931. 'interface': 'Vl 121',
  9932. 'ip': '195.98.51.249',
  9933. 'mac': 'A0:CF:5B:43:2A:4D'},
  9934. {'afi': '4',
  9935. 'interface': 'Vl 121',
  9936. 'ip': '195.98.51.250',
  9937. 'mac': '6C:9C:ED:C0:2E:C7'},
  9938. {'afi': '4',
  9939. 'interface': 'Vl 121',
  9940. 'ip': '195.98.51.252',
  9941. 'mac': 'B8:62:1F:26:E3:C7'},
  9942. {'afi': '4',
  9943. 'interface': 'Vl 121',
  9944. 'ip': '195.98.51.253',
  9945. 'mac': 'B8:62:1F:26:D0:C1'},
  9946. {'afi': '4',
  9947. 'interface': 'Vl 121',
  9948. 'ip': '195.98.51.254',
  9949. 'mac': '64:AE:0C:62:AA:C1'},
  9950. {'afi': '4',
  9951. 'interface': 'Fa 0/3',
  9952. 'ip': '212.92.150.114',
  9953. 'mac': '84:C9:B2:DF:F0:8A'},
  9954. {'afi': '4',
  9955. 'interface': 'Fa 0/16',
  9956. 'ip': '212.92.158.34',
  9957. 'mac': '90:F6:52:95:D7:C9'},
  9958. {'afi': '4',
  9959. 'interface': 'Fa 0/1',
  9960. 'ip': '212.92.162.202',
  9961. 'mac': 'B8:A3:86:B8:8F:13'},
  9962. {'afi': '4',
  9963. 'interface': 'Fa 0/5',
  9964. 'ip': '212.92.168.162',
  9965. 'mac': 'D4:CA:6D:75:04:D3'}],
  9966. 'name': 'default'}
  9967. vrf = <VRF: global>
  9968. ------------------------------------------------------------------------
  9969. File: /opt/noc/lib/scheduler/scheduler.py (Line: 280)
  9970. Function: _job_wrapper
  9971. 273 else:
  9972. 274 return self._job_wrapper(job, **kwargs)
  9973. 275
  9974. 276 def _job_wrapper(self, job, **kwargs):
  9975. 277 tb = None
  9976. 278 t0 = time.time()
  9977. 279 try:
  9978. 280 ==> r = job.handler(**kwargs)
  9979. 281 except Exception:
  9980. 282 # error_report()
  9981. 283 tb = get_traceback()
  9982. 284 job.error(tb)
  9983. 285 job.on_exception()
  9984. 286 s = job.S_EXCEPTION
  9985. Variables:
  9986. job =
  9987. <noc.inv.discovery.jobs.ip_discovery.IPDiscoveryJob object at 0x80e8a3650>
  9988. tb = None
  9989. self = <noc.inv.discovery.scheduler.DiscoveryScheduler object at 0x80d1516d0>
  9990. t0 = 1396592598.620685
  9991. kwargs =
  9992. {'object': <ManagedObject: cat-7nebo-3-2>,
  9993. 'result': [{'addresses': [{'afi': '4',
  9994. 'interface': 'Fa 0/4',
  9995. 'ip': '89.189.3.58',
  9996. 'mac': '00:0C:43:30:52:89'},
  9997. {'afi': '4',
  9998. 'interface': 'Fa 0/6',
  9999. 'ip': '89.189.7.10',
  10000. 'mac': '28:10:7B:F2:78:6B'},
  10001. {'afi': '4',
  10002. 'interface': 'Fa 0/2',
  10003. 'ip': '89.189.8.226',
  10004. 'mac': 'C0:4A:00:58:B3:A3'},
  10005. {'afi': '4',
  10006. 'interface': 'Vl 121',
  10007. 'ip': '195.98.51.241',
  10008. 'mac': '00:11:93:D5:33:C0'},
  10009. {'afi': '4',
  10010. 'interface': 'Vl 121',
  10011. 'ip': '195.98.51.242',
  10012. 'mac': 'B8:62:1F:26:E7:41'},
  10013. {'afi': '4',
  10014. 'interface': 'Vl 121',
  10015. 'ip': '195.98.51.243',
  10016. 'mac': '64:AE:0C:89:0D:C1'},
  10017. {'afi': '4',
  10018. 'interface': 'Vl 121',
  10019. 'ip': '195.98.51.245',
  10020. 'mac': 'A0:CF:5B:43:1F:49'},
  10021. {'afi': '4',
  10022. 'interface': 'Vl 121',
  10023. 'ip': '195.98.51.246',
  10024. 'mac': 'A0:CF:5B:43:AD:51'},
  10025. {'afi': '4',
  10026. 'interface': 'Vl 121',
  10027. 'ip': '195.98.51.247',
  10028. 'mac': 'A0:CF:5B:43:6B:D2'},
  10029. {'afi': '4',
  10030. 'interface': 'Vl 121',
  10031. 'ip': '195.98.51.248',
  10032. 'mac': '64:D9:89:56:7B:42'},
  10033. {'afi': '4',
  10034. 'interface': 'Vl 121',
  10035. 'ip': '195.98.51.249',
  10036. 'mac': 'A0:CF:5B:43:2A:4D'},
  10037. {'afi': '4',
  10038. 'interface': 'Vl 121',
  10039. 'ip': '195.98.51.250',
  10040. 'mac': '6C:9C:ED:C0:2E:C7'},
  10041. {'afi': '4',
  10042. 'interface': 'Vl 121',
  10043. 'ip': '195.98.51.252',
  10044. 'mac': 'B8:62:1F:26:E3:C7'},
  10045. {'afi': '4',
  10046. 'interface': 'Vl 121',
  10047. 'ip': '195.98.51.253',
  10048. 'mac': 'B8:62:1F:26:D0:C1'},
  10049. {'afi': '4',
  10050. 'interface': 'Vl 121',
  10051. 'ip': '195.98.51.254',
  10052. 'mac': '64:AE:0C:62:AA:C1'},
  10053. {'afi': '4',
  10054. 'interface': 'Fa 0/3',
  10055. 'ip': '212.92.150.114',
  10056. 'mac': '84:C9:B2:DF:F0:8A'},
  10057. {'afi': '4',
  10058. 'interface': 'Fa 0/16',
  10059. 'ip': '212.92.158.34',
  10060. 'mac': '90:F6:52:95:D7:C9'},
  10061. {'afi': '4',
  10062. 'interface': 'Fa 0/1',
  10063. 'ip': '212.92.162.202',
  10064. 'mac': 'B8:A3:86:B8:8F:13'},
  10065. {'afi': '4',
  10066. 'interface': 'Fa 0/5',
  10067. 'ip': '212.92.168.162',
  10068. 'mac': 'D4:CA:6D:75:04:D3'}],
  10069. 'name': 'default'}]}
  10070. ------------------------------------------------------------------------
  10071. END OF TRACEBACK
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement