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.
- {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/METADATA +32 -31
- {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/RECORD +93 -89
- {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/WHEEL +1 -1
- gns3server/api/routes/compute/cloud_nodes.py +1 -1
- gns3server/api/routes/compute/docker_nodes.py +3 -0
- gns3server/api/routes/compute/nat_nodes.py +1 -1
- gns3server/api/routes/compute/vmware_nodes.py +1 -1
- gns3server/api/routes/compute/vpcs_nodes.py +10 -4
- gns3server/api/routes/controller/projects.py +13 -1
- gns3server/api/routes/controller/users.py +2 -2
- gns3server/appliances/almalinux.gns3a +6 -6
- gns3server/appliances/aruba-arubaoscx.gns3a +39 -0
- gns3server/appliances/cisco-csr1000v.gns3a +28 -2
- gns3server/appliances/cisco-iou-l2.gns3a +2 -2
- gns3server/appliances/cisco-iou-l3.gns3a +2 -2
- gns3server/appliances/cisco-vWLC.gns3a +29 -1
- gns3server/appliances/debian.gns3a +28 -0
- gns3server/appliances/fortiadc.gns3a +46 -4
- gns3server/appliances/fortianalyzer.gns3a +42 -0
- gns3server/appliances/fortiauthenticator.gns3a +58 -2
- gns3server/appliances/fortigate.gns3a +42 -0
- gns3server/appliances/fortimanager.gns3a +42 -0
- gns3server/appliances/fortiweb.gns3a +56 -0
- gns3server/appliances/hbcd-pe.gns3a +62 -0
- gns3server/appliances/juniper-junos-space.gns3a +3 -2
- gns3server/appliances/juniper-vmx-legacy.gns3a +1 -1
- gns3server/appliances/juniper-vmx-vcp.gns3a +1 -1
- gns3server/appliances/juniper-vmx-vfp.gns3a +2 -1
- gns3server/appliances/juniper-vqfx-pfe.gns3a +1 -1
- gns3server/appliances/juniper-vqfx-re.gns3a +2 -1
- gns3server/appliances/juniper-vrr.gns3a +1 -1
- gns3server/appliances/juniper-vsrx.gns3a +2 -1
- gns3server/appliances/mikrotik-chr.gns3a +30 -99
- gns3server/appliances/nixos.gns3a +52 -0
- gns3server/appliances/opnsense.gns3a +13 -0
- gns3server/appliances/pan-vm-fw.gns3a +26 -0
- gns3server/appliances/reactos.gns3a +10 -10
- gns3server/appliances/security-onion.gns3a +27 -3
- gns3server/appliances/truenas.gns3a +104 -0
- gns3server/appliances/ubuntu-cloud.gns3a +35 -20
- gns3server/appliances/ubuntu-docker.gns3a +1 -1
- gns3server/appliances/ubuntu-gui.gns3a +13 -0
- gns3server/appliances/viptela-edge-genericx86-64.gns3a +28 -2
- gns3server/appliances/viptela-smart-genericx86-64.gns3a +27 -1
- gns3server/appliances/viptela-vmanage-genericx86-64.gns3a +32 -4
- gns3server/appliances/vyos.gns3a +95 -98
- gns3server/compute/base_node.py +1 -0
- gns3server/compute/docker/__init__.py +8 -2
- gns3server/compute/docker/docker_vm.py +56 -2
- gns3server/compute/docker/resources/init.sh +5 -2
- gns3server/compute/dynamips/__init__.py +0 -4
- gns3server/compute/dynamips/nodes/router.py +20 -0
- gns3server/compute/notification_manager.py +2 -2
- gns3server/compute/qemu/qemu_vm.py +26 -15
- gns3server/config_samples/gns3_server.conf +13 -3
- gns3server/configs/iou_l2_base_startup-config.txt +1 -1
- gns3server/configs/iou_l3_base_startup-config.txt +1 -1
- gns3server/controller/__init__.py +27 -13
- gns3server/controller/appliance_manager.py +9 -6
- gns3server/controller/export_project.py +27 -23
- gns3server/controller/import_project.py +24 -3
- gns3server/controller/node.py +8 -2
- gns3server/controller/notification.py +4 -4
- gns3server/controller/project.py +96 -8
- gns3server/controller/snapshot.py +3 -8
- gns3server/controller/symbols.py +1 -1
- gns3server/controller/topology.py +31 -2
- gns3server/crash_report.py +1 -1
- gns3server/db/models/templates.py +1 -0
- gns3server/db/tasks.py +1 -1
- gns3server/db_migrations/versions/9a5292aa4389_add_mac_address_field_in_docker_.py +27 -0
- gns3server/schemas/compute/docker_nodes.py +1 -0
- gns3server/schemas/compute/ethernet_switch_nodes.py +1 -1
- gns3server/schemas/config.py +3 -0
- gns3server/schemas/controller/templates/cloud_templates.py +2 -2
- gns3server/schemas/controller/templates/docker_templates.py +4 -3
- gns3server/schemas/controller/templates/dynamips_templates.py +5 -5
- gns3server/schemas/controller/templates/ethernet_hub_templates.py +1 -1
- gns3server/schemas/controller/templates/ethernet_switch_templates.py +2 -2
- gns3server/schemas/controller/templates/iou_templates.py +2 -2
- gns3server/schemas/controller/templates/qemu_templates.py +12 -12
- gns3server/schemas/controller/templates/virtualbox_templates.py +4 -5
- gns3server/schemas/controller/templates/vmware_templates.py +4 -4
- gns3server/schemas/controller/templates/vpcs_templates.py +2 -2
- gns3server/static/web-ui/index.html +3 -3
- gns3server/static/web-ui/{main.f3840f9b1c0240e6.js → main.ed82697b58d803e7.js} +1 -1
- gns3server/utils/__init__.py +32 -0
- gns3server/utils/asyncio/aiozipstream.py +15 -11
- gns3server/utils/hostname.py +53 -0
- gns3server/version.py +1 -1
- {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/LICENSE +0 -0
- {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/entry_points.txt +0 -0
- {gns3_server-3.0.0b3.dist-info → gns3_server-3.0.0rc2.dist-info}/top_level.txt +0 -0
|
@@ -91,15 +91,21 @@ def get_vpcs_node(node: VPCSVM = Depends(dep_node)) -> schemas.VPCS:
|
|
|
91
91
|
response_model=schemas.VPCS,
|
|
92
92
|
dependencies=[Depends(compute_authentication)]
|
|
93
93
|
)
|
|
94
|
-
def update_vpcs_node(node_data: schemas.VPCSUpdate, node: VPCSVM = Depends(dep_node)) -> schemas.VPCS:
|
|
94
|
+
async def update_vpcs_node(node_data: schemas.VPCSUpdate, node: VPCSVM = Depends(dep_node)) -> schemas.VPCS:
|
|
95
95
|
"""
|
|
96
96
|
Update a VPCS node.
|
|
97
97
|
"""
|
|
98
98
|
|
|
99
99
|
node_data = jsonable_encoder(node_data, exclude_unset=True)
|
|
100
|
-
|
|
101
|
-
node.
|
|
102
|
-
|
|
100
|
+
name = node_data.get("name", node.name)
|
|
101
|
+
if node.name != name:
|
|
102
|
+
node.name = name
|
|
103
|
+
console = node_data.get("console", node.console)
|
|
104
|
+
if node.console != console:
|
|
105
|
+
node.console = console
|
|
106
|
+
console_type = node_data.get("console_type", node.console_type)
|
|
107
|
+
if node.console_type != console_type:
|
|
108
|
+
node.console_type = console_type
|
|
103
109
|
node.updated()
|
|
104
110
|
return node.asdict()
|
|
105
111
|
|
|
@@ -320,6 +320,7 @@ async def export_project(
|
|
|
320
320
|
include_snapshots: bool = False,
|
|
321
321
|
include_images: bool = False,
|
|
322
322
|
reset_mac_addresses: bool = False,
|
|
323
|
+
keep_compute_ids: bool = False,
|
|
323
324
|
compression: schemas.ProjectCompression = "zstd",
|
|
324
325
|
compression_level: int = None,
|
|
325
326
|
) -> StreamingResponse:
|
|
@@ -366,6 +367,7 @@ async def export_project(
|
|
|
366
367
|
tmpdir,
|
|
367
368
|
include_snapshots=include_snapshots,
|
|
368
369
|
include_images=include_images,
|
|
370
|
+
keep_compute_ids=keep_compute_ids,
|
|
369
371
|
reset_mac_addresses=reset_mac_addresses,
|
|
370
372
|
)
|
|
371
373
|
async for chunk in zstream:
|
|
@@ -428,7 +430,8 @@ async def import_project(
|
|
|
428
430
|
)
|
|
429
431
|
async def duplicate_project(
|
|
430
432
|
project_data: schemas.ProjectDuplicate,
|
|
431
|
-
project: Project = Depends(dep_project)
|
|
433
|
+
project: Project = Depends(dep_project),
|
|
434
|
+
pools_repo: ResourcePoolsRepository = Depends(get_repository(ResourcePoolsRepository))
|
|
432
435
|
) -> schemas.Project:
|
|
433
436
|
"""
|
|
434
437
|
Duplicate a project.
|
|
@@ -440,6 +443,15 @@ async def duplicate_project(
|
|
|
440
443
|
new_project = await project.duplicate(
|
|
441
444
|
name=project_data.name, reset_mac_addresses=reset_mac_addresses
|
|
442
445
|
)
|
|
446
|
+
|
|
447
|
+
# Add the new project in the same resource pools if the duplicated project is in any
|
|
448
|
+
pool_memberships = await pools_repo.get_resource_memberships(project.id)
|
|
449
|
+
if pool_memberships:
|
|
450
|
+
resource_create = schemas.ResourceCreate(resource_id=new_project.id, resource_type="project", name=new_project.name)
|
|
451
|
+
resource = await pools_repo.create_resource(resource_create)
|
|
452
|
+
for pool in pool_memberships:
|
|
453
|
+
await pools_repo.add_resource_to_pool(pool.resource_pool_id, resource)
|
|
454
|
+
|
|
443
455
|
return new_project.asdict()
|
|
444
456
|
|
|
445
457
|
|
|
@@ -54,7 +54,7 @@ async def login(
|
|
|
54
54
|
) -> schemas.Token:
|
|
55
55
|
"""
|
|
56
56
|
Default user login method using forms (x-www-form-urlencoded).
|
|
57
|
-
Example: curl http://host:port/v3/users/login -H "Content-Type: application/x-www-form-urlencoded" -d "username=admin&password=admin"
|
|
57
|
+
Example: curl -X POST http://host:port/v3/access/users/login -H "Content-Type: application/x-www-form-urlencoded" -d "username=admin&password=admin"
|
|
58
58
|
"""
|
|
59
59
|
|
|
60
60
|
user = await users_repo.authenticate_user(username=form_data.username, password=form_data.password)
|
|
@@ -76,7 +76,7 @@ async def authenticate(
|
|
|
76
76
|
) -> schemas.Token:
|
|
77
77
|
"""
|
|
78
78
|
Alternative authentication method using json.
|
|
79
|
-
Example: curl http://host:port/v3/users/authenticate -d '{"username": "admin", "password": "admin"}' -H "Content-Type: application/json"
|
|
79
|
+
Example: curl -X POST http://host:port/v3/access/users/authenticate -d '{"username": "admin", "password": "admin"}' -H "Content-Type: application/json"
|
|
80
80
|
"""
|
|
81
81
|
|
|
82
82
|
user = await users_repo.authenticate_user(username=user_credentials.username, password=user_credentials.password)
|
|
@@ -30,24 +30,24 @@
|
|
|
30
30
|
"version": "9.2",
|
|
31
31
|
"md5sum": "c5bc76e8c95ac9f810a3482c80a54cc7",
|
|
32
32
|
"filesize": 563347456,
|
|
33
|
-
"download_url": "https://
|
|
34
|
-
"direct_download_url": "https://
|
|
33
|
+
"download_url": "https://vault.almalinux.org/9.2/cloud/x86_64/images/",
|
|
34
|
+
"direct_download_url": "https://vault.almalinux.org/9.2/cloud/x86_64/images/AlmaLinux-9-GenericCloud-9.2-20230513.x86_64.qcow2"
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"filename": "AlmaLinux-8-GenericCloud-8.8-20230524.x86_64.qcow2",
|
|
38
38
|
"version": "8.8",
|
|
39
39
|
"md5sum": "3958c5fc25770ef63cf97aa5d93f0a0b",
|
|
40
40
|
"filesize": 565444608,
|
|
41
|
-
"download_url": "https://
|
|
42
|
-
"direct_download_url": "https://
|
|
41
|
+
"download_url": "https://vault.almalinux.org/8.8/cloud/x86_64/images/",
|
|
42
|
+
"direct_download_url": "https://vault.almalinux.org/8.8/cloud/x86_64/images/AlmaLinux-8-GenericCloud-8.8-20230524.x86_64.qcow2"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"filename": "AlmaLinux-8-GenericCloud-8.7-20221111.x86_64.qcow2",
|
|
46
46
|
"version": "8.7",
|
|
47
47
|
"md5sum": "b2b8c7fd3b6869362f3f8ed47549c804",
|
|
48
48
|
"filesize": 566231040,
|
|
49
|
-
"download_url": "https://
|
|
50
|
-
"direct_download_url": "https://
|
|
49
|
+
"download_url": "https://vault.almalinux.org/8.7/cloud/x86_64/images/",
|
|
50
|
+
"direct_download_url": "https://vault.almalinux.org/8.7/cloud/x86_64/images/AlmaLinux-8-GenericCloud-8.7-20221111.x86_64.qcow2"
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"filename": "almalinux-cloud-init-data.iso",
|
|
@@ -32,6 +32,27 @@
|
|
|
32
32
|
"process_priority": "normal"
|
|
33
33
|
},
|
|
34
34
|
"images": [
|
|
35
|
+
{
|
|
36
|
+
"filename": "arubaoscx-disk-image-genericx86-p4-20240129204649.vmdk",
|
|
37
|
+
"version": "10.13.1000",
|
|
38
|
+
"md5sum": "a1a24b15e3b8a09b0c0f14bdfacc4a75",
|
|
39
|
+
"filesize": 395342848,
|
|
40
|
+
"download_url": "https://networkingsupport.hpe.com"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"filename": "arubaoscx-disk-image-genericx86-p4-20231110145644.vmdk",
|
|
44
|
+
"version": "10.13.0005",
|
|
45
|
+
"md5sum": "427fd4580e2ee3eac55a9e7d629d1375",
|
|
46
|
+
"filesize": 394995200,
|
|
47
|
+
"download_url": "https://networkingsupport.hpe.com"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"filename": "arubaoscx-disk-image-genericx86-p4-20230810165021.vmdk",
|
|
51
|
+
"version": "10.12.1000",
|
|
52
|
+
"md5sum": "ea89f94dda9d28bf583dc35e0299b106",
|
|
53
|
+
"filesize": 384622080,
|
|
54
|
+
"download_url": "https://networkingsupport.hpe.com"
|
|
55
|
+
},
|
|
35
56
|
{
|
|
36
57
|
"filename": "arubaoscx-disk-image-genericx86-p4-20230531220439.vmdk",
|
|
37
58
|
"version": "10.12.0006",
|
|
@@ -118,6 +139,24 @@
|
|
|
118
139
|
}
|
|
119
140
|
],
|
|
120
141
|
"versions": [
|
|
142
|
+
{
|
|
143
|
+
"name": "10.13.1000",
|
|
144
|
+
"images": {
|
|
145
|
+
"hda_disk_image": "arubaoscx-disk-image-genericx86-p4-20240129204649.vmdk"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "10.13.0005",
|
|
150
|
+
"images": {
|
|
151
|
+
"hda_disk_image": "arubaoscx-disk-image-genericx86-p4-20231110145644.vmdk"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "10.12.1000",
|
|
156
|
+
"images": {
|
|
157
|
+
"hda_disk_image": "arubaoscx-disk-image-genericx86-p4-20230810165021.vmdk"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
121
160
|
{
|
|
122
161
|
"name": "10.12.0006",
|
|
123
162
|
"images": {
|
|
@@ -24,12 +24,26 @@
|
|
|
24
24
|
"kvm": "require"
|
|
25
25
|
},
|
|
26
26
|
"images": [
|
|
27
|
+
{
|
|
28
|
+
"filename": "csr1000v-universalk9.17.03.08a-serial.qcow2",
|
|
29
|
+
"version": "17.03.08a",
|
|
30
|
+
"md5sum": "6abece87d6db99d9fd6917203e253f91",
|
|
31
|
+
"filesize": 1421410304,
|
|
32
|
+
"download_url": "https://software.cisco.com/download/home/286323714/type/282046477/release/Amsterdam-17.3.8a"
|
|
33
|
+
},
|
|
27
34
|
{
|
|
28
35
|
"filename": "csr1000v-universalk9.17.03.06-serial.qcow2",
|
|
29
36
|
"version": "17.03.06",
|
|
30
37
|
"md5sum": "086ab9bef6e66de847af0da3910c60e8",
|
|
31
38
|
"filesize": 1422000128,
|
|
32
|
-
"download_url": "https://software.cisco.com/download/home/
|
|
39
|
+
"download_url": "https://software.cisco.com/download/home/286323714/type/282046477/release/Amsterdam-17.3.6"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"filename": "csr1000v-ucmk9.16.12.5-serial.qcow2",
|
|
43
|
+
"version": "16.12.05",
|
|
44
|
+
"md5sum": "5c0cc217f0f0648407b34b11a1dd5b8e",
|
|
45
|
+
"filesize": 844103680,
|
|
46
|
+
"download_url": "https://software.cisco.com/download/home/286323714/type/286321980/release/16.12.5"
|
|
33
47
|
},
|
|
34
48
|
{
|
|
35
49
|
"filename": "csr1000v-universalk9.16.12.03-serial.qcow2",
|
|
@@ -166,13 +180,25 @@
|
|
|
166
180
|
}
|
|
167
181
|
],
|
|
168
182
|
"versions": [
|
|
183
|
+
{
|
|
184
|
+
"name": "17.03.08a",
|
|
185
|
+
"images": {
|
|
186
|
+
"hda_disk_image": "csr1000v-universalk9.17.03.08a-serial.qcow2"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
169
189
|
{
|
|
170
190
|
"name": "17.03.06",
|
|
171
191
|
"images": {
|
|
172
192
|
"hda_disk_image": "csr1000v-universalk9.17.03.06-serial.qcow2"
|
|
173
193
|
}
|
|
174
194
|
},
|
|
175
|
-
|
|
195
|
+
{
|
|
196
|
+
"name": "16.12.05",
|
|
197
|
+
"images": {
|
|
198
|
+
"hda_disk_image": "csr1000v-ucmk9.16.12.5-serial.qcow2"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
{
|
|
176
202
|
"name": "16.12.3",
|
|
177
203
|
"images": {
|
|
178
204
|
"hda_disk_image": "csr1000v-universalk9.16.12.03-serial.qcow2"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"images": [
|
|
21
21
|
{
|
|
22
|
-
"filename": "x86_64_crb_linux_l2-adventerprisek9-ms",
|
|
22
|
+
"filename": "x86_64_crb_linux_l2-adventerprisek9-ms.bin",
|
|
23
23
|
"version": "17.12.1",
|
|
24
24
|
"md5sum": "2b5055e4cef8fd257416d74a94adb626",
|
|
25
25
|
"filesize": 240355720
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
{
|
|
48
48
|
"name": "17.12.1",
|
|
49
49
|
"images": {
|
|
50
|
-
"image": "x86_64_crb_linux_l2-adventerprisek9-ms"
|
|
50
|
+
"image": "x86_64_crb_linux_l2-adventerprisek9-ms.bin"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
{
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"images": [
|
|
21
21
|
{
|
|
22
|
-
"filename": "x86_64_crb_linux-adventerprisek9-ms",
|
|
22
|
+
"filename": "x86_64_crb_linux-adventerprisek9-ms.bin",
|
|
23
23
|
"version": "17.12.1",
|
|
24
24
|
"md5sum": "4a2fce8de21d1831fbceffd155e41ae7",
|
|
25
25
|
"filesize": 288947184
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
{
|
|
48
48
|
"name": "17.12.1",
|
|
49
49
|
"images": {
|
|
50
|
-
"image": "x86_64_crb_linux-adventerprisek9-ms"
|
|
50
|
+
"image": "x86_64_crb_linux-adventerprisek9-ms.bin"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
{
|
|
@@ -28,7 +28,21 @@
|
|
|
28
28
|
"options": ""
|
|
29
29
|
},
|
|
30
30
|
"images": [
|
|
31
|
-
|
|
31
|
+
{
|
|
32
|
+
"filename": "MFG_CTVM_8_10_196_0.iso",
|
|
33
|
+
"version": "8.10.196.0",
|
|
34
|
+
"md5sum": "6093aca44dcf45c999f83e62dc9aeea2",
|
|
35
|
+
"filesize": 650809344,
|
|
36
|
+
"download_url": "https://software.cisco.com/download/release.html?mdfid=284464214&flowid=&softwareid=280926587&release=8.10.196.0"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"filename": "MFG_CTVM_8_5_182_0.iso",
|
|
40
|
+
"version": "8.5.182.0",
|
|
41
|
+
"md5sum": "1cf3c57c2b123e739ab4662ea0abbc34",
|
|
42
|
+
"filesize": 388579328,
|
|
43
|
+
"download_url": "https://software.cisco.com/download/home/284464214/type/280926587/release/8.5.182.0"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
32
46
|
"filename": "MFG_CTVM_8_3_102_0.iso",
|
|
33
47
|
"version": "8.3.102.0",
|
|
34
48
|
"md5sum": "7f6b7968b5bed04b5ecc119b6ba4e41c",
|
|
@@ -73,6 +87,20 @@
|
|
|
73
87
|
}
|
|
74
88
|
],
|
|
75
89
|
"versions": [
|
|
90
|
+
{
|
|
91
|
+
"name": "8.10.196.0",
|
|
92
|
+
"images": {
|
|
93
|
+
"hda_disk_image": "empty8G.qcow2",
|
|
94
|
+
"cdrom_image": "MFG_CTVM_8_10_196_0.iso"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "8.5.182.0",
|
|
99
|
+
"images": {
|
|
100
|
+
"hda_disk_image": "empty8G.qcow2",
|
|
101
|
+
"cdrom_image": "MFG_CTVM_8_5_182_0.iso"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
76
104
|
{
|
|
77
105
|
"name": "8.3.102.0",
|
|
78
106
|
"images": {
|
|
@@ -23,6 +23,14 @@
|
|
|
23
23
|
"kvm": "allow"
|
|
24
24
|
},
|
|
25
25
|
"images": [
|
|
26
|
+
{
|
|
27
|
+
"filename": "debian-12.6.qcow2",
|
|
28
|
+
"version": "12.6",
|
|
29
|
+
"md5sum": "04753ba14295c6414d49bffe27b676ae",
|
|
30
|
+
"filesize": 280907776,
|
|
31
|
+
"download_url": "https://sourceforge.net/projects/gns-3/files/Qemu%20Appliances/",
|
|
32
|
+
"direct_download_url": "https://downloads.sourceforge.net/project/gns-3/Qemu%20Appliances/debian-12.6.qcow2"
|
|
33
|
+
},
|
|
26
34
|
{
|
|
27
35
|
"filename": "debian-12.4.qcow2",
|
|
28
36
|
"version": "12.4",
|
|
@@ -31,6 +39,14 @@
|
|
|
31
39
|
"download_url": "https://sourceforge.net/projects/gns-3/files/Qemu%20Appliances/",
|
|
32
40
|
"direct_download_url": "https://downloads.sourceforge.net/project/gns-3/Qemu%20Appliances/debian-12.4.qcow2"
|
|
33
41
|
},
|
|
42
|
+
{
|
|
43
|
+
"filename": "debian-11.10.qcow2",
|
|
44
|
+
"version": "11.10",
|
|
45
|
+
"md5sum": "99a1dc8e110d641309674e69b630e732",
|
|
46
|
+
"filesize": 263520256,
|
|
47
|
+
"download_url": "https://sourceforge.net/projects/gns-3/files/Qemu%20Appliances/",
|
|
48
|
+
"direct_download_url": "https://downloads.sourceforge.net/project/gns-3/Qemu%20Appliances/debian-11.10.qcow2"
|
|
49
|
+
},
|
|
34
50
|
{
|
|
35
51
|
"filename": "debian-11.8.qcow2",
|
|
36
52
|
"version": "11.8",
|
|
@@ -41,12 +57,24 @@
|
|
|
41
57
|
}
|
|
42
58
|
],
|
|
43
59
|
"versions": [
|
|
60
|
+
{
|
|
61
|
+
"name": "12.6",
|
|
62
|
+
"images": {
|
|
63
|
+
"hda_disk_image": "debian-12.6.qcow2"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
44
66
|
{
|
|
45
67
|
"name": "12.4",
|
|
46
68
|
"images": {
|
|
47
69
|
"hda_disk_image": "debian-12.4.qcow2"
|
|
48
70
|
}
|
|
49
71
|
},
|
|
72
|
+
{
|
|
73
|
+
"name": "11.10",
|
|
74
|
+
"images": {
|
|
75
|
+
"hda_disk_image": "debian-11.10.qcow2"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
50
78
|
{
|
|
51
79
|
"name": "11.8",
|
|
52
80
|
"images": {
|
|
@@ -28,10 +28,17 @@
|
|
|
28
28
|
},
|
|
29
29
|
"images": [
|
|
30
30
|
{
|
|
31
|
-
"filename": "FAD_KVM-FORTINET.out.
|
|
32
|
-
"version": "
|
|
33
|
-
"md5sum": "
|
|
34
|
-
"filesize":
|
|
31
|
+
"filename": "FAD_KVM-V7.4.4-build0347-FORTINET.out.kvm_boot.qcow2",
|
|
32
|
+
"version": "7.4.4",
|
|
33
|
+
"md5sum": "52fa343fd423a1a560473b8cf02f4c9c",
|
|
34
|
+
"filesize": 180617216,
|
|
35
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"filename": "FAD_KVM-V7.2.6-build0257-FORTINET.out.kvm_boot.qcow2",
|
|
39
|
+
"version": "7.2.6",
|
|
40
|
+
"md5sum": "ed8c3622b12212786c310aa94c928f06",
|
|
41
|
+
"filesize": 146341888,
|
|
35
42
|
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
36
43
|
},
|
|
37
44
|
{
|
|
@@ -41,6 +48,13 @@
|
|
|
41
48
|
"filesize": 145817600,
|
|
42
49
|
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
43
50
|
},
|
|
51
|
+
{
|
|
52
|
+
"filename": "FAD_KVM-v7.1.4-build0138-FORTINET.out.kvm_boot.qcow2",
|
|
53
|
+
"version": "7.1.4",
|
|
54
|
+
"md5sum": "d4b3ff27fc9d0461199d6066174744ca",
|
|
55
|
+
"filesize": 134152192,
|
|
56
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
57
|
+
},
|
|
44
58
|
{
|
|
45
59
|
"filename": "FAD_KVM-V7.1.1-build0117-FORTINET.out.kvm-boot.qcow2",
|
|
46
60
|
"version": "7.1.1",
|
|
@@ -243,9 +257,30 @@
|
|
|
243
257
|
"md5sum": "7a71f52bde93c0000b047626731b7aef",
|
|
244
258
|
"filesize": 68026368,
|
|
245
259
|
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"filename": "FAD_KVM-FORTINET.out.kvm-data.qcow2",
|
|
263
|
+
"version": "ALL",
|
|
264
|
+
"md5sum": "b7500835594e62d8acb1c6ec43d597c1",
|
|
265
|
+
"filesize": 30998528,
|
|
266
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
246
267
|
}
|
|
247
268
|
],
|
|
248
269
|
"versions": [
|
|
270
|
+
{
|
|
271
|
+
"name": "7.4.4",
|
|
272
|
+
"images": {
|
|
273
|
+
"hda_disk_image": "FAD_KVM-V7.4.4-build0347-FORTINET.out.kvm_boot.qcow2",
|
|
274
|
+
"hdb_disk_image": "FAD_KVM-FORTINET.out.kvm-data.qcow2"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "7.2.6",
|
|
279
|
+
"images": {
|
|
280
|
+
"hda_disk_image": "FAD_KVM-V7.2.6-build0257-FORTINET.out.kvm_boot.qcow2",
|
|
281
|
+
"hdb_disk_image": "FAD_KVM-FORTINET.out.kvm-data.qcow2"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
249
284
|
{
|
|
250
285
|
"name": "7.2.0",
|
|
251
286
|
"images": {
|
|
@@ -253,6 +288,13 @@
|
|
|
253
288
|
"hdb_disk_image": "FAD_KVM-FORTINET.out.kvm-data.qcow2"
|
|
254
289
|
}
|
|
255
290
|
},
|
|
291
|
+
{
|
|
292
|
+
"name": "7.1.4",
|
|
293
|
+
"images": {
|
|
294
|
+
"hda_disk_image": "FAD_KVM-v7.1.4-build0138-FORTINET.out.kvm_boot.qcow2",
|
|
295
|
+
"hdb_disk_image": "FAD_KVM-FORTINET.out.kvm-data.qcow2"
|
|
296
|
+
}
|
|
297
|
+
},
|
|
256
298
|
{
|
|
257
299
|
"name": "7.1.1",
|
|
258
300
|
"images": {
|
|
@@ -29,6 +29,13 @@
|
|
|
29
29
|
"kvm": "allow"
|
|
30
30
|
},
|
|
31
31
|
"images": [
|
|
32
|
+
{
|
|
33
|
+
"filename": "FAZ_VM64_KVM-v7.4.3-build2487-FORTINET.out.kvm.qcow2",
|
|
34
|
+
"version": "7.4.3",
|
|
35
|
+
"md5sum": "c58709af18516763ed88f58621447bf6",
|
|
36
|
+
"filesize": 504463360,
|
|
37
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
38
|
+
},
|
|
32
39
|
{
|
|
33
40
|
"filename": "FAZ_VM64_KVM-v7.4.2-build2397-FORTINET.out.kvm.qcow2",
|
|
34
41
|
"version": "7.4.2",
|
|
@@ -43,6 +50,13 @@
|
|
|
43
50
|
"filesize": 435310592,
|
|
44
51
|
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
45
52
|
},
|
|
53
|
+
{
|
|
54
|
+
"filename": "FAZ_VM64_KVM-v7.2.5-build1574-FORTINET.out.kvm.qcow2",
|
|
55
|
+
"version": "7.2.5",
|
|
56
|
+
"md5sum": "225d7405f35f78a482cffa34ef90080d",
|
|
57
|
+
"filesize": 379973632,
|
|
58
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
59
|
+
},
|
|
46
60
|
{
|
|
47
61
|
"filename": "FAZ_VM64_KVM-v7.2.4-build1460-FORTINET.out.kvm.qcow2",
|
|
48
62
|
"version": "7.2.4",
|
|
@@ -64,6 +78,13 @@
|
|
|
64
78
|
"filesize": 340631552,
|
|
65
79
|
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
66
80
|
},
|
|
81
|
+
{
|
|
82
|
+
"filename": "FAZ_VM64_KVM-v7.0.12-build0623-FORTINET.out.kvm.qcow2",
|
|
83
|
+
"version": "7.0.12",
|
|
84
|
+
"md5sum": "a45f8987ea13da836c684b5d9850c1c2",
|
|
85
|
+
"filesize": 349560832,
|
|
86
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
87
|
+
},
|
|
67
88
|
{
|
|
68
89
|
"filename": "FAZ_VM64_KVM-v7.0.11-build0595-FORTINET.out.kvm.qcow2",
|
|
69
90
|
"version": "7.0.11",
|
|
@@ -256,6 +277,13 @@
|
|
|
256
277
|
}
|
|
257
278
|
],
|
|
258
279
|
"versions": [
|
|
280
|
+
{
|
|
281
|
+
"name": "7.4.3",
|
|
282
|
+
"images": {
|
|
283
|
+
"hda_disk_image": "FAZ_VM64_KVM-v7.4.3-build2487-FORTINET.out.kvm.qcow2",
|
|
284
|
+
"hdb_disk_image": "empty30G.qcow2"
|
|
285
|
+
}
|
|
286
|
+
},
|
|
259
287
|
{
|
|
260
288
|
"name": "7.4.2",
|
|
261
289
|
"images": {
|
|
@@ -270,6 +298,13 @@
|
|
|
270
298
|
"hdb_disk_image": "empty30G.qcow2"
|
|
271
299
|
}
|
|
272
300
|
},
|
|
301
|
+
{
|
|
302
|
+
"name": "7.2.5",
|
|
303
|
+
"images": {
|
|
304
|
+
"hda_disk_image": "FAZ_VM64_KVM-v7.2.5-build1574-FORTINET.out.kvm.qcow2",
|
|
305
|
+
"hdb_disk_image": "empty30G.qcow2"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
273
308
|
{
|
|
274
309
|
"name": "7.2.4",
|
|
275
310
|
"images": {
|
|
@@ -291,6 +326,13 @@
|
|
|
291
326
|
"hdb_disk_image": "empty30G.qcow2"
|
|
292
327
|
}
|
|
293
328
|
},
|
|
329
|
+
{
|
|
330
|
+
"name": "7.0.12",
|
|
331
|
+
"images": {
|
|
332
|
+
"hda_disk_image": "FAZ_VM64_KVM-v7.0.12-build0623-FORTINET.out.kvm.qcow2",
|
|
333
|
+
"hdb_disk_image": "empty30G.qcow2"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
294
336
|
{
|
|
295
337
|
"name": "7.0.11",
|
|
296
338
|
"images": {
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"status": "stable",
|
|
14
14
|
"maintainer": "GNS3 Team",
|
|
15
15
|
"maintainer_email": "developers@gns3.net",
|
|
16
|
-
"usage": "Default username is admin, no password is set. First
|
|
16
|
+
"usage": "Default username is admin, no password is set. First boot takes longer.",
|
|
17
17
|
"symbol": "fortinet.svg",
|
|
18
18
|
"port_name_format": "Port{port1}",
|
|
19
19
|
"qemu": {
|
|
20
20
|
"adapter_type": "e1000",
|
|
21
21
|
"adapters": 4,
|
|
22
|
-
"ram":
|
|
22
|
+
"ram": 4096,
|
|
23
23
|
"hda_disk_interface": "virtio",
|
|
24
24
|
"hdb_disk_interface": "virtio",
|
|
25
25
|
"arch": "x86_64",
|
|
@@ -28,6 +28,27 @@
|
|
|
28
28
|
"kvm": "allow"
|
|
29
29
|
},
|
|
30
30
|
"images": [
|
|
31
|
+
{
|
|
32
|
+
"filename": "FAC_VM_KVM-v6.6.1-build1660-FORTINET.out.kvm_fackvm.qcow2",
|
|
33
|
+
"version": "6.6.1",
|
|
34
|
+
"md5sum": "4b2b475ac8b6f88b5033dca367d53cbb",
|
|
35
|
+
"filesize": 138477584,
|
|
36
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"filename": "FAC_VM_KVM-v6.5.5-build1385-FORTINET.out.kvm_fackvm.qcow2",
|
|
40
|
+
"version": "6.5.5",
|
|
41
|
+
"md5sum": "6850128ac51cee2577114ecd487786ff",
|
|
42
|
+
"filesize": 112918544,
|
|
43
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"filename": "FAC_VM_KVM-v6.4.9-build1067-FORTINET.out.kvm_fackvm.qcow2",
|
|
47
|
+
"version": "6.4.9",
|
|
48
|
+
"md5sum": "aee068a16fb2ca332d41e6add499b7d3",
|
|
49
|
+
"filesize": 112197648,
|
|
50
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
51
|
+
},
|
|
31
52
|
{
|
|
32
53
|
"filename": "FAC_VM_KVM-v6-build0058-FORTINET.out.kvm.qcow2",
|
|
33
54
|
"version": "6.0.3",
|
|
@@ -105,6 +126,20 @@
|
|
|
105
126
|
"filesize": 62771200,
|
|
106
127
|
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
107
128
|
},
|
|
129
|
+
{
|
|
130
|
+
"filename": "FAC_VM_KVM-v6.6.1-build1660-FORTINET.out.kvm_datadrive.qcow2",
|
|
131
|
+
"version": "6.6.1",
|
|
132
|
+
"md5sum": "9bbaa1ce1508b4af1f43ba00879269f9",
|
|
133
|
+
"filesize": 197568,
|
|
134
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"filename": "FAC_VM_KVM-v6.5.5-build1385-FORTINET.out.kvm_datadrive.qcow2",
|
|
138
|
+
"version": "6.4.x, 6.5.x",
|
|
139
|
+
"md5sum": "3f7173307047cf562f55ed2f99450c10",
|
|
140
|
+
"filesize": 197568,
|
|
141
|
+
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
|
142
|
+
},
|
|
108
143
|
{
|
|
109
144
|
"filename": "FAC_VM_KVM-ALL-DATADRIVE.qcow2",
|
|
110
145
|
"version": "All",
|
|
@@ -114,6 +149,27 @@
|
|
|
114
149
|
}
|
|
115
150
|
],
|
|
116
151
|
"versions": [
|
|
152
|
+
{
|
|
153
|
+
"name": "6.6.1",
|
|
154
|
+
"images": {
|
|
155
|
+
"hda_disk_image": "FAC_VM_KVM-v6.6.1-build1660-FORTINET.out.kvm_fackvm.qcow2",
|
|
156
|
+
"hdb_disk_image": "FAC_VM_KVM-v6.6.1-build1660-FORTINET.out.kvm_datadrive.qcow2"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "6.5.5",
|
|
161
|
+
"images": {
|
|
162
|
+
"hda_disk_image": "FAC_VM_KVM-v6.5.5-build1385-FORTINET.out.kvm_fackvm.qcow2",
|
|
163
|
+
"hdb_disk_image": "FAC_VM_KVM-v6.5.5-build1385-FORTINET.out.kvm_datadrive.qcow2"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "6.4.9",
|
|
168
|
+
"images": {
|
|
169
|
+
"hda_disk_image": "FAC_VM_KVM-v6.4.9-build1067-FORTINET.out.kvm_fackvm.qcow2",
|
|
170
|
+
"hdb_disk_image": "FAC_VM_KVM-v6.5.5-build1385-FORTINET.out.kvm_datadrive.qcow2"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
117
173
|
{
|
|
118
174
|
"name": "6.0.3",
|
|
119
175
|
"images": {
|