annet 3.6.0__tar.gz → 3.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of annet might be problematic. Click here for more details.

Files changed (228) hide show
  1. {annet-3.6.0/annet.egg-info → annet-3.7.0}/PKG-INFO +1 -1
  2. {annet-3.6.0 → annet-3.7.0}/annet/annlib/command.py +3 -1
  3. {annet-3.6.0 → annet-3.7.0}/annet/annlib/jsontools.py +6 -1
  4. {annet-3.6.0 → annet-3.7.0}/annet/cli_args.py +1 -1
  5. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/policy.py +1 -1
  6. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/cisco/misc.py +6 -6
  7. annet-3.7.0/annet/rulebook/juniper/iface.py +39 -0
  8. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/cisco.rul +1 -1
  9. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/iosxr.rul +1 -1
  10. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/juniper.rul +2 -0
  11. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/nexus.rul +5 -1
  12. {annet-3.6.0 → annet-3.7.0}/annet/vendors/tabparser.py +13 -0
  13. {annet-3.6.0 → annet-3.7.0/annet.egg-info}/PKG-INFO +1 -1
  14. {annet-3.6.0 → annet-3.7.0}/annet.egg-info/SOURCES.txt +1 -0
  15. {annet-3.6.0 → annet-3.7.0}/AUTHORS +0 -0
  16. {annet-3.6.0 → annet-3.7.0}/LICENSE +0 -0
  17. {annet-3.6.0 → annet-3.7.0}/MANIFEST.in +0 -0
  18. {annet-3.6.0 → annet-3.7.0}/README.md +0 -0
  19. {annet-3.6.0 → annet-3.7.0}/annet/__init__.py +0 -0
  20. {annet-3.6.0 → annet-3.7.0}/annet/adapters/__init__.py +0 -0
  21. {annet-3.6.0 → annet-3.7.0}/annet/adapters/fetchers/__init__.py +0 -0
  22. {annet-3.6.0 → annet-3.7.0}/annet/adapters/fetchers/stub/__init__.py +0 -0
  23. {annet-3.6.0 → annet-3.7.0}/annet/adapters/fetchers/stub/fetcher.py +0 -0
  24. {annet-3.6.0 → annet-3.7.0}/annet/adapters/file/__init__.py +0 -0
  25. {annet-3.6.0 → annet-3.7.0}/annet/adapters/file/provider.py +0 -0
  26. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/__init__.py +0 -0
  27. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/__init__.py +0 -0
  28. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/adapter.py +0 -0
  29. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/client.py +0 -0
  30. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/manufacturer.py +0 -0
  31. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/models.py +0 -0
  32. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/query.py +0 -0
  33. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/status_client.py +0 -0
  34. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/storage_base.py +0 -0
  35. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/common/storage_opts.py +0 -0
  36. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/provider.py +0 -0
  37. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v24/__init__.py +0 -0
  38. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v24/models.py +0 -0
  39. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v24/storage.py +0 -0
  40. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v37/__init__.py +0 -0
  41. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v37/models.py +0 -0
  42. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v37/storage.py +0 -0
  43. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v41/__init__.py +0 -0
  44. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v41/models.py +0 -0
  45. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v41/storage.py +0 -0
  46. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v42/__init__.py +0 -0
  47. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v42/models.py +0 -0
  48. {annet-3.6.0 → annet-3.7.0}/annet/adapters/netbox/v42/storage.py +0 -0
  49. {annet-3.6.0 → annet-3.7.0}/annet/annet.py +0 -0
  50. {annet-3.6.0 → annet-3.7.0}/annet/annlib/__init__.py +0 -0
  51. {annet-3.6.0 → annet-3.7.0}/annet/annlib/diff.py +0 -0
  52. {annet-3.6.0 → annet-3.7.0}/annet/annlib/errors.py +0 -0
  53. {annet-3.6.0 → annet-3.7.0}/annet/annlib/filter_acl.py +0 -0
  54. {annet-3.6.0 → annet-3.7.0}/annet/annlib/lib.py +0 -0
  55. {annet-3.6.0 → annet-3.7.0}/annet/annlib/netdev/__init__.py +0 -0
  56. {annet-3.6.0 → annet-3.7.0}/annet/annlib/netdev/db.py +0 -0
  57. {annet-3.6.0 → annet-3.7.0}/annet/annlib/netdev/devdb/__init__.py +0 -0
  58. {annet-3.6.0 → annet-3.7.0}/annet/annlib/netdev/devdb/data/devdb.json +0 -0
  59. {annet-3.6.0 → annet-3.7.0}/annet/annlib/netdev/views/__init__.py +0 -0
  60. {annet-3.6.0 → annet-3.7.0}/annet/annlib/netdev/views/dump.py +0 -0
  61. {annet-3.6.0 → annet-3.7.0}/annet/annlib/netdev/views/hardware.py +0 -0
  62. {annet-3.6.0 → annet-3.7.0}/annet/annlib/output.py +0 -0
  63. {annet-3.6.0 → annet-3.7.0}/annet/annlib/patching.py +0 -0
  64. {annet-3.6.0 → annet-3.7.0}/annet/annlib/rbparser/__init__.py +0 -0
  65. {annet-3.6.0 → annet-3.7.0}/annet/annlib/rbparser/acl.py +0 -0
  66. {annet-3.6.0 → annet-3.7.0}/annet/annlib/rbparser/deploying.py +0 -0
  67. {annet-3.6.0 → annet-3.7.0}/annet/annlib/rbparser/ordering.py +0 -0
  68. {annet-3.6.0 → annet-3.7.0}/annet/annlib/rbparser/platform.py +0 -0
  69. {annet-3.6.0 → annet-3.7.0}/annet/annlib/rbparser/syntax.py +0 -0
  70. {annet-3.6.0 → annet-3.7.0}/annet/annlib/rulebook/__init__.py +0 -0
  71. {annet-3.6.0 → annet-3.7.0}/annet/annlib/rulebook/common.py +0 -0
  72. {annet-3.6.0 → annet-3.7.0}/annet/annlib/types.py +0 -0
  73. {annet-3.6.0 → annet-3.7.0}/annet/api/__init__.py +0 -0
  74. {annet-3.6.0 → annet-3.7.0}/annet/argparse.py +0 -0
  75. {annet-3.6.0 → annet-3.7.0}/annet/bgp_models.py +0 -0
  76. {annet-3.6.0 → annet-3.7.0}/annet/cli.py +0 -0
  77. {annet-3.6.0 → annet-3.7.0}/annet/configs/context.yml +0 -0
  78. {annet-3.6.0 → annet-3.7.0}/annet/configs/logging.yaml +0 -0
  79. {annet-3.6.0 → annet-3.7.0}/annet/connectors.py +0 -0
  80. {annet-3.6.0 → annet-3.7.0}/annet/deploy.py +0 -0
  81. {annet-3.6.0 → annet-3.7.0}/annet/deploy_ui.py +0 -0
  82. {annet-3.6.0 → annet-3.7.0}/annet/diff.py +0 -0
  83. {annet-3.6.0 → annet-3.7.0}/annet/executor.py +0 -0
  84. {annet-3.6.0 → annet-3.7.0}/annet/filtering.py +0 -0
  85. {annet-3.6.0 → annet-3.7.0}/annet/gen.py +0 -0
  86. {annet-3.6.0 → annet-3.7.0}/annet/generators/__init__.py +0 -0
  87. {annet-3.6.0 → annet-3.7.0}/annet/generators/base.py +0 -0
  88. {annet-3.6.0 → annet-3.7.0}/annet/generators/common/__init__.py +0 -0
  89. {annet-3.6.0 → annet-3.7.0}/annet/generators/common/initial.py +0 -0
  90. {annet-3.6.0 → annet-3.7.0}/annet/generators/entire.py +0 -0
  91. {annet-3.6.0 → annet-3.7.0}/annet/generators/exceptions.py +0 -0
  92. {annet-3.6.0 → annet-3.7.0}/annet/generators/jsonfragment.py +0 -0
  93. {annet-3.6.0 → annet-3.7.0}/annet/generators/partial.py +0 -0
  94. {annet-3.6.0 → annet-3.7.0}/annet/generators/perf.py +0 -0
  95. {annet-3.6.0 → annet-3.7.0}/annet/generators/ref.py +0 -0
  96. {annet-3.6.0 → annet-3.7.0}/annet/generators/result.py +0 -0
  97. {annet-3.6.0 → annet-3.7.0}/annet/hardware.py +0 -0
  98. {annet-3.6.0 → annet-3.7.0}/annet/implicit.py +0 -0
  99. {annet-3.6.0 → annet-3.7.0}/annet/lib.py +0 -0
  100. {annet-3.6.0 → annet-3.7.0}/annet/mesh/__init__.py +0 -0
  101. {annet-3.6.0 → annet-3.7.0}/annet/mesh/basemodel.py +0 -0
  102. {annet-3.6.0 → annet-3.7.0}/annet/mesh/device_models.py +0 -0
  103. {annet-3.6.0 → annet-3.7.0}/annet/mesh/executor.py +0 -0
  104. {annet-3.6.0 → annet-3.7.0}/annet/mesh/match_args.py +0 -0
  105. {annet-3.6.0 → annet-3.7.0}/annet/mesh/models_converter.py +0 -0
  106. {annet-3.6.0 → annet-3.7.0}/annet/mesh/peer_models.py +0 -0
  107. {annet-3.6.0 → annet-3.7.0}/annet/mesh/port_processor.py +0 -0
  108. {annet-3.6.0 → annet-3.7.0}/annet/mesh/registry.py +0 -0
  109. {annet-3.6.0 → annet-3.7.0}/annet/output.py +0 -0
  110. {annet-3.6.0 → annet-3.7.0}/annet/parallel.py +0 -0
  111. {annet-3.6.0 → annet-3.7.0}/annet/patching.py +0 -0
  112. {annet-3.6.0 → annet-3.7.0}/annet/reference.py +0 -0
  113. {annet-3.6.0 → annet-3.7.0}/annet/rpl/__init__.py +0 -0
  114. {annet-3.6.0 → annet-3.7.0}/annet/rpl/action.py +0 -0
  115. {annet-3.6.0 → annet-3.7.0}/annet/rpl/condition.py +0 -0
  116. {annet-3.6.0 → annet-3.7.0}/annet/rpl/match_builder.py +0 -0
  117. {annet-3.6.0 → annet-3.7.0}/annet/rpl/policy.py +0 -0
  118. {annet-3.6.0 → annet-3.7.0}/annet/rpl/result.py +0 -0
  119. {annet-3.6.0 → annet-3.7.0}/annet/rpl/routemap.py +0 -0
  120. {annet-3.6.0 → annet-3.7.0}/annet/rpl/statement_builder.py +0 -0
  121. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/__init__.py +0 -0
  122. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/aspath.py +0 -0
  123. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/community.py +0 -0
  124. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/cumulus_frr.py +0 -0
  125. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/entities.py +0 -0
  126. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/execute.py +0 -0
  127. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/prefix_lists.py +0 -0
  128. {annet-3.6.0 → annet-3.7.0}/annet/rpl_generators/rd.py +0 -0
  129. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/__init__.py +0 -0
  130. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/arista/__init__.py +0 -0
  131. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/arista/aaa.py +0 -0
  132. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/arista/iface.py +0 -0
  133. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/aruba/__init__.py +0 -0
  134. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/aruba/ap_env.py +0 -0
  135. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/aruba/misc.py +0 -0
  136. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/b4com/__init__.py +0 -0
  137. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/b4com/file.py +0 -0
  138. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/b4com/iface.py +0 -0
  139. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/cisco/__init__.py +0 -0
  140. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/cisco/iface.py +0 -0
  141. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/cisco/vlandb.py +0 -0
  142. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/common.py +0 -0
  143. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/deploying.py +0 -0
  144. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/generic/__init__.py +0 -0
  145. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/generic/misc.py +0 -0
  146. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/huawei/__init__.py +0 -0
  147. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/huawei/aaa.py +0 -0
  148. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/huawei/bgp.py +0 -0
  149. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/huawei/iface.py +0 -0
  150. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/huawei/misc.py +0 -0
  151. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/huawei/vlandb.py +0 -0
  152. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/juniper/__init__.py +0 -0
  153. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/nexus/__init__.py +0 -0
  154. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/nexus/iface.py +0 -0
  155. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/patching.py +0 -0
  156. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/routeros/__init__.py +0 -0
  157. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/routeros/file.py +0 -0
  158. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/arista.deploy +0 -0
  159. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/arista.order +0 -0
  160. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/arista.rul +0 -0
  161. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/aruba.deploy +0 -0
  162. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/aruba.order +0 -0
  163. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/aruba.rul +0 -0
  164. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/b4com.deploy +0 -0
  165. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/b4com.order +0 -0
  166. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/b4com.rul +0 -0
  167. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/cisco.deploy +0 -0
  168. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/cisco.order +0 -0
  169. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/huawei.deploy +0 -0
  170. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/huawei.order +0 -0
  171. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/huawei.rul +0 -0
  172. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/iosxr.deploy +0 -0
  173. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/iosxr.order +0 -0
  174. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/juniper.order +0 -0
  175. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/nexus.deploy +0 -0
  176. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/nexus.order +0 -0
  177. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/nokia.rul +0 -0
  178. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/optixtrans.deploy +0 -0
  179. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/optixtrans.order +0 -0
  180. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/optixtrans.rul +0 -0
  181. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/pc.deploy +0 -0
  182. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/pc.order +0 -0
  183. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/pc.rul +0 -0
  184. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/ribbon.deploy +0 -0
  185. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/ribbon.rul +0 -0
  186. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/routeros.order +0 -0
  187. {annet-3.6.0 → annet-3.7.0}/annet/rulebook/texts/routeros.rul +0 -0
  188. {annet-3.6.0 → annet-3.7.0}/annet/storage.py +0 -0
  189. {annet-3.6.0 → annet-3.7.0}/annet/text_term_format.py +0 -0
  190. {annet-3.6.0 → annet-3.7.0}/annet/tracing.py +0 -0
  191. {annet-3.6.0 → annet-3.7.0}/annet/types.py +0 -0
  192. {annet-3.6.0 → annet-3.7.0}/annet/vendors/__init__.py +0 -0
  193. {annet-3.6.0 → annet-3.7.0}/annet/vendors/base.py +0 -0
  194. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/__init__.py +0 -0
  195. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/arista.py +0 -0
  196. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/aruba.py +0 -0
  197. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/b4com.py +0 -0
  198. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/cisco.py +0 -0
  199. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/h3c.py +0 -0
  200. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/huawei.py +0 -0
  201. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/iosxr.py +0 -0
  202. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/juniper.py +0 -0
  203. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/nexus.py +0 -0
  204. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/nokia.py +0 -0
  205. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/optixtrans.py +0 -0
  206. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/pc.py +0 -0
  207. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/ribbon.py +0 -0
  208. {annet-3.6.0 → annet-3.7.0}/annet/vendors/library/routeros.py +0 -0
  209. {annet-3.6.0 → annet-3.7.0}/annet/vendors/registry.py +0 -0
  210. {annet-3.6.0 → annet-3.7.0}/annet.egg-info/dependency_links.txt +0 -0
  211. {annet-3.6.0 → annet-3.7.0}/annet.egg-info/entry_points.txt +0 -0
  212. {annet-3.6.0 → annet-3.7.0}/annet.egg-info/requires.txt +0 -0
  213. {annet-3.6.0 → annet-3.7.0}/annet.egg-info/top_level.txt +0 -0
  214. {annet-3.6.0 → annet-3.7.0}/annet_generators/__init__.py +0 -0
  215. {annet-3.6.0 → annet-3.7.0}/annet_generators/example/__init__.py +0 -0
  216. {annet-3.6.0 → annet-3.7.0}/annet_generators/example/hostname.py +0 -0
  217. {annet-3.6.0 → annet-3.7.0}/annet_generators/example/lldp.py +0 -0
  218. {annet-3.6.0 → annet-3.7.0}/annet_generators/mesh_example/__init__.py +0 -0
  219. {annet-3.6.0 → annet-3.7.0}/annet_generators/mesh_example/bgp.py +0 -0
  220. {annet-3.6.0 → annet-3.7.0}/annet_generators/mesh_example/mesh_logic.py +0 -0
  221. {annet-3.6.0 → annet-3.7.0}/annet_generators/rpl_example/__init__.py +0 -0
  222. {annet-3.6.0 → annet-3.7.0}/annet_generators/rpl_example/generator.py +0 -0
  223. {annet-3.6.0 → annet-3.7.0}/annet_generators/rpl_example/items.py +0 -0
  224. {annet-3.6.0 → annet-3.7.0}/annet_generators/rpl_example/mesh.py +0 -0
  225. {annet-3.6.0 → annet-3.7.0}/annet_generators/rpl_example/route_policy.py +0 -0
  226. {annet-3.6.0 → annet-3.7.0}/requirements.txt +0 -0
  227. {annet-3.6.0 → annet-3.7.0}/setup.cfg +0 -0
  228. {annet-3.6.0 → annet-3.7.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: annet
3
- Version: 3.6.0
3
+ Version: 3.7.0
4
4
  Summary: annet
5
5
  Home-page: https://github.com/annetutil/annet
6
6
  License: MIT
@@ -17,7 +17,7 @@ class Question:
17
17
 
18
18
  @dataclass
19
19
  class Command:
20
- cmd: str
20
+ cmd: str | bytes
21
21
  questions: Optional[List[Question]] = None
22
22
  exc_handler: Optional[List[Question]] = None
23
23
  timeout: Optional[int] = None # total timeout
@@ -26,6 +26,8 @@ class Command:
26
26
  suppress_eof: bool = False
27
27
 
28
28
  def __str__(self) -> str:
29
+ if isinstance(self.cmd, bytes):
30
+ return self.cmd.decode("utf-8")
29
31
  return self.cmd
30
32
 
31
33
 
@@ -16,6 +16,11 @@ def format_json(data: Any, stable: bool = False) -> str:
16
16
  return json.dumps(data, indent=4, ensure_ascii=False, sort_keys=not stable) + "\n"
17
17
 
18
18
 
19
+ def _sanitize_json_pointer(pattern: str) -> str:
20
+ """Replace special characters on the JsonPointer valid ones"""
21
+ return pattern.replace("~", "~0").replace("/", "~1")
22
+
23
+
19
24
  def apply_json_fragment(
20
25
  old: Dict[str, Any],
21
26
  new_fragment: Dict[str, Any],
@@ -179,5 +184,5 @@ def _resolve_json_pointers(pattern: str, content: Dict[str, Any]) -> List[jsonpo
179
184
 
180
185
  ret: List[jsonpointer.JsonPointer] = []
181
186
  for matched_parts, _ in matched:
182
- ret.append(jsonpointer.JsonPointer("/" + "/".join(matched_parts)))
187
+ ret.append(jsonpointer.JsonPointer("/" + "/".join([_sanitize_json_pointer(v) for v in matched_parts])))
183
188
  return ret
@@ -249,7 +249,7 @@ opt_max_slots = Arg(
249
249
  )
250
250
 
251
251
  opt_max_deploy = Arg(
252
- "--max-deploy", default=0, type=int,
252
+ "--max-deploy", default=DefaultFromEnv("ANN_MAX_DEPLOY", "0"), type=int,
253
253
  help="The amount of devices deployed at the same time"
254
254
  )
255
255
 
@@ -1048,7 +1048,7 @@ class RoutingPolicyGenerator(PartialGenerator, ABC):
1048
1048
  yield "delete", "extcommunity", "rt", "all"
1049
1049
  added.extend(action.value.replaced)
1050
1050
 
1051
- added.extend(action.value.replaced)
1051
+ added.extend(action.value.added)
1052
1052
  for member_name in added:
1053
1053
  typename = self._iosxr_community_type_str(communities[member_name].type)
1054
1054
  yield "set", "extcommunity", typename, member_name, "additive"
@@ -48,12 +48,12 @@ def no_ntp_distribute(rule, key, diff, **_):
48
48
  yield from common.default(rule, key, diff)
49
49
 
50
50
 
51
- def banner_login(rule, key, diff, **_):
52
- if diff[Op.REMOVED]:
53
- yield (False, "no banner login", None)
54
- elif diff[Op.ADDED]:
51
+ def banner_any(rule, key, diff, **_):
52
+ if diff[Op.ADDED]:
55
53
  # Убираем дополнительный экранирующий сиимвол
56
- key = re.sub(r"\^C", "^", key[0])
57
- yield (False, f"banner login {key}", None)
54
+ banner = re.sub(r"\^C", "^", diff[Op.ADDED][0]["row"])
55
+ yield (False, banner, None)
56
+ elif diff[Op.REMOVED]:
57
+ yield (False, f"no banner {key[0]}", None)
58
58
  else:
59
59
  yield from common.default(rule, key, diff)
@@ -0,0 +1,39 @@
1
+ import ipaddress
2
+ from annet.annlib.types import Op
3
+ from annet.rulebook import common
4
+ from annet.rulebook.common import DiffItem
5
+
6
+
7
+ def ipv6_addr(old, new, diff_pre, _pops):
8
+ """
9
+ Приводим все ipv6-адреса в объекты IPv6Interface и далее сравниваем
10
+ """
11
+ address_new_line = [a for a in map(_parse_ipv6, new) if a]
12
+ address_old_line = [a for a in map(_parse_ipv6, old) if a]
13
+
14
+ ret = []
15
+ for item in common.default_diff(old, new, diff_pre, _pops):
16
+ # Проверяем адрес помеченный под снос на наличии в новом списке
17
+ if item.op == Op.REMOVED and _parse_ipv6(item.row) in address_new_line:
18
+ result_item = DiffItem(Op.AFFECTED, item.row, item.children, item.diff_pre)
19
+ # Проверяем адрес помеченный для добавления на наличии в старом списке
20
+ elif item.op == Op.ADDED and _parse_ipv6(item.row) in address_old_line:
21
+ result_item = None
22
+ # Остальное без изменений
23
+ else:
24
+ result_item = item
25
+ if result_item:
26
+ ret.append(result_item)
27
+ return ret
28
+
29
+
30
+ def _parse_ipv6(row):
31
+ """
32
+ Парсит IPv6-интерфейс из строки, предполагая, что адрес находится на втором месте.
33
+ Возвращает объект IPv6Interface или None.
34
+ """
35
+ if row:
36
+ parts = row.split()
37
+ if len(parts) > 1:
38
+ return ipaddress.IPv6Interface(parts[1])
39
+ return None
@@ -14,7 +14,7 @@
14
14
  ip domain-name *
15
15
  hostname *
16
16
 
17
- banner login * %logic=cisco.misc.banner_login
17
+ banner * %logic=cisco.misc.banner_any
18
18
 
19
19
  ip community-list standard ~
20
20
 
@@ -14,7 +14,7 @@
14
14
  ip domain-name *
15
15
  hostname *
16
16
 
17
- banner login * %logic=cisco.misc.banner_login
17
+ banner * %logic=cisco.misc.banner_any
18
18
 
19
19
  ip community-list standard ~
20
20
 
@@ -72,6 +72,8 @@ interfaces
72
72
  description ~
73
73
  mtu *
74
74
  vlan-tags
75
+ family inet6
76
+ address * %diff_logic=juniper.iface.ipv6_addr
75
77
  description ~
76
78
  mtu *
77
79
  hold-time
@@ -13,6 +13,7 @@
13
13
 
14
14
  ip community-list standard ~
15
15
 
16
+ !vrf context management
16
17
  vrf context *
17
18
 
18
19
  vlan group * vlan-list %logic=cisco.vlandb.simple
@@ -34,7 +35,10 @@ snmp-server host ~
34
35
 
35
36
  ntp distribute %logic=cisco.misc.no_ntp_distribute
36
37
 
37
- !interface */(mgmt|ipmi|Vlan1$)/
38
+ !interface */(ipmi|Vlan1$)/
39
+
40
+ interface mgmt0$
41
+ !vrf member management
38
42
 
39
43
  # SVI/Subifs/Lagg
40
44
  interface */(Vlan|Ethernet.*\.|port-channel.*\.?)\d+$/ %diff_logic=nexus.iface.diff
@@ -314,6 +314,13 @@ class CiscoFormatter(BlockExitFormatter):
314
314
  def split(self, text):
315
315
  additional_indent = 0
316
316
  block_exit_strings = [self._block_exit]
317
+
318
+ # hide banner content
319
+ pattern = re.compile(r"((^banner [a-z-]+) \^C.*?\^C)", flags=re.MULTILINE | re.DOTALL)
320
+ repl_map = {replace_str: banner_str for banner_str, replace_str in pattern.findall(text)}
321
+ for replace_str, banner in repl_map.items():
322
+ text = text.replace(banner, replace_str)
323
+
317
324
  tree = self.split_remove_spaces(text)
318
325
  for i, item in enumerate(tree):
319
326
  block_exit_strings, new_indent = self._split_indent(
@@ -321,6 +328,12 @@ class CiscoFormatter(BlockExitFormatter):
321
328
  )
322
329
  tree[i] = f"{' ' * additional_indent}{item}"
323
330
  additional_indent = new_indent
331
+
332
+ # restore banner content in the `tree`
333
+ for i, item in enumerate(tree):
334
+ if item in repl_map:
335
+ tree[i] = repl_map[item]
336
+
324
337
  return tree
325
338
 
326
339
  def block_exit(self, context: Optional[FormatterContext]) -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: annet
3
- Version: 3.6.0
3
+ Version: 3.7.0
4
4
  Summary: annet
5
5
  Home-page: https://github.com/annetutil/annet
6
6
  License: MIT
@@ -154,6 +154,7 @@ annet/rulebook/huawei/iface.py
154
154
  annet/rulebook/huawei/misc.py
155
155
  annet/rulebook/huawei/vlandb.py
156
156
  annet/rulebook/juniper/__init__.py
157
+ annet/rulebook/juniper/iface.py
157
158
  annet/rulebook/nexus/__init__.py
158
159
  annet/rulebook/nexus/iface.py
159
160
  annet/rulebook/routeros/__init__.py
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes