gns3-server 3.0.0b3__py3-none-any.whl → 3.0.0rc2__py3-none-any.whl

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 (93) hide show
  1. {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/METADATA +32 -31
  2. {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/RECORD +93 -89
  3. {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/WHEEL +1 -1
  4. gns3server/api/routes/compute/cloud_nodes.py +1 -1
  5. gns3server/api/routes/compute/docker_nodes.py +3 -0
  6. gns3server/api/routes/compute/nat_nodes.py +1 -1
  7. gns3server/api/routes/compute/vmware_nodes.py +1 -1
  8. gns3server/api/routes/compute/vpcs_nodes.py +10 -4
  9. gns3server/api/routes/controller/projects.py +13 -1
  10. gns3server/api/routes/controller/users.py +2 -2
  11. gns3server/appliances/almalinux.gns3a +6 -6
  12. gns3server/appliances/aruba-arubaoscx.gns3a +39 -0
  13. gns3server/appliances/cisco-csr1000v.gns3a +28 -2
  14. gns3server/appliances/cisco-iou-l2.gns3a +2 -2
  15. gns3server/appliances/cisco-iou-l3.gns3a +2 -2
  16. gns3server/appliances/cisco-vWLC.gns3a +29 -1
  17. gns3server/appliances/debian.gns3a +28 -0
  18. gns3server/appliances/fortiadc.gns3a +46 -4
  19. gns3server/appliances/fortianalyzer.gns3a +42 -0
  20. gns3server/appliances/fortiauthenticator.gns3a +58 -2
  21. gns3server/appliances/fortigate.gns3a +42 -0
  22. gns3server/appliances/fortimanager.gns3a +42 -0
  23. gns3server/appliances/fortiweb.gns3a +56 -0
  24. gns3server/appliances/hbcd-pe.gns3a +62 -0
  25. gns3server/appliances/juniper-junos-space.gns3a +3 -2
  26. gns3server/appliances/juniper-vmx-legacy.gns3a +1 -1
  27. gns3server/appliances/juniper-vmx-vcp.gns3a +1 -1
  28. gns3server/appliances/juniper-vmx-vfp.gns3a +2 -1
  29. gns3server/appliances/juniper-vqfx-pfe.gns3a +1 -1
  30. gns3server/appliances/juniper-vqfx-re.gns3a +2 -1
  31. gns3server/appliances/juniper-vrr.gns3a +1 -1
  32. gns3server/appliances/juniper-vsrx.gns3a +2 -1
  33. gns3server/appliances/mikrotik-chr.gns3a +30 -99
  34. gns3server/appliances/nixos.gns3a +52 -0
  35. gns3server/appliances/opnsense.gns3a +13 -0
  36. gns3server/appliances/pan-vm-fw.gns3a +26 -0
  37. gns3server/appliances/reactos.gns3a +10 -10
  38. gns3server/appliances/security-onion.gns3a +27 -3
  39. gns3server/appliances/truenas.gns3a +104 -0
  40. gns3server/appliances/ubuntu-cloud.gns3a +35 -20
  41. gns3server/appliances/ubuntu-docker.gns3a +1 -1
  42. gns3server/appliances/ubuntu-gui.gns3a +13 -0
  43. gns3server/appliances/viptela-edge-genericx86-64.gns3a +28 -2
  44. gns3server/appliances/viptela-smart-genericx86-64.gns3a +27 -1
  45. gns3server/appliances/viptela-vmanage-genericx86-64.gns3a +32 -4
  46. gns3server/appliances/vyos.gns3a +95 -98
  47. gns3server/compute/base_node.py +1 -0
  48. gns3server/compute/docker/__init__.py +8 -2
  49. gns3server/compute/docker/docker_vm.py +56 -2
  50. gns3server/compute/docker/resources/init.sh +5 -2
  51. gns3server/compute/dynamips/__init__.py +0 -4
  52. gns3server/compute/dynamips/nodes/router.py +20 -0
  53. gns3server/compute/notification_manager.py +2 -2
  54. gns3server/compute/qemu/qemu_vm.py +26 -15
  55. gns3server/config_samples/gns3_server.conf +13 -3
  56. gns3server/configs/iou_l2_base_startup-config.txt +1 -1
  57. gns3server/configs/iou_l3_base_startup-config.txt +1 -1
  58. gns3server/controller/__init__.py +27 -13
  59. gns3server/controller/appliance_manager.py +9 -6
  60. gns3server/controller/export_project.py +27 -23
  61. gns3server/controller/import_project.py +24 -3
  62. gns3server/controller/node.py +8 -2
  63. gns3server/controller/notification.py +4 -4
  64. gns3server/controller/project.py +96 -8
  65. gns3server/controller/snapshot.py +3 -8
  66. gns3server/controller/symbols.py +1 -1
  67. gns3server/controller/topology.py +31 -2
  68. gns3server/crash_report.py +1 -1
  69. gns3server/db/models/templates.py +1 -0
  70. gns3server/db/tasks.py +1 -1
  71. gns3server/db_migrations/versions/9a5292aa4389_add_mac_address_field_in_docker_.py +27 -0
  72. gns3server/schemas/compute/docker_nodes.py +1 -0
  73. gns3server/schemas/compute/ethernet_switch_nodes.py +1 -1
  74. gns3server/schemas/config.py +3 -0
  75. gns3server/schemas/controller/templates/cloud_templates.py +2 -2
  76. gns3server/schemas/controller/templates/docker_templates.py +4 -3
  77. gns3server/schemas/controller/templates/dynamips_templates.py +5 -5
  78. gns3server/schemas/controller/templates/ethernet_hub_templates.py +1 -1
  79. gns3server/schemas/controller/templates/ethernet_switch_templates.py +2 -2
  80. gns3server/schemas/controller/templates/iou_templates.py +2 -2
  81. gns3server/schemas/controller/templates/qemu_templates.py +12 -12
  82. gns3server/schemas/controller/templates/virtualbox_templates.py +4 -5
  83. gns3server/schemas/controller/templates/vmware_templates.py +4 -4
  84. gns3server/schemas/controller/templates/vpcs_templates.py +2 -2
  85. gns3server/static/web-ui/index.html +3 -3
  86. gns3server/static/web-ui/{main.f3840f9b1c0240e6.js → main.ed82697b58d803e7.js} +1 -1
  87. gns3server/utils/__init__.py +32 -0
  88. gns3server/utils/asyncio/aiozipstream.py +15 -11
  89. gns3server/utils/hostname.py +53 -0
  90. gns3server/version.py +1 -1
  91. {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/LICENSE +0 -0
  92. {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/entry_points.txt +0 -0
  93. {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,13 @@
25
25
  "kvm": "require"
26
26
  },
27
27
  "images": [
28
+ {
29
+ "filename": "OPNsense-24.7-nano-amd64.img",
30
+ "version": "24.7",
31
+ "md5sum": "4f75dc2c948b907cbf73763b1539677c",
32
+ "filesize": 3221225472,
33
+ "download_url": "https://opnsense.c0urier.net/releases/24.7/"
34
+ },
28
35
  {
29
36
  "filename": "OPNsense-24.1-nano-amd64.img",
30
37
  "version": "24.1",
@@ -69,6 +76,12 @@
69
76
  }
70
77
  ],
71
78
  "versions": [
79
+ {
80
+ "name": "24.7",
81
+ "images": {
82
+ "hda_disk_image": "OPNsense-24.7-nano-amd64.img"
83
+ }
84
+ },
72
85
  {
73
86
  "name": "24.1",
74
87
  "images": {
@@ -28,6 +28,20 @@
28
28
  },
29
29
  "images": [
30
30
  {
31
+ "filename": "PA-VM-KVM-11.0.0.qcow2",
32
+ "version": "11.0.0",
33
+ "md5sum": "fc54b0e680ca2bcecb5522430e420f06",
34
+ "filesize": 4130865152,
35
+ "download_url": "https://support.paloaltonetworks.com/Updates/SoftwareUpdates/"
36
+ },
37
+ {
38
+ "filename": "PA-VM-KVM-10.2.3.qcow2",
39
+ "version": "10.2.3",
40
+ "md5sum": "0e7b2a52d1447186d335ef9a1a197c6c",
41
+ "filesize": 5298585600,
42
+ "download_url": "https://support.paloaltonetworks.com/Updates/SoftwareUpdates/"
43
+ },
44
+ {
31
45
  "filename": "PA-VM-KVM-10.1.0.qcow2",
32
46
  "version": "10.1.0",
33
47
  "md5sum": "8266fd412a22694749f2cd4afcd5fa33",
@@ -128,6 +142,18 @@
128
142
  ],
129
143
  "versions": [
130
144
  {
145
+ "name": "11.0.0",
146
+ "images": {
147
+ "hda_disk_image": "PA-VM-KVM-11.0.0.qcow2"
148
+ }
149
+ },
150
+ {
151
+ "name": "10.2.3",
152
+ "images": {
153
+ "hda_disk_image": "PA-VM-KVM-10.2.3.qcow2"
154
+ }
155
+ },
156
+ {
131
157
  "name": "10.1.0",
132
158
  "images": {
133
159
  "hda_disk_image": "PA-VM-KVM-10.1.0.qcow2"
@@ -24,17 +24,17 @@
24
24
  },
25
25
  "images": [
26
26
  {
27
- "filename": "ReactOS-0.4.14-release-15-gb6088a6.iso",
28
- "version": "Installer-0.4.14-release-15",
29
- "md5sum": "af4be6b27463446905f155f14232d2b4",
27
+ "filename": "ReactOS-0.4.14-release-21-g1302c1b.iso",
28
+ "version": "Installer-0.4.14-release-21",
29
+ "md5sum": "a30bc9143788c76ed584ffd5d25fddfe",
30
30
  "filesize": 140509184,
31
31
  "download_url": "https://reactos.org/download",
32
32
  "direct_download_url": "https://sourceforge.net/projects/reactos/files/ReactOS/0.4.14/ReactOS-0.4.14-release-21-g1302c1b-iso.zip/download"
33
33
  },
34
34
  {
35
- "filename": "ReactOS-0.4.14-release-15-gb6088a6-Live.iso",
36
- "version": "Live-0.4.14-release-15",
37
- "md5sum": "73c1a0169a9a3b8a4feb91f4d00f5e97",
35
+ "filename": "ReactOS-0.4.14-release-21-g1302c1b-Live.iso",
36
+ "version": "Live-0.4.14-release-21",
37
+ "md5sum": "fc362820069adeea088b3a48dcfa3f9e",
38
38
  "filesize": 267386880,
39
39
  "download_url": "https://reactos.org/download",
40
40
  "direct_download_url": "https://sourceforge.net/projects/reactos/files/ReactOS/0.4.14/ReactOS-0.4.14-release-21-g1302c1b-live.zip/download"
@@ -50,17 +50,17 @@
50
50
  ],
51
51
  "versions": [
52
52
  {
53
- "name": "Installer-0.4.14-release-15",
53
+ "name": "Installer-0.4.14-release-21",
54
54
  "images": {
55
55
  "hda_disk_image": "empty30G.qcow2",
56
- "cdrom_image": "ReactOS-0.4.14-release-15-gb6088a6.iso"
56
+ "cdrom_image": "ReactOS-0.4.14-release-21-g1302c1b.iso"
57
57
  }
58
58
  },
59
59
  {
60
- "name": "Live-0.4.14-release-15",
60
+ "name": "Live-0.4.14-release-21",
61
61
  "images": {
62
62
  "hda_disk_image": "empty30G.qcow2",
63
- "cdrom_image": "ReactOS-0.4.14-release-15-gb6088a6-Live.iso"
63
+ "cdrom_image": "ReactOS-0.4.14-release-21-g1302c1b-Live.iso"
64
64
  }
65
65
  }
66
66
  ]
@@ -13,18 +13,27 @@
13
13
  "status": "stable",
14
14
  "maintainer": "Brent Stewart",
15
15
  "maintainer_email": "brent@stewart.tc",
16
- "usage": "Your default account will have sudo priviledges. Squil and Squert username and password are configured in the Setup wizard. MySQL root is set to null. For more info see https://github.com/Security-Onion-Solutions/security-onion/wiki/Passwords.",
16
+ "usage": "Your default account will have sudo privileges. Squil and Squert username and password are configured in the Setup wizard. MySQL root is set to null. For more info see https://github.com/Security-Onion-Solutions/security-onion/wiki/Passwords.",
17
17
  "symbol": "securityonion-logo.png",
18
18
  "qemu": {
19
19
  "adapter_type": "e1000",
20
20
  "adapters": 2,
21
- "ram": 3072,
21
+ "ram": 4096,
22
22
  "hda_disk_interface": "ide",
23
23
  "arch": "x86_64",
24
24
  "console_type": "vnc",
25
- "kvm": "allow"
25
+ "kvm": "allow",
26
+ "options": "-cpu host"
26
27
  },
27
28
  "images": [
29
+ {
30
+ "filename": "securityonion-2.4.80-20240624.iso",
31
+ "version": "2.4.80-20240624",
32
+ "md5sum": "139f9762e926f9cb3c4a9528a3752c31",
33
+ "filesize": 12391022592,
34
+ "download_url": "https://github.com/Security-Onion-Solutions/securityonion/blob/2.4/main/DOWNLOAD_AND_VERIFY_ISO.md",
35
+ "direct_download_url": "https://download.securityonion.net/file/securityonion/securityonion-2.4.80-20240624.iso"
36
+ },
28
37
  {
29
38
  "filename": "securityonion-16.04.7.1.iso",
30
39
  "version": "16.04.7.1",
@@ -49,6 +58,14 @@
49
58
  "download_url": "https://github.com/Security-Onion-Solutions/security-onion/releases/",
50
59
  "direct_download_url": "https://github.com/Security-Onion-Solutions/security-onion/releases/download/v14.04.5.4_20171031/securityonion-14.04.5.4.iso"
51
60
  },
61
+ {
62
+ "filename": "empty100G.qcow2",
63
+ "version": "1.0",
64
+ "md5sum": "5d9fec18a980f13002028491259f158d",
65
+ "filesize": 198656,
66
+ "download_url": "https://github.com/riverbed/Riverbed-Community-Toolkit/raw/master/SteelHead/GNS3",
67
+ "direct_download_url": "https://github.com/riverbed/Riverbed-Community-Toolkit/raw/master/SteelHead/GNS3/empty100G.qcow2"
68
+ },
52
69
  {
53
70
  "filename": "empty30G.qcow2",
54
71
  "version": "1.0",
@@ -59,6 +76,13 @@
59
76
  }
60
77
  ],
61
78
  "versions": [
79
+ {
80
+ "name": "2.4.80-20240624",
81
+ "images": {
82
+ "hda_disk_image": "empty100G.qcow2",
83
+ "cdrom_image": "securityonion-2.4.80-20240624.iso"
84
+ }
85
+ },
62
86
  {
63
87
  "name": "16.04.7.1",
64
88
  "images": {
@@ -0,0 +1,104 @@
1
+ {
2
+ "appliance_id": "8c19ccaa-a1d0-4473-94a2-a93b64924d88",
3
+ "name": "TrueNAS",
4
+ "category": "guest",
5
+ "description": "TrueNAS is a family of network-attached storage (NAS) products produced by iXsystems, incorporating both FOSS, as well as commercial offerings. Based on the OpenZFS file system, TrueNAS runs on FreeBSD as well as Linux and is available under the BSD License It is compatible with x86-64 hardware and is also available as turnkey appliances from iXsystems.",
6
+ "vendor_name": "iXsystems",
7
+ "vendor_url": "https://www.truenas.com/",
8
+ "documentation_url": "https://www.truenas.com/docs/",
9
+ "product_name": "TrueNAS",
10
+ "product_url": "https://www.truenas.com/",
11
+ "registry_version": 4,
12
+ "status": "stable",
13
+ "maintainer": "GNS3 Team",
14
+ "maintainer_email": "developers@gns3.net",
15
+ "usage": "To install TrueNAS SCALE you may have to select the Legacy BIOS option.",
16
+ "port_name_format": "eth{0}",
17
+ "qemu": {
18
+ "adapter_type": "e1000",
19
+ "adapters": 1,
20
+ "ram": 8192,
21
+ "hda_disk_interface": "ide",
22
+ "hdb_disk_interface": "ide",
23
+ "arch": "x86_64",
24
+ "console_type": "vnc",
25
+ "boot_priority": "cd",
26
+ "kvm": "require"
27
+ },
28
+ "images": [
29
+ {
30
+ "filename": "TrueNAS-13.0-U6.2.iso",
31
+ "version": "CORE 13.0 U6.2",
32
+ "md5sum": "8b2882b53af5e9f3ca905c6acdee1690",
33
+ "filesize": 1049112576,
34
+ "download_url": "https://www.truenas.com/download-truenas-core/",
35
+ "direct_download_url": "https://download-core.sys.truenas.net/13.0/STABLE/U6.2/x64/TrueNAS-13.0-U6.2.iso"
36
+ },
37
+ {
38
+ "filename": "TrueNAS-13.3-RELEASE.iso",
39
+ "version": "CORE 13.3 RELEASE",
40
+ "md5sum": "8bb16cfb06f3f1374a27cf6aebb14ed3",
41
+ "filesize": 995567616,
42
+ "download_url": "https://www.truenas.com/download-truenas-core/",
43
+ "direct_download_url": "https://download-core.sys.truenas.net/13.3/STABLE/RELEASE/x64/TrueNAS-13.3-RELEASE.iso"
44
+ },
45
+ {
46
+ "filename": "TrueNAS-SCALE-24.04.2.2.iso",
47
+ "version": "SCALE 24.04.2.2",
48
+ "md5sum": "47d9026254a0775800bb2b8ab6d874fd",
49
+ "filesize": 1630355456,
50
+ "download_url": "https://www.truenas.com/download-truenas-scale/",
51
+ "direct_download_url": "https://download.sys.truenas.net/TrueNAS-SCALE-Dragonfish/24.04.2.2/TrueNAS-SCALE-24.04.2.2.iso"
52
+ },
53
+ {
54
+ "filename": "TrueNAS-SCALE-24.10-BETA.1.iso",
55
+ "version": "SCALE 24.10-BETA.1",
56
+ "md5sum": "cc3d5758d1db3d55ae9c8716f5d43b88",
57
+ "filesize": 1491378176,
58
+ "download_url": "https://www.truenas.com/download-truenas-scale/",
59
+ "direct_download_url": "https://download.sys.truenas.net/TrueNAS-SCALE-ElectricEel-BETA/24.10-BETA.1/TrueNAS-SCALE-24.10-BETA.1.iso"
60
+ },
61
+ {
62
+ "filename": "empty30G.qcow2",
63
+ "version": "1.0",
64
+ "md5sum": "3411a599e822f2ac6be560a26405821a",
65
+ "filesize": 197120,
66
+ "download_url": "https://sourceforge.net/projects/gns-3/files/Empty%20Qemu%20disk/",
67
+ "direct_download_url": "https://sourceforge.net/projects/gns-3/files/Empty%20Qemu%20disk/empty30G.qcow2/download"
68
+ }
69
+ ],
70
+ "versions": [
71
+ {
72
+ "name": "CORE 13.0 U6.2",
73
+ "images": {
74
+ "hda_disk_image": "empty30G.qcow2",
75
+ "hdb_disk_image": "empty30G.qcow2",
76
+ "cdrom_image": "TrueNAS-13.0-U6.2.iso"
77
+ }
78
+ },
79
+ {
80
+ "name": "CORE 13.3 RELEASE",
81
+ "images": {
82
+ "hda_disk_image": "empty30G.qcow2",
83
+ "hdb_disk_image": "empty30G.qcow2",
84
+ "cdrom_image": "TrueNAS-13.3-RELEASE.iso"
85
+ }
86
+ },
87
+ {
88
+ "name": "SCALE 24.04.2.2",
89
+ "images": {
90
+ "hda_disk_image": "empty30G.qcow2",
91
+ "hdb_disk_image": "empty30G.qcow2",
92
+ "cdrom_image": "TrueNAS-SCALE-24.04.2.2.iso"
93
+ }
94
+ },
95
+ {
96
+ "name": "SCALE 24.10-BETA.1",
97
+ "images": {
98
+ "hda_disk_image": "empty30G.qcow2",
99
+ "hdb_disk_image": "empty30G.qcow2",
100
+ "cdrom_image": "TrueNAS-SCALE-24.10-BETA.1.iso"
101
+ }
102
+ }
103
+ ]
104
+ }
@@ -28,36 +28,44 @@
28
28
  },
29
29
  "images": [
30
30
  {
31
- "filename": "ubuntu-23.04-server-cloudimg-amd64.img",
32
- "version": "Ubuntu 23.04 (Lunar Lobster)",
33
- "md5sum": "369e3b1f68416c39245a8014172406dd",
34
- "filesize": 756678656,
35
- "download_url": "https://cloud-images.ubuntu.com/releases/23.04/release/",
36
- "direct_download_url": "https://cloud-images.ubuntu.com/releases/23.04/release/ubuntu-23.04-server-cloudimg-amd64.img"
31
+ "filename": "ubuntu-24.10-server-cloudimg-amd64.img",
32
+ "version": "Ubuntu 24.10 (Oracular Oriole)",
33
+ "md5sum": "f2960f8743efedd0a4968bfcd9451782",
34
+ "filesize": 627360256,
35
+ "download_url": "https://cloud-images.ubuntu.com/releases/oracular/release-20241009/",
36
+ "direct_download_url": "https://cloud-images.ubuntu.com/releases/oracular/release-20241009/ubuntu-24.10-server-cloudimg-amd64.img"
37
+ },
38
+ {
39
+ "filename": "ubuntu-24.04-server-cloudimg-amd64.img",
40
+ "version": "Ubuntu 24.04 LTS (Noble Numbat)",
41
+ "md5sum": "a1c8a01953578ad432cbef03db2f3161",
42
+ "filesize": 587241984,
43
+ "download_url": "https://cloud-images.ubuntu.com/releases/noble/release-20241004/",
44
+ "direct_download_url": "https://cloud-images.ubuntu.com/releases/noble/release-20241004/ubuntu-24.04-server-cloudimg-amd64.img"
37
45
  },
38
46
  {
39
47
  "filename": "ubuntu-22.04-server-cloudimg-amd64.img",
40
48
  "version": "Ubuntu 22.04 LTS (Jammy Jellyfish)",
41
- "md5sum": "3ce0b84f9592482fb645e8253b979827",
42
- "filesize": 686096384,
43
- "download_url": "https://cloud-images.ubuntu.com/releases/jammy/release",
44
- "direct_download_url": "https://cloud-images.ubuntu.com/releases/jammy/release/ubuntu-22.04-server-cloudimg-amd64.img"
49
+ "md5sum": "8f9a70435dc5b0b86cf5d0d4716b6091",
50
+ "filesize": 653668352,
51
+ "download_url": "https://cloud-images.ubuntu.com/releases/jammy/release-20241002/",
52
+ "direct_download_url": "https://cloud-images.ubuntu.com/releases/jammy/release-20241002/ubuntu-22.04-server-cloudimg-amd64.img"
45
53
  },
46
54
  {
47
55
  "filename": "ubuntu-20.04-server-cloudimg-amd64.img",
48
56
  "version": "Ubuntu 20.04 LTS (Focal Fossa)",
49
- "md5sum": "044bc979b2238192ee3edb44e2bb6405",
50
- "filesize": 552337408,
51
- "download_url": "https://cloud-images.ubuntu.com/releases/focal/release-20210119.1/",
52
- "direct_download_url": "https://cloud-images.ubuntu.com/releases/focal/release-20210119.1/ubuntu-20.04-server-cloudimg-amd64.img"
57
+ "md5sum": "1dff90e16acb0167c27ff82e4ac1813a",
58
+ "filesize": 627310592,
59
+ "download_url": "https://cloud-images.ubuntu.com/releases/focal/release-20240821/",
60
+ "direct_download_url": "https://cloud-images.ubuntu.com/releases/focal/release-20240821/ubuntu-20.04-server-cloudimg-amd64.img"
53
61
  },
54
62
  {
55
63
  "filename": "ubuntu-18.04-server-cloudimg-amd64.img",
56
64
  "version": "Ubuntu 18.04 LTS (Bionic Beaver)",
57
- "md5sum": "f4134e7fa16d7fa766c7467cbe25c949",
58
- "filesize": 336134144,
59
- "download_url": "https://cloud-images.ubuntu.com/releases/18.04/release-20180426.2/",
60
- "direct_download_url": "https://cloud-images.ubuntu.com/releases/18.04/release-20180426.2/ubuntu-18.04-server-cloudimg-amd64.img"
65
+ "md5sum": "62fa110eeb0459c1ff166f897aeb9f78",
66
+ "filesize": 405667840,
67
+ "download_url": "https://cloud-images.ubuntu.com/releases/bionic/release-20230607/",
68
+ "direct_download_url": "https://cloud-images.ubuntu.com/releases/bionic/release-20230607/ubuntu-18.04-server-cloudimg-amd64.img"
61
69
  },
62
70
  {
63
71
  "filename": "ubuntu-cloud-init-data.iso",
@@ -70,9 +78,16 @@
70
78
  ],
71
79
  "versions": [
72
80
  {
73
- "name": "Ubuntu 23.04 (Lunar Lobster)",
81
+ "name": "Ubuntu 24.10 (Oracular Oriole)",
82
+ "images": {
83
+ "hda_disk_image": "ubuntu-24.10-server-cloudimg-amd64.img",
84
+ "cdrom_image": "ubuntu-cloud-init-data.iso"
85
+ }
86
+ },
87
+ {
88
+ "name": "Ubuntu 24.04 LTS (Noble Numbat)",
74
89
  "images": {
75
- "hda_disk_image": "ubuntu-23.04-server-cloudimg-amd64.img",
90
+ "hda_disk_image": "ubuntu-24.04-server-cloudimg-amd64.img",
76
91
  "cdrom_image": "ubuntu-cloud-init-data.iso"
77
92
  }
78
93
  },
@@ -14,7 +14,7 @@
14
14
  "symbol": "linux_guest.svg",
15
15
  "docker": {
16
16
  "adapters": 1,
17
- "image": "gns3/ubuntu:focal",
17
+ "image": "gns3/ubuntu:noble",
18
18
  "console_type": "telnet"
19
19
  }
20
20
  }
@@ -27,6 +27,13 @@
27
27
  "options": "-vga qxl"
28
28
  },
29
29
  "images": [
30
+ {
31
+ "filename": "Ubuntu 24.04 (64bit).vmdk",
32
+ "version": "24.04",
33
+ "md5sum": "7709a5a1cf888c7644d245c42d217918",
34
+ "filesize": 6432555008,
35
+ "download_url": "https://www.osboxes.org/ubuntu/"
36
+ },
30
37
  {
31
38
  "filename": "Ubuntu 22.04 (64bit).vmdk",
32
39
  "version": "22.04",
@@ -57,6 +64,12 @@
57
64
  }
58
65
  ],
59
66
  "versions": [
67
+ {
68
+ "name": "24.04",
69
+ "images": {
70
+ "hda_disk_image": "Ubuntu 24.04 (64bit).vmdk"
71
+ }
72
+ },
60
73
  {
61
74
  "name": "22.04",
62
75
  "images": {
@@ -10,8 +10,8 @@
10
10
  "product_url": "http://www.cisco.com/",
11
11
  "registry_version": 4,
12
12
  "status": "experimental",
13
- "maintainer": "Laurent LEVIER",
14
- "maintainer_email": "laurent.levier@orange.com",
13
+ "maintainer": "Christopher Uhrig",
14
+ "maintainer_email": "christopher.uhrig@telekom.de",
15
15
  "usage": "Initial username is admin, password is admin as well.",
16
16
  "first_port_name": "Management0/0",
17
17
  "port_name_format": "Ge0/{0}",
@@ -39,6 +39,20 @@
39
39
  "md5sum": "4aa487101d4cdc390f53a6e8b6f45ca7",
40
40
  "filesize": 328400896,
41
41
  "download_url": "http://www.cisco.com/"
42
+ },
43
+ {
44
+ "filename": "viptela-edge-20.9.5.1-genericx86-64.qcow2",
45
+ "version": "20.9.5.1",
46
+ "md5sum": "41d9e981908fd83695de78d6ca5794bd",
47
+ "filesize": 409468928,
48
+ "download_url": "https://software.cisco.com/download/home/286320995/type/286321047/release/20.9.5.1"
49
+ },
50
+ {
51
+ "filename": "viptela-edge-20.12.4-genericx86-64.qcow2",
52
+ "version": "20.12.4",
53
+ "md5sum": "9f1aedada5e632c7bc29a51c004f4486",
54
+ "filesize": 411762688,
55
+ "download_url": "https://software.cisco.com/download/home/286320995/type/286321047/release/20.12.4"
42
56
  }
43
57
  ],
44
58
  "versions": [
@@ -53,6 +67,18 @@
53
67
  "images": {
54
68
  "hda_disk_image": "viptela-edge-genericx86-64.qcow2"
55
69
  }
70
+ },
71
+ {
72
+ "name": "20.9.5.1",
73
+ "images": {
74
+ "hda_disk_image": "viptela-edge-20.9.5.1-genericx86-64.qcow2"
75
+ }
76
+ },
77
+ {
78
+ "name": "20.12.4",
79
+ "images": {
80
+ "hda_disk_image": "viptela-edge-20.12.4-genericx86-64.qcow2"
81
+ }
56
82
  }
57
83
  ]
58
84
  }
@@ -24,6 +24,20 @@
24
24
  "options": "-smp 2,maxcpus=2 -cpu host"
25
25
  },
26
26
  "images": [
27
+ {
28
+ "filename": "viptela-smart-20.12.4-genericx86-64.qcow2",
29
+ "version": "20.12.4",
30
+ "md5sum": "0e7b6468498a89195ab815260bc4cfb6",
31
+ "filesize": 411762688,
32
+ "download_url": "https://software.cisco.com/download/home/286320995/type/286321043/release/20.12.4"
33
+ },
34
+ {
35
+ "filename": "viptela-smart-20.9.5.1-genericx86-64.qcow2",
36
+ "version": "20.9.5.1",
37
+ "md5sum": "08e105778bb68f8f24f323dfd263a91a",
38
+ "filesize": 409468928,
39
+ "download_url": "https://software.cisco.com/download/home/286320995/type/286321043/release/20.9.5.1"
40
+ },
27
41
  {
28
42
  "filename": "viptela-smart-19.2.0-genericx86-64.qcow2",
29
43
  "version": "19.2.0",
@@ -31,7 +45,7 @@
31
45
  "filesize": 328400896,
32
46
  "download_url": "http://www.cisco.com/"
33
47
  },
34
- {
48
+ {
35
49
  "filename": "viptela-smart-genericx86-64-disk1.vmdk",
36
50
  "version": "18.3.7",
37
51
  "md5sum": "ab9b06c212319336810a4b336ec3dd96",
@@ -51,6 +65,18 @@
51
65
  "images": {
52
66
  "hda_disk_image": "viptela-smart-19.2.0-genericx86-64.qcow2"
53
67
  }
68
+ },
69
+ {
70
+ "name": "20.9.5.1",
71
+ "images": {
72
+ "hda_disk_image": "viptela-smart-20.9.5.1-genericx86-64.qcow2"
73
+ }
74
+ },
75
+ {
76
+ "name": "20.12.4",
77
+ "images": {
78
+ "hda_disk_image": "viptela-smart-20.12.4-genericx86-64.qcow2"
79
+ }
54
80
  }
55
81
  ]
56
82
  }
@@ -10,8 +10,8 @@
10
10
  "product_url": "http://www.cisco.com/",
11
11
  "registry_version": 4,
12
12
  "status": "experimental",
13
- "maintainer": "Laurent LEVIER",
14
- "maintainer_email": "laurent.levier@orange.com",
13
+ "maintainer": "Christopher Uhrig",
14
+ "maintainer_email": "christopher.uhrig@telekom.de",
15
15
  "usage": "Initial username is admin, password is admin as well.",
16
16
  "qemu": {
17
17
  "adapter_type": "vmxnet3",
@@ -25,14 +25,28 @@
25
25
  "options": "-cpu host -smp 2,maxcpus=2"
26
26
  },
27
27
  "images": [
28
- {
28
+ {
29
+ "filename": "viptela-vmanage-20.12.4-genericx86-64.qcow2",
30
+ "version": "20.12.4",
31
+ "md5sum": "4e0d4c379623c495a0bb671a76a12f9f",
32
+ "filesize": 4951375872,
33
+ "download_url": "https://software.cisco.com/download/home/286320995/type/286321039/release/20.12.4"
34
+ },
35
+ {
36
+ "filename": "viptela-vmanage-20.9.5.2-genericx86-64.qcow2",
37
+ "version": "20.9.5.2",
38
+ "md5sum": "a8a4ebee0274541200f4fe94a739d454",
39
+ "filesize": 3133865984,
40
+ "download_url": "https://software.cisco.com/download/home/286320995/type/286321039/release/20.9.5.2"
41
+ },
42
+ {
29
43
  "filename": "viptela-vmanage-19.2.0-genericx86-64.qcow2",
30
44
  "version": "19.2.0",
31
45
  "md5sum": "27ef126f178c6c929a36ad2cf6ed8db7",
32
46
  "filesize": 1185349632,
33
47
  "download_url": "http://www.cisco.com/"
34
48
  },
35
- {
49
+ {
36
50
  "filename": "viptela-vmanage-genericx86-64-disk1.vmdk",
37
51
  "version": "18.3.7",
38
52
  "md5sum": "2290c6467c907d9ca9c65793fe898716",
@@ -55,6 +69,20 @@
55
69
  "hda_disk_image": "viptela-vmanage-19.2.0-genericx86-64.qcow2",
56
70
  "hdb_disk_image": "empty30G.qcow2"
57
71
  }
72
+ },
73
+ {
74
+ "name": "20.12.4",
75
+ "images": {
76
+ "hda_disk_image": "viptela-vmanage-20.12.4-genericx86-64.qcow2",
77
+ "hdb_disk_image": "empty30G.qcow2"
78
+ }
79
+ },
80
+ {
81
+ "name": "20.9.5.2",
82
+ "images": {
83
+ "hda_disk_image": "viptela-vmanage-20.9.5.2-genericx86-64.qcow2",
84
+ "hdb_disk_image": "empty30G.qcow2"
85
+ }
58
86
  },
59
87
  {
60
88
  "name": "18.3.7",