gns3-server 2.2.52__tar.gz → 3.0.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 gns3-server might be problematic. Click here for more details.

Files changed (1785) hide show
  1. gns3_server-3.0.0/CHANGELOG +2674 -0
  2. gns3_server-3.0.0/MANIFEST.in +7 -0
  3. gns3_server-3.0.0/PKG-INFO +868 -0
  4. gns3_server-3.0.0/README.md +134 -0
  5. gns3_server-3.0.0/dev-requirements.txt +7 -0
  6. gns3_server-3.0.0/gns3_server.egg-info/PKG-INFO +868 -0
  7. gns3_server-3.0.0/gns3_server.egg-info/SOURCES.txt +1399 -0
  8. gns3_server-3.0.0/gns3_server.egg-info/entry_points.txt +3 -0
  9. gns3_server-3.0.0/gns3_server.egg-info/requires.txt +37 -0
  10. gns3_server-3.0.0/gns3server/__init__.py +17 -0
  11. gns3_server-3.0.0/gns3server/alembic.ini +103 -0
  12. gns3_server-3.0.0/gns3server/api/routes/compute/__init__.py +267 -0
  13. gns3_server-3.0.0/gns3server/api/routes/compute/atm_switch_nodes.py +233 -0
  14. gns3_server-3.0.0/gns3server/api/routes/compute/capabilities.py +51 -0
  15. gns3_server-3.0.0/gns3server/api/routes/compute/cloud_nodes.py +249 -0
  16. gns3_server-3.0.0/gns3server/api/routes/compute/compute.py +143 -0
  17. gns3_server-3.0.0/gns3server/api/routes/compute/dependencies/authentication.py +83 -0
  18. gns3_server-3.0.0/gns3server/api/routes/compute/docker_nodes.py +393 -0
  19. gns3_server-3.0.0/gns3server/api/routes/compute/dynamips_nodes.py +367 -0
  20. gns3_server-3.0.0/gns3server/api/routes/compute/ethernet_hub_nodes.py +236 -0
  21. gns3_server-3.0.0/gns3server/api/routes/compute/ethernet_switch_nodes.py +246 -0
  22. gns3_server-3.0.0/gns3server/api/routes/compute/frame_relay_switch_nodes.py +240 -0
  23. gns3_server-3.0.0/gns3server/api/routes/compute/images.py +156 -0
  24. gns3_server-3.0.0/gns3server/api/routes/compute/iou_nodes.py +344 -0
  25. gns3_server-3.0.0/gns3server/api/routes/compute/nat_nodes.py +244 -0
  26. gns3_server-3.0.0/gns3server/api/routes/compute/notifications.py +88 -0
  27. gns3_server-3.0.0/gns3server/api/routes/compute/projects.py +243 -0
  28. gns3_server-3.0.0/gns3server/api/routes/compute/qemu_nodes.py +412 -0
  29. gns3_server-3.0.0/gns3server/api/routes/compute/virtualbox_nodes.py +377 -0
  30. gns3_server-3.0.0/gns3server/api/routes/compute/vmware_nodes.py +355 -0
  31. gns3_server-3.0.0/gns3server/api/routes/compute/vpcs_nodes.py +343 -0
  32. gns3_server-3.0.0/gns3server/api/routes/controller/__init__.py +147 -0
  33. gns3_server-3.0.0/gns3server/api/routes/controller/acl.py +268 -0
  34. gns3_server-3.0.0/gns3server/api/routes/controller/appliances.py +150 -0
  35. gns3_server-3.0.0/gns3server/api/routes/controller/computes.py +231 -0
  36. gns3_server-3.0.0/gns3server/api/routes/controller/controller.py +319 -0
  37. gns3_server-3.0.0/gns3server/api/routes/controller/dependencies/authentication.py +117 -0
  38. gns3_server-3.0.0/gns3server/api/routes/controller/dependencies/database.py +38 -0
  39. gns3_server-3.0.0/gns3server/api/routes/controller/dependencies/rbac.py +78 -0
  40. gns3_server-3.0.0/gns3server/api/routes/controller/drawings.py +131 -0
  41. gns3_server-3.0.0/gns3server/api/routes/controller/gns3vm.py +71 -0
  42. gns3_server-3.0.0/gns3server/api/routes/controller/groups.py +231 -0
  43. gns3_server-3.0.0/gns3server/api/routes/controller/images.py +255 -0
  44. gns3_server-3.0.0/gns3server/api/routes/controller/links.py +287 -0
  45. gns3_server-3.0.0/gns3server/api/routes/controller/nodes.py +619 -0
  46. gns3_server-3.0.0/gns3server/api/routes/controller/pools.py +239 -0
  47. gns3_server-3.0.0/gns3server/api/routes/controller/privileges.py +43 -0
  48. gns3_server-3.0.0/gns3server/api/routes/controller/projects.py +595 -0
  49. gns3_server-3.0.0/gns3server/api/routes/controller/roles.py +224 -0
  50. gns3_server-3.0.0/gns3server/api/routes/controller/snapshots.py +124 -0
  51. gns3_server-3.0.0/gns3server/api/routes/controller/symbols.py +133 -0
  52. gns3_server-3.0.0/gns3server/api/routes/controller/templates.py +192 -0
  53. gns3_server-3.0.0/gns3server/api/routes/controller/users.py +254 -0
  54. gns3_server-3.0.0/gns3server/api/routes/index.py +93 -0
  55. gns3_server-3.0.0/gns3server/api/server.py +224 -0
  56. gns3_server-3.0.0/gns3server/appliances/cisco-iou-l2.gns3a +84 -0
  57. gns3_server-3.0.0/gns3server/appliances/cisco-iou-l3.gns3a +84 -0
  58. gns3_server-3.0.0/gns3server/appliances/innovaphone-app.gns3a +50 -0
  59. gns3_server-3.0.0/gns3server/appliances/innovaphone-ipva.gns3a +78 -0
  60. gns3_server-3.0.0/gns3server/compute/__init__.py +38 -0
  61. gns3_server-3.0.0/gns3server/compute/adapters/adapter.py +104 -0
  62. gns3_server-3.0.0/gns3server/compute/adapters/ethernet_adapter.py +33 -0
  63. gns3_server-3.0.0/gns3server/compute/adapters/serial_adapter.py +32 -0
  64. gns3_server-3.0.0/gns3server/compute/base_manager.py +547 -0
  65. gns3_server-3.0.0/gns3server/compute/base_node.py +979 -0
  66. gns3_server-3.0.0/gns3server/compute/builtin/__init__.py +46 -0
  67. gns3_server-3.0.0/gns3server/compute/builtin/builtin_node_factory.py +42 -0
  68. gns3_server-3.0.0/gns3server/compute/builtin/nodes/cloud.py +548 -0
  69. gns3_server-3.0.0/gns3server/compute/builtin/nodes/ethernet_hub.py +104 -0
  70. gns3_server-3.0.0/gns3server/compute/builtin/nodes/ethernet_switch.py +104 -0
  71. gns3_server-3.0.0/gns3server/compute/builtin/nodes/nat.py +97 -0
  72. gns3_server-3.0.0/gns3server/compute/compute_error.py +48 -0
  73. gns3_server-3.0.0/gns3server/compute/docker/__init__.py +320 -0
  74. gns3_server-3.0.0/gns3server/compute/docker/docker_error.py +33 -0
  75. gns3_server-3.0.0/gns3server/compute/docker/docker_vm.py +1378 -0
  76. gns3_server-3.0.0/gns3server/compute/dynamips/__init__.py +661 -0
  77. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/adapter.py +165 -0
  78. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c1700_mb_1fe.py +36 -0
  79. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c1700_mb_wic1.py +37 -0
  80. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c2600_mb_1e.py +36 -0
  81. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c2600_mb_1fe.py +37 -0
  82. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c2600_mb_2e.py +36 -0
  83. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c2600_mb_2fe.py +36 -0
  84. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c7200_io_2fe.py +36 -0
  85. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c7200_io_fe.py +36 -0
  86. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/c7200_io_ge_e.py +36 -0
  87. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/gt96100_fe.py +31 -0
  88. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/leopard_2fe.py +37 -0
  89. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/nm_16esw.py +32 -0
  90. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/nm_1e.py +32 -0
  91. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/nm_1fe_tx.py +32 -0
  92. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/nm_4e.py +32 -0
  93. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/nm_4t.py +32 -0
  94. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_2fe_tx.py +32 -0
  95. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_4e.py +32 -0
  96. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_4t.py +32 -0
  97. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_8e.py +32 -0
  98. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_8t.py +32 -0
  99. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_a1.py +32 -0
  100. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_fe_tx.py +32 -0
  101. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_ge.py +32 -0
  102. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/pa_pos_oc3.py +32 -0
  103. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/wic_1enet.py +40 -0
  104. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/wic_1t.py +40 -0
  105. gns3_server-3.0.0/gns3server/compute/dynamips/adapters/wic_2t.py +40 -0
  106. gns3_server-3.0.0/gns3server/compute/dynamips/dynamips_error.py +26 -0
  107. gns3_server-3.0.0/gns3server/compute/dynamips/dynamips_factory.py +71 -0
  108. gns3_server-3.0.0/gns3server/compute/dynamips/dynamips_hypervisor.py +333 -0
  109. gns3_server-3.0.0/gns3server/compute/dynamips/hypervisor.py +210 -0
  110. gns3_server-3.0.0/gns3server/compute/dynamips/nios/nio.py +352 -0
  111. gns3_server-3.0.0/gns3server/compute/dynamips/nios/nio_generic_ethernet.py +73 -0
  112. gns3_server-3.0.0/gns3server/compute/dynamips/nios/nio_linux_ethernet.py +72 -0
  113. gns3_server-3.0.0/gns3server/compute/dynamips/nios/nio_null.py +51 -0
  114. gns3_server-3.0.0/gns3server/compute/dynamips/nios/nio_tap.py +66 -0
  115. gns3_server-3.0.0/gns3server/compute/dynamips/nios/nio_udp.py +136 -0
  116. gns3_server-3.0.0/gns3server/compute/dynamips/nios/nio_unix.py +88 -0
  117. gns3_server-3.0.0/gns3server/compute/dynamips/nios/nio_vde.py +88 -0
  118. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/atm_switch.py +514 -0
  119. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/bridge.py +107 -0
  120. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/c1700.py +160 -0
  121. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/c2600.py +171 -0
  122. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/c2691.py +112 -0
  123. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/c3600.py +155 -0
  124. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/c3725.py +112 -0
  125. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/c3745.py +112 -0
  126. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/c7200.py +268 -0
  127. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/device.py +134 -0
  128. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/ethernet_hub.py +241 -0
  129. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/ethernet_switch.py +496 -0
  130. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/frame_relay_switch.py +379 -0
  131. gns3_server-3.0.0/gns3server/compute/dynamips/nodes/router.py +1797 -0
  132. gns3_server-3.0.0/gns3server/compute/error.py +40 -0
  133. gns3_server-3.0.0/gns3server/compute/iou/__init__.py +64 -0
  134. gns3_server-3.0.0/gns3server/compute/iou/iou_error.py +25 -0
  135. gns3_server-3.0.0/gns3server/compute/iou/iou_vm.py +1482 -0
  136. gns3_server-3.0.0/gns3server/compute/iou/utils/iou_export.py +233 -0
  137. gns3_server-3.0.0/gns3server/compute/iou/utils/iou_import.py +232 -0
  138. gns3_server-3.0.0/gns3server/compute/nios/nio.py +120 -0
  139. gns3_server-3.0.0/gns3server/compute/nios/nio_ethernet.py +56 -0
  140. gns3_server-3.0.0/gns3server/compute/nios/nio_tap.py +56 -0
  141. gns3_server-3.0.0/gns3server/compute/nios/nio_udp.py +82 -0
  142. gns3_server-3.0.0/gns3server/compute/notification_manager.py +73 -0
  143. gns3_server-3.0.0/gns3server/compute/port_manager.py +402 -0
  144. gns3_server-3.0.0/gns3server/compute/project.py +434 -0
  145. gns3_server-3.0.0/gns3server/compute/project_manager.py +122 -0
  146. gns3_server-3.0.0/gns3server/compute/qemu/__init__.py +304 -0
  147. gns3_server-3.0.0/gns3server/compute/qemu/qemu_error.py +26 -0
  148. gns3_server-3.0.0/gns3server/compute/qemu/qemu_vm.py +2697 -0
  149. gns3_server-3.0.0/gns3server/compute/qemu/utils/guest_cid.py +38 -0
  150. gns3_server-3.0.0/gns3server/compute/qemu/utils/qcow2.py +138 -0
  151. gns3_server-3.0.0/gns3server/compute/qemu/utils/ziputils.py +55 -0
  152. gns3_server-3.0.0/gns3server/compute/ubridge/hypervisor.py +256 -0
  153. gns3_server-3.0.0/gns3server/compute/ubridge/ubridge_error.py +32 -0
  154. gns3_server-3.0.0/gns3server/compute/ubridge/ubridge_hypervisor.py +285 -0
  155. gns3_server-3.0.0/gns3server/compute/virtualbox/__init__.py +212 -0
  156. gns3_server-3.0.0/gns3server/compute/virtualbox/virtualbox_error.py +26 -0
  157. gns3_server-3.0.0/gns3server/compute/virtualbox/virtualbox_vm.py +1255 -0
  158. gns3_server-3.0.0/gns3server/compute/vmware/__init__.py +725 -0
  159. gns3_server-3.0.0/gns3server/compute/vmware/vmware_error.py +26 -0
  160. gns3_server-3.0.0/gns3server/compute/vmware/vmware_vm.py +1007 -0
  161. gns3_server-3.0.0/gns3server/compute/vpcs/__init__.py +91 -0
  162. gns3_server-3.0.0/gns3server/compute/vpcs/vpcs_error.py +26 -0
  163. gns3_server-3.0.0/gns3server/compute/vpcs/vpcs_vm.py +595 -0
  164. gns3_server-3.0.0/gns3server/config.py +284 -0
  165. gns3_server-3.0.0/gns3server/config_samples/gns3_server.conf +160 -0
  166. gns3_server-3.0.0/gns3server/controller/__init__.py +691 -0
  167. gns3_server-3.0.0/gns3server/controller/appliance.py +86 -0
  168. gns3_server-3.0.0/gns3server/controller/appliance_manager.py +486 -0
  169. gns3_server-3.0.0/gns3server/controller/appliance_to_template.py +132 -0
  170. gns3_server-3.0.0/gns3server/controller/compute.py +677 -0
  171. gns3_server-3.0.0/gns3server/controller/controller_error.py +77 -0
  172. gns3_server-3.0.0/gns3server/controller/drawing.py +229 -0
  173. gns3_server-3.0.0/gns3server/controller/export_project.py +336 -0
  174. gns3_server-3.0.0/gns3server/controller/gns3vm/__init__.py +412 -0
  175. gns3_server-3.0.0/gns3server/controller/gns3vm/base_gns3_vm.py +303 -0
  176. gns3_server-3.0.0/gns3server/controller/gns3vm/gns3_vm_error.py +28 -0
  177. gns3_server-3.0.0/gns3server/controller/gns3vm/hyperv_gns3_vm.py +346 -0
  178. gns3_server-3.0.0/gns3server/controller/gns3vm/remote_gns3_vm.py +73 -0
  179. gns3_server-3.0.0/gns3server/controller/gns3vm/virtualbox_gns3_vm.py +480 -0
  180. gns3_server-3.0.0/gns3server/controller/gns3vm/vmware_gns3_vm.py +216 -0
  181. gns3_server-3.0.0/gns3server/controller/import_project.py +332 -0
  182. gns3_server-3.0.0/gns3server/controller/link.py +461 -0
  183. gns3_server-3.0.0/gns3server/controller/node.py +840 -0
  184. gns3_server-3.0.0/gns3server/controller/notification.py +149 -0
  185. gns3_server-3.0.0/gns3server/controller/ports/atm_port.py +51 -0
  186. gns3_server-3.0.0/gns3server/controller/ports/ethernet_port.py +49 -0
  187. gns3_server-3.0.0/gns3server/controller/ports/fastethernet_port.py +43 -0
  188. gns3_server-3.0.0/gns3server/controller/ports/frame_relay_port.py +43 -0
  189. gns3_server-3.0.0/gns3server/controller/ports/gigabitethernet_port.py +43 -0
  190. gns3_server-3.0.0/gns3server/controller/ports/port.py +109 -0
  191. gns3_server-3.0.0/gns3server/controller/ports/port_factory.py +213 -0
  192. gns3_server-3.0.0/gns3server/controller/ports/pos_port.py +52 -0
  193. gns3_server-3.0.0/gns3server/controller/ports/serial_port.py +63 -0
  194. gns3_server-3.0.0/gns3server/controller/project.py +1399 -0
  195. gns3_server-3.0.0/gns3server/controller/snapshot.py +140 -0
  196. gns3_server-3.0.0/gns3server/controller/symbol_themes.py +153 -0
  197. gns3_server-3.0.0/gns3server/controller/symbols.py +168 -0
  198. gns3_server-3.0.0/gns3server/controller/topology.py +788 -0
  199. gns3_server-3.0.0/gns3server/controller/udp_link.py +245 -0
  200. gns3_server-3.0.0/gns3server/core/tasks.py +99 -0
  201. gns3_server-3.0.0/gns3server/crash_report.py +167 -0
  202. gns3_server-3.0.0/gns3server/db/models/__init__.py +38 -0
  203. gns3_server-3.0.0/gns3server/db/models/acl.py +46 -0
  204. gns3_server-3.0.0/gns3server/db/models/base.py +117 -0
  205. gns3_server-3.0.0/gns3server/db/models/computes.py +33 -0
  206. gns3_server-3.0.0/gns3server/db/models/images.py +43 -0
  207. gns3_server-3.0.0/gns3server/db/models/pools.py +52 -0
  208. gns3_server-3.0.0/gns3server/db/models/privileges.py +359 -0
  209. gns3_server-3.0.0/gns3server/db/models/roles.py +57 -0
  210. gns3_server-3.0.0/gns3server/db/models/templates.py +272 -0
  211. gns3_server-3.0.0/gns3server/db/models/users.py +94 -0
  212. gns3_server-3.0.0/gns3server/db/repositories/base.py +24 -0
  213. gns3_server-3.0.0/gns3server/db/repositories/computes.py +93 -0
  214. gns3_server-3.0.0/gns3server/db/repositories/images.py +141 -0
  215. gns3_server-3.0.0/gns3server/db/repositories/pools.py +218 -0
  216. gns3_server-3.0.0/gns3server/db/repositories/rbac.py +430 -0
  217. gns3_server-3.0.0/gns3server/db/repositories/templates.py +172 -0
  218. gns3_server-3.0.0/gns3server/db/repositories/users.py +289 -0
  219. gns3_server-3.0.0/gns3server/db/tasks.py +230 -0
  220. gns3_server-3.0.0/gns3server/db_migrations/README +5 -0
  221. gns3_server-3.0.0/gns3server/db_migrations/env.py +101 -0
  222. gns3_server-3.0.0/gns3server/db_migrations/script.py.mako +24 -0
  223. gns3_server-3.0.0/gns3server/db_migrations/versions/7ceeddd9c9a8_init.py +28 -0
  224. gns3_server-3.0.0/gns3server/db_migrations/versions/9a5292aa4389_add_mac_address_field_in_docker_.py +27 -0
  225. gns3_server-3.0.0/gns3server/disks/OVMF.fd +0 -0
  226. {gns3_server-2.2.52 → gns3_server-3.0.0/gns3server}/gns3_server.egg-info/entry_points.txt +0 -0
  227. gns3_server-3.0.0/gns3server/logger.py +164 -0
  228. gns3_server-3.0.0/gns3server/main.py +81 -0
  229. gns3_server-3.0.0/gns3server/schemas/__init__.py +85 -0
  230. gns3_server-3.0.0/gns3server/schemas/common.py +71 -0
  231. gns3_server-3.0.0/gns3server/schemas/compute/atm_switch_nodes.py +55 -0
  232. gns3_server-3.0.0/gns3server/schemas/compute/cloud_nodes.py +137 -0
  233. gns3_server-3.0.0/gns3server/schemas/compute/docker_nodes.py +75 -0
  234. gns3_server-3.0.0/gns3server/schemas/compute/dynamips_nodes.py +197 -0
  235. gns3_server-3.0.0/gns3server/schemas/compute/ethernet_hub_nodes.py +63 -0
  236. gns3_server-3.0.0/gns3server/schemas/compute/ethernet_switch_nodes.py +100 -0
  237. gns3_server-3.0.0/gns3server/schemas/compute/frame_relay_switch_nodes.py +55 -0
  238. gns3_server-3.0.0/gns3server/schemas/compute/iou_nodes.py +76 -0
  239. gns3_server-3.0.0/gns3server/schemas/compute/nat_nodes.py +122 -0
  240. gns3_server-3.0.0/gns3server/schemas/compute/nios.py +66 -0
  241. gns3_server-3.0.0/gns3server/schemas/compute/qemu_nodes.py +245 -0
  242. gns3_server-3.0.0/gns3server/schemas/compute/virtualbox_nodes.py +97 -0
  243. gns3_server-3.0.0/gns3server/schemas/compute/vmware_nodes.py +102 -0
  244. gns3_server-3.0.0/gns3server/schemas/compute/vpcs_nodes.py +68 -0
  245. gns3_server-3.0.0/gns3server/schemas/config.py +197 -0
  246. gns3_server-3.0.0/gns3server/schemas/controller/appliances.py +466 -0
  247. gns3_server-3.0.0/gns3server/schemas/controller/base.py +25 -0
  248. gns3_server-3.0.0/gns3server/schemas/controller/capabilities.py +34 -0
  249. gns3_server-3.0.0/gns3server/schemas/controller/computes.py +168 -0
  250. gns3_server-3.0.0/gns3server/schemas/controller/drawings.py +34 -0
  251. gns3_server-3.0.0/gns3server/schemas/controller/gns3vm.py +56 -0
  252. gns3_server-3.0.0/gns3server/schemas/controller/images.py +44 -0
  253. gns3_server-3.0.0/gns3server/schemas/controller/iou_license.py +23 -0
  254. gns3_server-3.0.0/gns3server/schemas/controller/labels.py +30 -0
  255. gns3_server-3.0.0/gns3server/schemas/controller/links.py +94 -0
  256. gns3_server-3.0.0/gns3server/schemas/controller/nodes.py +177 -0
  257. gns3_server-3.0.0/gns3server/schemas/controller/pools.py +81 -0
  258. gns3_server-3.0.0/gns3server/schemas/controller/projects.py +116 -0
  259. gns3_server-3.0.0/gns3server/schemas/controller/rbac.py +113 -0
  260. gns3_server-3.0.0/gns3server/schemas/controller/snapshots.py +42 -0
  261. gns3_server-3.0.0/gns3server/schemas/controller/templates/__init__.py +83 -0
  262. gns3_server-3.0.0/gns3server/schemas/controller/templates/cloud_templates.py +44 -0
  263. gns3_server-3.0.0/gns3server/schemas/controller/templates/docker_templates.py +59 -0
  264. gns3_server-3.0.0/gns3server/schemas/controller/templates/dynamips_templates.py +199 -0
  265. gns3_server-3.0.0/gns3server/schemas/controller/templates/ethernet_hub_templates.py +46 -0
  266. gns3_server-3.0.0/gns3server/schemas/controller/templates/ethernet_switch_templates.py +57 -0
  267. gns3_server-3.0.0/gns3server/schemas/controller/templates/iou_templates.py +47 -0
  268. gns3_server-3.0.0/gns3server/schemas/controller/templates/qemu_templates.py +94 -0
  269. gns3_server-3.0.0/gns3server/schemas/controller/templates/virtualbox_templates.py +64 -0
  270. gns3_server-3.0.0/gns3server/schemas/controller/templates/vmware_templates.py +61 -0
  271. gns3_server-3.0.0/gns3server/schemas/controller/templates/vpcs_templates.py +39 -0
  272. gns3_server-3.0.0/gns3server/schemas/controller/tokens.py +29 -0
  273. gns3_server-3.0.0/gns3server/schemas/controller/topology.py +82 -0
  274. gns3_server-3.0.0/gns3server/schemas/controller/users.py +105 -0
  275. gns3_server-3.0.0/gns3server/schemas/qemu_disk_image.py +103 -0
  276. gns3_server-3.0.0/gns3server/schemas/version.py +25 -0
  277. gns3_server-3.0.0/gns3server/server.py +348 -0
  278. gns3_server-3.0.0/gns3server/services/__init__.py +19 -0
  279. gns3_server-3.0.0/gns3server/services/authentication.py +83 -0
  280. gns3_server-3.0.0/gns3server/services/computes.py +82 -0
  281. gns3_server-3.0.0/gns3server/services/templates.py +329 -0
  282. gns3_server-3.0.0/gns3server/static/redoc.standalone.js +1782 -0
  283. gns3_server-3.0.0/gns3server/static/swagger-ui-bundle.js +2 -0
  284. gns3_server-3.0.0/gns3server/static/swagger-ui.css +3 -0
  285. gns3_server-3.0.0/gns3server/static/web-ui/3rdpartylicenses.txt +2604 -0
  286. gns3_server-3.0.0/gns3server/static/web-ui/465.92c7ab880f2504d3.js +1 -0
  287. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Bold.635e9291df1a5a00.woff2 +0 -0
  288. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Bold.885427cced6d8c94.woff +0 -0
  289. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Bold.93203a43bc93ad9c.svg +8453 -0
  290. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Bold.a7ab189a45f553b4.eot +0 -0
  291. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Bold.e989c11744b36f58.ttf +0 -0
  292. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-BoldItalic.2baf33b639fc86a4.woff +0 -0
  293. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-BoldItalic.2eea9ba02e25c1d3.ttf +0 -0
  294. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-BoldItalic.46a5eec91da0d900.svg +8453 -0
  295. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-BoldItalic.7fdef73b477daa73.eot +0 -0
  296. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-BoldItalic.c62f70f121f271aa.woff2 +0 -0
  297. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Italic.219ee88e5bc4e168.ttf +0 -0
  298. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Italic.3d6f7cf772169c8d.svg +8453 -0
  299. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Italic.77cd3818b5a2cb97.woff +0 -0
  300. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Italic.85194585ae9d8c36.eot +0 -0
  301. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Italic.eee02500e81db981.woff2 +0 -0
  302. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Regular.156b7584192d70ed.eot +0 -0
  303. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Regular.374d132a6803e279.woff2 +0 -0
  304. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Regular.595e3f5876719740.woff +0 -0
  305. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Regular.bb384defbe36eaec.svg +8453 -0
  306. gns3_server-3.0.0/gns3server/static/web-ui/NotoSans-Regular.e6139cb1663a1c57.ttf +0 -0
  307. gns3_server-3.0.0/gns3server/static/web-ui/ReleaseNotes.txt +179 -0
  308. gns3_server-3.0.0/gns3server/static/web-ui/assets/favicon.ico +0 -0
  309. gns3_server-3.0.0/gns3server/static/web-ui/index.html +51 -0
  310. gns3_server-3.0.0/gns3server/static/web-ui/main.f802edd2b8c6db1d.js +1 -0
  311. gns3_server-3.0.0/gns3server/static/web-ui/polyfills.319c79dd175e50d0.js +1 -0
  312. gns3_server-3.0.0/gns3server/static/web-ui/runtime.24fa95b7061d7056.js +1 -0
  313. gns3_server-3.0.0/gns3server/static/web-ui/styles.6e966072487df0b7.css +5 -0
  314. gns3_server-3.0.0/gns3server/templates/compute.html +62 -0
  315. gns3_server-3.0.0/gns3server/templates/project.html +91 -0
  316. gns3_server-3.0.0/gns3server/utils/__init__.py +123 -0
  317. gns3_server-3.0.0/gns3server/utils/application_id.py +49 -0
  318. gns3_server-3.0.0/gns3server/utils/asyncio/__init__.py +148 -0
  319. gns3_server-3.0.0/gns3server/utils/asyncio/aiozipstream.py +528 -0
  320. gns3_server-3.0.0/gns3server/utils/asyncio/embed_shell.py +369 -0
  321. gns3_server-3.0.0/gns3server/utils/asyncio/input_stream.py +408 -0
  322. gns3_server-3.0.0/gns3server/utils/asyncio/pool.py +69 -0
  323. gns3_server-3.0.0/gns3server/utils/asyncio/raw_command_server.py +140 -0
  324. gns3_server-3.0.0/gns3server/utils/asyncio/serial.py +87 -0
  325. gns3_server-3.0.0/gns3server/utils/asyncio/telnet_server.py +450 -0
  326. gns3_server-3.0.0/gns3server/utils/cpu_percent.py +46 -0
  327. gns3_server-3.0.0/gns3server/utils/file_watcher.py +103 -0
  328. gns3_server-3.0.0/gns3server/utils/get_resource.py +48 -0
  329. gns3_server-3.0.0/gns3server/utils/hostname.py +112 -0
  330. gns3_server-3.0.0/gns3server/utils/http_client.py +71 -0
  331. gns3_server-3.0.0/gns3server/utils/images.py +378 -0
  332. gns3_server-3.0.0/gns3server/utils/interfaces.py +254 -0
  333. gns3_server-3.0.0/gns3server/utils/notification_queue.py +79 -0
  334. gns3_server-3.0.0/gns3server/utils/path.py +76 -0
  335. gns3_server-3.0.0/gns3server/utils/picture.py +146 -0
  336. gns3_server-3.0.0/gns3server/utils/qt.py +44 -0
  337. gns3_server-3.0.0/gns3server/utils/vmnet.py +277 -0
  338. gns3_server-3.0.0/gns3server/utils/zipfile_zstd/__init__.py +10 -0
  339. gns3_server-3.0.0/gns3server/utils/zipfile_zstd/_patcher.py +20 -0
  340. gns3_server-3.0.0/gns3server/utils/zipfile_zstd/_zipfile.py +64 -0
  341. gns3_server-3.0.0/gns3server/version.py +36 -0
  342. gns3_server-3.0.0/pyproject.toml +51 -0
  343. gns3_server-3.0.0/requirements.txt +24 -0
  344. gns3_server-3.0.0/tests/compute/builtin/nodes/test_cloud.py +220 -0
  345. gns3_server-3.0.0/tests/compute/builtin/nodes/test_nat.py +85 -0
  346. gns3_server-3.0.0/tests/compute/docker/test_docker.py +261 -0
  347. gns3_server-3.0.0/tests/compute/docker/test_docker_vm.py +1882 -0
  348. gns3_server-3.0.0/tests/compute/dynamips/test_dynamips_manager.py +130 -0
  349. gns3_server-3.0.0/tests/compute/dynamips/test_dynamips_router.py +78 -0
  350. gns3_server-3.0.0/tests/compute/iou/test_iou_vm.py +467 -0
  351. gns3_server-3.0.0/tests/compute/qemu/test_qcow2.py +78 -0
  352. gns3_server-3.0.0/tests/compute/qemu/test_qemu_manager.py +131 -0
  353. gns3_server-3.0.0/tests/compute/qemu/test_qemu_vm.py +987 -0
  354. gns3_server-3.0.0/tests/compute/test_base_node.py +174 -0
  355. gns3_server-3.0.0/tests/compute/test_manager.py +304 -0
  356. gns3_server-3.0.0/tests/compute/test_notification_manager.py +97 -0
  357. gns3_server-3.0.0/tests/compute/test_port_manager.py +144 -0
  358. gns3_server-3.0.0/tests/compute/test_project.py +226 -0
  359. gns3_server-3.0.0/tests/compute/test_project_manager.py +35 -0
  360. gns3_server-3.0.0/tests/compute/virtualbox/test_virtualbox_manager.py +102 -0
  361. gns3_server-3.0.0/tests/compute/virtualbox/test_virtualbox_vm.py +144 -0
  362. gns3_server-3.0.0/tests/compute/vmware/test_vmware_manager.py +40 -0
  363. gns3_server-3.0.0/tests/compute/vmware/test_vmware_vm.py +78 -0
  364. gns3_server-3.0.0/tests/compute/vpcs/test_vpcs_manager.py +79 -0
  365. gns3_server-3.0.0/tests/compute/vpcs/test_vpcs_vm.py +328 -0
  366. gns3_server-3.0.0/tests/conftest.py +429 -0
  367. gns3_server-3.0.0/tests/controller/gns3vm/test_remote_gns3_vm.py +75 -0
  368. gns3_server-3.0.0/tests/controller/gns3vm/test_virtualbox_gns3_vm.py +76 -0
  369. gns3_server-3.0.0/tests/controller/gns3vm/test_vmware_gns3_vm.py +60 -0
  370. gns3_server-3.0.0/tests/controller/test_compute.py +526 -0
  371. gns3_server-3.0.0/tests/controller/test_controller.py +431 -0
  372. gns3_server-3.0.0/tests/controller/test_drawing.py +126 -0
  373. gns3_server-3.0.0/tests/controller/test_export_project.py +482 -0
  374. gns3_server-3.0.0/tests/controller/test_gns3vm.py +113 -0
  375. gns3_server-3.0.0/tests/controller/test_import_project.py +613 -0
  376. gns3_server-3.0.0/tests/controller/test_link.py +383 -0
  377. gns3_server-3.0.0/tests/controller/test_node.py +568 -0
  378. gns3_server-3.0.0/tests/controller/test_node_port_name.py +609 -0
  379. gns3_server-3.0.0/tests/controller/test_notification.py +129 -0
  380. gns3_server-3.0.0/tests/controller/test_project.py +947 -0
  381. gns3_server-3.0.0/tests/controller/test_project_open.py +229 -0
  382. gns3_server-3.0.0/tests/controller/test_snapshot.py +112 -0
  383. gns3_server-3.0.0/tests/controller/test_symbols.py +65 -0
  384. gns3_server-3.0.0/tests/controller/test_topology.py +227 -0
  385. gns3_server-3.0.0/tests/controller/test_udp_link.py +438 -0
  386. gns3_server-3.0.0/tests/test_config.py +160 -0
  387. gns3_server-3.0.0/tests/test_server.py +142 -0
  388. gns3_server-3.0.0/tests/topologies/1_5_docker_remote/after/1_5_docker_remote.gns3 +53 -0
  389. gns3_server-3.0.0/tests/topologies/1_5_docker_remote/before/1_5_docker_remote.gns3 +58 -0
  390. gns3_server-3.0.0/tests/topologies/dynamips_2_0_0_b2/after/project-files/dynamips/b31bacb4-b251-47e3-b9e8-fe5596e7a8ba/c7200_i1_nvram +0 -0
  391. gns3_server-3.0.0/tests/topologies/dynamips_2_0_0_b2/after/project-files/dynamips/f306df6f-dbe0-4be1-9a40-625b8d20fe6e/c7200_i2_nvram +0 -0
  392. gns3_server-3.0.0/tests/topologies/dynamips_2_0_0_b2/before/project-files/dynamips/c7200_i1_nvram +0 -0
  393. gns3_server-3.0.0/tests/topologies/dynamips_2_0_0_b2/before/project-files/dynamips/c7200_i2_nvram +0 -0
  394. gns3_server-3.0.0/tests/utils/test_asyncio.py +77 -0
  395. gns3_server-3.0.0/tests/utils/test_file_watcher.py +68 -0
  396. gns3_server-3.0.0/tests/utils/test_images.py +202 -0
  397. gns3_server-3.0.0/tests/utils/test_interfaces.py +54 -0
  398. gns3_server-3.0.0/tests/utils/test_path.py +37 -0
  399. gns3_server-3.0.0/tests/web/test_response.py +0 -0
  400. gns3_server-2.2.52/AUTHORS +0 -2
  401. gns3_server-2.2.52/CHANGELOG +0 -2355
  402. gns3_server-2.2.52/MANIFEST.in +0 -11
  403. gns3_server-2.2.52/PKG-INFO +0 -300
  404. gns3_server-2.2.52/README.md +0 -257
  405. gns3_server-2.2.52/conf/gns3_server.conf +0 -111
  406. gns3_server-2.2.52/dev-requirements.txt +0 -6
  407. gns3_server-2.2.52/gns3_server.egg-info/PKG-INFO +0 -300
  408. gns3_server-2.2.52/gns3_server.egg-info/SOURCES.txt +0 -1385
  409. gns3_server-2.2.52/gns3_server.egg-info/requires.txt +0 -17
  410. gns3_server-2.2.52/gns3server/__init__.py +0 -18
  411. gns3_server-2.2.52/gns3server/appliances/cisco-iou-l2.gns3a +0 -84
  412. gns3_server-2.2.52/gns3server/appliances/cisco-iou-l3.gns3a +0 -84
  413. gns3_server-2.2.52/gns3server/compute/__init__.py +0 -37
  414. gns3_server-2.2.52/gns3server/compute/adapters/adapter.py +0 -105
  415. gns3_server-2.2.52/gns3server/compute/adapters/ethernet_adapter.py +0 -34
  416. gns3_server-2.2.52/gns3server/compute/adapters/serial_adapter.py +0 -33
  417. gns3_server-2.2.52/gns3server/compute/base_manager.py +0 -632
  418. gns3_server-2.2.52/gns3server/compute/base_node.py +0 -915
  419. gns3_server-2.2.52/gns3server/compute/builtin/__init__.py +0 -46
  420. gns3_server-2.2.52/gns3server/compute/builtin/builtin_node_factory.py +0 -45
  421. gns3_server-2.2.52/gns3server/compute/builtin/nodes/cloud.py +0 -517
  422. gns3_server-2.2.52/gns3server/compute/builtin/nodes/ethernet_hub.py +0 -101
  423. gns3_server-2.2.52/gns3server/compute/builtin/nodes/ethernet_switch.py +0 -101
  424. gns3_server-2.2.52/gns3server/compute/builtin/nodes/nat.py +0 -91
  425. gns3_server-2.2.52/gns3server/compute/docker/__init__.py +0 -311
  426. gns3_server-2.2.52/gns3server/compute/docker/docker_error.py +0 -34
  427. gns3_server-2.2.52/gns3server/compute/docker/docker_vm.py +0 -1213
  428. gns3_server-2.2.52/gns3server/compute/dynamips/__init__.py +0 -673
  429. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/adapter.py +0 -166
  430. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c1700_mb_1fe.py +0 -37
  431. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c1700_mb_wic1.py +0 -38
  432. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c2600_mb_1e.py +0 -37
  433. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c2600_mb_1fe.py +0 -38
  434. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c2600_mb_2e.py +0 -37
  435. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c2600_mb_2fe.py +0 -37
  436. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c7200_io_2fe.py +0 -37
  437. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c7200_io_fe.py +0 -37
  438. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/c7200_io_ge_e.py +0 -37
  439. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/gt96100_fe.py +0 -33
  440. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/leopard_2fe.py +0 -38
  441. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/nm_16esw.py +0 -33
  442. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/nm_1e.py +0 -33
  443. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/nm_1fe_tx.py +0 -33
  444. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/nm_4e.py +0 -33
  445. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/nm_4t.py +0 -33
  446. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_2fe_tx.py +0 -33
  447. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_4e.py +0 -33
  448. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_4t.py +0 -33
  449. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_8e.py +0 -33
  450. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_8t.py +0 -33
  451. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_a1.py +0 -33
  452. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_fe_tx.py +0 -33
  453. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_ge.py +0 -33
  454. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/pa_pos_oc3.py +0 -33
  455. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/wic_1enet.py +0 -41
  456. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/wic_1t.py +0 -41
  457. gns3_server-2.2.52/gns3server/compute/dynamips/adapters/wic_2t.py +0 -41
  458. gns3_server-2.2.52/gns3server/compute/dynamips/dynamips_error.py +0 -27
  459. gns3_server-2.2.52/gns3server/compute/dynamips/dynamips_factory.py +0 -67
  460. gns3_server-2.2.52/gns3server/compute/dynamips/dynamips_hypervisor.py +0 -320
  461. gns3_server-2.2.52/gns3server/compute/dynamips/hypervisor.py +0 -217
  462. gns3_server-2.2.52/gns3server/compute/dynamips/nios/nio.py +0 -347
  463. gns3_server-2.2.52/gns3server/compute/dynamips/nios/nio_generic_ethernet.py +0 -67
  464. gns3_server-2.2.52/gns3server/compute/dynamips/nios/nio_linux_ethernet.py +0 -66
  465. gns3_server-2.2.52/gns3server/compute/dynamips/nios/nio_null.py +0 -51
  466. gns3_server-2.2.52/gns3server/compute/dynamips/nios/nio_tap.py +0 -64
  467. gns3_server-2.2.52/gns3server/compute/dynamips/nios/nio_udp.py +0 -142
  468. gns3_server-2.2.52/gns3server/compute/dynamips/nios/nio_unix.py +0 -82
  469. gns3_server-2.2.52/gns3server/compute/dynamips/nios/nio_vde.py +0 -82
  470. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/atm_switch.py +0 -473
  471. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/bridge.py +0 -107
  472. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/c1700.py +0 -145
  473. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/c2600.py +0 -154
  474. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/c2691.py +0 -95
  475. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/c3600.py +0 -139
  476. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/c3725.py +0 -95
  477. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/c3745.py +0 -95
  478. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/c7200.py +0 -238
  479. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/device.py +0 -114
  480. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/ethernet_hub.py +0 -233
  481. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/ethernet_switch.py +0 -473
  482. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/frame_relay_switch.py +0 -359
  483. gns3_server-2.2.52/gns3server/compute/dynamips/nodes/router.py +0 -1651
  484. gns3_server-2.2.52/gns3server/compute/error.py +0 -42
  485. gns3_server-2.2.52/gns3server/compute/iou/__init__.py +0 -64
  486. gns3_server-2.2.52/gns3server/compute/iou/iou_error.py +0 -26
  487. gns3_server-2.2.52/gns3server/compute/iou/iou_vm.py +0 -1360
  488. gns3_server-2.2.52/gns3server/compute/iou/utils/iou_export.py +0 -236
  489. gns3_server-2.2.52/gns3server/compute/iou/utils/iou_import.py +0 -246
  490. gns3_server-2.2.52/gns3server/compute/nios/nio.py +0 -121
  491. gns3_server-2.2.52/gns3server/compute/nios/nio_ethernet.py +0 -55
  492. gns3_server-2.2.52/gns3server/compute/nios/nio_tap.py +0 -55
  493. gns3_server-2.2.52/gns3server/compute/nios/nio_udp.py +0 -81
  494. gns3_server-2.2.52/gns3server/compute/notification_manager.py +0 -69
  495. gns3_server-2.2.52/gns3server/compute/port_manager.py +0 -325
  496. gns3_server-2.2.52/gns3server/compute/project.py +0 -440
  497. gns3_server-2.2.52/gns3server/compute/project_manager.py +0 -140
  498. gns3_server-2.2.52/gns3server/compute/qemu/__init__.py +0 -395
  499. gns3_server-2.2.52/gns3server/compute/qemu/qemu_error.py +0 -27
  500. gns3_server-2.2.52/gns3server/compute/qemu/qemu_vm.py +0 -2475
  501. gns3_server-2.2.52/gns3server/compute/qemu/utils/guest_cid.py +0 -38
  502. gns3_server-2.2.52/gns3server/compute/qemu/utils/qcow2.py +0 -138
  503. gns3_server-2.2.52/gns3server/compute/qemu/utils/ziputils.py +0 -53
  504. gns3_server-2.2.52/gns3server/compute/traceng/__init__.py +0 -44
  505. gns3_server-2.2.52/gns3server/compute/traceng/traceng_error.py +0 -27
  506. gns3_server-2.2.52/gns3server/compute/traceng/traceng_vm.py +0 -458
  507. gns3_server-2.2.52/gns3server/compute/virtualbox/__init__.py +0 -222
  508. gns3_server-2.2.52/gns3server/compute/virtualbox/virtualbox_error.py +0 -27
  509. gns3_server-2.2.52/gns3server/compute/virtualbox/virtualbox_vm.py +0 -1172
  510. gns3_server-2.2.52/gns3server/compute/vmware/__init__.py +0 -777
  511. gns3_server-2.2.52/gns3server/compute/vmware/vmware_error.py +0 -27
  512. gns3_server-2.2.52/gns3server/compute/vmware/vmware_vm.py +0 -956
  513. gns3_server-2.2.52/gns3server/compute/vpcs/__init__.py +0 -92
  514. gns3_server-2.2.52/gns3server/compute/vpcs/vpcs_error.py +0 -27
  515. gns3_server-2.2.52/gns3server/compute/vpcs/vpcs_vm.py +0 -569
  516. gns3_server-2.2.52/gns3server/config.py +0 -305
  517. gns3_server-2.2.52/gns3server/controller/__init__.py +0 -668
  518. gns3_server-2.2.52/gns3server/controller/appliance.py +0 -68
  519. gns3_server-2.2.52/gns3server/controller/appliance_manager.py +0 -260
  520. gns3_server-2.2.52/gns3server/controller/compute.py +0 -665
  521. gns3_server-2.2.52/gns3server/controller/controller_error.py +0 -29
  522. gns3_server-2.2.52/gns3server/controller/drawing.py +0 -225
  523. gns3_server-2.2.52/gns3server/controller/export_project.py +0 -303
  524. gns3_server-2.2.52/gns3server/controller/gns3vm/__init__.py +0 -406
  525. gns3_server-2.2.52/gns3server/controller/gns3vm/base_gns3_vm.py +0 -303
  526. gns3_server-2.2.52/gns3server/controller/gns3vm/gns3_vm_error.py +0 -29
  527. gns3_server-2.2.52/gns3server/controller/gns3vm/hyperv_gns3_vm.py +0 -327
  528. gns3_server-2.2.52/gns3server/controller/gns3vm/remote_gns3_vm.py +0 -73
  529. gns3_server-2.2.52/gns3server/controller/gns3vm/virtualbox_gns3_vm.py +0 -471
  530. gns3_server-2.2.52/gns3server/controller/gns3vm/vmware_gns3_vm.py +0 -217
  531. gns3_server-2.2.52/gns3server/controller/import_project.py +0 -312
  532. gns3_server-2.2.52/gns3server/controller/link.py +0 -479
  533. gns3_server-2.2.52/gns3server/controller/node.py +0 -765
  534. gns3_server-2.2.52/gns3server/controller/notification.py +0 -170
  535. gns3_server-2.2.52/gns3server/controller/ports/atm_port.py +0 -53
  536. gns3_server-2.2.52/gns3server/controller/ports/ethernet_port.py +0 -50
  537. gns3_server-2.2.52/gns3server/controller/ports/fastethernet_port.py +0 -45
  538. gns3_server-2.2.52/gns3server/controller/ports/frame_relay_port.py +0 -45
  539. gns3_server-2.2.52/gns3server/controller/ports/gigabitethernet_port.py +0 -45
  540. gns3_server-2.2.52/gns3server/controller/ports/port.py +0 -110
  541. gns3_server-2.2.52/gns3server/controller/ports/port_factory.py +0 -227
  542. gns3_server-2.2.52/gns3server/controller/ports/pos_port.py +0 -54
  543. gns3_server-2.2.52/gns3server/controller/ports/serial_port.py +0 -67
  544. gns3_server-2.2.52/gns3server/controller/project.py +0 -1326
  545. gns3_server-2.2.52/gns3server/controller/snapshot.py +0 -137
  546. gns3_server-2.2.52/gns3server/controller/symbol_themes.py +0 -137
  547. gns3_server-2.2.52/gns3server/controller/symbols.py +0 -144
  548. gns3_server-2.2.52/gns3server/controller/template.py +0 -217
  549. gns3_server-2.2.52/gns3server/controller/template_manager.py +0 -150
  550. gns3_server-2.2.52/gns3server/controller/topology.py +0 -762
  551. gns3_server-2.2.52/gns3server/controller/udp_link.py +0 -217
  552. gns3_server-2.2.52/gns3server/crash_report.py +0 -167
  553. gns3_server-2.2.52/gns3server/gns3_server.egg-info/entry_points.txt +0 -4
  554. gns3_server-2.2.52/gns3server/gns3_server.egg-info/not-zip-safe +0 -1
  555. gns3_server-2.2.52/gns3server/handlers/__init__.py +0 -22
  556. gns3_server-2.2.52/gns3server/handlers/api/compute/__init__.py +0 -43
  557. gns3_server-2.2.52/gns3server/handlers/api/compute/atm_switch_handler.py +0 -312
  558. gns3_server-2.2.52/gns3server/handlers/api/compute/capabilities_handler.py +0 -42
  559. gns3_server-2.2.52/gns3server/handlers/api/compute/cloud_handler.py +0 -326
  560. gns3_server-2.2.52/gns3server/handlers/api/compute/docker_handler.py +0 -447
  561. gns3_server-2.2.52/gns3server/handlers/api/compute/dynamips_vm_handler.py +0 -548
  562. gns3_server-2.2.52/gns3server/handlers/api/compute/ethernet_hub_handler.py +0 -314
  563. gns3_server-2.2.52/gns3server/handlers/api/compute/ethernet_switch_handler.py +0 -341
  564. gns3_server-2.2.52/gns3server/handlers/api/compute/frame_relay_switch_handler.py +0 -312
  565. gns3_server-2.2.52/gns3server/handlers/api/compute/iou_handler.py +0 -489
  566. gns3_server-2.2.52/gns3server/handlers/api/compute/nat_handler.py +0 -318
  567. gns3_server-2.2.52/gns3server/handlers/api/compute/network_handler.py +0 -59
  568. gns3_server-2.2.52/gns3server/handlers/api/compute/notification_handler.py +0 -64
  569. gns3_server-2.2.52/gns3server/handlers/api/compute/project_handler.py +0 -299
  570. gns3_server-2.2.52/gns3server/handlers/api/compute/qemu_handler.py +0 -612
  571. gns3_server-2.2.52/gns3server/handlers/api/compute/server_handler.py +0 -135
  572. gns3_server-2.2.52/gns3server/handlers/api/compute/traceng_handler.py +0 -365
  573. gns3_server-2.2.52/gns3server/handlers/api/compute/virtualbox_handler.py +0 -459
  574. gns3_server-2.2.52/gns3server/handlers/api/compute/vmware_handler.py +0 -444
  575. gns3_server-2.2.52/gns3server/handlers/api/compute/vpcs_handler.py +0 -397
  576. gns3_server-2.2.52/gns3server/handlers/api/controller/__init__.py +0 -29
  577. gns3_server-2.2.52/gns3server/handlers/api/controller/appliance_handler.py +0 -43
  578. gns3_server-2.2.52/gns3server/handlers/api/controller/compute_handler.py +0 -234
  579. gns3_server-2.2.52/gns3server/handlers/api/controller/drawing_handler.py +0 -120
  580. gns3_server-2.2.52/gns3server/handlers/api/controller/gns3_vm_handler.py +0 -80
  581. gns3_server-2.2.52/gns3server/handlers/api/controller/link_handler.py +0 -245
  582. gns3_server-2.2.52/gns3server/handlers/api/controller/node_handler.py +0 -569
  583. gns3_server-2.2.52/gns3server/handlers/api/controller/notification_handler.py +0 -87
  584. gns3_server-2.2.52/gns3server/handlers/api/controller/project_handler.py +0 -517
  585. gns3_server-2.2.52/gns3server/handlers/api/controller/server_handler.py +0 -259
  586. gns3_server-2.2.52/gns3server/handlers/api/controller/snapshot_handler.py +0 -106
  587. gns3_server-2.2.52/gns3server/handlers/api/controller/symbol_handler.py +0 -134
  588. gns3_server-2.2.52/gns3server/handlers/api/controller/template_handler.py +0 -175
  589. gns3_server-2.2.52/gns3server/handlers/index_handler.py +0 -116
  590. gns3_server-2.2.52/gns3server/main.py +0 -91
  591. gns3_server-2.2.52/gns3server/notification_queue.py +0 -77
  592. gns3_server-2.2.52/gns3server/run.py +0 -282
  593. gns3_server-2.2.52/gns3server/schemas/atm_switch.py +0 -86
  594. gns3_server-2.2.52/gns3server/schemas/capabilities.py +0 -42
  595. gns3_server-2.2.52/gns3server/schemas/cloud.py +0 -177
  596. gns3_server-2.2.52/gns3server/schemas/cloud_template.py +0 -66
  597. gns3_server-2.2.52/gns3server/schemas/compute.py +0 -182
  598. gns3_server-2.2.52/gns3server/schemas/custom_adapters.py +0 -49
  599. gns3_server-2.2.52/gns3server/schemas/docker.py +0 -259
  600. gns3_server-2.2.52/gns3server/schemas/docker_template.py +0 -114
  601. gns3_server-2.2.52/gns3server/schemas/drawing.py +0 -66
  602. gns3_server-2.2.52/gns3server/schemas/dynamips_template.py +0 -404
  603. gns3_server-2.2.52/gns3server/schemas/dynamips_vm.py +0 -762
  604. gns3_server-2.2.52/gns3server/schemas/ethernet_hub.py +0 -114
  605. gns3_server-2.2.52/gns3server/schemas/ethernet_hub_template.py +0 -80
  606. gns3_server-2.2.52/gns3server/schemas/ethernet_switch.py +0 -146
  607. gns3_server-2.2.52/gns3server/schemas/ethernet_switch_template.py +0 -127
  608. gns3_server-2.2.52/gns3server/schemas/filter.py +0 -23
  609. gns3_server-2.2.52/gns3server/schemas/frame_relay_switch.py +0 -86
  610. gns3_server-2.2.52/gns3server/schemas/gns3vm.py +0 -64
  611. gns3_server-2.2.52/gns3server/schemas/iou.py +0 -208
  612. gns3_server-2.2.52/gns3server/schemas/iou_license.py +0 -33
  613. gns3_server-2.2.52/gns3server/schemas/iou_template.py +0 -97
  614. gns3_server-2.2.52/gns3server/schemas/label.py +0 -45
  615. gns3_server-2.2.52/gns3server/schemas/link.py +0 -133
  616. gns3_server-2.2.52/gns3server/schemas/nat.py +0 -65
  617. gns3_server-2.2.52/gns3server/schemas/nio.py +0 -192
  618. gns3_server-2.2.52/gns3server/schemas/node.py +0 -291
  619. gns3_server-2.2.52/gns3server/schemas/port.py +0 -115
  620. gns3_server-2.2.52/gns3server/schemas/project.py +0 -337
  621. gns3_server-2.2.52/gns3server/schemas/qemu.py +0 -861
  622. gns3_server-2.2.52/gns3server/schemas/qemu_template.py +0 -237
  623. gns3_server-2.2.52/gns3server/schemas/server_statistics.py +0 -82
  624. gns3_server-2.2.52/gns3server/schemas/snapshot.py +0 -64
  625. gns3_server-2.2.52/gns3server/schemas/template.py +0 -111
  626. gns3_server-2.2.52/gns3server/schemas/topology.py +0 -155
  627. gns3_server-2.2.52/gns3server/schemas/traceng.py +0 -162
  628. gns3_server-2.2.52/gns3server/schemas/traceng_template.py +0 -51
  629. gns3_server-2.2.52/gns3server/schemas/version.py +0 -33
  630. gns3_server-2.2.52/gns3server/schemas/virtualbox.py +0 -188
  631. gns3_server-2.2.52/gns3server/schemas/virtualbox_template.py +0 -118
  632. gns3_server-2.2.52/gns3server/schemas/vmware.py +0 -172
  633. gns3_server-2.2.52/gns3server/schemas/vmware_template.py +0 -106
  634. gns3_server-2.2.52/gns3server/schemas/vpcs.py +0 -131
  635. gns3_server-2.2.52/gns3server/schemas/vpcs_template.py +0 -52
  636. gns3_server-2.2.52/gns3server/static/web-ui/26.77d4bfd104f37c42e028.js +0 -1
  637. gns3_server-2.2.52/gns3server/static/web-ui/3rdpartylicenses.txt +0 -2761
  638. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Bold.18ef6a21171328dc11a9.svg +0 -8318
  639. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Bold.364158e7b3016f83790a.woff +0 -0
  640. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Bold.3ea2282022a16bb2827b.woff2 +0 -0
  641. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Bold.82b1a58ddf26951345dc.ttf +0 -0
  642. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Bold.fe2c3263802c4469728b.eot +0 -0
  643. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-BoldItalic.7930d6e32b12448fc0ae.svg +0 -8318
  644. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-BoldItalic.9e49c91c40231a024afb.ttf +0 -0
  645. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-BoldItalic.b40d78b2f9e2490108d0.eot +0 -0
  646. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-BoldItalic.ed8d2295c0b2e0a854d8.woff +0 -0
  647. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-BoldItalic.f2639d17cfb5c6e74edd.woff2 +0 -0
  648. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Italic.08690ed789a5532ed7be.ttf +0 -0
  649. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Italic.1506cb93f574152bda3d.eot +0 -0
  650. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Italic.8a08f0f08e448e4f522e.woff +0 -0
  651. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Italic.ca985d172a576d01c77e.woff2 +0 -0
  652. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Italic.cecaa17f122ac96a50f8.svg +0 -8318
  653. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Regular.22c53c8686edcaecdf66.woff +0 -0
  654. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Regular.730e73a4d4556fa0efe8.woff2 +0 -0
  655. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Regular.8142e5b2e99a1cccafb7.svg +0 -8318
  656. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Regular.e962f548522aa99bb8f9.ttf +0 -0
  657. gns3_server-2.2.52/gns3server/static/web-ui/NotoSans-Regular.f55982ed9f2bc3af6185.eot +0 -0
  658. gns3_server-2.2.52/gns3server/static/web-ui/ReleaseNotes.txt +0 -180
  659. gns3_server-2.2.52/gns3server/static/web-ui/index.html +0 -51
  660. gns3_server-2.2.52/gns3server/static/web-ui/main.9297104511b6616fc55c.js +0 -1
  661. gns3_server-2.2.52/gns3server/static/web-ui/polyfills-es5.865074f5cd9a121111a2.js +0 -1
  662. gns3_server-2.2.52/gns3server/static/web-ui/polyfills.2f91a039d848e57ff02e.js +0 -1
  663. gns3_server-2.2.52/gns3server/static/web-ui/runtime.415291667f70565cd8ef.js +0 -1
  664. gns3_server-2.2.52/gns3server/static/web-ui/styles.f8555f2eecf8cf87f666.css +0 -11
  665. gns3_server-2.2.52/gns3server/templates/compute.html +0 -62
  666. gns3_server-2.2.52/gns3server/templates/project.html +0 -91
  667. gns3_server-2.2.52/gns3server/ubridge/hypervisor.py +0 -264
  668. gns3_server-2.2.52/gns3server/ubridge/ubridge_error.py +0 -33
  669. gns3_server-2.2.52/gns3server/ubridge/ubridge_hypervisor.py +0 -274
  670. gns3_server-2.2.52/gns3server/utils/__init__.py +0 -134
  671. gns3_server-2.2.52/gns3server/utils/application_id.py +0 -47
  672. gns3_server-2.2.52/gns3server/utils/asyncio/__init__.py +0 -165
  673. gns3_server-2.2.52/gns3server/utils/asyncio/aiozipstream.py +0 -430
  674. gns3_server-2.2.52/gns3server/utils/asyncio/embed_shell.py +0 -364
  675. gns3_server-2.2.52/gns3server/utils/asyncio/input_stream.py +0 -419
  676. gns3_server-2.2.52/gns3server/utils/asyncio/pool.py +0 -69
  677. gns3_server-2.2.52/gns3server/utils/asyncio/raw_command_server.py +0 -124
  678. gns3_server-2.2.52/gns3server/utils/asyncio/serial.py +0 -140
  679. gns3_server-2.2.52/gns3server/utils/asyncio/telnet_server.py +0 -454
  680. gns3_server-2.2.52/gns3server/utils/cpu_percent.py +0 -48
  681. gns3_server-2.2.52/gns3server/utils/file_watcher.py +0 -103
  682. gns3_server-2.2.52/gns3server/utils/get_resource.py +0 -49
  683. gns3_server-2.2.52/gns3server/utils/images.py +0 -217
  684. gns3_server-2.2.52/gns3server/utils/interfaces.py +0 -243
  685. gns3_server-2.2.52/gns3server/utils/path.py +0 -79
  686. gns3_server-2.2.52/gns3server/utils/picture.py +0 -153
  687. gns3_server-2.2.52/gns3server/utils/qt.py +0 -44
  688. gns3_server-2.2.52/gns3server/utils/vmnet.py +0 -269
  689. gns3_server-2.2.52/gns3server/utils/windows_loopback.py +0 -137
  690. gns3_server-2.2.52/gns3server/utils/windows_service.py +0 -39
  691. gns3_server-2.2.52/gns3server/version.py +0 -37
  692. gns3_server-2.2.52/gns3server/web/documentation.py +0 -190
  693. gns3_server-2.2.52/gns3server/web/logger.py +0 -160
  694. gns3_server-2.2.52/gns3server/web/response.py +0 -164
  695. gns3_server-2.2.52/gns3server/web/route.py +0 -301
  696. gns3_server-2.2.52/gns3server/web/web_server.py +0 -366
  697. gns3_server-2.2.52/requirements.txt +0 -13
  698. gns3_server-2.2.52/setup.py +0 -89
  699. gns3_server-2.2.52/tests/compute/builtin/nodes/test_cloud.py +0 -213
  700. gns3_server-2.2.52/tests/compute/builtin/nodes/test_nat.py +0 -82
  701. gns3_server-2.2.52/tests/compute/docker/test_docker.py +0 -252
  702. gns3_server-2.2.52/tests/compute/docker/test_docker_vm.py +0 -1505
  703. gns3_server-2.2.52/tests/compute/dynamips/test_dynamips_manager.py +0 -128
  704. gns3_server-2.2.52/tests/compute/dynamips/test_dynamips_router.py +0 -76
  705. gns3_server-2.2.52/tests/compute/iou/test_iou_vm.py +0 -459
  706. gns3_server-2.2.52/tests/compute/qemu/test_qcow2.py +0 -77
  707. gns3_server-2.2.52/tests/compute/qemu/test_qemu_manager.py +0 -219
  708. gns3_server-2.2.52/tests/compute/qemu/test_qemu_vm.py +0 -965
  709. gns3_server-2.2.52/tests/compute/test_base_node.py +0 -168
  710. gns3_server-2.2.52/tests/compute/test_manager.py +0 -320
  711. gns3_server-2.2.52/tests/compute/test_notification_manager.py +0 -92
  712. gns3_server-2.2.52/tests/compute/test_port_manager.py +0 -143
  713. gns3_server-2.2.52/tests/compute/test_project.py +0 -224
  714. gns3_server-2.2.52/tests/compute/test_project_manager.py +0 -35
  715. gns3_server-2.2.52/tests/compute/traceng/test_traceng_vm.py +0 -187
  716. gns3_server-2.2.52/tests/compute/virtualbox/test_virtualbox_manager.py +0 -100
  717. gns3_server-2.2.52/tests/compute/virtualbox/test_virtualbox_vm.py +0 -138
  718. gns3_server-2.2.52/tests/compute/vmware/test_vmware_manager.py +0 -39
  719. gns3_server-2.2.52/tests/compute/vmware/test_vmware_vm.py +0 -73
  720. gns3_server-2.2.52/tests/compute/vpcs/test_vpcs_manager.py +0 -76
  721. gns3_server-2.2.52/tests/compute/vpcs/test_vpcs_vm.py +0 -322
  722. gns3_server-2.2.52/tests/conftest.py +0 -278
  723. gns3_server-2.2.52/tests/controller/gns3vm/test_remote_gns3_vm.py +0 -72
  724. gns3_server-2.2.52/tests/controller/gns3vm/test_virtualbox_gns3_vm.py +0 -75
  725. gns3_server-2.2.52/tests/controller/gns3vm/test_vmware_gns3_vm.py +0 -58
  726. gns3_server-2.2.52/tests/controller/test_compute.py +0 -519
  727. gns3_server-2.2.52/tests/controller/test_controller.py +0 -497
  728. gns3_server-2.2.52/tests/controller/test_drawing.py +0 -125
  729. gns3_server-2.2.52/tests/controller/test_export_project.py +0 -471
  730. gns3_server-2.2.52/tests/controller/test_gns3vm.py +0 -110
  731. gns3_server-2.2.52/tests/controller/test_import_project.py +0 -596
  732. gns3_server-2.2.52/tests/controller/test_link.py +0 -367
  733. gns3_server-2.2.52/tests/controller/test_node.py +0 -543
  734. gns3_server-2.2.52/tests/controller/test_node_port_name.py +0 -608
  735. gns3_server-2.2.52/tests/controller/test_notification.py +0 -123
  736. gns3_server-2.2.52/tests/controller/test_project.py +0 -903
  737. gns3_server-2.2.52/tests/controller/test_project_open.py +0 -227
  738. gns3_server-2.2.52/tests/controller/test_snapshot.py +0 -112
  739. gns3_server-2.2.52/tests/controller/test_symbols.py +0 -56
  740. gns3_server-2.2.52/tests/controller/test_template.py +0 -89
  741. gns3_server-2.2.52/tests/controller/test_topology.py +0 -224
  742. gns3_server-2.2.52/tests/controller/test_udp_link.py +0 -430
  743. gns3_server-2.2.52/tests/handlers/api/base.py +0 -107
  744. gns3_server-2.2.52/tests/handlers/api/compute/test_capabilities.py +0 -38
  745. gns3_server-2.2.52/tests/handlers/api/compute/test_cloud.py +0 -134
  746. gns3_server-2.2.52/tests/handlers/api/compute/test_docker.py +0 -217
  747. gns3_server-2.2.52/tests/handlers/api/compute/test_dynamips.py +0 -197
  748. gns3_server-2.2.52/tests/handlers/api/compute/test_iou.py +0 -352
  749. gns3_server-2.2.52/tests/handlers/api/compute/test_nat.py +0 -145
  750. gns3_server-2.2.52/tests/handlers/api/compute/test_network.py +0 -35
  751. gns3_server-2.2.52/tests/handlers/api/compute/test_notification.py +0 -38
  752. gns3_server-2.2.52/tests/handlers/api/compute/test_project.py +0 -200
  753. gns3_server-2.2.52/tests/handlers/api/compute/test_qemu.py +0 -430
  754. gns3_server-2.2.52/tests/handlers/api/compute/test_server.py +0 -39
  755. gns3_server-2.2.52/tests/handlers/api/compute/test_traceng.py +0 -190
  756. gns3_server-2.2.52/tests/handlers/api/compute/test_virtualbox.py +0 -199
  757. gns3_server-2.2.52/tests/handlers/api/compute/test_vmware.py +0 -211
  758. gns3_server-2.2.52/tests/handlers/api/compute/test_vpcs.py +0 -220
  759. gns3_server-2.2.52/tests/handlers/api/controller/test_appliance.py +0 -23
  760. gns3_server-2.2.52/tests/handlers/api/controller/test_compute.py +0 -267
  761. gns3_server-2.2.52/tests/handlers/api/controller/test_drawing.py +0 -87
  762. gns3_server-2.2.52/tests/handlers/api/controller/test_gns3vm.py +0 -49
  763. gns3_server-2.2.52/tests/handlers/api/controller/test_link.py +0 -357
  764. gns3_server-2.2.52/tests/handlers/api/controller/test_node.py +0 -274
  765. gns3_server-2.2.52/tests/handlers/api/controller/test_project.py +0 -363
  766. gns3_server-2.2.52/tests/handlers/api/controller/test_server.py +0 -76
  767. gns3_server-2.2.52/tests/handlers/api/controller/test_snapshot.py +0 -66
  768. gns3_server-2.2.52/tests/handlers/api/controller/test_symbol.py +0 -58
  769. gns3_server-2.2.52/tests/handlers/api/controller/test_template.py +0 -957
  770. gns3_server-2.2.52/tests/handlers/api/controller/test_version.py +0 -58
  771. gns3_server-2.2.52/tests/handlers/test_index.py +0 -84
  772. gns3_server-2.2.52/tests/test_config.py +0 -112
  773. gns3_server-2.2.52/tests/test_run.py +0 -141
  774. gns3_server-2.2.52/tests/topologies/1_5_docker_remote/after/1_5_docker_remote.gns3 +0 -53
  775. gns3_server-2.2.52/tests/topologies/1_5_docker_remote/before/1_5_docker_remote.gns3 +0 -58
  776. gns3_server-2.2.52/tests/topologies/2_0_vmware/after/1_5_vmware.gns3 +0 -53
  777. gns3_server-2.2.52/tests/topologies/2_0_vmware/before/1_5_vmware.gns3 +0 -54
  778. gns3_server-2.2.52/tests/utils/test_asyncio.py +0 -74
  779. gns3_server-2.2.52/tests/utils/test_file_watcher.py +0 -65
  780. gns3_server-2.2.52/tests/utils/test_images.py +0 -204
  781. gns3_server-2.2.52/tests/utils/test_interfaces.py +0 -62
  782. gns3_server-2.2.52/tests/utils/test_path.py +0 -43
  783. gns3_server-2.2.52/tests/web/test_response.py +0 -46
  784. {gns3_server-2.2.52 → gns3_server-3.0.0}/LICENSE +0 -0
  785. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3_server.egg-info/dependency_links.txt +0 -0
  786. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3_server.egg-info/top_level.txt +0 -0
  787. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/__main__.py +0 -0
  788. {gns3_server-2.2.52/gns3server/compute/adapters → gns3_server-3.0.0/gns3server/api}/__init__.py +0 -0
  789. {gns3_server-2.2.52/gns3server/compute/builtin/nodes → gns3_server-3.0.0/gns3server/api/routes}/__init__.py +0 -0
  790. {gns3_server-2.2.52/gns3server/compute/dynamips/adapters → gns3_server-3.0.0/gns3server/api/routes/compute/dependencies}/__init__.py +0 -0
  791. {gns3_server-2.2.52/gns3server/compute/dynamips/nios → gns3_server-3.0.0/gns3server/api/routes/controller/dependencies}/__init__.py +0 -0
  792. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/6wind-turbo-router.gns3a +0 -0
  793. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/IPCop.gns3a +0 -0
  794. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/a10-vthunder.gns3a +0 -0
  795. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/aaa.gns3a +0 -0
  796. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/alcatel-7750.gns3a +0 -0
  797. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/almalinux.gns3a +0 -0
  798. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/alpine-linux-virt.gns3a +0 -0
  799. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/alpine-linux.gns3a +0 -0
  800. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/arista-ceos.gns3a +0 -0
  801. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/arista-veos.gns3a +0 -0
  802. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/aruba-arubaoscx.gns3a +0 -0
  803. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/aruba-vgw.gns3a +0 -0
  804. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/aruba-vmc.gns3a +0 -0
  805. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/asterfusion-vAsterNOS.gns3a +0 -0
  806. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/asterisk.gns3a +0 -0
  807. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/bigswitch-bigcloud-fabric.gns3a +0 -0
  808. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/bird.gns3a +0 -0
  809. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/bird2.gns3a +0 -0
  810. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/brocade-vadx.gns3a +0 -0
  811. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/brocade-vrouter.gns3a +0 -0
  812. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/brocade-vtm.gns3a +0 -0
  813. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/bsdrp.gns3a +0 -0
  814. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/centos-cloud.gns3a +0 -0
  815. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/centos7.gns3a +0 -0
  816. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/checkpoint-gaia.gns3a +0 -0
  817. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/chromium.gns3a +0 -0
  818. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-1700.gns3a +0 -0
  819. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-2600.gns3a +0 -0
  820. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-2691.gns3a +0 -0
  821. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-3620.gns3a +0 -0
  822. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-3640.gns3a +0 -0
  823. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-3660.gns3a +0 -0
  824. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-3725.gns3a +0 -0
  825. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-3745.gns3a +0 -0
  826. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-7200.gns3a +0 -0
  827. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-asa.gns3a +0 -0
  828. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-asav.gns3a +0 -0
  829. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-c8000v.gns3a +0 -0
  830. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-cat9k.gns3a +0 -0
  831. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-csr1000v.gns3a +0 -0
  832. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-dcnm.gns3a +0 -0
  833. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-fcnf.gns3a +0 -0
  834. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-fmcv.gns3a +0 -0
  835. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-fsve.gns3a +0 -0
  836. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-ftdv.gns3a +0 -0
  837. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-iosv.gns3a +0 -0
  838. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-iosvl2.gns3a +0 -0
  839. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-iosxrv.gns3a +0 -0
  840. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-iosxrv9k.gns3a +0 -0
  841. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-ise.gns3a +0 -0
  842. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-ngipsv.gns3a +0 -0
  843. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-nxosv.gns3a +0 -0
  844. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-nxosv9k.gns3a +0 -0
  845. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-pyats.gns3a +0 -0
  846. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-smc.gns3a +0 -0
  847. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-vWLC.gns3a +0 -0
  848. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cisco-wsav.gns3a +0 -0
  849. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/citrix-netscaler-vpx.gns3a +0 -0
  850. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/citrix-sd-wan.gns3a +0 -0
  851. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/citrix-sdwan-center.gns3a +0 -0
  852. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/clavister-netsheild.gns3a +0 -0
  853. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/clavister-netwall.gns3a +0 -0
  854. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/clearos.gns3a +0 -0
  855. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cloudrouter.gns3a +0 -0
  856. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/coreos.gns3a +0 -0
  857. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/cumulus-vx.gns3a +0 -0
  858. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/danos.gns3a +0 -0
  859. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/debian.gns3a +0 -0
  860. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/deft-linux.gns3a +0 -0
  861. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/dell-ftos.gns3a +0 -0
  862. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/dns.gns3a +0 -0
  863. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/empty-vm.gns3a +0 -0
  864. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/endhost.gns3a +0 -0
  865. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/exos.gns3a +0 -0
  866. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/extreme-networks-voss.gns3a +0 -0
  867. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/f5-bigip.gns3a +0 -0
  868. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/f5-bigiq.gns3a +0 -0
  869. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fedora-cloud.gns3a +0 -0
  870. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/firefox.gns3a +0 -0
  871. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortiadc-manager.gns3a +0 -0
  872. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortiadc.gns3a +0 -0
  873. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortianalyzer.gns3a +0 -0
  874. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortiauthenticator.gns3a +0 -0
  875. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/forticache.gns3a +0 -0
  876. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortigate.gns3a +0 -0
  877. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortimail.gns3a +0 -0
  878. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortimanager.gns3a +0 -0
  879. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortiproxy.gns3a +0 -0
  880. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortirecorder.gns3a +0 -0
  881. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortisandbox.gns3a +0 -0
  882. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortisiem-super_worker.gns3a +0 -0
  883. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/fortiweb.gns3a +0 -0
  884. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/freeRouter.gns3a +0 -0
  885. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/freebsd.gns3a +0 -0
  886. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/freenas.gns3a +0 -0
  887. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/frr.gns3a +0 -0
  888. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/haproxy.gns3a +0 -0
  889. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/hbcd-pe.gns3a +0 -0
  890. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/hp-vsr1001.gns3a +0 -0
  891. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/huawei-ar1kv.gns3a +0 -0
  892. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/huawei-ce12800.gns3a +0 -0
  893. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/huawei-ne40e.gns3a +0 -0
  894. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/huawei-usg6kv.gns3a +0 -0
  895. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ipfire.gns3a +0 -0
  896. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ipterm.gns3a +0 -0
  897. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ipxe.gns3a +0 -0
  898. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/juniper-junos-space.gns3a +0 -0
  899. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/juniper-vmx-legacy.gns3a +0 -0
  900. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/juniper-vmx-vcp.gns3a +0 -0
  901. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/juniper-vmx-vfp.gns3a +0 -0
  902. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/juniper-vqfx-pfe.gns3a +0 -0
  903. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/juniper-vqfx-re.gns3a +0 -0
  904. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/juniper-vrr.gns3a +0 -0
  905. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/juniper-vsrx.gns3a +0 -0
  906. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/jupyter.gns3a +0 -0
  907. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/jupyter27.gns3a +0 -0
  908. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/kali-linux-cli.gns3a +0 -0
  909. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/kali-linux.gns3a +0 -0
  910. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/kemp-vlm.gns3a +0 -0
  911. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/kerio-connect.gns3a +0 -0
  912. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/kerio-control.gns3a +0 -0
  913. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/kerio-operator.gns3a +0 -0
  914. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/lancom-vrouter.gns3a +0 -0
  915. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/loadbalancer_org-va.gns3a +0 -0
  916. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/macos-install.gns3a +0 -0
  917. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mcjoin.gns3a +0 -0
  918. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/microcore-linux.gns3a +0 -0
  919. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-ccr1036-8g-2s+.gns3a +0 -0
  920. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-ccr1072-1g-8s+.gns3a +0 -0
  921. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-chr.gns3a +0 -0
  922. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-crs328-24p-4s+.gns3a +0 -0
  923. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-crs328-4c-20s-4s+.gns3a +0 -0
  924. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-rb1100ahx4-dude-edition.gns3a +0 -0
  925. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-rb2011uias.gns3a +0 -0
  926. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-rb3011uias.gns3a +0 -0
  927. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-rb4011igs+.gns3a +0 -0
  928. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-rb450g.gns3a +0 -0
  929. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-rb450gx4.gns3a +0 -0
  930. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mikrotik-winbox.gns3a +0 -0
  931. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/mininet.gns3a +0 -0
  932. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/net_toolbox.gns3a +0 -0
  933. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/netapp-ontapsim.gns3a +0 -0
  934. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/netem.gns3a +0 -0
  935. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/network_automation.gns3a +0 -0
  936. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/nixos.gns3a +0 -0
  937. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/nokia-vsim.gns3a +0 -0
  938. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ntopng.gns3a +0 -0
  939. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/onos.gns3a +0 -0
  940. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/op5-monitor.gns3a +0 -0
  941. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/open-media-vault.gns3a +0 -0
  942. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/openbsd.gns3a +0 -0
  943. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/opennac.gns3a +0 -0
  944. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/opensuse.gns3a +0 -0
  945. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/openvswitch-management.gns3a +0 -0
  946. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/openvswitch.gns3a +0 -0
  947. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/openwrt-realview.gns3a +0 -0
  948. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/openwrt.gns3a +0 -0
  949. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/opnsense.gns3a +0 -0
  950. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/oracle-linux-cloud.gns3a +0 -0
  951. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ostinato-wireshark.gns3a +0 -0
  952. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ostinato.gns3a +0 -0
  953. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ovs-snmp.gns3a +0 -0
  954. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/packetfence-zen.gns3a +0 -0
  955. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/pan-vm-fw.gns3a +0 -0
  956. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/parrot-os.gns3a +0 -0
  957. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/pfsense.gns3a +0 -0
  958. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/proxmox-mg.gns3a +0 -0
  959. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/puppy-linux.gns3a +0 -0
  960. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/python-go-perl-php.gns3a +0 -0
  961. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/raspian.gns3a +0 -0
  962. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/reactos.gns3a +0 -0
  963. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/rhel.gns3a +0 -0
  964. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/riverbed-steelhead-ng-vcx.gns3a +0 -0
  965. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/rockylinux.gns3a +0 -0
  966. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/security-onion.gns3a +0 -0
  967. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/smoothwall.gns3a +0 -0
  968. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/sophos-iview.gns3a +0 -0
  969. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/sophos-utm.gns3a +0 -0
  970. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/sophos-xg.gns3a +0 -0
  971. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/stonework.gns3a +0 -0
  972. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/tacacs-gui.gns3a +0 -0
  973. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/tinycore-linux.gns3a +0 -0
  974. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/trendmicro-imsva.gns3a +0 -0
  975. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/trendmicro-iwsva.gns3a +0 -0
  976. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/truenas.gns3a +0 -0
  977. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/turnkey-wordpress.gns3a +0 -0
  978. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ubuntu-cloud.gns3a +0 -0
  979. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ubuntu-docker.gns3a +0 -0
  980. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/ubuntu-gui.gns3a +0 -0
  981. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/untangle.gns3a +0 -0
  982. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/viptela-edge-genericx86-64.gns3a +0 -0
  983. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/viptela-smart-genericx86-64.gns3a +0 -0
  984. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/viptela-vmanage-genericx86-64.gns3a +0 -0
  985. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/vpp.gns3a +0 -0
  986. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/vrin.gns3a +0 -0
  987. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/vyos.gns3a +0 -0
  988. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/watchguard-fireboxv.gns3a +0 -0
  989. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/watchguard-xtmv.gns3a +0 -0
  990. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/webterm.gns3a +0 -0
  991. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/windows-11-dev-env.gns3a +0 -0
  992. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/windows-xp+ie.gns3a +0 -0
  993. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/windows.gns3a +0 -0
  994. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/windows_server.gns3a +0 -0
  995. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/zentyal-server.gns3a +0 -0
  996. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/appliances/zeroshell.gns3a +0 -0
  997. {gns3_server-2.2.52/gns3server/compute/dynamips/nodes → gns3_server-3.0.0/gns3server/compute/adapters}/__init__.py +0 -0
  998. {gns3_server-2.2.52/gns3server/compute/iou/utils → gns3_server-3.0.0/gns3server/compute/builtin/nodes}/__init__.py +0 -0
  999. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/compute/docker/resources/bin/udhcpc +0 -0
  1000. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/compute/docker/resources/etc/udhcpc/default.script +0 -0
  1001. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/compute/docker/resources/init.sh +0 -0
  1002. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/compute/docker/resources/run-cmd.sh +0 -0
  1003. {gns3_server-2.2.52/gns3server/compute/nios → gns3_server-3.0.0/gns3server/compute/dynamips/adapters}/__init__.py +0 -0
  1004. {gns3_server-2.2.52/gns3server/compute/qemu/utils → gns3_server-3.0.0/gns3server/compute/dynamips/nios}/__init__.py +0 -0
  1005. {gns3_server-2.2.52/gns3server/controller/ports → gns3_server-3.0.0/gns3server/compute/dynamips/nodes}/__init__.py +0 -0
  1006. {gns3_server-2.2.52/gns3server/handlers/api → gns3_server-3.0.0/gns3server/compute/iou/utils}/__init__.py +0 -0
  1007. {gns3_server-2.2.52/gns3server/schemas → gns3_server-3.0.0/gns3server/compute/nios}/__init__.py +0 -0
  1008. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/compute/qemu/resources/config.img.zip +0 -0
  1009. {gns3_server-2.2.52/gns3server/ubridge → gns3_server-3.0.0/gns3server/compute/qemu/utils}/__init__.py +0 -0
  1010. {gns3_server-2.2.52/gns3server/web → gns3_server-3.0.0/gns3server/compute/ubridge}/__init__.py +0 -0
  1011. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/configs/ios_base_startup-config.txt +0 -0
  1012. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/configs/ios_etherswitch_startup-config.txt +0 -0
  1013. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/configs/iou_l2_base_startup-config.txt +0 -0
  1014. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/configs/iou_l3_base_startup-config.txt +0 -0
  1015. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/configs/vpcs_base_config.txt +0 -0
  1016. {gns3_server-2.2.52/tests → gns3_server-3.0.0/gns3server/controller/ports}/__init__.py +0 -0
  1017. {gns3_server-2.2.52/tests/controller → gns3_server-3.0.0/gns3server/core}/__init__.py +0 -0
  1018. {gns3_server-2.2.52/tests/handlers/api → gns3_server-3.0.0/gns3server/db}/__init__.py +0 -0
  1019. {gns3_server-2.2.52/tests/handlers/api/compute → gns3_server-3.0.0/gns3server/db/repositories}/__init__.py +0 -0
  1020. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/OVMF_CODE.fd +0 -0
  1021. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/OVMF_VARS.fd +0 -0
  1022. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty100G.qcow2 +0 -0
  1023. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty10G.qcow2 +0 -0
  1024. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty150G.qcow2 +0 -0
  1025. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty1T.qcow2 +0 -0
  1026. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty200G.qcow2 +0 -0
  1027. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty20G.qcow2 +0 -0
  1028. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty250G.qcow2 +0 -0
  1029. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty30G.qcow2 +0 -0
  1030. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty40G.qcow2 +0 -0
  1031. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty500G.qcow2 +0 -0
  1032. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty50G.qcow2 +0 -0
  1033. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/disks/empty8G.qcow2 +0 -0
  1034. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/gns3_server.egg-info/PKG-INFO +0 -0
  1035. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/gns3_server.egg-info/SOURCES.txt +0 -0
  1036. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/gns3_server.egg-info/dependency_links.txt +0 -0
  1037. {gns3_server-2.2.52 → gns3_server-3.0.0/gns3server}/gns3_server.egg-info/not-zip-safe +0 -0
  1038. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/gns3_server.egg-info/requires.txt +0 -0
  1039. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/gns3_server.egg-info/top_level.txt +0 -0
  1040. {gns3_server-2.2.52/tests/handlers/api/controller → gns3_server-3.0.0/gns3server/schemas/compute}/__init__.py +0 -0
  1041. /gns3_server-2.2.52/gns3server/static/.gitkeep → /gns3_server-3.0.0/gns3server/schemas/controller/__init__.py +0 -0
  1042. /gns3_server-2.2.52/gns3server/symbols/.gitkeep → /gns3_server-3.0.0/gns3server/schemas/link.py +0 -0
  1043. /gns3_server-2.2.52/tests/topologies/dynamips_2_0_0_b2/after/project-files/dynamips/b31bacb4-b251-47e3-b9e8-fe5596e7a8ba/c7200_i1_nvram → /gns3_server-3.0.0/gns3server/static/.gitkeep +0 -0
  1044. {gns3_server-2.2.52/gns3server/static/web-ui/assets → gns3_server-3.0.0/gns3server/static}/favicon.ico +0 -0
  1045. /gns3_server-2.2.52/gns3server/static/web-ui/MaterialIcons-Regular.5e7382c63da0098d634a.ttf → /gns3_server-3.0.0/gns3server/static/web-ui/MaterialIcons-Regular.196fa4a92dd6fa73.ttf +0 -0
  1046. /gns3_server-2.2.52/gns3server/static/web-ui/MaterialIcons-Regular.4674f8ded773cb03e824.eot → /gns3_server-3.0.0/gns3server/static/web-ui/MaterialIcons-Regular.1e50f5c2ffa6aba4.eot +0 -0
  1047. /gns3_server-2.2.52/gns3server/static/web-ui/MaterialIcons-Regular.cff684e59ffb052d72cb.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/MaterialIcons-Regular.7ea2023eeca07427.woff2 +0 -0
  1048. /gns3_server-2.2.52/gns3server/static/web-ui/MaterialIcons-Regular.83bebaf37c09c7e1c3ee.woff → /gns3_server-3.0.0/gns3server/static/web-ui/MaterialIcons-Regular.db852539204b1a34.woff +0 -0
  1049. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/gns3_icon.svg +0 -0
  1050. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/gns3_icon_black.svg +0 -0
  1051. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/mac/icon.icns +0 -0
  1052. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/1024x1024.png +0 -0
  1053. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/128x128.png +0 -0
  1054. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/16x16.png +0 -0
  1055. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/24x24.png +0 -0
  1056. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/256x256.png +0 -0
  1057. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/32x32.png +0 -0
  1058. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/48x48.png +0 -0
  1059. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/512x512.png +0 -0
  1060. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/png/64x64.png +0 -0
  1061. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/icons/win/icon.ico +0 -0
  1062. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/logo-header.png +0 -0
  1063. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/resources/images/filter-capture.svg +0 -0
  1064. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/resources/images/filter.svg +0 -0
  1065. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/resources/images/inspect.svg +0 -0
  1066. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/assets/resources/images/pause.svg +0 -0
  1067. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/static/web-ui/favicon.ico +0 -0
  1068. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-100.c2aa4ab115bf9c6057cb.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-100.539f0a96b40596f7.woff2 +0 -0
  1069. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-100.a45108d3b34af91f9113.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-100.5ba994dac3e79ea8.woff +0 -0
  1070. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-100italic.7f839a8652da29745ce4.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-100italic.41ba64219cb743c9.woff2 +0 -0
  1071. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-100italic.451d4e559d6f57cdf6a1.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-100italic.d61e7e8b07c0638c.woff +0 -0
  1072. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-300.37a7069dc30fc663c878.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-300.4d8f8086236bad80.woff2 +0 -0
  1073. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-300.865f928cbabcc9f8f2b5.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-300.6c1bc461047e61f5.woff +0 -0
  1074. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-300italic.bd5b7a13f2c52b531a2a.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-300italic.3a529751a590d3c1.woff +0 -0
  1075. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-300italic.c64e7e354c88e613c77c.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-300italic.45164643b3bd5824.woff2 +0 -0
  1076. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-400.176f8f5bd5f02b3abfcf.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-400.1e2d4d3a272629cd.woff2 +0 -0
  1077. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-400.49ae34d4cc6b98c00c69.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-400.7e4a045b9373d9c1.woff +0 -0
  1078. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-400italic.b1d9d9904bfca8802a63.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-400italic.68431199e5b90ea8.woff +0 -0
  1079. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-400italic.d022bc70dc1bf7b3425d.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-400italic.bb3c6955c4334c8a.woff2 +0 -0
  1080. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-500.f5b74d7ffcdf85b9dd60.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-500.1dfbc3dbf815e3f3.woff2 +0 -0
  1081. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-500.cea99d3e3e13a3a599a0.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-500.e21fe97fd2329ff7.woff +0 -0
  1082. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-500italic.0d8bb5b3ee5f5dac9e44.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-500italic.7543a42b12b1452f.woff2 +0 -0
  1083. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-500italic.18d00f739ff1e1c52db1.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-500italic.aaff6867154023d3.woff +0 -0
  1084. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-700.2267169ee7270a22a963.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-700.02633003129d1e63.woff +0 -0
  1085. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-700.c18ee39fb002ad58b6dc.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-700.12893bfc0762b0f3.woff2 +0 -0
  1086. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-700italic.7d8125ff7f707231fd89.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-700italic.bc7179e004e40113.woff2 +0 -0
  1087. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-700italic.9360531f9bb817f917f0.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-700italic.e53062e27c63fafb.woff +0 -0
  1088. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-900.870c8c1486f76054301a.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-900.282ba77fda1349f3.woff2 +0 -0
  1089. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-900.bac8362e7a6ea60b6983.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-900.4962e810cbb4d3e5.woff +0 -0
  1090. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-900italic.c20d916c1a1b094c1cec.woff → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-900italic.2394134a78bbaef8.woff +0 -0
  1091. /gns3_server-2.2.52/gns3server/static/web-ui/roboto-latin-900italic.cb5ad999740e9d8a8bd1.woff2 → /gns3_server-3.0.0/gns3server/static/web-ui/roboto-latin-900italic.9c1f80840351fa12.woff2 +0 -0
  1092. /gns3_server-2.2.52/tests/topologies/dynamips_2_0_0_b2/after/project-files/dynamips/f306df6f-dbe0-4be1-9a40-625b8d20fe6e/c7200_i2_nvram → /gns3_server-3.0.0/gns3server/symbols/.gitkeep +0 -0
  1093. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/atm.svg +0 -0
  1094. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/bug.svg +0 -0
  1095. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/camera.svg +0 -0
  1096. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/camera_dome.svg +0 -0
  1097. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/client.svg +0 -0
  1098. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/client_vm.svg +0 -0
  1099. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/cloud.svg +0 -0
  1100. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/coffee.svg +0 -0
  1101. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/cog.svg +0 -0
  1102. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/communications.svg +0 -0
  1103. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/conversation.svg +0 -0
  1104. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/dna.svg +0 -0
  1105. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/dna2.svg +0 -0
  1106. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/docker.svg +0 -0
  1107. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/dslam.svg +0 -0
  1108. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/factory.svg +0 -0
  1109. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/fingerprint.svg +0 -0
  1110. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/firewall.svg +0 -0
  1111. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/firewall3.svg +0 -0
  1112. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/globe.svg +0 -0
  1113. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/grid.svg +0 -0
  1114. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/grid2.svg +0 -0
  1115. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/health.svg +0 -0
  1116. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/house.svg +0 -0
  1117. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/hub.svg +0 -0
  1118. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/inspect.svg +0 -0
  1119. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/inspect2.svg +0 -0
  1120. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/interconnect.svg +0 -0
  1121. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/ip_phone.svg +0 -0
  1122. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/isdn.svg +0 -0
  1123. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/laptop.svg +0 -0
  1124. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/ldap.svg +0 -0
  1125. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/light_bulb.svg +0 -0
  1126. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/link.svg +0 -0
  1127. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/loadbalancer.svg +0 -0
  1128. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/nas.svg +0 -0
  1129. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/nat.svg +0 -0
  1130. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/nat2.svg +0 -0
  1131. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/office.svg +0 -0
  1132. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/optical.svg +0 -0
  1133. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/phone_cloud.svg +0 -0
  1134. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/phone_old.svg +0 -0
  1135. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/phone_wireless.svg +0 -0
  1136. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/pinpoint.svg +0 -0
  1137. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/printer.svg +0 -0
  1138. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/rj45.svg +0 -0
  1139. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/router.svg +0 -0
  1140. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/router2.svg +0 -0
  1141. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/router_cloud.svg +0 -0
  1142. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/satellite.svg +0 -0
  1143. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/satellite_dish.svg +0 -0
  1144. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/scull.svg +0 -0
  1145. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/server.svg +0 -0
  1146. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/server_cluster.svg +0 -0
  1147. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/shield.svg +0 -0
  1148. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/statistics.svg +0 -0
  1149. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/storage.svg +0 -0
  1150. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/switch.svg +0 -0
  1151. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/switch_multilayer.svg +0 -0
  1152. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/tablet.svg +0 -0
  1153. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/template.svg +0 -0
  1154. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/tree.svg +0 -0
  1155. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/user.svg +0 -0
  1156. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/virtualbox.svg +0 -0
  1157. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/vm.svg +0 -0
  1158. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/vmware.svg +0 -0
  1159. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/vrf.svg +0 -0
  1160. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/wifi.svg +0 -0
  1161. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/wlc.svg +0 -0
  1162. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/blue/xml.svg +0 -0
  1163. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/atm.svg +0 -0
  1164. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/bug.svg +0 -0
  1165. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/camera.svg +0 -0
  1166. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/camera_dome.svg +0 -0
  1167. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/client.svg +0 -0
  1168. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/client_vm.svg +0 -0
  1169. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/cloud.svg +0 -0
  1170. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/coffee.svg +0 -0
  1171. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/cog.svg +0 -0
  1172. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/communications.svg +0 -0
  1173. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/conversation.svg +0 -0
  1174. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/dna.svg +0 -0
  1175. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/dna2.svg +0 -0
  1176. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/docker.svg +0 -0
  1177. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/dslam.svg +0 -0
  1178. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/factory.svg +0 -0
  1179. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/fingerprint.svg +0 -0
  1180. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/firewall.svg +0 -0
  1181. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/firewall3.svg +0 -0
  1182. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/globe.svg +0 -0
  1183. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/grid.svg +0 -0
  1184. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/grid2.svg +0 -0
  1185. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/health.svg +0 -0
  1186. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/house.svg +0 -0
  1187. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/hub.svg +0 -0
  1188. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/inspect.svg +0 -0
  1189. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/inspect2.svg +0 -0
  1190. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/interconnect.svg +0 -0
  1191. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/ip_phone.svg +0 -0
  1192. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/isdn.svg +0 -0
  1193. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/laptop.svg +0 -0
  1194. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/ldap.svg +0 -0
  1195. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/light_bulb.svg +0 -0
  1196. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/link.svg +0 -0
  1197. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/loadbalancer.svg +0 -0
  1198. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/nas.svg +0 -0
  1199. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/nat.svg +0 -0
  1200. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/nat2.svg +0 -0
  1201. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/office.svg +0 -0
  1202. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/optical.svg +0 -0
  1203. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/phone_cloud.svg +0 -0
  1204. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/phone_old.svg +0 -0
  1205. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/phone_wireless.svg +0 -0
  1206. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/pinpoint.svg +0 -0
  1207. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/printer.svg +0 -0
  1208. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/rj45.svg +0 -0
  1209. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/router.svg +0 -0
  1210. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/router2.svg +0 -0
  1211. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/router_cloud.svg +0 -0
  1212. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/satellite.svg +0 -0
  1213. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/satellite_dish.svg +0 -0
  1214. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/scull.svg +0 -0
  1215. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/server.svg +0 -0
  1216. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/server_cluster.svg +0 -0
  1217. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/shield.svg +0 -0
  1218. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/statistics.svg +0 -0
  1219. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/storage.svg +0 -0
  1220. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/switch.svg +0 -0
  1221. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/switch_multilayer.svg +0 -0
  1222. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/tablet.svg +0 -0
  1223. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/template.svg +0 -0
  1224. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/tree.svg +0 -0
  1225. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/user.svg +0 -0
  1226. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/virtualbox.svg +0 -0
  1227. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/vm.svg +0 -0
  1228. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/vmware.svg +0 -0
  1229. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/vrf.svg +0 -0
  1230. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/wifi.svg +0 -0
  1231. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/wlc.svg +0 -0
  1232. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/gray/xml.svg +0 -0
  1233. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/atm.svg +0 -0
  1234. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/bug.svg +0 -0
  1235. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/camera.svg +0 -0
  1236. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/camera_dome.svg +0 -0
  1237. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/client.svg +0 -0
  1238. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/client_vm.svg +0 -0
  1239. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/cloud.svg +0 -0
  1240. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/coffee.svg +0 -0
  1241. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/cog.svg +0 -0
  1242. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/communications.svg +0 -0
  1243. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/conversation.svg +0 -0
  1244. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/dna.svg +0 -0
  1245. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/dna2.svg +0 -0
  1246. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/docker.svg +0 -0
  1247. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/dslam.svg +0 -0
  1248. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/factory.svg +0 -0
  1249. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/fingerprint.svg +0 -0
  1250. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/firewall.svg +0 -0
  1251. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/firewall3.svg +0 -0
  1252. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/globe.svg +0 -0
  1253. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/grid.svg +0 -0
  1254. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/grid2.svg +0 -0
  1255. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/health.svg +0 -0
  1256. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/house.svg +0 -0
  1257. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/hub.svg +0 -0
  1258. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/inspect.svg +0 -0
  1259. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/inspect2.svg +0 -0
  1260. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/interconnect.svg +0 -0
  1261. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/ip_phone.svg +0 -0
  1262. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/isdn.svg +0 -0
  1263. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/laptop.svg +0 -0
  1264. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/ldap.svg +0 -0
  1265. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/light_bulb.svg +0 -0
  1266. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/link.svg +0 -0
  1267. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/loadbalancer.svg +0 -0
  1268. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/nas.svg +0 -0
  1269. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/nat.svg +0 -0
  1270. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/nat2.svg +0 -0
  1271. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/office.svg +0 -0
  1272. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/optical.svg +0 -0
  1273. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/phone_cloud.svg +0 -0
  1274. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/phone_old.svg +0 -0
  1275. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/phone_wireless.svg +0 -0
  1276. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/pinpoint.svg +0 -0
  1277. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/printer.svg +0 -0
  1278. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/rj45.svg +0 -0
  1279. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/router.svg +0 -0
  1280. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/router2.svg +0 -0
  1281. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/router_cloud.svg +0 -0
  1282. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/satellite.svg +0 -0
  1283. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/satellite_dish.svg +0 -0
  1284. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/scull.svg +0 -0
  1285. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/server.svg +0 -0
  1286. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/server_cluster.svg +0 -0
  1287. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/shield.svg +0 -0
  1288. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/statistics.svg +0 -0
  1289. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/storage.svg +0 -0
  1290. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/switch.svg +0 -0
  1291. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/switch_multilayer.svg +0 -0
  1292. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/tablet.svg +0 -0
  1293. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/template.svg +0 -0
  1294. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/tree.svg +0 -0
  1295. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/user.svg +0 -0
  1296. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/virtualbox.svg +0 -0
  1297. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/vm.svg +0 -0
  1298. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/vmware.svg +0 -0
  1299. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/vrf.svg +0 -0
  1300. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/wifi.svg +0 -0
  1301. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/wlc.svg +0 -0
  1302. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/green/xml.svg +0 -0
  1303. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/atm.svg +0 -0
  1304. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/bug.svg +0 -0
  1305. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/camera.svg +0 -0
  1306. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/camera_dome.svg +0 -0
  1307. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/client.svg +0 -0
  1308. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/client_vm.svg +0 -0
  1309. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/cloud.svg +0 -0
  1310. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/coffee.svg +0 -0
  1311. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/cog.svg +0 -0
  1312. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/communications.svg +0 -0
  1313. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/conversation.svg +0 -0
  1314. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/dna.svg +0 -0
  1315. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/dna2.svg +0 -0
  1316. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/docker.svg +0 -0
  1317. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/dslam.svg +0 -0
  1318. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/factory.svg +0 -0
  1319. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/fingerprint.svg +0 -0
  1320. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/firewall.svg +0 -0
  1321. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/firewall3.svg +0 -0
  1322. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/globe.svg +0 -0
  1323. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/grid.svg +0 -0
  1324. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/grid2.svg +0 -0
  1325. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/health.svg +0 -0
  1326. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/house.svg +0 -0
  1327. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/hub.svg +0 -0
  1328. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/inspect.svg +0 -0
  1329. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/inspect2.svg +0 -0
  1330. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/interconnect.svg +0 -0
  1331. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/ip_phone.svg +0 -0
  1332. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/isdn.svg +0 -0
  1333. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/laptop.svg +0 -0
  1334. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/ldap.svg +0 -0
  1335. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/light_bulb.svg +0 -0
  1336. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/link.svg +0 -0
  1337. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/loadbalancer.svg +0 -0
  1338. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/nas.svg +0 -0
  1339. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/nat.svg +0 -0
  1340. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/nat2.svg +0 -0
  1341. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/office.svg +0 -0
  1342. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/optical.svg +0 -0
  1343. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/phone_cloud.svg +0 -0
  1344. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/phone_old.svg +0 -0
  1345. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/phone_wireless.svg +0 -0
  1346. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/pinpoint.svg +0 -0
  1347. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/printer.svg +0 -0
  1348. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/rj45.svg +0 -0
  1349. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/router.svg +0 -0
  1350. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/router2.svg +0 -0
  1351. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/router_cloud.svg +0 -0
  1352. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/satellite.svg +0 -0
  1353. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/satellite_dish.svg +0 -0
  1354. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/scull.svg +0 -0
  1355. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/server.svg +0 -0
  1356. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/server_cluster.svg +0 -0
  1357. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/shield.svg +0 -0
  1358. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/statistics.svg +0 -0
  1359. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/storage.svg +0 -0
  1360. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/switch.svg +0 -0
  1361. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/switch_multilayer.svg +0 -0
  1362. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/tablet.svg +0 -0
  1363. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/template.svg +0 -0
  1364. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/tree.svg +0 -0
  1365. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/user.svg +0 -0
  1366. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/virtualbox.svg +0 -0
  1367. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/vm.svg +0 -0
  1368. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/vmware.svg +0 -0
  1369. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/vrf.svg +0 -0
  1370. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/wifi.svg +0 -0
  1371. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/wlc.svg +0 -0
  1372. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/circle/red/xml.svg +0 -0
  1373. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/atm.svg +0 -0
  1374. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/bug.svg +0 -0
  1375. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/camera.svg +0 -0
  1376. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/camera_dome.svg +0 -0
  1377. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/client.svg +0 -0
  1378. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/client_vm.svg +0 -0
  1379. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/cloud.svg +0 -0
  1380. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/coffee.svg +0 -0
  1381. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/cog.svg +0 -0
  1382. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/communications.svg +0 -0
  1383. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/conversation.svg +0 -0
  1384. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/dna.svg +0 -0
  1385. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/dna2.svg +0 -0
  1386. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/docker.svg +0 -0
  1387. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/dslam.svg +0 -0
  1388. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/factory.svg +0 -0
  1389. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/fingerprint.svg +0 -0
  1390. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/firewall.svg +0 -0
  1391. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/firewall3.svg +0 -0
  1392. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/globe.svg +0 -0
  1393. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/grid.svg +0 -0
  1394. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/grid2.svg +0 -0
  1395. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/health.svg +0 -0
  1396. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/house.svg +0 -0
  1397. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/hub.svg +0 -0
  1398. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/inspect.svg +0 -0
  1399. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/inspect2.svg +0 -0
  1400. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/interconnect.svg +0 -0
  1401. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/ip_phone.svg +0 -0
  1402. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/isdn.svg +0 -0
  1403. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/laptop.svg +0 -0
  1404. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/ldap.svg +0 -0
  1405. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/light_bulb.svg +0 -0
  1406. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/link.svg +0 -0
  1407. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/loadbalancer.svg +0 -0
  1408. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/nas.svg +0 -0
  1409. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/nat.svg +0 -0
  1410. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/nat2.svg +0 -0
  1411. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/office.svg +0 -0
  1412. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/optical.svg +0 -0
  1413. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/phone_cloud.svg +0 -0
  1414. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/phone_old.svg +0 -0
  1415. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/phone_wireless.svg +0 -0
  1416. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/pinpoint.svg +0 -0
  1417. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/printer.svg +0 -0
  1418. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/rj45.svg +0 -0
  1419. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/router.svg +0 -0
  1420. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/router2.svg +0 -0
  1421. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/router_cloud.svg +0 -0
  1422. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/satellite.svg +0 -0
  1423. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/satellite_dish.svg +0 -0
  1424. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/scull.svg +0 -0
  1425. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/server.svg +0 -0
  1426. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/server_cluster.svg +0 -0
  1427. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/shield.svg +0 -0
  1428. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/statistics.svg +0 -0
  1429. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/storage.svg +0 -0
  1430. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/switch.svg +0 -0
  1431. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/switch_multilayer.svg +0 -0
  1432. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/tablet.svg +0 -0
  1433. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/template.svg +0 -0
  1434. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/tree.svg +0 -0
  1435. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/user.svg +0 -0
  1436. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/virtualbox.svg +0 -0
  1437. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/vm.svg +0 -0
  1438. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/vmware.svg +0 -0
  1439. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/vrf.svg +0 -0
  1440. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/wifi.svg +0 -0
  1441. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/wlc.svg +0 -0
  1442. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/blue/xml.svg +0 -0
  1443. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/atm.svg +0 -0
  1444. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/bug.svg +0 -0
  1445. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/camera.svg +0 -0
  1446. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/camera_dome.svg +0 -0
  1447. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/client.svg +0 -0
  1448. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/client_vm.svg +0 -0
  1449. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/cloud.svg +0 -0
  1450. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/coffee.svg +0 -0
  1451. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/cog.svg +0 -0
  1452. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/communications.svg +0 -0
  1453. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/conversation.svg +0 -0
  1454. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/dna.svg +0 -0
  1455. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/dna2.svg +0 -0
  1456. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/docker.svg +0 -0
  1457. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/dslam.svg +0 -0
  1458. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/factory.svg +0 -0
  1459. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/fingerprint.svg +0 -0
  1460. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/firewall.svg +0 -0
  1461. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/firewall3.svg +0 -0
  1462. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/globe.svg +0 -0
  1463. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/grid.svg +0 -0
  1464. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/grid2.svg +0 -0
  1465. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/health.svg +0 -0
  1466. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/house.svg +0 -0
  1467. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/hub.svg +0 -0
  1468. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/inspect.svg +0 -0
  1469. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/inspect2.svg +0 -0
  1470. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/interconnect.svg +0 -0
  1471. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/ip_phone.svg +0 -0
  1472. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/isdn.svg +0 -0
  1473. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/laptop.svg +0 -0
  1474. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/ldap.svg +0 -0
  1475. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/light_bulb.svg +0 -0
  1476. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/link.svg +0 -0
  1477. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/loadbalancer.svg +0 -0
  1478. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/nas.svg +0 -0
  1479. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/nat.svg +0 -0
  1480. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/nat2.svg +0 -0
  1481. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/office.svg +0 -0
  1482. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/optical.svg +0 -0
  1483. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/phone_cloud.svg +0 -0
  1484. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/phone_old.svg +0 -0
  1485. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/phone_wireless.svg +0 -0
  1486. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/pinpoint.svg +0 -0
  1487. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/printer.svg +0 -0
  1488. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/rj45.svg +0 -0
  1489. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/router.svg +0 -0
  1490. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/router2.svg +0 -0
  1491. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/router_cloud.svg +0 -0
  1492. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/satellite.svg +0 -0
  1493. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/satellite_dish.svg +0 -0
  1494. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/scull.svg +0 -0
  1495. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/server.svg +0 -0
  1496. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/server_cluster.svg +0 -0
  1497. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/shield.svg +0 -0
  1498. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/statistics.svg +0 -0
  1499. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/storage.svg +0 -0
  1500. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/switch.svg +0 -0
  1501. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/switch_multilayer.svg +0 -0
  1502. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/tablet.svg +0 -0
  1503. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/template.svg +0 -0
  1504. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/tree.svg +0 -0
  1505. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/user.svg +0 -0
  1506. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/virtualbox.svg +0 -0
  1507. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/vm.svg +0 -0
  1508. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/vmware.svg +0 -0
  1509. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/vrf.svg +0 -0
  1510. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/wifi.svg +0 -0
  1511. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/wlc.svg +0 -0
  1512. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/gray/xml.svg +0 -0
  1513. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/atm.svg +0 -0
  1514. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/bug.svg +0 -0
  1515. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/camera.svg +0 -0
  1516. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/camera_dome.svg +0 -0
  1517. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/client.svg +0 -0
  1518. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/client_vm.svg +0 -0
  1519. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/cloud.svg +0 -0
  1520. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/coffee.svg +0 -0
  1521. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/cog.svg +0 -0
  1522. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/communications.svg +0 -0
  1523. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/conversation.svg +0 -0
  1524. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/dna.svg +0 -0
  1525. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/dna2.svg +0 -0
  1526. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/docker.svg +0 -0
  1527. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/dslam.svg +0 -0
  1528. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/factory.svg +0 -0
  1529. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/fingerprint.svg +0 -0
  1530. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/firewall.svg +0 -0
  1531. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/firewall3.svg +0 -0
  1532. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/globe.svg +0 -0
  1533. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/grid.svg +0 -0
  1534. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/grid2.svg +0 -0
  1535. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/health.svg +0 -0
  1536. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/house.svg +0 -0
  1537. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/hub.svg +0 -0
  1538. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/inspect.svg +0 -0
  1539. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/inspect2.svg +0 -0
  1540. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/interconnect.svg +0 -0
  1541. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/ip_phone.svg +0 -0
  1542. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/isdn.svg +0 -0
  1543. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/laptop.svg +0 -0
  1544. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/ldap.svg +0 -0
  1545. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/light_bulb.svg +0 -0
  1546. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/link.svg +0 -0
  1547. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/loadbalancer.svg +0 -0
  1548. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/nas.svg +0 -0
  1549. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/nat.svg +0 -0
  1550. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/nat2.svg +0 -0
  1551. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/office.svg +0 -0
  1552. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/optical.svg +0 -0
  1553. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/phone_cloud.svg +0 -0
  1554. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/phone_old.svg +0 -0
  1555. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/phone_wireless.svg +0 -0
  1556. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/pinpoint.svg +0 -0
  1557. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/printer.svg +0 -0
  1558. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/rj45.svg +0 -0
  1559. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/router.svg +0 -0
  1560. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/router2.svg +0 -0
  1561. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/router_cloud.svg +0 -0
  1562. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/satellite.svg +0 -0
  1563. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/satellite_dish.svg +0 -0
  1564. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/scull.svg +0 -0
  1565. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/server.svg +0 -0
  1566. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/server_cluster.svg +0 -0
  1567. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/shield.svg +0 -0
  1568. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/statistics.svg +0 -0
  1569. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/storage.svg +0 -0
  1570. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/switch.svg +0 -0
  1571. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/switch_multilayer.svg +0 -0
  1572. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/tablet.svg +0 -0
  1573. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/template.svg +0 -0
  1574. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/tree.svg +0 -0
  1575. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/user.svg +0 -0
  1576. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/virtualbox.svg +0 -0
  1577. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/vm.svg +0 -0
  1578. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/vmware.svg +0 -0
  1579. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/vrf.svg +0 -0
  1580. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/wifi.svg +0 -0
  1581. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/wlc.svg +0 -0
  1582. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/green/xml.svg +0 -0
  1583. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/atm.svg +0 -0
  1584. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/bug.svg +0 -0
  1585. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/camera.svg +0 -0
  1586. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/camera_dome.svg +0 -0
  1587. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/client.svg +0 -0
  1588. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/client_vm.svg +0 -0
  1589. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/cloud.svg +0 -0
  1590. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/coffee.svg +0 -0
  1591. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/cog.svg +0 -0
  1592. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/communications.svg +0 -0
  1593. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/conversation.svg +0 -0
  1594. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/dna.svg +0 -0
  1595. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/dna2.svg +0 -0
  1596. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/docker.svg +0 -0
  1597. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/dslam.svg +0 -0
  1598. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/factory.svg +0 -0
  1599. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/fingerprint.svg +0 -0
  1600. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/firewall.svg +0 -0
  1601. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/firewall3.svg +0 -0
  1602. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/globe.svg +0 -0
  1603. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/grid.svg +0 -0
  1604. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/grid2.svg +0 -0
  1605. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/health.svg +0 -0
  1606. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/house.svg +0 -0
  1607. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/hub.svg +0 -0
  1608. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/inspect.svg +0 -0
  1609. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/inspect2.svg +0 -0
  1610. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/interconnect.svg +0 -0
  1611. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/ip_phone.svg +0 -0
  1612. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/isdn.svg +0 -0
  1613. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/laptop.svg +0 -0
  1614. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/ldap.svg +0 -0
  1615. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/light_bulb.svg +0 -0
  1616. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/link.svg +0 -0
  1617. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/loadbalancer.svg +0 -0
  1618. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/nas.svg +0 -0
  1619. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/nat.svg +0 -0
  1620. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/nat2.svg +0 -0
  1621. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/office.svg +0 -0
  1622. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/optical.svg +0 -0
  1623. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/phone_cloud.svg +0 -0
  1624. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/phone_old.svg +0 -0
  1625. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/phone_wireless.svg +0 -0
  1626. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/pinpoint.svg +0 -0
  1627. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/printer.svg +0 -0
  1628. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/rj45.svg +0 -0
  1629. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/router.svg +0 -0
  1630. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/router2.svg +0 -0
  1631. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/router_cloud.svg +0 -0
  1632. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/satellite.svg +0 -0
  1633. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/satellite_dish.svg +0 -0
  1634. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/scull.svg +0 -0
  1635. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/server.svg +0 -0
  1636. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/server_cluster.svg +0 -0
  1637. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/shield.svg +0 -0
  1638. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/statistics.svg +0 -0
  1639. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/storage.svg +0 -0
  1640. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/switch.svg +0 -0
  1641. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/switch_multilayer.svg +0 -0
  1642. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/tablet.svg +0 -0
  1643. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/template.svg +0 -0
  1644. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/tree.svg +0 -0
  1645. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/user.svg +0 -0
  1646. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/virtualbox.svg +0 -0
  1647. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/vm.svg +0 -0
  1648. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/vmware.svg +0 -0
  1649. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/vrf.svg +0 -0
  1650. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/wifi.svg +0 -0
  1651. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/wlc.svg +0 -0
  1652. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/affinity/square/red/xml.svg +0 -0
  1653. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/PBX.svg +0 -0
  1654. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/PIX_firewall.svg +0 -0
  1655. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/access_point.svg +0 -0
  1656. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/access_server.svg +0 -0
  1657. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/asa.svg +0 -0
  1658. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/atm_bridge.svg +0 -0
  1659. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/atm_switch.svg +0 -0
  1660. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/call_manager.svg +0 -0
  1661. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/cloud.svg +0 -0
  1662. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/computer.svg +0 -0
  1663. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/docker_guest.svg +0 -0
  1664. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/dslam.svg +0 -0
  1665. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/edge_label_switch_router.svg +0 -0
  1666. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/ethernet_switch.svg +0 -0
  1667. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/firewall.svg +0 -0
  1668. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/frame_relay_switch.svg +0 -0
  1669. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/gateway.svg +0 -0
  1670. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/hub.svg +0 -0
  1671. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/ids.svg +0 -0
  1672. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/iosv_l2_virl.svg +0 -0
  1673. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/iosv_virl.svg +0 -0
  1674. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/ip_phone.svg +0 -0
  1675. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/label_switch_router.svg +0 -0
  1676. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/lightweight_ap.svg +0 -0
  1677. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/multilayer_switch.svg +0 -0
  1678. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/nat.svg +0 -0
  1679. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/optical_router.svg +0 -0
  1680. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/printer.svg +0 -0
  1681. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/qemu_guest.svg +0 -0
  1682. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/route_switch_processor.svg +0 -0
  1683. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/router.awp.svg +0 -0
  1684. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/router.svg +0 -0
  1685. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/router_firewall.svg +0 -0
  1686. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/router_netflow.svg +0 -0
  1687. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/server.svg +0 -0
  1688. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/sip_server.svg +0 -0
  1689. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/traceng.svg +0 -0
  1690. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/vbox_guest.svg +0 -0
  1691. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/vmware_guest.svg +0 -0
  1692. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/voice_access_server.svg +0 -0
  1693. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/voice_router.svg +0 -0
  1694. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/vpcs_guest.svg +0 -0
  1695. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/symbols/classic/wlan_controller.svg +0 -0
  1696. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/templates/controller.html +0 -0
  1697. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/templates/index.html +0 -0
  1698. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/templates/layout.html +0 -0
  1699. {gns3_server-2.2.52 → gns3_server-3.0.0}/gns3server/templates/upload.html +0 -0
  1700. {gns3_server-2.2.52 → gns3_server-3.0.0}/setup.cfg +0 -0
  1701. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/.pytest_cache/.gitignore +0 -0
  1702. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/.pytest_cache/CACHEDIR.TAG +0 -0
  1703. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/.pytest_cache/README.md +0 -0
  1704. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/.pytest_cache/v/cache/nodeids +0 -0
  1705. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/.pytest_cache/v/cache/stepwise +0 -0
  1706. /gns3_server-2.2.52/tests/topologies/dynamips_2_0_0_b2/before/project-files/dynamips/c7200_i1_nvram → /gns3_server-3.0.0/tests/__init__.py +0 -0
  1707. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/compute/dynamips/test_ethernet_switch.py +0 -0
  1708. /gns3_server-2.2.52/tests/topologies/dynamips_2_0_0_b2/before/project-files/dynamips/c7200_i2_nvram → /gns3_server-3.0.0/tests/controller/__init__.py +0 -0
  1709. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/resources/empty8G.qcow2 +0 -0
  1710. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/resources/firefox.svg +0 -0
  1711. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/resources/gns3_icon_128x128.png +0 -0
  1712. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/resources/gns3_icon_128x64.gif +0 -0
  1713. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/resources/gns3_icon_128x64.jpg +0 -0
  1714. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/resources/gns3_icon_128x64.png +0 -0
  1715. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/resources/linked.qcow2 +0 -0
  1716. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/resources/nvram_iou +0 -0
  1717. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/test_topologies.py +0 -0
  1718. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/test_utils.py +0 -0
  1719. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_0_empty/after/1_0_empty.gns3 +0 -0
  1720. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_0_empty/before/1_0_empty.gns3 +0 -0
  1721. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_3_dynamips/after/1_3_dynamips.gns3 +0 -0
  1722. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_3_dynamips/before/1_3_dynamips.gns3 +0 -0
  1723. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_3_dynamips_missing_platform/after/1_3_dynamips_missing_platform.gns3 +0 -0
  1724. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_3_dynamips_missing_platform/after/1_3_dynamips_missing_platform.gns3.backup3 +0 -0
  1725. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_3_dynamips_missing_platform/before/1_3_dynamips_missing_platform.gns3 +0 -0
  1726. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_3_dynamips_missing_type/after/1_3_dynamips.gns3 +0 -0
  1727. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_3_dynamips_missing_type/before/1_3_dynamips.gns3 +0 -0
  1728. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_builtins/after/README.txt +0 -0
  1729. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_builtins/after/builtins.gns3 +0 -0
  1730. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_builtins/before/builtins.gns3 +0 -0
  1731. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_builtins/before/instructions.txt +0 -0
  1732. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_cloud/after/1_5_cloud.gns3 +0 -0
  1733. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_cloud/before/1_5_cloud.gns3 +0 -0
  1734. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_cloud_nat/after/1_5_cloud_nat.gns3 +0 -0
  1735. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_cloud_nat/before/1_5_cloud_nat.gns3 +0 -0
  1736. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_cloud_udp/after/1_5_cloud_udp.gns3 +0 -0
  1737. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_cloud_udp/before/1_5_cloud_udp.gns3 +0 -0
  1738. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_drawing/after/1_5_drawing.gns3 +0 -0
  1739. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_drawing/before/1_5_drawing.gns3 +0 -0
  1740. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_dynamips/after/1_5_dynamips.gns3 +0 -0
  1741. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_dynamips/before/1_5_dynamips.gns3 +0 -0
  1742. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_host/after/1_5_host.gns3 +0 -0
  1743. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_host/before/1_5_host.gns3 +0 -0
  1744. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_images/after/1_5_image.gns3 +0 -0
  1745. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_images/after/project-files/images/gns3_logo.png +0 -0
  1746. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_images/before/1_5_image.gns3 +0 -0
  1747. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_images/before/project-files/images/gns3_logo.png +0 -0
  1748. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_internet/after/1_5_internet.gns3 +0 -0
  1749. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_internet/before/1_5_internet.gns3 +0 -0
  1750. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_iou/after/1_5_iou.gns3 +0 -0
  1751. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_iou/before/1_5_iou.gns3 +0 -0
  1752. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_qemu/after/testqemu.gns3 +0 -0
  1753. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_qemu/before/testqemu.gns3 +0 -0
  1754. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_snapshot/after/1_5_snapshot.gns3 +0 -0
  1755. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_snapshot/after/project-files/vpcs/992c28fd-4bc3-4508-9300-48600148f64a/startup.vpc +0 -0
  1756. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_snapshot/after/snapshots/onedevice_280716_174116.gns3project +0 -0
  1757. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_snapshot/before/1_5_snapshot.gns3 +0 -0
  1758. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_snapshot/before/project-files/snapshots/onedevice_280716_174116/project-files/vpcs/992c28fd-4bc3-4508-9300-48600148f64a/startup.vpc +0 -0
  1759. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_snapshot/before/project-files/snapshots/onedevice_280716_174116/screenshot.png +0 -0
  1760. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_snapshot/before/project-files/snapshots/onedevice_280716_174116/testsnapshot.gns3 +0 -0
  1761. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_snapshot/before/project-files/vpcs/992c28fd-4bc3-4508-9300-48600148f64a/startup.vpc +0 -0
  1762. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_virtualbox/after/1_5_virtualbox.gns3 +0 -0
  1763. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_virtualbox/before/1_5_virtualbox.gns3 +0 -0
  1764. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_vmware/after/1_5_vmware.gns3 +0 -0
  1765. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_vmware/before/1_5_vmware.gns3 +0 -0
  1766. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_vpcs/after/1_5_vpcs.gns3 +0 -0
  1767. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_vpcs/after/project-files/vpcs/0fd3dd4d-dc93-4a04-a9b9-7396a9e22e8b/startup.vpc +0 -0
  1768. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_vpcs/after/project-files/vpcs/b570a150-c09f-47d9-8d32-9ca5b03234d6/startup.vpc +0 -0
  1769. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_vpcs/before/1_5_vpcs.gns3 +0 -0
  1770. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_vpcs/before/project-files/vpcs/0fd3dd4d-dc93-4a04-a9b9-7396a9e22e8b/startup.vpc +0 -0
  1771. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/1_5_vpcs/before/project-files/vpcs/b570a150-c09f-47d9-8d32-9ca5b03234d6/startup.vpc +0 -0
  1772. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/README.rst +0 -0
  1773. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/after/dynamips_2_0_0_b2.gns3 +0 -0
  1774. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/after/project-files/dynamips/b31bacb4-b251-47e3-b9e8-fe5596e7a8ba/configs/i1_startup-config.cfg +0 -0
  1775. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/after/project-files/dynamips/b31bacb4-b251-47e3-b9e8-fe5596e7a8ba/dynamips_i1_log.txt +0 -0
  1776. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/after/project-files/dynamips/f306df6f-dbe0-4be1-9a40-625b8d20fe6e/configs/i2_startup-config.cfg +0 -0
  1777. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/after/project-files/dynamips/f306df6f-dbe0-4be1-9a40-625b8d20fe6e/dynamips_i2_log.txt +0 -0
  1778. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/before/dynamips_2_0_0_b2.gns3 +0 -0
  1779. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/before/project-files/dynamips/configs/i1_startup-config.cfg +0 -0
  1780. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/before/project-files/dynamips/configs/i2_startup-config.cfg +0 -0
  1781. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/before/project-files/dynamips/dynamips_i1_log.txt +0 -0
  1782. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/topologies/dynamips_2_0_0_b2/before/project-files/dynamips/dynamips_i2_log.txt +0 -0
  1783. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/utils/asyncio/test_embed_shell.py +0 -0
  1784. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/utils/test_picture.py +0 -0
  1785. {gns3_server-2.2.52 → gns3_server-3.0.0}/tests/utils.py +0 -0
@@ -0,0 +1,2674 @@
1
+ # Change Log
2
+
3
+ ## 3.0.0 20/12/2024
4
+
5
+ * Bundle web-ui v3.0.0
6
+ * Use static favicon for API docs. Ref #3674
7
+ * Configure self-hosting JavaScript and CSS for docs
8
+ * Fix project auto open feature. Fixes #2455
9
+ * Store IOU licence in the secrets directory and disable the check by default
10
+ * Require "Project.Audit" permission to duplicate a project and check if "Project.Allocate" permission for the destination.
11
+
12
+ ## 2.2.52 02/12/2024
13
+
14
+ * Bundle web-ui v2.2.52
15
+ * Sync appliances
16
+ * Remove restrictions based on file extension when listing images and fix ELF header checks
17
+ * Fix use project name instead of ID for fast duplication when running local server. Fixes #2446
18
+ * Overwrite user resources when the originals have changed.
19
+ * Relax setuptools requirement to allow for easier Debian packaging on Ubuntu Focal & Jammy
20
+
21
+ ## 3.0.0rc2 20/11/2024
22
+
23
+ * Bundle web-ui v3.0.0rc2
24
+ * Fix error 500 on PUT for cloud, nat, vmware and vpcs nodes. Fixes #2426
25
+ * Add a duplicated project in the same resource pools as the original project if it is in any
26
+ * Upgrade FastAPI to v0.115.5
27
+ * Overwrite user resources when the originals have changed.
28
+ * Relax setuptools requirement to allow for easier Debian packaging on Ubuntu Focal & Jammy
29
+ * Increase SQLite timeout. Ref #2422
30
+ * Fix test user with wrong creds
31
+ * Upgrade dependencies and fix Pydantic warnings
32
+ * Upgrade aiohttp to v3.10.10. Fixes #2411
33
+ * Replace aiohttp.web.HTTPConflict()
34
+ * Python 3.13 support
35
+
36
+ ## 2.2.51 07/11/2024
37
+
38
+ * Catch error when cannot resize Docker container TTY.
39
+ * Do not use "ide" if there is a disk image and no interface type has been explicitly configured.
40
+ * Use @locking when sending uBridge commands. Ref https://github.com/GNS3/gns3-gui/issues/3651
41
+ * Fix run Docker containers with user namespaces enabled. Fixes #2414
42
+ * Python 3.13 support
43
+ * Upgrade dependencies
44
+ * Fix errors in init.sh. Fixes #2431
45
+
46
+ ## 2.2.50 21/10/2024
47
+
48
+ * Bundle web-ui v2.2.50
49
+ * Symbolic links support for project export/import
50
+ * Add comment to indicate sentry-sdk is optional. Ref https://github.com/GNS3/gns3-server/issues/2423
51
+ * Fix issues with recent busybox versions
52
+ * Support to reset MAC addresses for Docker nodes and some adjustments for fast duplication.
53
+ * Update README.md to change the minimum required Python version.
54
+ * Faster project duplication for local projects (no remote compute)
55
+ * Improve error message when a project cannot be parsed.
56
+ * Fix for running Docker containers with user namespaces enabled
57
+ * Support for configuring MAC address in Docker containers
58
+ * Upgrade aiohttp to v3.10.3
59
+
60
+ ## 3.0.0rc1 11/08/2024
61
+
62
+ * Bundle web-ui v3.0.0rc1
63
+ * Convert topologies < 3.0 to have valid node hostnames
64
+ * Fix to access resources_path and install_builtin_appliances settings
65
+
66
+ ## 2.2.49 06/08/2024
67
+
68
+ * Bundle web-ui v2.2.49
69
+ * Forbid -nic and -nicdev in Qemu additional options. Fixes https://github.com/GNS3/gns3-server/issues/2397
70
+ * Upgrade jsonschema and sentry-sdk packages
71
+ * Update IOU base configs to use "no ip domain lookup". Fixes #2404
72
+
73
+ ## 2.2.48.1 12/07/2024
74
+
75
+ * Bundle web-ui v2.2.48.1
76
+
77
+ ## 2.2.48 08/07/2024
78
+
79
+ * Bundle web-ui v2.2.48
80
+ * Add 'install_builtin_appliances' and 'resources_path' settings in the server config
81
+ * Option to keep the compute IDs unchanged when exporting a project
82
+ * Forbid unsafe Qemu additional options
83
+ * Fix error when snapshot exists with an underscore in the name
84
+ * Upgrade sentry-sdk, psutil and aiofiles packages
85
+ * Fix check for IPv6 enabled on host
86
+
87
+ ## 3.0.0b3 19/05/2024
88
+
89
+ * Bundle web-ui v3.0.0b3
90
+ * Fix to allow duplicating IOS routers
91
+ * Fix to allow changing the auxiliary console for IOS router nodes.
92
+ * Replace deprecated method datetime.utcnow()
93
+ * Upgrade FastAPI to v0.111.0
94
+ * Fix reset console for non running IOU devices
95
+ * Do not allow to create a builtin template using the API.
96
+ * Use cryptography backend for python-jose. Ref #2372
97
+
98
+ ## 2.2.47 15/05/2024
99
+
100
+ * Fix update-bundled-web-ui.sh script
101
+ * Bundle web-ui v2.2.47
102
+ * Change sentry-sdk version
103
+ * Upgrade aiohttp, sentry-sdk and truststore
104
+ * Upgrade jsonschema and aiohttp
105
+ * Drop Python 3.7
106
+ * Remove dev requirements for Python 3.6
107
+ * Do not run Docker VM tests on Windows
108
+ * Do not wait for the server to close when shutting down.
109
+ * Fix test create image with not supported characters by filesystem. Fixes #2375
110
+ * Allow listing x86_64 IOU images. Fixes #2376
111
+ * Upgrade Jinja2 to version 3.1.4. Fixes #2378
112
+ * Fix link capture for ATM switch. Fixes https://github.com/GNS3/gns3-gui/issues/3570
113
+ * Fix tests after updating error message when busybox is not installed.
114
+ * Add more details to error message when busybox is not installed. Fixes https://github.com/GNS3/gns3-gui/issues/3569
115
+ * Fix invalid escape sequences
116
+ * Add NAT symbols
117
+ * Fix cannot stop Docker VM while console connection is still active.
118
+ * Upgrade sentry-sdk to version 1.40.6
119
+
120
+ ## 3.0.0b2 07/04/2024
121
+
122
+ * Bundle web-ui v3.0.0b2
123
+ * Fix cannot stop Docker VM while console connection is still active.
124
+ * Support for custom Qemu path in templates and nodes
125
+ * Fix CPU fractional values for Docker VMs.
126
+ * Use bcrypt directly instead of passlib
127
+ * Update CORS policy
128
+ * Do not stop searching for Qemu binaries if one binary cannot be executed. Ref #2306
129
+ * Fix Ethernet switch and Ethernet hub port validations. Fixes #2334
130
+ * Update CORS policy
131
+
132
+
133
+ ## 2.2.46 26/02/2024
134
+
135
+ * Bundle web-ui v2.2.46
136
+ * Save empty directories when exporting a project
137
+ * Backport from v3: install Docker resources in a writable location at runtime.
138
+ * Use Docker API v1.24 to get version.
139
+ * Drop support for Python 3.6
140
+ * Address the telnet console bug.
141
+ * Update welcome.py
142
+ * Update remote-install.sh
143
+ * Use Python 3.8 to publish API doc
144
+ * Upgrade sentry-sdk, psutil and distro dependencies
145
+
146
+ ## 2.2.45 12/01/2024
147
+
148
+ * Bundle web-ui v2.2.45
149
+ * Fix mouse offset issues with VNC in Qemu. Fixes #2335
150
+ * Add project.created, project.opened and project.deleted controller notification stream. Move project.updated and project.closed from project notification to controller notification stream.
151
+ * Do not stop searching for Qemu binaries if one binary cannot be executed. Ref #2306
152
+ * Fix Ethernet switch and Ethernet hub port validations. Fixes #2334
153
+ * Update CORS policy
154
+ * Add custom executable paths on Windows
155
+ * Upgrade sentry-sdk and aiohttp
156
+
157
+ ## 3.0.0b1 27/11/2023
158
+
159
+ * Bundle web-ui v3.0.0b1
160
+ * Upgrade sentry-sdk to v1.37.1
161
+ * Upgrade aiohttp to v3.9.1
162
+ * Fix bug when listing endpoints for opened project
163
+ * Make images executable after importing a project
164
+ * Disable IOS hostname check for Dynamips ghost instances
165
+
166
+ ## 3.0.0a6 15/11/2023
167
+
168
+ * Bundle web-ui v3.0.0a6
169
+ * Upgrade to aiohttp v3.9.0rc0
170
+ * Install Docker resources in writable location
171
+ * Default compute username is "gns3"
172
+ * Non-blocking checksums computation when server starts. Fixes #2228
173
+ * Fix timeout issue when creating Qemu disk image. Fixes https://github.com/GNS3/gns3-server/issues/2313
174
+ * Fix broken link to Web UI in 3.0 branch. Fixes #2312
175
+ * Fix sample config: VMware section declared twice. Fixes #2311
176
+ * Fix ws console and packet capture over SSL
177
+ * Support for web socket console over HTTPS
178
+ * Allow disabling hardware virtualization check
179
+
180
+ ## 2.2.44.1 07/11/2023
181
+
182
+ * Catch exceptions when computing image checksums. Ref https://github.com/GNS3/gns3-server/issues/2228
183
+ * Add freeze_support() for multiprocessing
184
+
185
+ ## 2.2.44 06/11/2023
186
+
187
+ * Bundle web-ui v2.2.44
188
+ * Non-blocking checksums computation when server starts. Fixes #2228
189
+ * Fix timeout issue when creating Qemu disk image. Fixes https://github.com/GNS3/gns3-server/issues/2313
190
+ * Support for web socket console over HTTPS
191
+ * Add back script create_cert.sh
192
+ * Allow disabling hardware virtualization check
193
+ * Fix L2IOU "failed code signing checks" when IOU base file name is >= 63 characters
194
+ * Change "ip cef" to "no ip cef" in IOU default configs. Fixes #2298
195
+ * Add Qemu IGB network device
196
+ * Add Python 3.12 support.
197
+ * Fix issue with importlib.resources.files() and Python 3.9
198
+
199
+ ## 3.0.0a5 27/10/2023
200
+
201
+ * Bundle web-ui v3.0.0a5
202
+ * Fix L2IOU "failed code signing checks" when IOU base file name is >= 63 characters
203
+ * Python 3.12 support
204
+ * Add igb Qemu adapter
205
+ * Change "ip cef" to "no ip cef" in IOU default configs. Fixes #2298
206
+ * Drop support for Python 3.7 and upgrade dependencies
207
+ * Fix compute authentication for websocket endpoints
208
+ * Add Qemu IGB network device
209
+
210
+ ## 3.0.0a4 18/10/2023
211
+
212
+ * Bundle web-ui v3.0.0a4
213
+ * Do not enforce Compute.Audit and Template.Audit privileges due to current web-ui limitations
214
+ * Support to create empty disk images on the controller
215
+ * Fix issue with importlib.resources.files() and Python 3.9
216
+ * New RBAC system with resource pools support.
217
+ * Use controller vars file to store version and appliance etag
218
+ * Pydantic v2 migration
219
+ * Allow connection to ws console over IPv6
220
+ * Allow computes to be dynamically or manually allocated
221
+ * Add UEFI boot mode option for Qemu VMs
222
+ * Mark VMware and VirtualBox support as deprecated
223
+ * Make port name for custom adapters optional. Fixes https://github.com/GNS3/gns3-web-ui/issues/1430
224
+ * Support for database schema migrations using alembic
225
+ * Add config option to change the server name. Ref #2149
226
+ * Option to disable image discovery and do not scan parent directory
227
+ * Allow raw images by default. Fixes https://github.com/GNS3/gns3-server/issues/2097
228
+ * Fix bug when creating Dynamips router with chassis setting
229
+ * Stricter checks to create/update an Ethernet switch and add tests
230
+ * Fix schema for removing WICs from Cisco routers. Fixes #3392
231
+ * Fix some issues with HTTP notification streams
232
+ * API endpoint to get the locked status of a project
233
+ * Global project lock and unlock
234
+ * Require name for custom adapters. Fixes #2098
235
+ * Allow empty adapter slots for Dynamips templates. Ref https://github.com/GNS3/gns3-gui/issues/3373
236
+ * Custom adapters should not be in node (compute) properties returned to clients. Fixes https://github.com/GNS3/gns3-gui/issues/3366
237
+ * Optionally allow Qemu raw images
238
+ * Ignore image detection for IOU user libraries in image directory
239
+ * Checks for valid hostname on server side for Dynamips, IOU, Qemu and Docker nodes
240
+ * Only check files (not directories) when looking for new images on file system.
241
+ * Support user defined loader/libraries to run IOU
242
+ * Remove explicit Response for VPCS endpoints returning HTTP 204 status code
243
+ * Remove explicit Response for endpoints returning HTTP 204 status code
244
+ * Make 'vendor_url' and 'maintainer_email' optional for template validation.
245
+ * Allow auth token to be passed as a URL param
246
+ * Add controller endpoints to get VirtualBox VMs, VMware VMs and Docker images
247
+ * Detect new images added to the default image directory. * Images can be present before the server starts or while it is running * Images are recorded in the database
248
+ * Support delete Qemu disk image from API Return the real disk image name in the 'hdx_disk_image_backed' property for Qemu VMs
249
+ * Fix ComputeConflictError import
250
+ * Handle creating Qemu disk images and resizing
251
+ * Finish to clean up local setting usage. Ref #1460
252
+ * "Local" command line parameter is only for stopping a server that has been started by the desktop GUI
253
+ * Fix AsyncSession handling after breaking changes in FastAPI 0.74.0 See https://github.com/tiangolo/fastapi/releases/tag/0.74.0 for details.
254
+ * Detect image type instead of requesting it from user
255
+ * Add connect endpoint for computes Param to connect to compute after creation Report compute unauthorized HTTP errors to client
256
+ * Replace CORS origins by origin regex
257
+ * Allow empty compute_id. Ref #1657
258
+ * Secure controller to compute communication using HTTP basic authentication
259
+ * Secure websocket endpoints
260
+ * Allocate compute when compute_id is unset
261
+ * Return the current controller hostname/IP from any compute
262
+ * Remove Qemu legacy networking support
263
+ * Appliance management refactoring: * Install an appliance based on selected version * Each template have unique name and version * Allow to download an appliance file
264
+ * Add isolate and unisolate endpoints. Ref https://github.com/GNS3/gns3-gui/issues/3190
265
+ * Allow images to be stored in subdirs and used by templates.
266
+ * Use uuid5 to create new compute_id. Fixes #1641 #1887
267
+ * Migrate PCAP streaming code to work with FastAPI.
268
+ * Refactor WebSocket console code to work with FastAPI. Fix endpoint routes.
269
+
270
+
271
+ ## 2.2.43 19/09/2023
272
+
273
+ * Force English output for VBoxManage. Fixes #2266
274
+ * Automatically add vboxnet and DHCP server if not present for VirtualBox GNS3 VM. Ref #2266
275
+ * Fix issue with controller config saved before checking current version with previous one
276
+ * Prevent X11 socket file to be modified by Docker container
277
+ * Use the user data dir to store built-in appliances
278
+ * Catch ConnectionResetError exception when client disconnects
279
+ * Upgrade to PyQt 5.15.9 and pywin32
280
+
281
+ ## 2.2.42 09/08/2023
282
+
283
+ * Bundle web-ui v2.2.42
284
+ * Handle API version key in VirtualBox 7. Fixes #2266
285
+ * Enable system certificate store for SSL connections
286
+ * Use DEFAULT_BUFFER_SIZE for md5sum
287
+ * Fix version check when installing appliances. Ref https://github.com/GNS3/gns3-gui/issues/3486
288
+ * Allow connection to ws console over IPv6. Fixes https://github.com/GNS3/gns3-web-ui/issues/1400
289
+ * Support for Python 3.12
290
+ * Remove import urllib3 and let sentry_sdk import and patch it. Fixes https://github.com/GNS3/gns3-gui/issues/3498
291
+
292
+ ## 2.2.41 12/07/2023
293
+
294
+ * Bundle web-ui v2.2.41
295
+ * Catch urllib3 exceptions when sending crash report. Ref https://github.com/GNS3/gns3-gui/issues/3483
296
+ * Only fetch Qemu version once when starting Qemu + only add speed/duplex for virtio-net-pci with Qemu version >= 2.12
297
+ * Use recent OVMF firmware (stable-202305) and use flash drives to configure Qemu command line
298
+ * Remove the useless executable permissions to the file gns3server/disks/empty8G.qcow2
299
+ * Backport UEFI boot mode support for Qemu VMs
300
+
301
+ ## 2.2.40.1 10/06/2023
302
+
303
+ * Re-bundle Web-Ui v2.2.40. Fixes #2239
304
+
305
+ ## 2.2.40 06/06/2023
306
+
307
+ * qemu : with network adapter_type equal to "virtio-net-pci", fix the speed to 10000 and duplex to full. The values are actually fake. (https://github.com/GNS3/gns3-gui/issues/3476)
308
+ * Parse name for request to node creation from template
309
+ * Remove Xvfb + x11vnc support
310
+ * Require a Host-Only Network to start the VirtualBox GNS3 VM on macOS with VirtualBox 7
311
+ * Properly catch aiohttp client exception. Ref #2228
312
+ * Catch ConnectionResetError when waiting for the wrap console
313
+ * Fix open IPv6 address for HTTP consoles on controller. Fixes https://github.com/GNS3/gns3-gui/issues/3448
314
+ * Use proc.communicate() when checking for subprocess output As recommended in https://docs.python.org/3/library/asyncio-subprocess.html#asyncio.subprocess.Process.stderr
315
+
316
+ ## 2.2.39 08/05/2023
317
+
318
+ * Install web-ui v2.2.39
319
+ * Add generic function to install resource files
320
+ * Install empty Qemu disks on first start
321
+ * Check for colon in project name. Fixes #2203
322
+ * Upgrade distro and aiohttp dependencies
323
+
324
+ ## 2.2.38 28/02/2023
325
+
326
+ * Bundle web-ui v2.2.38
327
+ * Fix c7200_i0_log.txt is created in the current directory. Fixes #2191
328
+ * Check swtpm version and start swtpm before qemu
329
+ * Fix broken websocket console with Python 3.11
330
+ * Fix "cannot reopen console". Ref #2182
331
+ * Fix Qemu binary not set when adding appliance from template
332
+
333
+ ## 2.2.37 25/01/2023
334
+
335
+ * Fix link communication issues on Windows with uBridge
336
+ * Fix StreamWriter doesn't have the wait_closed() method in Python3.6. Fixes #2170
337
+ * Install built-in appliances when no previous version has been detected. Fixes #2168
338
+ * Update documentation to install gns3-server. Fixes #2124
339
+ * Give udhcpc executable right. Fixes #2159
340
+
341
+ ## 2.2.36 04/01/2023
342
+
343
+ * Install web-ui v2.2.36
344
+ * Add Trusted Platform Module (TPM) support for Qemu VMs
345
+ * Require Dynamips 0.2.23 and bind Dynamips hypervisor on 127.0.0.1
346
+ * Delete the built-in appliance directory before installing updated files
347
+ * Use a stock BusyBox for the Docker integration
348
+ * Overwrite built-in appliance files when starting a more recent version of the server
349
+ * Fix reset console. Fixes #1619
350
+ * Only use importlib_resources for Python <= 3.9. Fixes #2147
351
+ * Support when the user field defined in Docker container is an ID. Fixes #2134
352
+
353
+ ## 3.0.0a3 27/12/2022
354
+
355
+ * Add web-ui v3.0.0a3
356
+ * Add config option to change the server name. Ref #2149
357
+ * Option to disable image discovery and do not scan parent directory
358
+ * Allow raw images by default. Fixes https://github.com/GNS3/gns3-server/issues/2097
359
+ * Fix bug when creating Dynamips router with chassis setting
360
+ * Stricter checks to create/update an Ethernet switch and add tests
361
+ * Fix schema for removing WICs from Cisco routers. Fixes #3392
362
+ * Fix issues with VMnet interface on macOS >= 11.0. Ref #3381
363
+ * Use importlib_resources instead of pkg_resources and install built-in appliances in config dir.
364
+ * Fix console vnc don't use configured ports in some case. Fixes #2111
365
+ * Add missing VMware settings in gns3_server.conf
366
+ * Make version PEP 440 compliant
367
+ * Support for Python 3.11
368
+ * Allow for more dependency versions at patch level
369
+ * Replace deprecated distro.linux_distribution() call
370
+ * Update gns3.service.systemd
371
+ * Fix some issues with HTTP notification streams
372
+ * gns3.service.openrc: make openrc script posix compliant
373
+ * fix: use exact match to find interface in windows to avoid get wrong interface
374
+
375
+ ## 2.2.35.1 10/11/2022
376
+
377
+ * Re-release Web-Ui v2.2.35
378
+
379
+ ## 2.2.35 08/11/2022
380
+
381
+ * Release web-ui v2.2.35
382
+ * Fix issues with VMnet interface on macOS >= 11.0. Ref #3381
383
+ * Use importlib_resources instead of pkg_resources and install built-in appliances in config dir.
384
+ * Fix console vnc don't use configured ports in some case. Fixes #2111
385
+ * Add missing VMware settings in gns3_server.conf
386
+ * Make version PEP 440 compliant
387
+ * Support for Python 3.11
388
+ * Allow for more dependency versions at patch level
389
+ * Replace deprecated distro.linux_distribution() call
390
+ * Update gns3.service.systemd
391
+ * gns3.service.openrc: make openrc script posix compliant
392
+ * fix: use exact match to find interface in windows to avoid get wrong interface
393
+
394
+ ## 3.0.0a2 06/09/2022
395
+
396
+ * Add web-ui v3.0.0a2
397
+ * Upgrade FastAPI to v0.82.0
398
+ * API endpoint to get the locked status of a project
399
+ * Global project lock and unlock
400
+ * Update appliance files
401
+ * Require name for custom adapters. Fixes #2098
402
+ * Allow empty adapter slots for Dynamips templates. Ref https://github.com/GNS3/gns3-gui/issues/3373
403
+ * Use original $PATH in init.sh for Docker containers. Ref #2069
404
+
405
+ ## 3.0.0a1 04/08/2022
406
+
407
+ * Bundle gns3-web-ui v3.0.0a1
408
+ * Use default symbol theme if none is provided when loading appliances
409
+ * Allow default symbol theme to be configured in config file
410
+ * Optionally allow Qemu raw images
411
+ * Ignore image detection for IOU user libraries in image directory
412
+ * Don't show optional token param in API docs
413
+ * Fix check for 32-bit in ELF header
414
+ * Checks for valid hostname on server side for Dynamips, IOU, Qemu and Docker nodes
415
+ * Only check files (not directories) when looking for new images on file system.
416
+ * Support user defined loader/libraries to run IOU
417
+ * Make 'vendor_url' and 'maintainer_email' optional for template validation.
418
+ * Allow auth token to be passed as a URL param
419
+ * HTTP middleware create issues when streaming project archive
420
+ * Add zstandard compression support for project export
421
+ * Make sure that the temporary image file is removed after uploading an image
422
+ * Do not cache to md5sum file in some situations
423
+ * Detect new images added to the default image directory. * Images can be present before the server starts or while it is running * Images are recorded in the database
424
+ * Support delete Qemu disk image from API Return the real disk image name in the 'hdx_disk_image_backed' property for Qemu VMs
425
+ * Handle creating Qemu disk images and resizing
426
+ * Finish to clean up local setting usage. Ref #1460
427
+ * "Local" command line parameter is only for stopping a server that has been started by the desktop GUI
428
+ * Fix AsyncSession handling after breaking changes in FastAPI 0.74.0 See https://github.com/tiangolo/fastapi/releases/tag/0.74.0 for details.
429
+ * Detect image type instead of requesting it from user
430
+ * Drop Python 3.6 support and require Python >= 3.7
431
+ * Drop Windows support
432
+ * Add connect endpoint for computes Param to connect to compute after creation Report compute unauthorized HTTP errors to client
433
+ * Replace CORS origins by origin regex
434
+ * Change default config settings
435
+ * Update Docker image for tests
436
+ * Fix calls to static methods in server.py
437
+ * Do not require the local server param to open a .gns3 file. Fixes https://github.com/GNS3/gns3-gui/issues/2421 Ref #1460
438
+ * Do not automatically install appliance after uploading image
439
+ * Ignore OSError when closing websocket
440
+ * Allow empty compute_id. Ref #1657
441
+ * Secure controller to compute communication using HTTP basic authentication
442
+ * Secure websocket endpoints
443
+ * Fix issue when updating a template
444
+ * Allocate compute when compute_id is unset
445
+ * Return the current controller hostname/IP from any compute
446
+ * Remove Qemu legacy networking support
447
+ * Add a custom version to an appliance
448
+ * Appliance management refactoring: * Install an appliance based on selected version * Each template have unique name and version * Allow to download an appliance file
449
+ * Finalize image management refactoring and auto install appliance if possible
450
+ * Sqlite doesn't allow BigInteger to be used as an primary key with autoincrement
451
+ * Add isolate and unisolate endpoints. Ref https://github.com/GNS3/gns3-gui/issues/3190
452
+ * Small db tables adjustments
453
+ * Add index for "name" field in role table
454
+ * Allow images to be stored in subdirs and used by templates.
455
+ * Option to prune images when deleting template.
456
+ * Associate images when creating or updating a template.
457
+ * Add prune images endpoint. Use many-to-many relationship between images and templates.
458
+ * Check if user has the right to add a permission
459
+ * Only use the necessary HTTP methods for default permissions
460
+ * Add /permissions/prune to delete orphaned permissions
461
+ * Check a permission matches an existing route before it is allowed to be created.
462
+ * Remove busybox and copy system busybox in setup.py
463
+ * Save image size + start to automatic template creation based on image checksum.
464
+ * Upgrade dependencies
465
+ * Fix "-machine accel=tcg" check
466
+ * Allow logged in user to change some of its data. Administrators can lock users using the `is_active` field.
467
+ * Symbols endpoints (except upload) don't require authentication.
468
+ * Update to the udhcpc wrapper script. Ref #1890
469
+ * Fix link style merge
470
+ * Start refactoring for images management
471
+ * Allow controller to be reloaded using the API. Fixes #1743
472
+ * Use a stock BusyBox for the Docker Integration
473
+ * Move "/{project_id}/templates/{template_id}" endpoint.
474
+ * Add last login info for users.
475
+ * Change RBAC field names from builtin to is_builtin
476
+ * Add user permissions + RBAC tests.
477
+ * Add description for user permission.
478
+ * Save/restore appliances Etag.
479
+ * Allow to set the initial super admin username / password in server config file. Ref #1857
480
+ * Require authentication for get_user_memberships endpoint.
481
+ * Change method to prevent forbidden directory traversal. Ref #1894
482
+ * Add user groups support.
483
+ * Add delete cascade on foreign keys for appliance table
484
+ * Enable SQL foreign key support for SQLite
485
+ * Add missing CORS origins.
486
+ * Show topology path when check topology schema fails.
487
+ * Protect controller notification endpoints. Ref #1888 (WebSocket endpoint is not secured, it takes an optional token).
488
+ * Use uuid5 to create new compute_id. Fixes #1641 #1887
489
+ * Protect the API and add alternative authentication endpoint.
490
+ * Secure users API and handle manual password recovery.
491
+ * Add default super admin account in controller db.
492
+ * Complete type annotations for API endpoints.
493
+ * Detect the app is exiting and avoid reconnecting to computes.
494
+ * Move schemas between compute and controller subpackages
495
+ * Remove traceng code.
496
+ * Move error responses to API routers.
497
+ * Wait for local compute to be started. Don't reconnect to local compute when server is being stopped.
498
+ * Rename ssl and auth configuration file settings. Add enable SSL config validator. Strict configuration file validation: any error will prevent the server to start. Core server logic moved to a Server class.
499
+ * Generate new config for each test. Fixes tests.
500
+ * Use Pydantic to validate the server config file.
501
+ * Add symbol dimensions endpoint and SSL support for packet capture with remote HTTPS server.
502
+ * Save computes to database
503
+ * Generate a new list in template schema defaults.
504
+ * Generate JWT secret key if none is configured in the config file. Change location of the database.
505
+ * User authentication with tests.
506
+ * Refactor tests and start work on database integration.
507
+ * Move endpoints to routes & preparations to use a database.
508
+ * Providing the path to create a project is now deprecated.
509
+ * Add back script to create a self-signed SSL certificate.
510
+ * Make sure all HTTP exceptions return JSON with a "message" field instead of "detail"
511
+ * Make Swagger Ui the default for API documentation
512
+ * Move to version 3 of the REST API. Rename packet capture endpoints.
513
+ * Use pydantic for data validation (instead of jsonschema) Fix/improve various pydantic schema models.
514
+ * Automate API documentation publishing.
515
+ * Publish API documentation generated by FastAPI.
516
+ * Overwrite uvicorn loggers.
517
+ * Do not automatically connect to local compute.
518
+ * Add HTTP client to reuse the aiohttp session where needed. Remove unnecessary aiohttp exceptions.
519
+ * Warn not to use the private compute API. Fixes #1593.
520
+ * Migrate PCAP streaming code to work with FastAPI.
521
+ * Refactor WebSocket console code to work with FastAPI. Fix endpoint routes.
522
+ * Use dependencies and group common HTTP responses in endpoints.
523
+ * Migration to FastAPI
524
+ * Prioritize the config disk over HD-D for Qemu VMs. Fixes https://github.com/GNS3/gns3-gui/issues/3036
525
+ * Create config disk property false by default for Qemu templates
526
+ * Set default disk interface type to "none". Fail-safe: use "ide" if an image is set but no interface type is configured. Use the HDA disk interface type if none has been configured for HDD.
527
+ * Add explicit option to automatically create or not the config disk. Off by default.
528
+ * Auxiliary console support for Qemu. Ref #2873 Improvements for auxiliary console support for Docker and Dynamips.
529
+ * Fix AUX console not allocated for Dynamips IOS routers.
530
+ * Disallow to rename a running node. Fixes https://github.com/GNS3/gns3-gui/issues/2499
531
+ * Support to reset all console connections. Ref https://github.com/GNS3/gns3-server/issues/1619
532
+ * Support to reset links. Fixes https://github.com/GNS3/gns3-server/issues/1620
533
+ * Add maxcpus property for Qemu VMs. Ref #1674
534
+ * QEMU config disk support
535
+ * Read folder structure correctly for custom symbols. Fixes https://github.com/GNS3/gns3-gui/issues/2856
536
+ * Add total RAM, CPUs and disk size to servers summary as well as disk usage in percent. Fixes https://github.com/GNS3/gns3-server/issues/1532
537
+ * Resource constraints for Docker VMs.
538
+ * Update IOUtools. Ref #1627
539
+ * Use parent directory as working directory for project duplication and snapshots. Fixes https://github.com/GNS3/gns3-gui/issues/2909
540
+ * Support for "usage" for "Cloud" nodes. Fixes https://github.com/GNS3/gns3-gui/issues/2887 Allow "usage" for all builtin nodes (not exposed in Ui).
541
+
542
+ ## 2.2.34 28/08/2022
543
+
544
+ * Use original $PATH in init.sh for Docker containers. Ref #2069
545
+ * Support pytest-asyncio 0.19.0
546
+ * Upgrade dev dependencies and fix issues after upgrading to pytest-aiohttp v1.0.4
547
+ * Update compute.py
548
+
549
+ ## 2.2.33.1 21/06/2022
550
+
551
+ * Add missing file for web-ui v2.2.33
552
+
553
+ ## 2.2.33 20/06/2022
554
+
555
+ * Release web-ui v2.2.33
556
+ * Upgrade sentry-sdk and psutil
557
+ * Remove parameter "Name" not useful to create a Docker container
558
+ * Support to reset all console connections. Ref https://github.com/GNS3/gns3-server/issues/1619
559
+ * Config option to disable built-in templates
560
+ * Add hostname entry to sample network config for Docker nodes. Fixes #2039
561
+ * Run Xtigervnc with MIT-SHM extension disabled for Docker VNC console support. Fixes #2071
562
+ * Added OpenRC init script
563
+
564
+ ## 2.2.32 27/04/2022
565
+
566
+ * Docker: load custom interface files from /etc/network/interfaces (commented by default). Ref #2052
567
+ * Release web UI 2.2.32
568
+ * Create `/etc/network/interfaces.d` in Docker container. Fixes #2052
569
+ * Prettify Docker '/etc/network/interfaces' file. Ref #2040
570
+ * Use public DSNs for Sentry
571
+ * Fix VMware Fusion VM does not start on macOS >= 11. Fixes #2027
572
+ * Include conf file in MANIFEST.in Ref #2044
573
+ * Use Python 3.7 to publish API documentation
574
+ * Development on 2.2.32dev1
575
+
576
+ ## 2.2.31 26/02/2022
577
+
578
+ * Install setuptools v59.6.0 when using Python 3.6
579
+
580
+ ## 2.2.30 25/02/2022
581
+
582
+ * Support GNS3 variables in Docker environment variables. Fixes #2033
583
+ * Release web UI 2.2.30
584
+ * Set setuptools to v60.6.0
585
+ * qemu_vm.py Linked node test.
586
+ * Fix dead link in README.rst Fixes #2022
587
+
588
+ ## 2.2.29 08/01/2022
589
+
590
+ * Release web UI 2.2.29
591
+ * Add NixOS in list of distributions with a package
592
+
593
+ ## 2.2.28 15/12/2021
594
+
595
+ * Fix compute Docker test. Fixes #2003
596
+ * Release web UI 2.2.28
597
+ * Simpler Systemd service file. Ref #1996
598
+
599
+ ## 2.2.27 12/11/2021
600
+
601
+ * Release web UI 2.2.27
602
+ * Fix unhandled KeyError exception when starting Docker container. Ref #1991
603
+
604
+ ## 2.2.26 08/10/2021
605
+
606
+ * Release web UI 2.2.26
607
+ * Sort symbols by theme. Fixes https://github.com/GNS3/gns3-gui/issues/3230
608
+ * Fix memory percentage left warning. Fixes #1966
609
+ * Update affinity symbols. Fixes https://github.com/GNS3/gns3-gui/issues/3232
610
+
611
+ ## 2.2.25 14/09/2021
612
+
613
+ * Release web UI 2.2.25
614
+ * Fix issue preventing to use custom nested symbols. Fixes #1969
615
+ * Updated affinity symbols
616
+ * Fix qemu-img rebase code to support Qemu 6.1. Ref https://github.com/GNS3/gns3-server/pull/1962
617
+ * Reinstate qemu-img rebase
618
+ * Return disk usage for partition that contains the default project directory. Fixes #1947
619
+ * Explicitly require setuptools, utils/get_resource.py imports pkg_resources
620
+
621
+ ## 2.2.24 25/08/2021
622
+
623
+ * Release web UI 2.2.24
624
+ * Fix issue when searching for image with relative path. Fixes #1925
625
+ * Fix wrong error when NAT interface is not allowed. Fixes #1943
626
+ * Fix incorrect Qemu binary selected when importing template. Fixes https://github.com/GNS3/gns3-gui/issues/3216
627
+ * Fix error when updating a link style. Fixes https://github.com/GNS3/gns3-gui/issues/2461
628
+ * Some fixes for early support for Python3.10 The loop parameter has been removed from most of asyncio‘s high-level API following deprecation in Python 3.8.
629
+ * Early support for Python3.10 Fixes #1940
630
+ * Bump pywin32 from 300 to 301
631
+
632
+ ## 2.2.23 05/08/2021
633
+
634
+ * Release web UI 2.2.23
635
+ * Fix hostname inconsistencies during script execution
636
+ * Add option `--without-kvm`
637
+ * Add a `reload` server endpoint. Fixes #1926
638
+ * Handle -no-kvm param deprecated in Qemu >= v5.2
639
+ * Fix binary websocket access to the console
640
+ * Change how to generate random MAC addresses
641
+ * setup.py: prevent installing tests directory
642
+ * Support cloning of encrypted qcow2 base image files
643
+ * Fix VMware VM support on Linux and Windows. Fixes #1919
644
+
645
+ ## 2.2.22 10/06/2021
646
+
647
+ * Fix VMware support on macOS BigSur
648
+ * Link style support. Fixes https://github.com/GNS3/gns3-gui/issues/2461
649
+ * Release web UI version 2.2.22
650
+ * Preserve auto_start/auto_open/auto_close when restoring snapshot
651
+ * Fix uBridge errors for cloud nodes not visible in logs. Fixes #1895
652
+ * Prevent directory traversal. Fixes #1894
653
+
654
+ ## 2.2.21 10/05/2021
655
+
656
+ * Release Web-Ui v2.2.21
657
+ * Improvements for get symbol dimensions endpoint. Ref #1885
658
+
659
+ ## 2.2.20 09/04/2021
660
+
661
+ * Release Web UI version 2.2.20
662
+ * Fix packet capture with HTTPS remote server. Fixes #1882
663
+ * Sync appliance files and remove old ones after sync with online repo. Fixes #1876
664
+ * Upgrade dependencies
665
+ * Fix export for missing files
666
+ * Fix issue when trying to export temporary Dynamips files.
667
+
668
+ ## 2.2.19 05/03/2021
669
+
670
+ * Launch projects marked for auto open after SIGHUP is received
671
+ * Release Web UI 2.2.19
672
+ * Fix console type error when creating Ethernet switch node. Fixes #1873
673
+ * Upgrade Jinja to version 2.11.3. Fixes #1865
674
+
675
+ ## 2.2.18 16/02/2021
676
+
677
+ * SIGHUP: remove projects with an empty project directory.
678
+ * Release Web UI 2.2.18
679
+ * Catch OSError exception in psutil. Fixes https://github.com/GNS3/gns3-gui/issues/3127
680
+ * Expose 'auto_open' and 'auto_start' properties in API when creating project. Fixes https://github.com/GNS3/gns3-gui/issues/3119
681
+ * Add mtools package information. Ref https://github.com/GNS3/gns3-gui/issues/3076
682
+ * Fix warning: 'ide-drive' is deprecated when using recent version of Qemu. Fixes https://github.com/GNS3/gns3-gui/issues/3101
683
+ * Fix bug when starting of vpcs stopped with "quit". Fixes https://github.com/GNS3/gns3-gui/issues/3110
684
+ * Fix WinError 0 handling
685
+ * Stop uBridge if VPCS node has been terminated. Ref https://github.com/GNS3/gns3-gui/issues/3110
686
+ * Allow cloned QEMU disk images to be resized before the node starts, by cloning the disk image in response to a resize request instead of waiting until the node starts.
687
+ * Fix(readme): update python version from 3.5.3 to 3.6
688
+ * Use HDD disk image as startup QEMU config disk
689
+ * Create config disk property false by default for Qemu templates
690
+ * Set default disk interface type to "none".
691
+ * Add explicit option to automatically create or not the config disk. Off by default.
692
+ * QEMU config disk support
693
+
694
+
695
+ ## 2.2.17 04/12/2020
696
+
697
+ * Close and remove projects deleted from disks after SIGHUP signal is received.
698
+ * Release Web Ui 2.2.17
699
+ * New config file options to configure the VNC console port range.
700
+ * Use asyncio.all_tasks instead of deprecated method for Python 3.9 compatibility.
701
+
702
+ ## 2.2.16 05/11/2020
703
+
704
+ * Option to allocate or not the vCPUs and RAM settings for the GNS3 VM. Fixes https://github.com/GNS3/gns3-gui/issues/3069
705
+ * Release Web UI version 2.2.16
706
+ * Fix wrong defaults for images_path, configs_path, appliances_path. Fixes #1829
707
+ * Use EnvironmentFile for Systemd service. Ref https://github.com/GNS3/gns3-gui/issues/3048
708
+ * Fix SSL support for controller and local compute. Fixes #1826
709
+ * Prevent WIC to be added/removed while Dynamips router is running. Fixes https://github.com/GNS3/gns3-gui/issues/3082
710
+ * Fix bug with application id allocation for IOU nodes. Fixes #3079
711
+ * Allow commas in image paths and VM name for Qemu VMs. Fixes https://github.com/GNS3/gns3-gui/issues/3065
712
+
713
+ ## 2.2.15 07/10/2020
714
+
715
+ * Fix symbol retrieval issue. Ref #1824
716
+ * Fixes update() missing 2 required positional arguments: 'name' and 'value'. Fixes #1821 #1825
717
+ * Fix Hyper-V based GNS3 VM WMI issue. Fixes #1822
718
+ * Release Web-Ui version 2020.4.0-beta.1
719
+
720
+ ## 2.2.14 14/09/2020
721
+
722
+ * Release Web-Ui version 2020.3.0-beta.4
723
+ * Add '-smp sockets=1' by default for Qemu VMs. Ref https://github.com/GNS3/gns3-gui/issues/3047
724
+ * Implement full restart if user reload a Qemu VM which has been updated. Fixes https://github.com/GNS3/gns3-gui/issues/3038
725
+
726
+ ## 2.2.13 04/09/2020
727
+
728
+ * Release Web-Ui 2020.3.0-beta.3
729
+ * Fix issue when resuming Qemu VM. Fixes https://github.com/GNS3/gns3-gui/issues/3027
730
+
731
+ ## 2.2.12 07/08/2020
732
+
733
+ * Release Web-Ui version 2020.3.0-beta.2
734
+ * Catch exception when psutil returns OSError
735
+ * Downgrade psutil to version 5.6.7
736
+ * Use parent directory as working directory for project duplication and snapshots. Fixes https://github.com/GNS3/gns3-gui/issues/2909
737
+ * Fix Key Error "vendor_id" is missing when configuring GNS3 VM with VirtualBox. Fixes https://github.com/GNS3/gns3-gui/issues/3018
738
+
739
+ ## 2.2.11 09/07/2020
740
+
741
+ * Fix crash when project sets 'auto_open' option and a remote GNS3 VM is used. Fixes https://github.com/GNS3/gns3-gui/issues/3014
742
+ * Fix Dynamips ghost image support when project contains a space. Fixes #3015
743
+ * Release Web-Ui version 2020.3.0-beta.1
744
+ * Fix issue when cannot skip slots for Dynamips routers. Fixes https://github.com/GNS3/gns3-gui/issues/3000
745
+ * Allow tests to be run by root. Fixes #1784
746
+ * Update classifiers in setup.py
747
+
748
+ ## 2.2.10 18/06/2020
749
+
750
+ * Add pytest-aiohttp to tests_require in setup.py
751
+ * Don't require hardware acceleration. Fixes #1780
752
+ * Release Web-Ui version 2020.2.0-beta.5
753
+ * Tests can be run with Python 3.8
754
+ * Wait longer for x11 socket file to be created. Ref #1761
755
+ * Allow Hyper-V to run on AMD when Windows 10 build 19640 or later is detected. Fixes #1777
756
+ * Show error message if IPv6 is not enabled when using SPICE console. Fixes #1772
757
+ * Move jsonschema 2.6.0 requirement in build repository.
758
+ * Only use jsonschema 2.6.0 on Windows and macOS.
759
+ * Disable default integrations for sentry sdk.
760
+ * Remove unused bytes2human function.
761
+
762
+ ## 2.2.9 04/06/2020
763
+
764
+ * Release Web-Ui version 2020.2.0-beta.4
765
+ * Support to activate/deactive network connection state replication in Qemu.
766
+ * Possible fix for problem connecting to the GNS3 VM. Ref https://github.com/GNS3/gns3-gui/issues/2969 #1760
767
+ * Option to reset or not all MAC addresses when exporting or duplicating a project.
768
+ * Fix bug when changing properties for closed project. Fixes #1754
769
+ * Fix issues with crash reporting & bump version to 2.2.9dev2. Ref https://github.com/GNS3/gns3-server/issues/1758
770
+ * Lock listing VMs. Ref #1755
771
+ * Try to fix error when listing Hyper-V VMs. Ref #1755
772
+ * Catch VirtualBox errors when listing VMs. Fixes #1759
773
+ * Deprecate running with Python 3.5
774
+ * aiocontextvars is only necessary for Python < 3.7
775
+ * Replace Raven by Sentry SDK. Fixes https://github.com/GNS3/gns3-server/issues/1758
776
+ * Require setuptools>=17.1 in setup.py. Ref https://github.com/GNS3/gns3-server/issues/1751 This is to support environmental markers. https://github.com/pypa/setuptools/blob/master/CHANGES.rst#171
777
+
778
+ ## 2.2.8 07/05/2020
779
+
780
+ * Release Web-Ui 2020.2.0-beta.3
781
+ * Default port set to 80 for server running in the GNS3 VM. Fixes #1737
782
+ * Make the Web UI the default page. Ref https://github.com/GNS3/gns3-server/issues/1737
783
+ * Support controller reloading for templates, appliances and projects. Ref #1743
784
+ * Return exit status 1 if server fails to start. Fixes #1744
785
+ * Use Environmental Markers to force jsonschema version. Fixes https://github.com/GNS3/gns3-gui/issues/2849 Version 3.2.0 with Python >= 3.8 Version 2.6.0 with Python < 3.8
786
+ * Use Environmental Markers to force jsonschema version 2.6.0 on Windows/macOS. Ref https://github.com/GNS3/gns3-gui/issues/2849
787
+ * Implement a minimum interval between cpu_percent() calls. Fixes #1738
788
+ * Add clipboard support for TigerVnc
789
+ * Sort snapshots by (created_at, name)
790
+ * Unprotected access for websocket consoles. Ref https://github.com/GNS3/gns3-gui/issues/2883#issuecomment-580677552
791
+ * Support for WebSocket consoles
792
+ * Return array for controller statistics endpoint
793
+ * Server statistics implementation
794
+
795
+ ## 2.2.7 07/04/2020
796
+
797
+ * Release 2020.2.0-beta.1
798
+ * Fix uBrigde error popups when Docker image has stopped. Fixes https://github.com/GNS3/gns3-gui/issues/2957
799
+ * Fix warning that you are explicitly comparing literals
800
+
801
+ ## 2.2.6 26/03/2020
802
+
803
+ * Remove --local when starting Docker dev server.
804
+ * Release 2020.1.0-alpha.1
805
+ * Monitor ubrige processes.
806
+ * Add Xvnc command to the VNC servers list. Fixes #172
807
+ * Allow controller to reconnect to compute if communication is lost. Ref #1634
808
+ * Improvement of support for docker USER directive. Fixes #1727.
809
+ * Fix cannot delete Dynamips router the content of the "usage" field. Fixes https://github.com/GNS3/gns3-gui/issues/2947
810
+ * Prevent locked drawings to be deleted. Fixes https://github.com/GNS3/gns3-gui/issues/2948
811
+ * Fix issues with empty project variables. Fixes https://github.com/GNS3/gns3-gui/issues/2941
812
+ * Upgrade psutil to version 5.6.6 due to CVE-2019-18874 https://github.com/advisories/GHSA-qfc5-mcwq-26q8
813
+ * Remove 'format=raw' from the Qemu options of the disk interfaces. Ref #1699
814
+ * Allocate application IDs for IOU nodes on the controller. An application ID is used by IOU to generate its interface Mac addresses. They must be unique across all opened projects sharing the same computes to avoid Mac address collisions.
815
+ * Require VirtualBox >= 6.0 on AMD and >= 6.1 on Intel processors (for GNS3 VM only). Fixes #1610
816
+ * Add nvme disk interface and fix scsi disk interface for Qemu VMs.
817
+ * Disallow using "legacy networking mode" with Qemu >= 2.9.0
818
+ * Add latest Qemu nic models.
819
+ * Attempt to fix error when loading wmi module. Fixes #1712
820
+ * Handle "aborted" state for VirtualBox VMs. Fixes #1702
821
+ * Change how Hyper-V VMs are found. Ref #1612
822
+
823
+ ## 2.2.5 09/01/2020
824
+
825
+ * No changes
826
+
827
+ ## 2.2.4 08/01/2020
828
+
829
+ * Accept a node name when creating a node from a template using the API. Fixes #1708
830
+ * Disallow to modify a template if changes cannot be written on disk. Fixes #1695
831
+ * Fix renaming IOL hostname replaces %h only in a single place. Fixes #1707
832
+ * Add symbols_path
833
+ * Bundle Web Ui version 2019.2.0-alpha.11
834
+ * Change the default UDP port range to be 20000 to 30000 in gns3_server.conf Ref #1271
835
+ * Fix cannot power on VirtualBox VM in saved state. Ref #1702
836
+
837
+ ## 2.2.3 12/11/2019
838
+
839
+ * Improved how the path to the config file is actually determined
840
+ * Return HTTP status code 204 in API when project successfully closed. Fixes #1689
841
+ * Python3.8 support. Ref https://github.com/GNS3/gns3-gui/issues/2895
842
+ * Make sure still support Python >= 3.5.3
843
+ * Added workaround for #1690. Added venv/ to .gitignore
844
+ * Fix exception when adding VirtualBox VM. Fixes #1685.
845
+ * Set psutil to version 5.6.3 in requirements.txt
846
+ * Add `LimitNOFILE=16384` to GNS3 service. Ref #1678
847
+ * Change the default UDP port range to be 20000 to 30000. Ref #1271
848
+
849
+ ## 2.2.2 04/11/2019
850
+
851
+ * Release 2019.2.0-alpha.10
852
+ * Fix how PCI bridges are created for Qemu VMs with greater than 32 interfaces.
853
+ * Fix broken support for cloned VirtualBox VMs. Fixes https://github.com/GNS3/gns3-gui/issues/2889
854
+ * Handle builtin entry does not exist when adding node from template (new fix).
855
+ * Let systemd directly supervises the GNS3 service. Fixes #1678
856
+
857
+ ## 2.2.1 01/11/2019
858
+
859
+ * Handle builtin entry does not exist when adding node from template.
860
+ * Upgrade aiohttp to version 3.6.2
861
+ * Fix issue when linking to more than one NAT node with allowed_interface option enabled. Fixes #1671
862
+ * Prevent deleting a GNS3 project outside the project directory. Ref #1669
863
+ * Do not send "console_type" property to computes for all builtin nodes excepting Ethernet switches. Fixes https://github.com/GNS3/gns3-gui/issues/2882
864
+ * Fix QEMU link detection flaky on last port. Fixes #1666
865
+ * Use compatible shlex_quote to handle case where Windows needs double quotes around file names, not single quotes. Ref https://github.com/GNS3/gns3-gui/issues/2866
866
+ * Use 0.0.0.0 by default for server host. Fixes https://github.com/GNS3/gns3-server/issues/1663
867
+ * Improvement to validate HTTP authentication config. Ref #1662
868
+ * Use versioned config directory for profiles. Fixes #1664
869
+ * Enable nested hardware virtualization by default for GNS3 VM running in VirtualBox. Fixes #1377 No error is sent by VBoxManage is this feature is not available, for instance with Intel processors.
870
+ * Set default host to "localhost". Fixes https://github.com/GNS3/gns3-server/issues/1663
871
+ * Improve process to get guest IP address from GNS3 VM running in VMware workstation/player. Ref https://github.com/GNS3/gns3-gui/issues/2866
872
+ * Fix error with console type in Ethernet switch schema. Fixes #1659
873
+
874
+ ## 2.2.0 30/09/2019
875
+
876
+ * Add debug message for what directory is checked for Qemu binaries. Ref #1655
877
+ * Release 2019.2.0-alpha.8
878
+ * Fix single quote is not closed. Fixes #1654
879
+ * Fix wrong Dynamips command used to rename an ATM switch. Fixes #1651
880
+ * Don't specify the PCI bus for AHCI device
881
+ * Add id value to all Qemu drives
882
+
883
+ ## 2.2.0rc5 09/09/2019
884
+
885
+ * Fix AttributeError: Cannot set attribute '%s'. Fixes #1646
886
+
887
+ ## 2.2.0rc4 30/08/2019
888
+
889
+ * Release 2019.2.0-alpha.7
890
+ * Check that vcpus value for GNS3 VM is an integer. Fixes #1636
891
+ * Make x,y optional for creating links via API. Fixes #1630
892
+ * Set default_name_format for some builtin nodes.
893
+ * Allow "none" for compute_id in templates.
894
+
895
+ ## 2.2.0rc3 12/08/2019
896
+
897
+ * Revert to jsonschema 2.6.0 due to packaging problem.
898
+
899
+ ## 2.2.0rc2 10/08/2019
900
+
901
+ * Bump jsonschema to version 3.0.2
902
+ * List Hyper-V VMs on non-english OSes. Fixes #1612
903
+ * Add missing default values in Cloud schema.
904
+ * Release 2019.2.0-alpha.5
905
+ * Fix redirection to web-ui bundled server
906
+
907
+ ## 2.2.0b4 11/07/2019
908
+
909
+ * Requires a project to be opened to start/stop/suspend all nodes. Fixes #1609
910
+ * Fix issue when starting GNS3 VM for Hyper-V
911
+ * Set defaults for custom cloud nodes.
912
+ * Fix issue when trying to rename a Dynamips node that is already powered on. Fixes #2824
913
+ * Remove deprecated Qemu parameter to run legacy ASA VMs. Fixes #2827
914
+ * Add debug message when searching for an image. Ref https://github.com/GNS3/gns3-gui/issues/2828
915
+
916
+ ## 2.2.0b3 15/06/2019
917
+
918
+ * Fix template migration issues from GUI to controller. Fixes https://github.com/GNS3/gns3-gui/issues/2803
919
+ * Refresh mounted media after ISO switch.
920
+ * Resolve conflicts in docker volumes instead of error. Fixes https://github.com/GNS3/gns3-server/issues/1595
921
+ * %guest-cid% variable implementation for Qemu VMs. Fixes https://github.com/GNS3/gns3-gui/issues/2804
922
+ * Fix KeyError: 'usage' exception when configuring IOU template. Fixes https://github.com/GNS3/gns3-gui/issues/2806
923
+
924
+ ## 2.2.0b2 29/05/2019
925
+
926
+ * Ignore Unicode errors when reading base config file contents.
927
+ * Sync appliances.
928
+ * Support snapshots for portable projects. Fixes https://github.com/GNS3/gns3-gui/issues/2792
929
+ * Update the GNS3 version in topology file if converted. Ref https://github.com/GNS3/gns3-gui/issues/2798
930
+ * Support for log rotation and compression. Fixes #1586
931
+ * Do not start QEMU console if QEMU process is not started. Fixes https://github.com/GNS3/gns3-gui/issues/2712
932
+ * Avoid sending warning message all the time for Ethernet switch.
933
+ * Support to include snapshots in portable projects.
934
+
935
+ ## 2.1.20 29/05/2019
936
+
937
+ * Ignore Unicode errors when reading base config file contents.
938
+
939
+ ## 2.1.19 28/05/2019
940
+
941
+ * Sync appliances.
942
+ * Remove yarl from requirements.txt since it is installed by aiohttp.
943
+ * Drop typing dependency.
944
+
945
+ ## 2.1.18 22/05/2019
946
+
947
+ * Revert "Force aiohttp version to 2.3.10 and aiohttp-cors version to 0.5.3" Ref https://github.com/GNS3/gns3-server/issues/1583 Ref https://github.com/GNS3/gns3-server/issues/1592
948
+ * Fix invalid reStructuredText for long description in setup.py
949
+
950
+ ## 2.2.0b1 21/05/2019
951
+
952
+ * Upgrade GNS3 Web UI to v2019.2.0-alpha.3
953
+ * Change behavior when an IOU license is verified. Fixes https://github.com/GNS3/gns3-server/issues/1555
954
+ * Fix Qemu VM state support after closing a project and check for JSON data returned by qemu-img. Fixes #1591
955
+ * Ensure Qemu monitor commands are executed. Ref #1582.
956
+ * Set console type to "none" by default for Ethernet switches and add a warning if trying to use "telnet". Fixes https://github.com/GNS3/gns3-gui/issues/2776
957
+ * Add %console-port% variable for additional Qemu options. Fixes https://github.com/GNS3/gns3-gui/issues/2786
958
+ * Fix invalid reStructuredText for long description in setup.py
959
+ * Support for additional persistent docker volumes
960
+
961
+ ## 2.2.0a5 15/04/2019
962
+
963
+ * Back to the major.minor version for config files. Ref https://github.com/GNS3/gns3-gui/issues/2756
964
+ * Fix templates missing after server restart. Fixes https://github.com/GNS3/gns3-gui/issues/2769
965
+ * Fix bug when GNS3 VM were not saved. Fix tests.
966
+ * Some adjustments with compute WebSocket handling. Ref https://github.com/GNS3/gns3-server/issues/1564
967
+ * Fix broken embedded console for Ethernet switch. Fixes #1574
968
+ * Prevent locked nodes to be deleted. Fixes https://github.com/GNS3/gns3-gui/issues/2764
969
+ * Remove old unused argument option. Fixes #1569
970
+
971
+ ## 2.1.17 17/05/2019
972
+
973
+ * Force aiohttp version to 2.3.10 and aiohttp-cors version to 0.5.3 This is to fix build issue for Ubuntu 19.04 package on Launchpad. Ref #1583 https://github.com/GNS3/gns3-gui/issues/2774
974
+
975
+ ## 2.1.16 15/04/2019
976
+
977
+ * Fix broken embedded console for Ethernet switch. Fixes #1574
978
+ * Remove old unused argument option. Fixes #1569
979
+
980
+ ## 2.2.0a4 05/04/2019
981
+
982
+ * Use the full version number for path to config files. Ref https://github.com/GNS3/gns3-gui/issues/2756
983
+ * Support for docker images that set the USER directive. Changes the docker user to root for the init script to configure the network, then drops to the configured user (or root if one is not defined) for continuing booting the image.
984
+ * Fix packet filter not working for Ethernet switch and Ethernet hub. Fixes https://github.com/GNS3/gns3-gui/issues/2754
985
+ * Fix remote packet capture for Dynamips.
986
+ * Fix remote packet capture and make sure packet capture is stopped when deleting an NIO. Fixes https://github.com/GNS3/gns3-gui/issues/2753
987
+ * Store config files in version specific location
988
+ * Update pytest from 4.3.1 to 4.4.0
989
+ * Fix opening previously saved 2.1 project grid overlapping. Fixes #2734
990
+ * Fix empty theme name in symbol selection dialog. Fixes https://github.com/GNS3/gns3-gui/issues/2751
991
+ * Bundle v2019.1.0-alpha.3 web-ui
992
+
993
+ ## 2.2.0a3 25/03/2019
994
+
995
+ * Fix traceback when starting packet capture on builtin nodes. Fixes https://github.com/GNS3/gns3-gui/issues/2743
996
+ * Load v2019.1.0-alpha.2 of WebUI
997
+ * Fetch tags for update-bundled-web-ui.sh
998
+ * Fix mimetype for javascript, #1559
999
+ * Serve WebUI via get_resource for freezed app
1000
+ * Deactivate the embedded shell for Ethernet switch. Ref #1424 #1556
1001
+ * Fix VBoxManage fails if VM has specific special characters in name. Fixes #2739
1002
+ * Fix IOU symlink issue on remote servers.
1003
+ * Fix vcpus configuration for GNS3 VM on VMware. Ref #2738.
1004
+ * Fix issue when images are not uploaded from appliance wizard. Ref https://github.com/GNS3/gns3-gui/issues/2738
1005
+ * Save the GNS3 VM settings even if the GNS3 VM cannot be stopped.
1006
+ * Fix exception when emitting event from controller. Ref https://github.com/GNS3/gns3-gui/issues/2737
1007
+
1008
+ ## 2.1.15 21/03/2019
1009
+
1010
+ * Fix IOU symlink issue on remote servers.
1011
+ * Fix vcpus configuration for GNS3 VM on VMware. Ref #2738.
1012
+
1013
+ ## 2.2.0a2 14/03/2019
1014
+
1015
+ * Web-UI v2019.1.0-alpha.1
1016
+ * Update docs for update-bundled-web-ui.sh
1017
+ * Fix issue when loading and quickly closing a project and opening it again. Fixes #1501.
1018
+ * Disable unreliable nested virtualization check.
1019
+ * Fix issue not checking build number on Windows.
1020
+ * Change Hyper-V requirement checks.
1021
+ * Early support for symbol themes.
1022
+ * Re-order handlers in order to prevent CORS
1023
+ * Download custom appliance symbols from GitHub Fix symbol cache issue. Ref https://github.com/GNS3/gns3-gui/issues/2671 Fix temporary directory for symbols was not deleted Fix temporary appliance file was not deleted
1024
+ * Option to export snapshots.
1025
+ * Support tags versioned WebUI when bundling
1026
+ * Support selecting a compression type when exporting a project.
1027
+ * Change how VPCS executable is searched.
1028
+ * Use aiofiles where relevant.
1029
+ * Update paths for binaries moved to the MacOS directory in GNS3.app
1030
+ * Locked state should not be used when duplicating a node.
1031
+ * Handle locking/unlocking items independently from the layer position.
1032
+ * Use aiozipstream for snapshots. Fix tests.
1033
+ * Project duplication support.
1034
+
1035
+ ## 2.2.0a1 29/01/2019
1036
+
1037
+ * Restore reload support for nodes.
1038
+ * Tune how to get the size of SVG images. Ref https://github.com/GNS3/gns3-gui/issues/2674. * Default for missing height/width is "100%" as defined in the SVG specification * Better error message, if viewBox attribute is missing * Removal of "%" in percent more fault tolerant by using rstrip("%")
1039
+ * Fix DeprecationWarning: invalid escape sequence. Fixes https://github.com/GNS3/gns3-gui/issues/2670
1040
+ * Fix issue with coroutine not awaited. Fixes #1499
1041
+ * Remove "deprecated" node for VirtualBox based GNS3 VM support. Ref #1377
1042
+ * Fix wrong controller method call.
1043
+ * Move appliance and template management code in their own classes.
1044
+ * Try to delete saved VM state only if a snapshot has been saved.
1045
+ * Set socket options SO_KEEPALIVE and TCP_NODELAY for embedded Telnet server. Ref #1335
1046
+ * Fix issue with notification queue that prevented to properly close projects. Fix #1493
1047
+ * Fix issue with "usage" variable for Dynamips VMs. Fixes #1495
1048
+ * New node information dialog to display general, usage and command line information. Ref https://github.com/GNS3/gns3-gui/issues/2662 https://github.com/GNS3/gns3-gui/issues/2656
1049
+ * Support "usage" field for Dynamips, IOU, VirtualBox and VMware. Fixes https://github.com/GNS3/gns3-gui/issues/2657
1050
+ * Automatically create a symbolic link to the IOU image in the IOU working directory. Fixes #1484
1051
+ * Merge remote-tracking branch 'origin/2.1' into 2.1
1052
+ * Fix link pause/filters only work for the first interface of Docker containers. Fixes #1482
1053
+ * Fix ConnectionResetError issues and switch to aiohttp version 3.4.4. Fixes #1474.
1054
+ * Fix server authentication.
1055
+ * Fix issue when there is no gns3_controller.conf. Fixes https://github.com/GNS3/gns3-gui/issues/2644
1056
+ * Fix non responsive console for Docker VMs. Fixes https://github.com/GNS3/gns3-gui/issues/2645
1057
+ * Back to classic symbol theme. Ref https://github.com/GNS3/gns3-gui/issues/2644
1058
+ * docker_vm: fix x11vnc not starting
1059
+ * Use "template" to name what we use to create new nodes.
1060
+ * Use project instead of topology where appropriate.
1061
+ * Make sure nothing is named "compute server".
1062
+ * Allow usage property in Docker appliance.
1063
+ * Use "node" instead of "appliance" for grid support.
1064
+ * Telnet console resize support for Docker VM.
1065
+ * Allow appliances to be loaded from file without the appliance id.
1066
+ * Update schema to allow for drawing grid size to be part of project.
1067
+ * Avoid _fix_permissions() to be called twice when stopping Docker VM. Ref #1428
1068
+ * Fix _fix_permissions() garbles permissions in Docker VM. Ref #1428
1069
+ * Fix "None is not of type 'integer'" when opening project containing a Qemu VM. Fixes #2610.
1070
+ * Remove useless warning.
1071
+ * Normalize symbol ID on Windows.
1072
+ * Use POSIX path for symbol ID.
1073
+ * Early support for symbol themes.
1074
+ * Fix broken examples in API documentation.
1075
+ * Add more information about appliances to the API documentation.
1076
+ * Use Python3.6 to build the API documentation.
1077
+ * Add missing files for API documentation.
1078
+ * Restore previously removed test.
1079
+ * Update API documentation for appliance endpoints. Ref https://github.com/GNS3/gns3-gui/issues/2630
1080
+ * Require privileged access for uBridge when using VMware VMs and Docker containers. Fixes #1461.
1081
+ * Only require privileged access for uBridge when connecting a cloud to an Ethernet/TAP interface. Fixes #1461.
1082
+ * Allow virtual machines to use files in project directory as disk images.
1083
+ * Support to duplicate an appliance.
1084
+ * Fix mac address schema validation for Qemu VM appliance. Fixes https://github.com/GNS3/gns3-gui/issues/2629
1085
+ * Support "L1 keepalives" in IOU appliance schema.
1086
+ * Remove problematic test when run on Travis.
1087
+ * Change test that randomly fails on Travis.
1088
+ * Fix small bugs when using the new appliance management API.
1089
+ * Fix bug with custom adapters and categories for Docker VM. Fixes https://github.com/GNS3/gns3-gui/issues/2613
1090
+ * Handle custom adapters in schemas.
1091
+ * Reorganize how appliance creation is validated against JSON schemas. This allows for clearer error messages when validation fails.
1092
+ * Use schema to set appliance default values and better schema validation error messages.
1093
+ * Schema validation for appliance API. Ref #1427.
1094
+ * Remove generic controller settings API endpoint.
1095
+ * Working dedicated appliance management API. Ref https://github.com/GNS3/gns3-server/issues/1427
1096
+ * Support Xtigervnc restart.
1097
+ * Only require Xtigervnc or Xvfb+x11vnc for Docker with vnc console. Ref #1438
1098
+ * Support tigervnc in Docker VM. Ref #1438
1099
+ * Base for dedicated appliance management API. Ref https://github.com/GNS3/gns3-server/issues/1427
1100
+ * Reorder routes in order to get working CORS
1101
+ * Fix CORS response on node deletion, Fixes: #1446
1102
+ * Disable CORS cache, Fixes: #1445
1103
+ * Refactor how clients access PCAP capture files. Fixes https://github.com/GNS3/gns3-gui/issues/2438.
1104
+ * Remove static dir configuration
1105
+ * FIX PUT CORS for nodes, Fixes: #1434
1106
+ * Fix installation with Python 3.7. Fixes #1414. Fix deprecated use of aiohttp.Timeout. Fixes #1296. Use "async with" with aiohttp.ClientSession(). Make sure websocket connections are properly closed, see https://docs.aiohttp.org/en/stable/web_advanced.html#graceful-shutdown Finish to drop Python 3.4.
1107
+ * Drop Python 3.4 and switch to async / await syntax for asyncio. Fixes #1425
1108
+ * Added "/sbin" to init script PATH variable so that its possible to use more sophosticated dhcp clients (compared to the udhcpc that is provided by busybox) by installing them into the docker image in the normal way.
1109
+ * Notify users if x11vnc process has crashed. Fix #1401.
1110
+ * Return compute port information via API. Ref #1420.
1111
+ * Fix platform.linux_distribution() is deprecated. Fixes https://github.com/GNS3/gns3-gui/issues/2578
1112
+ * Update minimum VIX version requirements for VMware. Ref #1415.
1113
+ * Disable static directory. Ref https://github.com/GNS3/gns3-gui/issues/2558.
1114
+ * Include HTTP error code when reporting an error while download appliance templates from GitHub repository.
1115
+ * Optimize appliance templates update from GitHub repository by only downloading when the repository has been updated. Ref https://github.com/GNS3/gns3-gui/issues/2490
1116
+ * Fix appliance template tests.
1117
+ * Update appliance templates from online registry. Ref #2490.
1118
+ * Add missing doc pages.
1119
+ * Update docs for controller_notifications and project_notifications.
1120
+ * The server has now 2 notification streams * A new one for controller related events (compute, appliance templates etc.) * The existing one for project related events (links, nodes etc.)
1121
+ * Allow custom symbols to be sub-directories.
1122
+ * Add affinity symbols. Ref https://github.com/GNS3/gns3-gui/issues/2488
1123
+ * ACPI shutdown for GNS3 VM running on Hyper-V. Ref https://github.com/GNS3/gns3-gui/issues/763
1124
+ * Hyper-V support for GNS3 VM. Fixes https://github.com/GNS3/gns3-gui/issues/763
1125
+ * Get IP address from guest Hyper-V VM. Ref https://github.com/GNS3/gns3-gui/issues/763
1126
+ * Early Hyper-V support to run the GNS3 VM. Ref https://github.com/GNS3/gns3-gui/issues/763.
1127
+ * Add appliance UUID added to the node data. Fixes #1334.
1128
+ * Clean GNS3 close if one remote server is down. Fixes #1357.
1129
+ * Mark VirtualBox support for running the GNS3 VM as deprecated. Ref #1377.
1130
+ * Change default z value for nodes to 1
1131
+ * Re-enable static directory
1132
+ * Disable static/ dir, Ref: #2532
1133
+ * Fix tests on Windows
1134
+ * Use mocked dir for web-ui redirection test
1135
+ * Use mocked dir of web-ui for tests
1136
+ * Gitkeep for web-ui directory
1137
+ * Serve WebUI handlers and update-bundled-web-ui script, Ref: #1362
1138
+ * Support /static/ files serving, Ref: #1362
1139
+ * Console support for clouds (to connect to external devices or services).
1140
+ * Fix switching console type from telnet to VNC throws error. Fixes #2489.
1141
+ * Fix saved VM state was not deleted correctly.
1142
+ * Fix problem with VM saved stated.
1143
+ * Returns the ports' adapter types and mac addresses when available.
1144
+ * Support for console auto start.
1145
+ * Possibility to customize port names and adapter types for Qemu, VirtualBox, VMware and Docker. Fixes #2361. MAC addresses can customized for Qemu as well.
1146
+ * Allow to have projects with the same name in different locations.
1147
+ * Save state feature for VirtualBox and VMware. New "On close" setting to select the action to execute when closing/stopping a Qemu/VirtualBox/VMware VM.
1148
+ * Support for suspend to disk / resume (Qemu).
1149
+ * Fix bug with 'none' console type for Ethernet switch. Fix some tests related to traceng.
1150
+ * Allow to resize a Qemu VM disk (extend only).
1151
+ * Allow to select the default NAT interface in preferences for local server.
1152
+ * Spice with agent support for Qemu VMs.
1153
+ * Check if the HAXM service is running when starting a Qemu VM with hardware acceleration. Ref #1242.
1154
+ * Support for console type "none".
1155
+ * Support for none console type (Qemu & Docker only)
1156
+ * Fix bug and add optimizations when connecting and sending commands to QEMU monitor after starting a VM. Fixes #2336.
1157
+ * Check if HAXM support is installed on macOS. Ref #1242.
1158
+ * Fix some issues with hardware acceleration support for Qemu.
1159
+ * Support Qemu with HAXM acceleration. Ref #1242.
1160
+ * Fix packet filters for Dynamips.
1161
+ * Fix link filters/suspend tests.
1162
+ * Improve suspend a link for Qemu and VirtualBox VMs. A suspended link will be unplugged allowing the VMs to be notified of the change.
1163
+ * Qemu VM support to detect when a link is plugged/unplugged.
1164
+ * Allow to configure the interface to be used by the NAT node. Fixes #1175.
1165
+ * Restrict the list of available Ethernet/TAP adapters. Fixes #352.
1166
+ * Basic project stats.
1167
+ * Filter snapshots directory during the snapshot, Fixes: #1297
1168
+ * Calculate MD5 on thread and before json response, Ref. gui#2239
1169
+ * Cancellable md5sum calculation on thread, Ref. gui#2239
1170
+ * Compute md5sum on thread and don't block main server, Ref. gui#2239
1171
+ * Replace asyncio.async with ensure_future because of deprecation, Fixes: #1269
1172
+ * Implement #1153 into 2.2 branch.
1173
+ * Pin prompt-toolkit to latest version 1.0.15
1174
+
1175
+ ## 2.1.14 27/02/2019
1176
+
1177
+ * Fix issue when setting cpuid.corespersocket for the GNS3 VM. Fixes https://github.com/GNS3/gns3-gui/issues/2723
1178
+ * Bump ACPI Shutdown Timeout to 120 seconds. Ref #1536
1179
+
1180
+ ## 2.1.13 26/02/2019
1181
+
1182
+ * Force jsonschema dependency to 2.6.0
1183
+ * Less aggressive connections to uBridge. Ref #1289
1184
+ * Fix topology images (Pictures) disappearing from projects. Fixes #1514.
1185
+ * Reset MAC addresses when duplicating a project. Fixes #1522
1186
+ * Fix API call to create a node from an appliance doesn't return the new node data. Fixes #1527
1187
+ * Detect invalid environment variable and send a warning when creating a Docker node. Ref #2683
1188
+ * Do not export/import symlinks for projects. Fixes #2699
1189
+ * Fix symlink not being created for duplicated IOU devices. Fixes https://github.com/GNS3/gns3-gui/issues/2699
1190
+ * Configure coresPerSocket value in VMX file for the GNS3 VM. Fixes https://github.com/GNS3/gns3-gui/issues/2688
1191
+ * Count logical CPUs to detect if the number of vCPUs is too high when configuring the GNS3 VM. Fixes #2688.
1192
+ * Add explicit error when trying to pull a Docker image from Docker Hub without Internet access. Fixes #1506.
1193
+ * Fixes double display output in GRUB in QEMU v3.1. Fixes #1516.
1194
+
1195
+ ## 2.1.12 23/01/2019
1196
+
1197
+ * Tune how to get the size of SVG images. Ref https://github.com/GNS3/gns3-gui/issues/2674.
1198
+ * Automatically create a symbolic link to the IOU image in the IOU working directory. Fixes #1484
1199
+ * Fix link pause/filters only work for the first interface of Docker containers. Fixes #1482
1200
+ * Telnet console resize support for Docker VM.
1201
+ * Fix _fix_permissions() garbles permissions in Docker VM. Ref #1428
1202
+ * Fix "None is not of type 'integer'" when opening project containing a Qemu VM. Fixes #2610.
1203
+ * Only require Xtigervnc or Xvfb+x11vnc for Docker with vnc console. Ref #1438
1204
+ * Support tigervnc in Docker VM. Ref #1438
1205
+ * Update minimum VIX version requirements for VMware. Ref #1415.
1206
+
1207
+ ## 2.1.11 28/09/2018
1208
+
1209
+ * Catch some exceptions.
1210
+
1211
+ ## 2.1.10 15/09/2018
1212
+
1213
+ * Include locale information and GNS3 VM version in crash reports.
1214
+ * Fix small errors like unhandled exceptions etc.
1215
+ * Import encodings.idna to avoid LookupError when standard library is in a zip file.
1216
+ * Catch exceptions in various locations to fix small issues reported by Sentry.
1217
+ * Check if serial pipe can be opened for VMware and VirtualBox VMs.
1218
+ * Improve the invalid port format detection. Fixes https://github.com/GNS3/gns3-gui/issues/2580
1219
+ * Update aiohttp verion requirement in order to support Python 3.7. Fixes https://github.com/GNS3/gns3-gui/issues/2566
1220
+ * Update setup.py and fix minor issues.
1221
+ * Catch asyncio.CancelledError when shutting down the server.
1222
+ * Report GNS3 VM errors to the GUI server summary. Ref #1359.
1223
+ * Replace vboxnet0 (if it does not exist) by the first available vboxnet interface on Windows. Fixes https://github.com/GNS3/gns3-vm/issues/102
1224
+ * Check if the VirtualBox host-only network exists when starting a GNS3 VM running on VirtualBox. Ref https://github.com/GNS3/gns3-vm/issues/102
1225
+ * Change file timestamps if necessary because ZIP does not support timestamps before 1980. Fixes #1360.
1226
+ * Add missing coroutine decorator Ref https://github.com/GNS3/gns3-gui/issues/2566
1227
+ * Refactor asyncio locking system for Python 3.7 support. Ref https://github.com/GNS3/gns3-gui/issues/2566 Ref https://github.com/GNS3/gns3-gui/issues/2568
1228
+ * Use asyncio.ensure_future() instead of asyncio.async() with conservative approach to support Python < 3.4.4. Fixes https://github.com/GNS3/gns3-gui/issues/2566
1229
+ * Forbid controller and computes to be different versions. Report last compute error to clients and display in the server summary.
1230
+ * Fix exception with short names for Dynamips interfaces. Fixes #1386.
1231
+ * Add missing Qemu boot priority values. Fixes https://github.com/GNS3/gns3-server/issues/1385
1232
+
1233
+ ## 2.1.9 13/08/2018
1234
+
1235
+ * Fix some more problems with interface short names. Fixes https://github.com/GNS3/gns3-gui/issues/2562
1236
+ * Fix incorrect short port names in topology summary. Fixes https://github.com/GNS3/gns3-gui/issues/2562
1237
+ * Set lower process priority when computing idle-pc value on Windows. Ref #2522.
1238
+ * Catch exception: ZIP does not support timestamps before 1980. Ref #1360.
1239
+ * Sync appliances
1240
+
1241
+ ## 2.1.8 14/06/2018
1242
+
1243
+ * 'caplog.text()' syntax is deprecated, use 'caplog.text' property instead.
1244
+ * Remove problematic pytest-capturelog dev dependency.
1245
+ * Fix API status code for start/stop/suspend/reload a node. Fixes #1353. Fix issues with test. Update documentation.
1246
+ * Don't send variables to computes where are empty, Ref: #1340
1247
+
1248
+ ## 2.1.7 12/06/2018
1249
+
1250
+ * Don't release NIO UDP ports when updating docker container.
1251
+ * Timeout for stream file.
1252
+ * Fix switching console type from telnet to VNC throws error.
1253
+ * Fix timeout error with "save as" for large projects.
1254
+ * Update API documentation
1255
+ * Add API endpoint to return all links attached to a node.
1256
+ * Fix issue with some SVG symbols that could not be used in GNS3. This was due to the height and width values being percentages.
1257
+ * Show correct free disk space value.
1258
+ * Force prompt-toolkit to version 1.0.15
1259
+ * Remove unwanted trailing characters and other white spaces when reading .md5sum files.
1260
+ * Change order to find vnetlib on Windows (PATH -> Registry -> Default directories).
1261
+
1262
+ ## 2.1.6 22/05/2018
1263
+
1264
+ * Locks down async-timeout<3.0.0 for P3.4 support; Fixes: #1331
1265
+ * Create/update project on compute when variables changes
1266
+ * Support for nested global variables
1267
+ * Don't clean logo images when applied to the project
1268
+ * Support of supplier and variables in topology
1269
+ * Project global variables
1270
+ * Add command information when uBridge has an error. Ref #1289
1271
+ * Handle asyncio timeouts. Ref #1307.
1272
+ * Fix bug with export project. Ref #1187 #1307.
1273
+ * Offload slow file operations to threads for snapshots and project "save as". Ref #1187 #1307.
1274
+ * support based on init.sh, Ref: #2482
1275
+ * Fix exception from send_signal() on Windows.
1276
+ * Add support of ExtraHosts for Docker, Ref. gns3-gui#2482
1277
+
1278
+ ## 2.1.5 18/04/2018
1279
+
1280
+ * Set the first byte to 0C when generating a random MAC address for a Qemu VM. Ref #1267.
1281
+ * Update appliance files.
1282
+ * Do not use VMnet0 when allocating VMnet adapters.
1283
+ * Use SO_REUSEADDR before calling bind() where missing. Fixes #1289.
1284
+ * Do not fail a Dynamips project conversion if a file being used.
1285
+ * Catch exceptions when using AsyncioTelnetServer. Fixes #1321.
1286
+ * Grid size support for projects.
1287
+ * Remove 'include INSTALL' from MANIFEST.
1288
+ * Fix issue with start all.
1289
+ * Check for valid IP address and prevent to run on non-Windows platforms.
1290
+ * Enable UDP tunnel option and use ICMP probing by default.
1291
+ * Use the configured IP address to trace.
1292
+ * Have TraceNG start without needing cmd.exe
1293
+
1294
+ ## 2.1.4 12/03/2018
1295
+
1296
+ * Add Juniper JunOS space appliance.
1297
+ * Sync checkpoint gaia appliance template.
1298
+ * Sync appliance templates.
1299
+ * Make sure we use an IPv4 address in the remote install script.
1300
+ * Delete old pcap file when starting a new packet capture.
1301
+ * Fix bug preventing to export portable projects with IOU images.
1302
+ * Ignore invalid BPF filters. Ref #1290.
1303
+ * Different approach to handle no data returned by uBridge hypervisors. Fixes #1289.
1304
+ * Do not raise exception if Dynamips or uBridge hypervisor don't return data and are still running. Fixes #1289
1305
+ * Fix Dynamips private config not loaded into nvram when starting a router. Fixes #1313.
1306
+ * Make sure we don't try to read when opening a file in binary more. Fixes #1301.
1307
+ * Compatybility with controller, default_symbol and hover_symbol, Fixes: #2444
1308
+ * Filter snapshots directory during the snapshot, Fixes: #1297
1309
+ * Handle docker env with last empty line, Fixes: #2420
1310
+ * Require uBridge version 0.9.14 on Linux
1311
+ * Pywin32 instead of pypiwin32, Ref. #1276
1312
+ * Fix missing 'locales' package in base image
1313
+ * Implement a minimum interval between psutil calls. Fixes #2262
1314
+ * Fix error when appliance template is broken (missing fields). Fixes #1287.
1315
+ * Fix "Change of linked base VM doesn't work with templates migrated from 2.0"
1316
+ * Fix "Unable to override non-custom VMware adapter".
1317
+ * Let a project be opened when a port cannot be found (can happens if a project is corrupted).
1318
+ * Add an error message when Docker container is not ready to be started. Ref #1281.
1319
+ * Update documentation.
1320
+ * Sync appliance files.
1321
+ * Fix issue when running multiple project containing IOU nodes on the same server. Ref #1239.
1322
+ * Set first byte to 52 when generating a random MAC address for a Qemu VM. Ref #1267.
1323
+ * Update link state and save project when a link is suspended or filters are added/removed (without node properties set).
1324
+ * More generic dependency for pypiwin32, Ref. #1276
1325
+
1326
+ ## 2.1.3 19/01/2018
1327
+
1328
+ * Update appliance files.
1329
+ * Suspend for Docker nodes.
1330
+ * Unlock yarl version and multidict
1331
+ * Fix same MAC address for duplicated Qemu nodes.
1332
+ * Fix same base MAC for duplicated IOS routers. Fixes #1264.
1333
+ * Fix "Creating multiple IOU nodes at once assigns the same application id". Fixes #1239.
1334
+ * Fix "Transport selection via DSN is deprecated" message. Sync is configured with HTTPTransport.
1335
+ * Refresh CPU/RAM info every 1 second. Ref #2262.
1336
+ * Rename ethernet switch arp command to mac
1337
+ * Fix error while getting appliance list. Fixes #1258.
1338
+ * Fix UnboundLocalError: local variable 'node' referenced before assignment. Fixes #1256.
1339
+ * Default symbol must be computer.svg
1340
+ * Compatibility for old node templates (those with default_symbol and hover_symbol properties).
1341
+ * Fix problem when searching for VBoxManage. Fixes #1261.
1342
+ * Improve the search for VBoxManage.
1343
+ * Fixing race condition when starting the GNS3 VM.
1344
+ * Default VPCS name format is now PC-{0}.
1345
+
1346
+ ## 2.1.2 08/01/2018
1347
+
1348
+ * Do not show log message if configuration file doesn't exist. Fixes #1206.
1349
+ * Update API documentation
1350
+ * Update API documentation. Fixes #1253.
1351
+ * GNS3-API: implement GET for specific drawing and link Fixes #1249
1352
+
1353
+ ## 2.1.1 22/12/2017
1354
+
1355
+ * Protect variable replacement for Qemu options. Escape double quotes.
1356
+ * Add proper exception when cannot find tunnel on QEMU, Fixes: #1241
1357
+ * Increase timeout for creation of image, Ref. #2239
1358
+ * Protect variable replacement for Qemu options.
1359
+ * Do not overwrites persistent Docker volumes. Fixes #2358.
1360
+ * Allow users to see an error when the server cannot stream a PCAP file.
1361
+ * Fix issue with Qemu + SPICE when IPv4 is not enabled.
1362
+ * Warn users if the GNS3 VM and local server are not in the same subnet. Fixes #1231.
1363
+ * Add missing appliance files.
1364
+ * Update appliance files.
1365
+ * Fix auto idle-pc from preferences.
1366
+ * Keep consistance of aiohttp.web.HTTPForbidden() execution
1367
+ * Make sure connected links are removed when a node is deleted.
1368
+ * Validate idle-pc values for auto idle-pc feature.
1369
+ * Fix error when updating packet filter on stopped Docker link. Fixes #1229.
1370
+ * Remotely close telnet console. Ref #2330
1371
+ * EthernetSwitch closing connections, Ref: gui/#2330
1372
+ * Export files from remote server, Fixes: gui/#2271
1373
+ * New option: require KVM. If false, Qemu VMs will not be prevented to run without KVM.
1374
+ * Implement variable replacement for Qemu VM options.
1375
+ * Avoid duplicate "-nographic" option.
1376
+ * Show qemu-img stdout in case of an error.
1377
+ * Use the correct NVRAM amount when pushing private config to IOU.
1378
+ * Check and fix corrupt Qemu disk images. Fixes #2301.
1379
+ * Update warning messages when connecting to non custom adapter for VMware VMs.
1380
+ * Fix "Can't use VirtualBox VM when an interface is managed by VirtualBox". Fixes #2335.
1381
+ * Add low disk space warning when creating a new project.
1382
+
1383
+ ## 2.1.0 09/11/2017
1384
+
1385
+ * Fix typo in vcpus on VirtualBoxVM, fixes: #1213
1386
+
1387
+ ## 2.1.0rc4 07/11/2017
1388
+
1389
+ * Fix GNS3VM vCPUs control on VMware, fixes: #2324
1390
+ * Fix typo in sample gns3_server.conf. Fixes #1210.
1391
+ * Warning for getting endpoint of compute
1392
+ * Enable debug mode on async loop only in dev/debug mode
1393
+ * Add warning when using IOU with a hostname length above 15 characters.
1394
+ * Improve VMware VMs discovery process. Ref #1201.
1395
+ * Improve error message when IOU VM process is unexpectedly stopped.
1396
+ * Improved error message when the number of network adapters is above the maximum for VirtualBox VMs. Better support for potential future chipsets in addition of PIIX3 and ICH9.
1397
+ * Added localhost and gns3.github.io CORS
1398
+
1399
+ ## 2.1.0rc3 19/10/2017
1400
+
1401
+ * Set vhv.enable before run for VMWare 14. Fixes #1184
1402
+ * Tweak how VMware VMs are found with fallback to search in the default location for VMs.
1403
+ * QEMU: fix logging of base mac address when creating a new node
1404
+ * Sync appliance files.
1405
+ * Fix creation of an VMware VM failed with invalid JSON. Fixes #2282.
1406
+ * Endpoint for obtaining direct action on compute
1407
+ * Fix IOU detection of layer 1 keepalive support. Fixes #1183.
1408
+ * Fixes path normalization during file upload on nodes (Fixes: #2276)
1409
+
1410
+ ## 2.1.0rc2 04/10/2017
1411
+
1412
+ * Don't create directory structure during json dump. Fixes #2270
1413
+ * Add more information when qemu-img fails.
1414
+ * Fix issue with multidict when upgrading GNS3 VM to use dev channel.
1415
+ * Restore file permissions fails for volumes with soft links. Fixes #1180.
1416
+ * Use RAW sockets by default on Linux.
1417
+ * Add missing https console keyword in JSON schema. Fixes #1179.
1418
+ * Allow projects to be opened even when a node port is already used.
1419
+
1420
+ ## 2.1.0rc1 13/09/2017
1421
+
1422
+ * Fix NAT node not working on Windows. Fixes #1163.
1423
+ * Do not prevent a project to be deleted. Fixes #2237.
1424
+
1425
+ ## 2.1.0b2 05/09/2017
1426
+
1427
+ * Round-robin nodes across all available compute resources. Fixes #1165.
1428
+ * Try to improve error reporting when streaming a PCAP file. Ref #2235.
1429
+ * Use Npcap DLL on Windows when checking for uBridge version.
1430
+ * Fixes running switch console inside PyCharm terminal (Ref. #1172)
1431
+ * Load meta of the project on loading time (Fixes #2225)
1432
+ * Added checking if NIO exists (Fixes #1160)
1433
+ * Fixes NAT node not working on Windows (#1163)
1434
+ * Fixes loading project when link_id is not set (#1159)
1435
+ * Return platform value on appliances list (Fixes #2211)
1436
+ * Fixes not known category in Appliances (Fixes #1156)
1437
+
1438
+ ## 2.1.0b1 04/08/2017
1439
+
1440
+ * Sync appliances
1441
+ * Interface starting with gns3 are not display by default in the cloud
1442
+ * Catch error when something that is not the GNS3 server answer to virtualbox requests
1443
+ * Catch KeyError: <aiohttp.connector._TransportPlaceholder
1444
+ * Add a warning when you try to load and the server is not started with --local
1445
+ * Sync appliances
1446
+ * Fix permission on exited container
1447
+
1448
+ ## 2.1.0a2 31/07/2017
1449
+
1450
+ * Handle invalid appliances files
1451
+ * Sync appliances
1452
+ * Fix naming of node with a number in the name
1453
+ * Fix race condition in startup of capture
1454
+ * Fix bug when exporting debug information with multiple remote servers
1455
+ * Fix OSError when uploading images
1456
+ * Fix an error when a symbol is not available on filesystem
1457
+ * Fix ServerDisconnectedError for stop_all
1458
+ * This fix the images always included in portable project
1459
+ * Fix support of docker appliance with a usage
1460
+ * Duplicate API for ATM, Ethernet Hub and Frame Relay Switch
1461
+ * History support for console and telnet application
1462
+ * Fix IOU image upload
1463
+ * Duplicate IOU
1464
+ * Support duplicate for Docker
1465
+ * Duplicate support for qemu
1466
+
1467
+ ## 2.1.0a1 24/07/2017
1468
+
1469
+ * Packet filtering
1470
+ * Suspend a link
1471
+ * Duplicate a node
1472
+ * Move config to central server
1473
+ * Appliance templates on server
1474
+
1475
+ ## 2.0.3 13/06/2017
1476
+
1477
+ * Fixes #1068 - handle zipfile encoding issues at project duplication
1478
+ * Fix: #1066 - Catching parsing errors at linked vbox file
1479
+ * Ignoring virtualenv directory at gitignore
1480
+ * Escaping VPCS name in regex #1067
1481
+ * Fix racecondition when listing interface
1482
+ * Fix Qemu disk creation with unicode characters not supported by local filesystem #1058 (#1063)
1483
+ * Fix when config file doesn't have computes section (#1062)
1484
+ * Check aiohttp version
1485
+
1486
+ ## 2.0.2 30/05/2017
1487
+
1488
+ * Set correct permission on ubridge when doing a remote installation
1489
+ * Remote install script should be totally non interactive
1490
+ * Duplicate project on remote server use UUID
1491
+ * Fix import of some old topologies from 1.3
1492
+ * Fix error in logging of error during starting GNS3 VM
1493
+ * Fix an error when logging Docker container fail to start
1494
+ * Use docker version in error message of outdated docker installation
1495
+ * Support images created by "docker commit". Fixes #1039
1496
+ * Do not wait auto start to finish in order to complete project opening
1497
+ * Improve logging for remote server connection lost
1498
+
1499
+ ## 2.0.1 16/05/2017
1500
+
1501
+ * Handle HTTP 504 errors from compute node
1502
+ * When connecting to a compute node ask for qemu images list
1503
+ * When importing portable project NAT node is loaded on GNS3 VM
1504
+ * Fix port numbering for Wic slot 1 & 2
1505
+ * Fixes issue with connections when loading an ATM switch.
1506
+ * Fixes ATM mapping.
1507
+ * Fixes Frame-relay VC mapping.
1508
+ * Fix export project is looking into the wrong directory
1509
+ * Fix a race condition in logging when ubridge exit fast
1510
+ * Fix conversion issue with old topology with C3640
1511
+ * Fix error when you have a directory in your symbols directory
1512
+ * Catch VMWare errors when getting status after GNS3 VM start
1513
+ * Make sure upstart LANG is utf8
1514
+ * Always install typing module (compat with python 3.4 on ubuntu)
1515
+ * Fix KeyError: 'filename'
1516
+ * Catch missing function listxattr on some Linux host.
1517
+ * Sort image list
1518
+ * Handle a race condition at project closing
1519
+ * Fix unicode error when reading ios configuration
1520
+ * Fix AttributeError: 'NoneType' object has no attribute 'send'
1521
+ * Fix a conversion issue with some 1.3 topologies
1522
+ * Fix an error with ethernetswitch when ethertype is null
1523
+ * Raise an error if we can't create the dynamips configuration directory
1524
+ * Catch timeout error when loading virtualbox VM
1525
+ * Handle broken compute at server startup
1526
+ * Catch error when we can't backup the topology
1527
+ * Catch error when writting the topology file on read only device
1528
+ * Catch a race condition in VirtualBox when editing and linking
1529
+ * Fix a race condition when editing a qemu vm and connecting it
1530
+ * Docker aux console is a VT100 terminal
1531
+
1532
+ ## 2.0.0 02/05/2017
1533
+
1534
+ * Fix connection to websocket with last docker release
1535
+ * Lower docker requirements in tests also
1536
+ * Docker minimum api is 1.25
1537
+ * Handling server disconnect error when docker daemon die
1538
+ * Handle some invalid SVG images
1539
+
1540
+ ## 2.0.0rc4 20/04/2017
1541
+
1542
+ * Fix a race condition when handling error at project opening
1543
+ * Fix an issue with editing network on windows
1544
+ * Fix windows tests
1545
+ * Catch timeout error on docker
1546
+ * typing is already included in Py >= 3.5 (#979)
1547
+ * Fix import of some old topologies
1548
+ * Fix AttributeError: 'NoneType' object has no attribute 'returncode'
1549
+ * Fix ghost vmware vms
1550
+ * Fix required field in schema not use
1551
+ * Catch error and log them when we can't write the config
1552
+ * Fix bridge 'bridge0' already exist when we have trouble with a container
1553
+ * Catch an error at startup when the remote GNS3 VM is not a real GNS3 VM
1554
+ * Fixes Qemu sata option. Ref #875.
1555
+ * Catch GNS3 VM loading error at startup
1556
+
1557
+ ## 1.5.4 13/04/2017
1558
+
1559
+ * Fix VPCS tests for recent version
1560
+ * Freeze server dependencies to the same version used for 1.5.3
1561
+ * Fix 1.5: Error message, when stopping IOU router #769
1562
+ * Drop color logging for remote install, seem to fail in some conditions
1563
+ * Cleanup the remote install script
1564
+ * Support for Xenial in remote install
1565
+
1566
+ ## 2.0.0rc3 31/03/2017
1567
+
1568
+ * Support IOU image without .bin at the end
1569
+ * Allow to change some properties of an already connected ethernet switch
1570
+ * Ensure we start only one ubridge
1571
+ * Catch some broken hostname for compute node
1572
+ * Fix limit of 20 docker containers
1573
+ * Fix race conditions in creation of Frame Relay Switch
1574
+ * Fix conversion of project from 1.X with custom symbol for cloud
1575
+ * Dissallow parallel pull of docker images
1576
+ * Add a scripts for running current dev version on GNS3 VM
1577
+ * Fix a crash with missing size in the svg files
1578
+ * Fix an utf8 error in auth code
1579
+ * Improve vmrun timeout message
1580
+ * Support utf-8 characters in user and password for auth
1581
+ * Handle password configuration change on remote servers
1582
+ * Fix Bug when delete fake-running VMBox
1583
+ * Fix Can't connect to compute local on some computers
1584
+ * Add a modification uuid to settings returned by the server
1585
+ * Check python version in setup.py only for install
1586
+ * Fix Session is closed when listing docker images
1587
+ * Cleanup docker source code
1588
+ * Use aiohttp session for docker queries
1589
+ * Escape special characters from SVG text
1590
+ * Fix some port short name display issues
1591
+ * Catch server disconnected errors from computes
1592
+ * Generate a node uuid if the uuid is missing in the .gns3
1593
+ * Ensure to dump project before exporting it
1594
+ * Fix return code check for SIGSEGV of IOU images
1595
+ * Prevent vmname change for VirtualBox linked clone
1596
+ * Upgrade to aiohttp 1.3.5 to solve issue with big file
1597
+ * Handle some invalid svg
1598
+ * Try to fix some 1.3 topology with corrupted data
1599
+ * Fix ComputeError: Can't connect to Main server
1600
+ * Catch error when the server as trouble to access to itself
1601
+ * Catch a timeout error in docker
1602
+ * Lock yarl version because 0.10 is not compatible with aiohttp 1.3
1603
+ * Raise error if image are not avaible on main server during export
1604
+ * Fix a race condition when killing ubridge
1605
+ * If your settings from 1.X are broken with skip them at import
1606
+ * Catch a permission error on symbols
1607
+ * Catch unicode error when you try to duplicate a project with invalid characters
1608
+ * Catch error when you try to put an invalid server url
1609
+ * Fix an error when handling ubridge errors
1610
+ * Fix crash when handling an error in project creation
1611
+
1612
+ ## 2.0.0rc2 10/03/2017
1613
+
1614
+ * Drop color logging for remote install, seem to fail in some conditions
1615
+ * Cleanup the remote install script
1616
+ * Support for Xenial in remote install
1617
+ * Fix GNS3VM settings are lost at startup
1618
+ * When we receive settings from the client save them on disk
1619
+
1620
+ ## 2.0.0 RC 1 06/03/2017
1621
+
1622
+ * Update the documentation
1623
+ * Enable show in file manager for cloud
1624
+ * Improve error log when you have trouble to load a topology
1625
+ * Fix when qemu exit by itself clean other processes
1626
+ * Fix an issue with some node name format
1627
+ * Catch error when we can't save the settings
1628
+ * Do not prevent the creation of a local server on a machine named gns3vm
1629
+ * Load local server before anything else
1630
+ * Remove noise from log when VMware is not installed
1631
+ * Fix an error with some SVG
1632
+ * Patch hostname in configuration file even if name is unsync
1633
+ * If the GNS3 VM as failed to start reset his status
1634
+ * Update the documentation
1635
+ * Enable show in file manager for cloud
1636
+ * Improve error log when you have trouble to load a topology
1637
+ * Fix when qemu exit by itself clean other processes
1638
+ * Fix an issue with some node name format
1639
+ * Catch error when we can't save the settings
1640
+ * Do not prevent the creation of a local server on a machine named gns3vm
1641
+ * Load local server before anything else
1642
+ * Remove noise from log when VMware is not installed
1643
+ * Fix an error with some SVG
1644
+ * Patch hostname in configuration file even if name is unsync
1645
+ * If the GNS3 VM as failed to start reset his status
1646
+ * Report aiohttp version in crash report
1647
+ * Catch some invalid node name formatting
1648
+ * Ensure we dump a .gns3 before exporting it
1649
+ * Improve ACPI shutdown for virtualbox
1650
+ * Fix an issue with serial capture for IOU
1651
+ * Fix restoration of private config when using dynamips
1652
+ * Avoid a crash when the connection with the server close
1653
+ * Increase timeout for detecting VirtualBox GNS3 VM
1654
+ * Fix headless startup of the GNS3 VM
1655
+ * Do not crash at startup if local server as the same name as remote server
1656
+ * Yarl 0.9.8 is require by aiohttp 1.3
1657
+
1658
+ ## 2.0.0 beta 4 16/02/2017
1659
+
1660
+ * Lock aiohttp to 1.2.0 because 1.3 create bug with Qt
1661
+ * Avoid a crash in some conditions when reading the serial console
1662
+ * Disallow export of project with VirtualBox linked clone
1663
+ * Fix linked_clone property lost during topology convert
1664
+ * Catch permission error when restoring a snapshot
1665
+ * Fix a rare crash when closing a project
1666
+ * Fix error when you have error on your filesystem during project convertion
1667
+ * Catch error when we can't access to a unix socket
1668
+ * If we can't resolve compute name return 0.0.0.0
1669
+ * Raise an error if you put an invalid key in node name
1670
+ * Improve a lot project loading speed
1671
+ * Fix a potential crash
1672
+ * Fix the server don't start if a remote is unavailable
1673
+ * Do not crash if you pass {name} in name
1674
+ * Fix import/export of dynamips configuration
1675
+ * Simplify conversion process from 1.3 to 2.0
1676
+ * Prevent corruption of VM in VirtualBox when using linked clone
1677
+ * Fix creation of qemu img
1678
+ * Fix rare race condition when stopping ubridge
1679
+ * Prevent renaming of a running VirtualBox linked VM
1680
+ * Avoid crash when you broke your system permissions
1681
+ * Do not crash when you broke permission on your file system during execution
1682
+ * Fix a crash when you broke permission on your file system
1683
+ * Fix a rare race condition when exporting debug informations
1684
+ * Do not try to start the GNS3 VM if the name is none
1685
+ * Fix version check for VPCS
1686
+ * Fix pcap for PPP link with IOU
1687
+ * Correct link are not connected to the correct ethernet switch port after conversion
1688
+ * Fix an error if you don't have permissions on your symbols directory
1689
+ * Fix an error when converting some topologies from 1.3
1690
+
1691
+ ## 2.0.0 beta 3 19/01/2017
1692
+
1693
+ * Force the dependency on typing because otherwise it's broke on 3.4
1694
+ * Fix sometimes you have an exception when closing GNS3
1695
+ * Fix duplicate node names
1696
+ * Fix bug with other directory of Qemu images
1697
+ * Do not raise an error if no VM is selected for remote GNS3 VM
1698
+ * Fix UnboundLocalError: local variable 'vmname' referenced before assignment
1699
+ * Fix some race condition in project deletion
1700
+ * If qemu status change internally we mirror it
1701
+ * Fix hostname of VPCS is not changed
1702
+ * Fix capture stop with Wireshark
1703
+ * Drop a useless debug information
1704
+ * Fix sometimes VirtualBox VM are not loading
1705
+ * Drop NAT port from cloud from old topologies
1706
+ * Fix Port labels for docker VMs incorrect
1707
+ * Fix If cloud interface is down the project doesn't open
1708
+ * Catch Timeout error from VirtualBox GNS3 VM
1709
+ * Fix export of IOU configuration
1710
+ * Fix a crash with VirtualBox in some conditions
1711
+ * Sata disk interface support for Qemu VMs. (#862)
1712
+ * Fix random error in the dynamips test suite after previous commit
1713
+ * Support conversion to dynamips new directory layout on remote
1714
+ * Catch error when a file is deleted during the compression of project
1715
+ * Fix a crash with some docker images
1716
+ * Fix Wrong slot numbering on IOS router
1717
+ * Fix VPCS configuration is overwritten on project load
1718
+ * Fix wrong short label for ethernet switch, hub & VPCS
1719
+ * Fix binding console host for VMware and VirtualBox
1720
+ * Fix resume of dynamips routers
1721
+ * Fix sporadically systemd is unable to start gns3-server
1722
+ * Fix RuntimeError: File size has increased during compressing
1723
+ * Do not dump local compute configuration when saving topology
1724
+ * Change directory layout for dynamips.
1725
+ * Ensure we can't connect to occupy port
1726
+ * Fix handling of UTF-8 in large SVG files
1727
+ * Prevent a crash when you close a dynamips node and create a link at the same time
1728
+ * Fix short label diplay instead of custom interface labels
1729
+ * Improve error message about the netmask
1730
+ * Do not mark VirtualBox adapter as connected when not connected to another node in GNS3.
1731
+ * Add missing 'DLT_PPP_SERIAL' PCAP link type in schemas.
1732
+ * Fix crash when converting topology with broken link
1733
+ * Replace JSONDecodeError by ValueError (Python 3.4 compatibility)
1734
+ * Catch an error when we can't create the IOU directory
1735
+
1736
+ ## 1.5.3 12/01/2017
1737
+
1738
+ * Fix sporadically systemd is unable to start gns3-server
1739
+
1740
+ ## 2.0.0 beta 2 20/12/2016
1741
+
1742
+ * Fix an error when docker hub failed to anwser
1743
+ * Fix an issue with Docker and IOU packet capture
1744
+ * Support aiohttp 1.2 (but not compatible with previous versions)
1745
+ * Support UDP cloud from 1.5
1746
+ * Relax permission check on OSX, it seem returning wrong info for setuid
1747
+ * Fix start all create error if a docker container is already running
1748
+ * Close project if one one the compute of the project is down
1749
+ * Fix error when you upload an empty file
1750
+ * Fix KeyError: 'color' when converting some 1.3 topologies
1751
+ * Fix move a docker restart it
1752
+ * Fix export of projects with docker with a / in the image name
1753
+ * Fix an error on Linux during export
1754
+ * Fix hot link issues in Docker
1755
+ * Fix Can't delete link between docker VM after they were in use
1756
+ * Fix hardware virtualization detection when an ethernet switch is running
1757
+ * Trust user for host binding of link adress
1758
+ * Code cleanup for docker interface creation
1759
+ * Fix a rare crash when writing a file on a remote server
1760
+ * Fix delete project on remote compute
1761
+ * Fix trouble with builtin devices when we free ports
1762
+ * When a dynamips command failed display the full command to the user
1763
+ * Raise error when we can't found VboxManage at GNS3 VM startup
1764
+ * Catch auth errors when adding a compute
1765
+ * Do not block server startup if one project use non implemented conversion
1766
+ * Fix an error when deleting a compute already deleted
1767
+ * Catch cancelled error when you Ctrl-C during server initalisation
1768
+ * Handle OSerror when listing images
1769
+ * Fix a rare crash when stopping qemu
1770
+ * Improve docker HTTP console
1771
+ * Fix configuration lost during save as on remote server
1772
+ * Add support for bios images
1773
+ * Fix error when controller config file is corrupted
1774
+
1775
+ ## 1.5.3 rc1 20/12/2016
1776
+
1777
+ * Support aiohttp 1.2 (but not compatible with previous versions)
1778
+ * Explain that segfault on IOU is a issue with the image
1779
+ * Fix an issue with finding vmrun and vboxmanage
1780
+ * Support named remote servers for VPCS
1781
+ * When checking for a free port check if the host and 0.0.0.0 are available
1782
+ * smm=off is only for 64bits
1783
+ * Fix set hostname on remote server
1784
+ * Fix sending smm option to qemu
1785
+ * Workaround a bug with KVM, Qemu >= 2.4 and Intel CPU
1786
+ * Renable sleep at Vbox exit bug seem to be back
1787
+ * Support large project (> 2GB) during export
1788
+ * Fix Deleting running telnet docker VM shows error in log
1789
+ * Fix when closing a container using VNC, root permission are not reset
1790
+ * Use $PATH also for dynamips and cleanup some $PATH usages
1791
+ * Fix a lock issue with some virtualbox vm
1792
+ * Raise proper error when you try to load an empty qcow2 file
1793
+ * Fix upload form crash
1794
+ * Search bin from the $PATH for sample configuration file
1795
+ * Updated systemd unit file and added sample configuration file
1796
+
1797
+ ## 2.0.0 beta 1 07/12/2016
1798
+
1799
+ * Fix crash if at controller loading the remote server is not a GNS3 server
1800
+ * Update the way we start controller to avoid hiding crash reports
1801
+ * Fix when you switch console from VNC to telnet it's fail
1802
+ * AttributeError: 'Project' object has no attribute 'emit'
1803
+ * Improve autostart logging
1804
+ * Fix warning when vmware is not installed
1805
+ * If a VMware command fail retry
1806
+ * Do not recurse scan for images in standard image directory
1807
+ * When we restore snapshot on a fail project do not crash
1808
+ * Catch error when qemuy can't connect to his console
1809
+ * Catch error when no space left on disk during export
1810
+ * Improve vmware error message for easier copy paste
1811
+ * Catch error if you export a project deleted from disk
1812
+ * Qemu UDP listen on all ips
1813
+ * Force yarl version >= 0.7.0
1814
+ * Ask user to refresh is user session if he just installed ubridge
1815
+
1816
+ ## 2.0.0 alpha 4 24/11/2016
1817
+
1818
+ * Do not block traffic originating from an Ethernet interface in the cloud. Ref #771.
1819
+ * Prevent capture on non running node
1820
+ * Make the Ethernet side the source in uBridge connection and UDP tunnel the destination. Ref #771.
1821
+ * IOURC is a text box instead of a file path
1822
+ * Use vnetlib64.exe when possible
1823
+ * Multiple improvements around starting the GNS3 VM
1824
+ * Wait for the end of project loading before making new change
1825
+ * Avoid crash due to permission error on the .backup file
1826
+ * For security reason debug informations can only be exported from local server
1827
+ * Add more debug informations if VM failed to start
1828
+ * Fix opening a project whith the same non linked VM as current project
1829
+ * Return default symbol if user asked for a non existing symbol
1830
+ * Do not log warning at qemu exit on windows if it's normal
1831
+ * Speed up interfaces listening on Windows
1832
+ * Fix filtering special interfaces on Windows
1833
+ * If server answer not found explain this could be due to the usage of 1.X server
1834
+ * Do not reload a project via /load if the project is already opened
1835
+ * Fix you can not pass auto close at project creation
1836
+ * Fix traceback when sending invalid parameters to the server
1837
+ * Require ubridge 0.9.7 this fix error with IOL bridge creation
1838
+ * Display path of vnetlib during interface creations
1839
+ * Catch errors when listing images
1840
+ * Better handle compute unavailable errors
1841
+ * Fix NameError: name 'available_ram' is not define
1842
+ * If we can found a common subnet we return the host binding for link creation
1843
+ * Do not connect GNS3 to remote server via 169.254.X.X
1844
+ * Qemu telnet support multiple client connected
1845
+ * Support multiple client connected to the same VPCS console
1846
+ * Increase timeout for link creation
1847
+ * Support for serial console for Virtual BOX and VMware using asyncio
1848
+ * Fix timeout issues when starting VMware or VBox
1849
+ * Ask for reboot if VBoxManage is not found
1850
+ * Fix a crash with VirtualBox linked clone
1851
+ * Replace iouyap by ubridge to handle IOU connections. Fixes #614.
1852
+ * Lock VMware by VM instead of globally
1853
+ * Support bridge in cloud
1854
+ * Fix support of IOS images outside standard directories
1855
+ * Raise clean error when node timeout when stopped
1856
+ * Fix random VirtualBox creation error when using linked clone
1857
+ * Drop console_type serial, and enable_remote_console for Vbox and VMware
1858
+ * Do not dump iourc_content to .gns3 file
1859
+ * Forward server disconnected errors
1860
+ * Fix a crash when vboxmanage is not found
1861
+ * Raise error if IOU image is not configured
1862
+ * Fix crash when getting font
1863
+ * Fix a crash when default font is missing
1864
+ * Fix a crash when vmrun is not found
1865
+
1866
+ ## 2.0.0 alpha 3 28/10/16
1867
+
1868
+ * Fix uuid of VirtualBox VM after a save as
1869
+ * Explain that segfault on IOU is a issue with the image
1870
+ * Fix crash when you import a corrupted SVG
1871
+ * Fix Error while creating link: Port 0 is not allocated. when you have an invalid interface
1872
+ * No timeout for listing images
1873
+ * Handle 408 HTTP status code (request timeout)
1874
+ * Move code for exposing VM ip to the VM itself. And display VM starting status
1875
+ * Fix a crash when we have error during export project
1876
+ * Improve remote server console host support when binding to 0.0.0.0
1877
+ * Fix port naming for atm switch
1878
+ * Fix port naming for FrameRelay switch
1879
+ * Catch permission errors when listing images
1880
+ * If we can't found the VMware version we use workstation
1881
+ * CURL API sample for creating a dynamips router
1882
+ * Fix crash in idlePC compute
1883
+ * Add sample api call for creating a qemu node
1884
+ * Try a different method in order to retrieve IP from VMware
1885
+ * Fix naming of IOU serial interfaces
1886
+ * Improve timeout management
1887
+ * When exporting debug information export GNS3 VM vmx content
1888
+ * /debug for exporting debug information
1889
+ * Raise error if using a non linked clone VM twice
1890
+ * Fix a possible deadlock at exit
1891
+ * Fix import of some old dynamips topologies
1892
+ * Fix a crash with some old virtualbox topologies
1893
+ * Fix conflict issue between the GNS3VM and a remote server
1894
+ * Fix typo in error message about the GNS3 VM
1895
+ * Fix an error when importing old topology without color for label
1896
+ * Use tap adapter instead of veth for docker (allow usage of vlan)
1897
+ * Avoid crash during tests if VNC server run on host PC
1898
+
1899
+ ## 2.0.0 alpha 2 20/10/2016
1900
+ * Return md5sum and filesize in the list of images
1901
+ * Disable binding to an IPV6
1902
+ * Support symbol None (from old versions)
1903
+ * Support named remote servers for VPCS
1904
+ * Improve vmrun error messages
1905
+ * If vmware raise an error about invalid host type we retry with player
1906
+ * Do not trust client for the type of VMware host
1907
+ * Improve error when default vm directory is not found
1908
+ * Add a clear warning about /upload deprecated
1909
+ * /duplicate support non opened projects
1910
+ * Fix Snapshot restore does not work with IOS routers
1911
+ * Use last zipstream version
1912
+ * Strip space from all nodes names
1913
+ * When checking for a free port check if the host and 0.0.0.0 are available
1914
+ * If listen on all interface do not return localhost as console
1915
+ * Fix HTTP console not working for docker containers
1916
+ * Fix IPV6 server support
1917
+ * Fix connection issue with IOU when a device as serial link
1918
+ * Catch an error when docker is not running
1919
+ * If docker container state failed to return we consider the container stopped
1920
+ * Fix Error when converting some dynamips topologies from 1.3 => 2.0
1921
+ * After conversion from 1.X check the topology before save to disk
1922
+ * Keep forever .gns3 backup before version upgrade
1923
+ * Update crash report key
1924
+ * Fix save of topology size
1925
+ * Missing busybox for docker
1926
+ * GNS3 server can't be keep as zipped egg
1927
+ * Check if GNS3 has access to all docker resssources
1928
+ * Return the platform of a compute
1929
+ * Handle errors when startup config path is wrong
1930
+ * smm=off is only for 64bits
1931
+ * Fix uploads of large images
1932
+ * Stop raising error if VMware has not enough ram. Not working on some system
1933
+ * Increase creation timeout for docker container
1934
+ * Fix a rare crash in vbox
1935
+ * Fix errors where free port as marked as used after an error
1936
+ * Fix a bug when selecting a topology and deleting multiple linked device
1937
+ * Set Qemu uuid for csr1000v
1938
+ * Prevent connect a node to himself
1939
+ * Fix BadZipFile: File is not a zip file
1940
+ * The gns3_controller.conf is located in the same directory of gns3_server.conf
1941
+ * Make sure the compute has an id
1942
+ * Fix crash if you manually delete the project directory and use the delete button in interface
1943
+ * Catch timeout error when closing project
1944
+ * Fix a crash when importing some old topologies.
1945
+ * Fix a crash if font information is missing
1946
+
1947
+ ## 2.0.0 alpha 1 29/09/2016
1948
+ * Save as you go
1949
+ * Smart packet capture
1950
+ * Capture on any link between any node
1951
+ * Select where to run a VPCS node
1952
+ * Delete a project from the GUI
1953
+ * Project options
1954
+ * The cloud is a real node
1955
+ * Cloud templates
1956
+ * New cloud interface
1957
+ * VPCS / Ethernet Switch / Ethernet Hub templates
1958
+ * Search OS images in multiple locations
1959
+ * Periodic extraction of startup configs for Dynamips and IOU
1960
+ * Custom cloud, Ethernet hub and Ethernet switch templates
1961
+ * Snap to grid for all objects
1962
+ * Synchronize the node templates when using multiple GUI
1963
+ * Link label style
1964
+ * New place holders in command line for opening consoles
1965
+ * %i will be replaced by the project UUID
1966
+ * %c will be replaced by the connection string
1967
+ * Export a portable project from multiple remote servers
1968
+ * New save as
1969
+ * Snapshots with remote servers
1970
+ * Better start / stop / suspend all nodes
1971
+ * Edit config
1972
+ * NAT node
1973
+ * Support for colorblind users
1974
+ * Support for non local server
1975
+ * Support for profiles
1976
+ * Suspend the GNS3VM when closing GNS3
1977
+ * Edit the scene size
1978
+ * New API
1979
+
1980
+ ## 1.5.2 18/08/2016
1981
+
1982
+ * Move utils.vmnet to gns3 namespace
1983
+ * Fix Exporting portable projects with QEMU includes base images even when selecting no.
1984
+ * Catch error when md5sum file is corrupted
1985
+ * requirements.txt : added support for newer aiohttp version
1986
+ * Improve compaction of .gns3project
1987
+ * Fix crash when winpcap is not installed
1988
+
1989
+ ## 1.5.1 07/07/2016
1990
+
1991
+ * Increase the number of interface for docker
1992
+ * Add the method in the bad request answer
1993
+ * Fix a rare crash in IOU
1994
+ * Fix a crash when docker is used but not installed
1995
+ * Backport Docker node hot linking
1996
+ * Allows hot-linking for Docker containers. Ref #267.
1997
+
1998
+ ## 1.5.0 27/06/2016
1999
+
2000
+ * Fix import of project with no disk
2001
+ * Allow for (a lot) more docker container ports. Fixes #593.
2002
+ * Raise an error if you try to use Docker on non Linux host
2003
+ * Fix a crash in Docker if daemon stop to respond
2004
+ * Fix a crash if Dynamips router has no initial configuration
2005
+ * Kill ghosts process at startup (Dynamips, VPCS, Ubridge)
2006
+
2007
+ ## 1.5.0rc2 15/06/2016
2008
+
2009
+ * Fix black screen with Qt app in Docker container
2010
+ * Detect when command in the container exit
2011
+ * Docker when the aux console exit and restart it
2012
+ * Pass by default the environment variable container=docker
2013
+ * Fix busybox binary location
2014
+ * Avoid loosing console port for Docker
2015
+ * Workaround a crash in x11vnc
2016
+ * Delete volume when dropping the container
2017
+ * Catch connection reset in ioucon
2018
+ * Delete vlan.dat for L2IOL during config import. Fixes #1285.
2019
+ * Copy original ressources from VOLUMES
2020
+
2021
+ ## 1.5.0rc1 01/06/2016
2022
+
2023
+ * Save an restore docker permission
2024
+ * Export the list of volumes to a env variable accessible in the container
2025
+ * Fix a crash when docker start command is None
2026
+ * Ubridge 0.9.4 is require
2027
+ * Generate a MAC address using the project + node UUID. Ref #522.
2028
+ * Catch extra args in windows signal handler
2029
+ * Allow to block network traffic originating from the host OS for vmnet interfaces (Windows only).
2030
+ * Fix an import error when you have no GNS3 VM
2031
+ * Warn if you can not export a file due to permission issue
2032
+ * Do not delete adapters when stopping a VMware VM. Ref #1066.
2033
+ * Allocate a new vmnet interface if vmnet 0 1 or 8 is set to a custom adapter. Set adapter type to all adapters regardless if already configured or added by GNS3.
2034
+ * Set default VMware VM adapter type to e1000.
2035
+
2036
+ ## 1.5.0b1 23/05/2016
2037
+
2038
+ * Allow an IOS router to stop even the Dynamips hypervisor command fail to be sent. Ref #488.
2039
+ * Extract private-config only when necessary (content is different than the default). Fixes #520.
2040
+ * Fixes disabling the VPCS relay feature. Fixes #521.
2041
+ * Fixes wrong exception in Docker VM implementation.
2042
+ * Force Npcap DLL to be used first for Dynamips and uBridge (instead of the one from Winpcap if installed).
2043
+ * Fixed startup-config is lost if you change any IOS router settings. Fixes #1233.
2044
+ * Fixes check for NPF service and add check for NPCAP service on Windows.
2045
+ * Fix ProcessLookupError X11VNC
2046
+ * Force tag latest for docker image if no tag is specified
2047
+ * Cleanup unbreakable space
2048
+ * Do not raise error if vmrun.exe is named vmrun.EXE
2049
+ * Load docker api only for Linux
2050
+
2051
+ ## 1.5.0a2 10/05/2016
2052
+
2053
+ * Fix distribution on PyPi
2054
+
2055
+ ## 1.5.0a1 10/05/2016
2056
+
2057
+ * Rebase Qcow2 disks when starting a VM if needed
2058
+ * Docker support
2059
+ * import / export portable projects (.gns3project)
2060
+
2061
+ ## 1.4.6 28/04/2016
2062
+
2063
+ * More robust save/restore for VirtualBox linked clone VM hard disks.
2064
+ * Prevent non linked cloned hard disks to be detached when using VirtualBox linked cloned VMs. Fixes #1184.
2065
+ * Stricter checks to match VMware version to the right vmrun (VIX library) version. Also checks the VIX library version when only using the GNS3 VM running in VMware.
2066
+ * Allow only .pcap to be downloaded from remote stream API
2067
+ * Fix incrementation of qemu mac address
2068
+ * Clear warnings about using linked clones with VMware Player.
2069
+ * Alternative method to find the Documents folder on Windows.
2070
+ * Add IOU support and install config in /etc
2071
+
2072
+ ## 1.4.5 23/03/2016
2073
+
2074
+ * Stop the VMware VM if there is an error while setting up the network connections or console.
2075
+ * Remote install on 14.04 ubuntu
2076
+ * Include VMware VMs paths found preferences.ini
2077
+ * Allow to stop a VMware VM from GNS3 even if halted within the VM. Fixes #1118.
2078
+ * Keep Dynamips stdout log file in the project directory.
2079
+ * Get MAC addresses for host interfaces to use for filtering frames from vmnet interfaces.
2080
+ * Dynamips uuid hypervisor command is no longer supported.
2081
+ * Restart NPF service after adding vmnet adapters on Windows.
2082
+ * Support /etc/gns3/gns3_server.conf for the config
2083
+ * Improve warning if fusion is not installed or in non standard location
2084
+
2085
+ ## 1.4.4 23/02/2016
2086
+ * Check if VMware Fusion is correctly installed when retrieving the VM list.
2087
+
2088
+ ## 1.4.3 19/02/2016
2089
+ * Nothing! (changes made in the GUI only).
2090
+
2091
+ ## 1.4.2 17/02/2016
2092
+ * Fix missing format in IOU export
2093
+ * Fix number of arguments to the UDP errors on VBOX
2094
+ * Add verification when UDP tunnel is created in a VirtualBox VM. Ref #899.
2095
+ * Fixes VMware linked clone cleanup bug. Fixes #420.
2096
+ * Removed docker support from 1.4 (drop unused code)
2097
+ * Fix a crash if you create a file named IOS in the image dir
2098
+ * Disallow creating project with " in the path
2099
+ * Always look at the registry to find vmrun.exe on Windows.
2100
+ * Check for VMware VIX library version. Fixes #413.
2101
+ * Fixes VDE not working #345.
2102
+ * Do not list qemu binary with -spice in the name
2103
+ * Send command line used to start the VM to client
2104
+ * Fix crash if you have a { in your user name
2105
+
2106
+ ## 1.4.1 01/02/2016
2107
+ * VMware raise error if version is not found
2108
+ * For topologies before 1.4 manage qemu missing
2109
+ * Fixes issue with packet capture on VMware VMs. Fixes #396.
2110
+ * Fixes concurrency issue when closing multiple VMware linked clone VMs. Fixes #410.
2111
+ * Fixes "can only use tap interfaces that both already exist and are up". Fixes #399.
2112
+ * Send machine stats via the notification stream
2113
+ * Check for /dev/kvm instead of kvm-ok
2114
+ * Show a warning when starting ASA8
2115
+ * Fix error when setting Qemu VM boot to 'cd' (HDD or CD/DVD-ROM)
2116
+ * Fixed the VMware default VM location on Windows, so that it doesn't assume the "Documents" folder is within the %USERPROFILE% folder, and also support Windows Server's folder (which is "My Virtual Machines" instead of "Virtual Machines").
2117
+ * Improve dynamips startup_config dump
2118
+ * Dump environment to server debug log
2119
+ * Fix usage of qemu 0.10 on Windows
2120
+ * Show hostname when the hostname is missing in the iourc.txt
2121
+
2122
+ ## 1.4.0 12/01/2016
2123
+ * Release 1.4.0
2124
+
2125
+ ## 1.4.0rc3 05/01/2016
2126
+
2127
+ * API documentation update
2128
+ * Fix race condition when killing iouyap
2129
+ * Catch exception if we can't change process priority on Windows
2130
+ * Adds a handler for getting the Qemu related capabilities of the server. Currently includes just a check for KVM architectures.
2131
+ * Fixed showing of Qemu hdb_disk_interface - it showed hda_disk_interface instead, which resulted in an odd visual glitch in the GUI.
2132
+ * Made the gns3server.bat successfully start the server independent of the CWD at the time of running. It's now relative to the location of the .bat file itself.
2133
+ * Add more informations in the debug status page
2134
+ * Fix status link in GNS3 homepage
2135
+ * Fix tests on Windows
2136
+ * Fix missing boot priority order
2137
+ * A debug status page embed in the server
2138
+ * Fix test on Windows
2139
+ * Update links for new website.
2140
+ * Contributing instructions
2141
+
2142
+
2143
+ ## 1.3.13 11/12/2015
2144
+
2145
+ * Update links for new website.
2146
+
2147
+ ## 1.3.12 11/12/2015
2148
+
2149
+ * Contributing instructions
2150
+ * Correctly display log messages.
2151
+ * Tentative fix for "WinError 64 The specified network name is no longer available" issues.
2152
+ * Fix minor errors reported by codacy.com
2153
+ * Add doc on how to got code coverage
2154
+ * Raise an error when you use a port outside the ranges
2155
+ * Fix asyncio error when closing the app
2156
+ * Release UDP ports when closing a Qemu VM. Fixes #323.
2157
+
2158
+ ## 1.4.0rc2 10/12/2015
2159
+
2160
+ * Add log about wher iou capture packet
2161
+ * Replace by another TCP port if port is already used
2162
+ * Fix ProcessLookupError in Qemu
2163
+ * Increase vmrun timeout to 120 seconds. Ref #360.
2164
+ * Fixes termination notification to indicate the right process name (IOU vs iouyap). Ref #359.
2165
+ * Fixes error with non initialized uBridge. Fixes #367.
2166
+ * Remove debug that can crash qemu
2167
+ * Support VM usage for qemu
2168
+ * Raise an error if psutil version is invalid
2169
+
2170
+ ## 1.4.0rc1 12/11/2015
2171
+
2172
+ * Raise error if server received windows path
2173
+ * Update sentry key
2174
+ * Remove NIO FIFO and Mcast (unused). Fixes #348.
2175
+ * Support VPCS 0.6.1
2176
+ * Fix duplicate of -no-kvm options
2177
+ * Raise an error if user send a non local path to remote server
2178
+ * Fix minor issues
2179
+ * Apply pep8 fix
2180
+ * Sets console end port to 7000. Fixes #343.
2181
+ * Drop netifaces (replaced by psutil). Fixes #344.
2182
+ * Correctly display log messages.
2183
+ * Tentative fix for "WinError 64 The specified network name is no longer available" issues.
2184
+ * Return relative path for dynamips images
2185
+ * Fix add existing IOS not working
2186
+ * Correctly enable faulthandler for dev version
2187
+ * Avoid test crash if GNS3 is running on the same computer
2188
+ * Allow to return an empty project name because it's allowed in creation
2189
+ * Test with python 3.5
2190
+ * Add doc on how to got code coverage
2191
+
2192
+ ## 1.4.0b5 02/11/2015
2193
+
2194
+ * Freeze requirements for aiohttp because 0.18 doesn't support Python 3.4.
2195
+ * Fix crash in IOU config export.
2196
+ * Raise an error when you use a port outside the ranges. Fixes #739.
2197
+ * Fixes Windows named pipe issue. Fixes #340.
2198
+
2199
+ ## 1.4.0b4 19/10/2015
2200
+
2201
+ * Support for modifications to a base Qemu VM (not a linked clone).
2202
+ * Force canceling all task when shutdown server
2203
+ * Update api documentation
2204
+ * Enforce console port for VNC
2205
+ * Fixes issue when loading a project using VMware vmnet interfaces. Fixes #319.
2206
+ * Support for NAT connection with cloud for VMware VMs. Fixes #322.
2207
+ * Change message when VMware is not installed on Linux. Ref #326.
2208
+ * Send a warning notification if there is not enough RAM left to start a VM. Implements #329.
2209
+ * Asyncio Qemu fix and raise error if coroutine not used
2210
+ * Fix asyncio error when closing the app
2211
+ * Removes VMware lock check. Fixes #328.
2212
+ * Wait for pipe file to be created before starting the remote console for VMware and VirtualBox VMs. Fixes #331.
2213
+ * Release UDP ports when closing a Qemu VM. Fixes #323.
2214
+ * Escape other usage of glob
2215
+ * Fix Dynamips identifier is already used by another router
2216
+ * Protect Dynamips against bad glob.
2217
+ * Fix issue with Qemu networking following merge.
2218
+ * OVA file support
2219
+ * Support listing images in subdirectories.
2220
+ * Catch ProcessLookupError in Qemu VM.
2221
+ * Fixes uncalled coroutine.
2222
+ * Use the correct UDP tunnel Qemu syntax for version > 1.1.0 when legacy networking is enabled.
2223
+ * VMware player linux support.
2224
+ * Prevent launching a packet capture with a non-ASCII path when using Dynamips.
2225
+ * Do not require a TAP interface to already exist. Fixes #321.
2226
+ * Do not automatically delete Dynamips bootflash file because they are necessary to restore VLANs on the c3600 platform.
2227
+
2228
+ ## 1.3.11 07/10/2015
2229
+
2230
+ * Escape other usage of glob
2231
+ * Fix Dynamips identifier is already used by another router
2232
+ * Protect dynamips against bad glob
2233
+ * Catch ProcessLookupError in Qemu VM.
2234
+ * Use the correct UDP tunnel Qemu syntax for version > 1.1.0 when legacy networking is enabled.
2235
+ * Prevent launching a packet capture with a non-ASCII path when using Dynamips.
2236
+ * Do not automatically delete Dynamips bootflash file because they are necessary to restore VLANs on the c3600 platform.
2237
+ * Fix dynamips configuration lost when you delete a node
2238
+ * Clarify error message when we got UTF-8 chars in the iourc file
2239
+ * Check for valid FR or ATM switch mappings. Fixes #300.
2240
+
2241
+ ## 1.4.0b3 22/09/2015
2242
+
2243
+ * Fix dynamips configuration lost when you delete a node
2244
+ * Clarify error message when we got UTF-8 chars in the iourc file
2245
+ * Use custom VMnet interfaces without host adapter when uBridge is not used. Fixes #673.
2246
+ * Automatically add the -no-kvm option if -icount is detected to help with the migration of ASA VMs created before version 1.4
2247
+ * Check for valid FR or ATM switch mappings. Fixes #300.
2248
+ * Catch exception when a process cannot be killed. Fixes #296.
2249
+
2250
+
2251
+ ## 1.4.0beta2 17/09/2015
2252
+
2253
+ * Fix a crash at vmware stop
2254
+ * Fix a crash when starting a VMware vm
2255
+ * Add how to add vmnet interfaces explantion in the error message
2256
+ * Fix path of VMinventory for fusion
2257
+ * Force close the keep alive when sending a 401
2258
+ * Do not automatically delete Dynamips bootflash file because they are necessary to restore VLANs on the c3600 platform.
2259
+ * Wait that an user press a key to stop gns3vmnet.exe on Windows.
2260
+ * Throw an error if ubridge as incorrect permissions. Fixes #312.
2261
+ * This may fix "The semaphore timeout period has expired" error on Windows. #311.
2262
+ * Fixes bug with VMware VM connections + moves some uBridge code to BaseVM.
2263
+ * Support for packet capture on VMware VM links.
2264
+ * Fix ProcessLookupError on _checkAlive Qemu
2265
+ * VMware Fusion support with uBridge.
2266
+ * Updates vmnet script to support Windows.
2267
+ * Do not block on .lock for VMware OSX
2268
+ * Require Dynamips version 0.2.16 to change the default QinQ Ethernet type.
2269
+ * Initial Docker support from Google Summer of Code (not enabled)
2270
+ * Check for valid FR or ATM switch mappings. Fixes #300.
2271
+ * VirtualBox VMs can only be started if powered off. Fixes #299.
2272
+ * Support of VPCS 0.8
2273
+ * Allows VMware VMs to use vmnet interfaces for connections without using uBridge. Fixes #295.
2274
+ * Fixes path to vmnet-cli on Mac OS X.
2275
+ * Updates vmnet script to support Mac OS X.
2276
+ * Fix closing project when multiple project is open
2277
+ * Fix project not closing
2278
+ * Qemu user options are at the end. It's allow user to add his own net interfaces
2279
+ * Change the way we look for Qemu path
2280
+ * Lock qemu vm during start / stop operations
2281
+ * In the error message explain how to turn off KVM support
2282
+ * Fix when you stop qemu on windows you have an error
2283
+ * Fix Qemu cannot be used on Windows
2284
+ * Allow to start server with python -m gns3server
2285
+ * Should solve the BufferError by avoiding using thread
2286
+ * Catch UnicodeEncodeError when passing unicode char as qemu options
2287
+ * EthernetSwitch: Allow to choose ethertype for QinQ outer tag.
2288
+ * Backport: fixes NAT NIO for Qemu VMs (do not launch any legacy scripts)
2289
+ * Fixes NAT NIO for Qemu VMs (do not launch any legacy scripts)
2290
+ * Lower VMware requirements to Workstation version 10 and Player version 6.
2291
+ * Fixes Unicode error. Fixes #290.
2292
+ * Don't delete Dynamips ROM files. They are used to restore the nvram.
2293
+ * Adds pywin32 dependency in setup.py for Windows.
2294
+
2295
+ ## 1.3.10 04/09/2015
2296
+
2297
+ * Catch exception when a process cannot be killed. Fixes #296.
2298
+ * Backport: fixes NAT NIO for Qemu VMs (do not launch any legacy scripts)
2299
+ * Fixes Unicode error. Fixes #290.
2300
+ * Don't delete Dynamips ROM files. They are used to restore the nvram.
2301
+
2302
+ ## 1.4.0beta1 07/08/2015
2303
+
2304
+ * Fix ram setting for Qemu
2305
+ * Explicit set qemu memory as MB
2306
+ * Turn off KVM for non x86 architectures
2307
+ * Send an error when vmware executable cannot be found on Linux. Fixes #288.
2308
+ * Support for CPUs setting for Qemu VMs.
2309
+
2310
+ ## 1.4.0alpha4 04/08/2015
2311
+
2312
+ * Quote command in qemu debug logs so you can copy/paste them
2313
+ * Support for Qemu disk interfaces, cd/dvd-rom image and boot priority. Fixes #278.
2314
+ * Check for VMware Player version >= 7 and VMware Workstation >= 11. Fixes #286.
2315
+ * Catch GeneratorExit exception when trying to create a Ghost IOS image.
2316
+ * Backport: removes code that deletes IOS router instance files.
2317
+
2318
+ ## 1.3.9 03/08/2015
2319
+
2320
+ * Backport: removes code that deletes IOS router instance files.
2321
+
2322
+ ## 1.4.0alpha3 28/07/2015
2323
+
2324
+ * Raise error if qemu image already exist when creating disk
2325
+ * Prevent user to create a qemu to a different directory on non local server
2326
+ * VMnet manager on Linux: check that VMware has been installed.
2327
+ * Fixes UnicodeDecodeError when reading a VMware file.
2328
+ * Fixes KeyError: "ethernet0.connectiontype". Fixes #276.
2329
+ * Fixes replace errors. Fixes #284.
2330
+ * Catch ProcessLookupError when updating iouyap config. Fixes #255.
2331
+ * API for creating a qemu disk image
2332
+ * Prevent starting different hypervisors that leverage hardware virtualization (VT-x/AMD-V). Fixes #548.
2333
+ * Fixes IOS adapters and WICS cannot be removed. Fixes #282.
2334
+ * Makes sure the loop is running when closing the app.
2335
+ * Catch Permission denied when writing to VMX file while closing VMware VM. Fixes #277.
2336
+ * Catch GeneratorExit exception. Fixes #231.
2337
+ * Fixes missing chipset info for VirtualBox VM (maybe some older VirtualBox version don't have it). Fixes #254.
2338
+ * Changes how to look for the vmrun.exe location.
2339
+ * Update documentation
2340
+ * API for listing current projects
2341
+
2342
+ ## 1.3.8 27/07/2015
2343
+
2344
+ * Catch ProcessLookupError when updating iouyap config. Fixes #255.
2345
+ * Fixes IOS adapters and WICS cannot be removed. Fixes #282.
2346
+ * Makes sure the loop is running when closing the app.
2347
+ * Catch GeneratorExit exception. Fixes #231.
2348
+ * Fixes missing chipset info for VirtualBox VM. Fixes #254.
2349
+ * Fixes IOURC upload.
2350
+ * Restore images & projects tarballs
2351
+ * Allow users to backup projects and images.
2352
+ * Update gns3.conf.upstart.
2353
+ * Fix incorrect vboxmanage sudo command.
2354
+ * Backport from 1.4: option to drop nvram & disk files for IOS routers in order to save disk space.
2355
+ * Backport from 1.4: Remove timeout to wait for connections to finish.
2356
+ * Backport from 1.4: Fixes RuntimeError: Event loop is closed.
2357
+ * Backport from 1.4: Bind host on 0.0.0.0 when checking for a free UDP port.
2358
+
2359
+ ## 1.4.0alpha2 22/07/2015
2360
+
2361
+ * Deactivate uBridge process monitoring (process returns 1 on Windows when stopping).
2362
+ * Prevent using different hypervisors that leverage hardware virtualization. - Implemented for Qemu when a VMware or VirtualBox VM with hardware virtualization is already running. - Implemented for VirtualBox only when a Qemu VM with KVM is already running.
2363
+ * Check for uBridge version and catch uBridge errors.
2364
+ * Remove default FLASH when no hda disk for Qemu VMs. Fixes #535.
2365
+ * Use the registry to find vmrun if the default VMware install path does not exist.
2366
+ * Bind host on 0.0.0.0 when checking for a free UDP port.
2367
+ * Fixes RuntimeError: Event loop is closed. Fixes #266.
2368
+ * Update gns3.conf.upstart
2369
+ * Implements uBridge hypervisor.
2370
+ * Take VMware file encoding into account. Fixes #261.
2371
+
2372
+ ## 1.4.0alpha1 09/07/2015
2373
+
2374
+ * Update API documentation
2375
+ * Allow to send the iourc when starting the VM
2376
+ * Return stdout when a process crash for IOU, Dynamips, uBridge and VPCS.
2377
+ * Adds -no-kvm to the ASA template and ignore -no-kvm on platforms other than Linux. Should resolve #472.
2378
+ * Allow user to change the configuration file
2379
+ * Fix double loading of config from working directory
2380
+ * CORS support
2381
+ * Support server config in current working directory
2382
+ * List only valid existing IOS images (for IOS router wizard).
2383
+ * Checks if IOS image exist at startup and not during node creation. Fixes #240.
2384
+ * When a qemu VM crash send the log to the client.
2385
+ * Add a vm_directory field
2386
+ * Check for /dev/kvm. Fixes #245.
2387
+ * Moves KVM setting to Qemu server preferences. Fixes #244.
2388
+ * VNC console support for Qemu VMs.
2389
+ * Test all IOU requirements at VM startup
2390
+ * ACPI shutdown support for VMware VMs. Fixes #436.
2391
+ * Compute a md5sum of images for futur purpose
2392
+ * Adds gns3-netifaces to dependencies only if netifaces isn't already installed otherwise this requires a compilation and therefore the Python development files.
2393
+ * Adds an IP address for each interface returned by the interfaces API method.
2394
+ * Add log when we didn't close a project due to another client
2395
+ * Limit file size during upload
2396
+ * Convert old -enable-kvm to kvm settings for Qemu
2397
+ * Cleanup SSL certificate support
2398
+ * Improve memory consumption of file upload with the HTML form
2399
+ * systemd start script
2400
+ * Enable KVM acceleration option.
2401
+ * Check interface is up before connecting a NIO (Linux only). Fixes #277.
2402
+ * IPv6 support.
2403
+ * Import/Export support for IOU nvrams.
2404
+ * Install qt5 for travis
2405
+ * Option to drop nvram & disk files for IOS routers in order to save disk space.
2406
+ * Drop python 3.3
2407
+ * Support for base MAC address for Qemu VMs.
2408
+ * ACPI shutdown support for Qemu VMs.
2409
+ * ACPI shutdown support for VirtualBox VMs.
2410
+ * Upload images API
2411
+ * A notification stream with process monitoring
2412
+ * VMware support
2413
+
2414
+ ## 1.3.7 22/06/2015
2415
+
2416
+ * Prevent install on Python 2
2417
+
2418
+ ## 1.3.6 16/06/2015
2419
+
2420
+ * Fix an issue with 1.4dev compatibility
2421
+
2422
+ ## 1.3.5 16/06/15
2423
+
2424
+ * Ignore invalid characters when reading the output of a process
2425
+ * Turn on / off authentication
2426
+ * Ensure no colored output on Windows
2427
+ * Do not stop saving IOS router configs when there is an exception while a project is committed.
2428
+ * Create a private config file if expected
2429
+ * Distribute our own version of netifaces working with python 3
2430
+ * Fix crash if a private config exist in IOS but no private config file
2431
+ * Basic Auth support
2432
+ * Fix crash when virtualbox list of VMS return an empty line
2433
+
2434
+ ## 1.3.4 02/06/15
2435
+
2436
+ * Drop useless dependencie dateutil
2437
+ * Check if port or adapter is connected before starting/stopping a packet capture. Fixes #196.
2438
+ * Prevent users to add links to running Qemu VMs and start a capture on running VirtualBox VMs.
2439
+ * Fixes bug: couldn't set PCMCIA disk1 size for IOS routers.
2440
+ * Fix crash if you pass an invalid hostname
2441
+ * Catch VPCS kill errors
2442
+ * Raise a VirtualBox error if adapter doesn't exists
2443
+ * Ignore VirtualBox VM Name with a carriage return in name
2444
+ * Cleanup the temporary project after modules have been notified of the path change
2445
+ * Do not return error if we can't remove the old project directory
2446
+ * Catch encoding errors in windows logger
2447
+ * Use setter for the qemu_path (allow to pass only the binary name)
2448
+ * Fixes TAP connection when using VPCS.
2449
+ * Fix crash launching qemu on OSX from another location.
2450
+ * Adds NAT NIO in device schema validation so they can return an error that it is not supported.
2451
+
2452
+ ## 1.3.3 14/05/15
2453
+
2454
+ * Check for empty iourc path.
2455
+ * Fixes bugs with IOS router configs. Fixes #354.
2456
+ * Use a temporary directory as egg cache
2457
+ * Catch crash error in IOU in case of permission denied
2458
+
2459
+ ## 1.3.3rc1 07/05/2015
2460
+
2461
+ * Return an error if an adapter slot doesn't exist on an IOS router.
2462
+ * NIO NAT support for VirtualBox VMs.
2463
+ * NIO NAT support for QEMU VMs (user mode back-end is used).
2464
+ * Throw an error if user put an invalid port range in config file
2465
+ * Turn off configuration parser interpolation
2466
+ * Catch configuration file parsing errors
2467
+ * Force closing the event loop to avoid warning with Python 3.4.3
2468
+ * Catch error when you can't mark a project as no longer temporary
2469
+ * Catch BrokenPipeError for OSX frozen server
2470
+ * Match how IOU initial-config is set for VPCS VM.
2471
+ * Refactors how startup-config and private-config are handled for IOS routers.
2472
+ * Catch the "WinError 0 The operation completed successfully" exception at a higher level.
2473
+ * Fix temporary project not cleanup with save as
2474
+ * If image is not found in VM directory look in images folder
2475
+ * Ordered MAC addresses for QEMU based VMs.
2476
+ * Merge remote-tracking branch 'origin/master'
2477
+ * Force utf-8 configuraton files reading
2478
+ * Do not list file starting with a . in upload handler
2479
+ * Do not crash when closing a project if VirtualBox is not accessible
2480
+ * Catch connection reset errors
2481
+
2482
+
2483
+ ## 1.3.2 28/04/2015
2484
+
2485
+ * Cleanup the VirtualBox Media Manager after closing a project.
2486
+ * Avoid Cygwin warning with VPCS on Windows.
2487
+ * Close VirtualBox VM linked clone disks after the VM is unregistered.
2488
+ * TAP interface support for QEMU VMs.
2489
+ * Return an explicit error when a NIO type is not supported by a VM.
2490
+ * Do not erase the IOU config
2491
+ * Explicit utf-8 decoding.
2492
+ * Check NIO exists when stopping an IOU capture.
2493
+ * Fixes c7200 NPE setting.
2494
+ * Fixes VPCS process termination.
2495
+ * Catch FileNotFoundError exception in os.getcwd()
2496
+ * Explicit utf-8 encoding where necessary to avoid Unicode errors on Windows (we require/set an utf-8 locale on other systems).
2497
+ * Fixes #270. Relative paths management with empty ones.
2498
+ * New crash report key and doesn't send report for developers
2499
+ * Catch COM errors when connecting to WMI.
2500
+ * Don't assume the PATH environment variable exists.
2501
+ * Use UUIDs instead of the VM names for VirtualBox pipe paths.
2502
+ * Add --log options for daemon support
2503
+ * Basic upstart script
2504
+ * Add qemu-kvm to the list of binary
2505
+ * Fix IOU licence check flag
2506
+ * Config paths are not used when updating Dynamips or IOU VM settings.
2507
+ * Fixes initial-configs that were not restored when opening a project containing IOU VMs.
2508
+ * Prevent parallel execution of VBox commands
2509
+ * Fix a crash when in some cases you can't access to VBOX state
2510
+ * Fix crash if VirtualBox doesn't return API version
2511
+ * Fix a crash in VirtualBox vm creation
2512
+ * Allocate random names for Dynamips NIOs.
2513
+ * Explicitly delete Dynamips NIOs and unmap VCs for ATM and Frame-Relay switches.
2514
+
2515
+ ## 1.3.1 11/04/2015
2516
+
2517
+ * Release
2518
+
2519
+ ## 1.3.1rc4 09/04/2015
2520
+
2521
+ * Initial config file content can be empty (fix export issues)
2522
+ * Fix crash if IOU initial config is emtpy
2523
+ * Return more informations about bad requests for crash reports
2524
+ * Allow less strict dependencies for easier install
2525
+ * Missing project name in documentation
2526
+ * Some spring cleaning
2527
+
2528
+
2529
+ ## 1.3.1rc3 07/04/2015
2530
+
2531
+ * Fix missing IOU documentation
2532
+ * Add missing project name in curl documentation
2533
+ * Look in old IOU images location in order to smooth transition
2534
+
2535
+ ## 1.3.1rc2 06/04/2015
2536
+
2537
+ * Do not overwrite initial-config IOU if client send an empty
2538
+ * Fix documentation about /ports/udp
2539
+
2540
+ ## 1.3.1rc1 05/04/2015
2541
+
2542
+ * Fix issues with macos X dynamips not freeing UDP port
2543
+ * Fix encoding error when saving dynamips configuration
2544
+ * The upload web page return a 200 in case of error (IE compatibility)
2545
+ * Do not crash if dynamips config contain non ascii chars
2546
+ * Test path with chinese charcaters in Qemu
2547
+ * Do not crash if no console port is available for VBox
2548
+ * Raise a DynamipsError if we can't access to VM status
2549
+ * Check name of the VBoxManage executable
2550
+ * Exclude docs and tests package from distribution
2551
+ * Catch error when qemu additional options are invalid
2552
+ * Fix ClientDisconnectedError
2553
+ * Fix crash when NIO doesn't exist
2554
+ * Turn off crash report if raven not available
2555
+ * Fix crash when IOU script file is incorrect
2556
+
2557
+ ## 1.3.0 30/03/2015
2558
+
2559
+ * Fix issue when asyncio read is cancelled and data is still sent by Dynamips hypervisor.
2560
+ * Fix unicode decode error when saving IOS router configs.
2561
+ * Fix error when missing adapter in Dynamips IOS router.
2562
+ * Fix crash if we call stop on dynamips on non started process.
2563
+ * Fix use_default_iou_values param was not set.
2564
+ * Fix issue when IOURC environment variable is set to None.
2565
+ * Fix issue when exporting IOS router configs.
2566
+ * Fix check if VPCS process is running.
2567
+ * Fix bug when remove_nio() is not a coroutine for ATM and FR switches.
2568
+ * Fix how to test if iou and iouyap are running.
2569
+ * Allocate a random port for Qemu monitor. Fixes issue with pre 1.3 projects.
2570
+ * Fix default chassis bug.
2571
+
2572
+ ## 1.3.0rc2 23/03/2015
2573
+
2574
+ * Update sentry key
2575
+ * Prevent error when suspend/resume is not supported in QEMU VM.
2576
+ * Adds project id when requesting UDP port.
2577
+ * Make sure used ports in a project are cleaned up when closing it.
2578
+ * Save configs when project is committed.
2579
+ * Initialize chassis when creating an IOS router. Fixes #107.
2580
+ * Lock the dynamips reader an writer
2581
+
2582
+ ## 1.3.0rc1 19/03/2015
2583
+
2584
+ * Save IOS router config when saving the project
2585
+ * Look in legacy IOU images directory
2586
+ * Support IOURC upload
2587
+ * Configuration on UNIX
2588
+ * Support all QEMU status
2589
+ * Bind tunnel UDP to the correct source index
2590
+
2591
+ ## 1.3.0beta2 13/03/2015
2592
+
2593
+ * Fixed issue when VBoxManage returns an error.
2594
+ * Server handler to shutdown a local server.
2595
+ * List the iourc file in upload handler.
2596
+ * Fixed hostid error.
2597
+ * Support RAM setting for VirtualBox VMs.
2598
+ * Alternative local server shutdown (intended for Windows).
2599
+ * Request user permission to kill the local server if it cannot be stopped.
2600
+
2601
+ ## 1.3.0beta1 11/03/2015
2602
+
2603
+ * Optional IOU license key check.
2604
+ * Relative path support of IOU, IOS and Qemu images.
2605
+ * Do not give attachment warning for generic attachments in VirtualBox.
2606
+ * Support for HDC and HDD disk images in Qemu.
2607
+ * Fixed bug when starting a packet capture in VirtualBox with the project path containing spaces.
2608
+ * Renames server.conf and server.ini to gns3_server.conf and gns3_server.ini respectively.
2609
+ * Use TCP instead of Telnet to communicate with Qemu monitor.
2610
+ * Have the server look in the right place for relative image paths.
2611
+ * Fixed bugs when checking if this is a local project.
2612
+ * Concert old projects on remote servers.
2613
+ * Properly restore configs for Dynamips routers.
2614
+ * Fixed rename bug for linked clones in VirtualBox.
2615
+ * Makes absolute path checks work on Windows.
2616
+ * Upload IOURC file via the web interface
2617
+ * Upload interface allows users to choose an image type.
2618
+ * Fixed Qemu networking.
2619
+ * Fixed suspend and resume for Qemu VMs.
2620
+ * Fixed crash when you start capture on a non running IOU.
2621
+ * Fixed Telnet server initialization issue in VirtualBox.
2622
+ * Disconnect network cable if adapter is not attached in VirtualBox vNIC.
2623
+
2624
+ ## 1.3.0alpha1 03/03/2015
2625
+
2626
+ * HTTP Rest API instead of WebSocket
2627
+ * API documentation
2628
+ * Create a dedicated configuration file for the server: server.conf
2629
+ * Temporary projects are real project
2630
+ * Use UUID instead of id
2631
+
2632
+ ## 1.2.3 2015/01/17
2633
+
2634
+ * Fixed broken -netdev + legacy virtio in Qemu support.
2635
+ * Ping and traceroute added to the IOU VM.
2636
+
2637
+ ## 1.2.2 2015/01/16
2638
+
2639
+ ### Small improvements / new features
2640
+
2641
+ * Auxiliary console support for IOS routers.
2642
+ * Suspend / resume support for Qemu.
2643
+ * Dynamically configure network connections of running Qemu VMs (only with recent Qemu versions).
2644
+ * VPCS multi-host support (useful for old .net labs).
2645
+ * Possibility to run VirtualBox as another user (Linux/OSX only).
2646
+ * Support for IOURC file on the server side.
2647
+ * Bumped the maximum network adapters to 32 for Qemu (depending on Qemu version you cannot go above 8 or even 28, Qemu will just not start).
2648
+ * Added snapshot named 'reset' to linked cloned VirtualBox VMs.
2649
+ * More network interface options to the Qemu VM configuration interface as well as descriptions for all NICs.
2650
+ * More checks on minimum RAM for IOS routers and updates default values to match the latest IOS image requirements.
2651
+ * Fixed bug when importing Host node with UDP NIOs.
2652
+
2653
+ ## 1.2.1 2014/12/04
2654
+
2655
+ * Early support for IOSv and IOSv-L2 (with Qemu for now, which is slow on Windows/Mac OS X).
2656
+ * Support for CPU throttling and process priority for Qemu.
2657
+ * Fixed C7200 IO cards insert/remove issues and makes C7200-IO-FE the default.
2658
+ * Updated the IOU VM with iouyap version 0.95 (packet capture).
2659
+
2660
+
2661
+ ## 1.2 2014/11/20
2662
+
2663
+ * New VirtualBox support
2664
+ * New Telnet server for VirtualBox.
2665
+ * Add detection of qemu and qemu.exe binaries.
2666
+ * New host node (cloud with all available Ethernet & TAP interfaces added).
2667
+ * Option to allow console connections to any local IP address when using the local server.
2668
+ * VirtualBox linked clones support (experimental, still some problems with temporary projects).
2669
+
2670
+
2671
+ ## 1.1 2014/10/23
2672
+
2673
+ * Serial console for local VirtualBox.
2674
+