gns3-server 3.0.0b1__py3-none-any.whl → 3.0.0b3__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.0b1.dist-info → gns3_server-3.0.0b3.dist-info}/METADATA +20 -20
- {gns3_server-3.0.0b1.dist-info → gns3_server-3.0.0b3.dist-info}/RECORD +93 -75
- {gns3_server-3.0.0b1.dist-info → gns3_server-3.0.0b3.dist-info}/WHEEL +1 -1
- gns3server/api/routes/compute/dynamips_nodes.py +2 -2
- gns3server/api/routes/compute/notifications.py +1 -5
- gns3server/api/routes/controller/controller.py +0 -5
- gns3server/api/routes/controller/images.py +4 -2
- gns3server/api/routes/controller/projects.py +0 -4
- gns3server/appliances/arista-veos.gns3a +178 -2
- gns3server/appliances/asterfusion-vAsterNOS.gns3a +49 -0
- gns3server/appliances/bird.gns3a +1 -1
- gns3server/appliances/bird2.gns3a +14 -0
- gns3server/appliances/cisco-asav.gns3a +13 -0
- gns3server/appliances/cisco-c8000v.gns3a +26 -0
- gns3server/appliances/cisco-cat9k.gns3a +16 -3
- gns3server/appliances/cisco-csr1000v.gns3a +13 -0
- gns3server/appliances/cisco-iosv.gns3a +14 -0
- gns3server/appliances/cisco-iosxrv9k.gns3a +13 -0
- gns3server/appliances/cisco-iou-l2.gns3a +12 -0
- gns3server/appliances/cisco-iou-l3.gns3a +12 -0
- gns3server/appliances/cisco-nxosv9k.gns3a +70 -0
- gns3server/appliances/clavister-netsheild.gns3a +15 -2
- gns3server/appliances/clavister-netwall.gns3a +15 -2
- gns3server/appliances/debian.gns3a +7 -7
- gns3server/appliances/dell-ftos.gns3a +21 -4
- gns3server/appliances/exos.gns3a +13 -151
- gns3server/appliances/fedora-cloud.gns3a +12 -42
- gns3server/appliances/fortianalyzer.gns3a +42 -0
- gns3server/appliances/fortigate.gns3a +56 -0
- gns3server/appliances/fortimanager.gns3a +43 -1
- gns3server/appliances/freebsd.gns3a +17 -2
- gns3server/appliances/huawei-ne40e.gns3a +51 -2
- gns3server/appliances/mikrotik-chr.gns3a +9 -0
- gns3server/appliances/mikrotik-rb1100ahx4-dude-edition.gns3a +1 -1
- gns3server/appliances/mikrotik-rb450g.gns3a +1 -1
- gns3server/appliances/mikrotik-rb450gx4.gns3a +1 -1
- gns3server/appliances/open-media-vault.gns3a +16 -0
- gns3server/appliances/openvswitch-management.gns3a +1 -1
- gns3server/appliances/opnsense.gns3a +13 -0
- gns3server/appliances/ostinato.gns3a +13 -0
- gns3server/appliances/rhel.gns3a +17 -3
- gns3server/appliances/rockylinux.gns3a +30 -0
- gns3server/appliances/ubuntu-cloud.gns3a +5 -5
- gns3server/compute/docker/__init__.py +3 -3
- gns3server/compute/docker/docker_vm.py +12 -3
- gns3server/compute/dynamips/__init__.py +7 -0
- gns3server/compute/iou/iou_vm.py +2 -1
- gns3server/compute/qemu/__init__.py +10 -3
- gns3server/compute/qemu/qemu_vm.py +7 -1
- gns3server/compute/vpcs/vpcs_vm.py +3 -0
- gns3server/controller/__init__.py +6 -6
- gns3server/controller/export_project.py +5 -0
- gns3server/controller/project.py +19 -5
- gns3server/controller/snapshot.py +3 -3
- gns3server/controller/symbol_themes.py +7 -0
- gns3server/controller/udp_link.py +1 -1
- gns3server/crash_report.py +1 -1
- gns3server/db/models/templates.py +2 -2
- gns3server/db_migrations/README +1 -0
- gns3server/main.py +5 -1
- gns3server/schemas/compute/docker_nodes.py +1 -1
- gns3server/schemas/controller/templates/__init__.py +0 -1
- gns3server/schemas/controller/templates/docker_templates.py +1 -1
- gns3server/server.py +3 -4
- gns3server/services/authentication.py +7 -7
- gns3server/services/templates.py +1 -1
- gns3server/static/web-ui/3rdpartylicenses.txt +23 -0
- gns3server/static/web-ui/index.html +1 -1
- gns3server/static/web-ui/main.f3840f9b1c0240e6.js +1 -0
- gns3server/static/web-ui/runtime.24fa95b7061d7056.js +1 -0
- gns3server/symbols/affinity/circle/blue/nat.svg +60 -0
- gns3server/symbols/affinity/circle/blue/nat2.svg +55 -0
- gns3server/symbols/affinity/circle/gray/nat.svg +60 -0
- gns3server/symbols/affinity/circle/gray/nat2.svg +55 -0
- gns3server/symbols/affinity/circle/green/nat.svg +60 -0
- gns3server/symbols/affinity/circle/green/nat2.svg +55 -0
- gns3server/symbols/affinity/circle/red/nat.svg +60 -0
- gns3server/symbols/affinity/circle/red/nat2.svg +55 -0
- gns3server/symbols/affinity/square/blue/nat.svg +58 -0
- gns3server/symbols/affinity/square/blue/nat2.svg +74 -0
- gns3server/symbols/affinity/square/gray/nat.svg +58 -0
- gns3server/symbols/affinity/square/gray/nat2.svg +74 -0
- gns3server/symbols/affinity/square/green/nat.svg +58 -0
- gns3server/symbols/affinity/square/green/nat2.svg +74 -0
- gns3server/symbols/affinity/square/red/nat.svg +58 -0
- gns3server/symbols/affinity/square/red/nat2.svg +74 -0
- gns3server/symbols/classic/nat.svg +207 -0
- gns3server/utils/asyncio/telnet_server.py +17 -4
- gns3server/utils/images.py +3 -5
- gns3server/version.py +1 -1
- gns3server/static/web-ui/main.fa00b32e7c90ea1c.js +0 -1
- gns3server/static/web-ui/runtime.53e0b4d68251ad21.js +0 -1
- {gns3_server-3.0.0b1.dist-info → gns3_server-3.0.0b3.dist-info}/LICENSE +0 -0
- {gns3_server-3.0.0b1.dist-info → gns3_server-3.0.0b3.dist-info}/entry_points.txt +0 -0
- {gns3_server-3.0.0b1.dist-info → gns3_server-3.0.0b3.dist-info}/top_level.txt +0 -0
|
@@ -50,11 +50,7 @@ async def project_ws_notifications(websocket: Union[None, WebSocket] = Depends(w
|
|
|
50
50
|
log.info(f"Client {websocket.client.host}:{websocket.client.port} has disconnected from compute WebSocket")
|
|
51
51
|
except WebSocketException as e:
|
|
52
52
|
log.warning(f"Error while sending to controller event to WebSocket client: {e}")
|
|
53
|
-
|
|
54
|
-
try:
|
|
55
|
-
await websocket.close()
|
|
56
|
-
except OSError:
|
|
57
|
-
pass # ignore OSError: [Errno 107] Transport endpoint is not connected
|
|
53
|
+
|
|
58
54
|
|
|
59
55
|
if __name__ == "__main__":
|
|
60
56
|
|
|
@@ -221,11 +221,6 @@ async def controller_ws_notifications(
|
|
|
221
221
|
log.info(f"Client {websocket.client.host}:{websocket.client.port} has disconnected from controller WebSocket")
|
|
222
222
|
except WebSocketException as e:
|
|
223
223
|
log.warning(f"Error while sending to controller event to WebSocket client: {e}")
|
|
224
|
-
finally:
|
|
225
|
-
try:
|
|
226
|
-
await websocket.close()
|
|
227
|
-
except OSError:
|
|
228
|
-
pass # ignore OSError: [Errno 107] Transport endpoint is not connected
|
|
229
224
|
|
|
230
225
|
|
|
231
226
|
# @Route.post(
|
|
@@ -149,8 +149,10 @@ async def upload_image(
|
|
|
149
149
|
if os.path.commonprefix([base_images_directory, full_path]) != base_images_directory:
|
|
150
150
|
raise ControllerForbiddenError(f"Cannot write image, '{image_path}' is forbidden")
|
|
151
151
|
|
|
152
|
-
|
|
153
|
-
|
|
152
|
+
image = await images_repo.get_image(image_path)
|
|
153
|
+
if image:
|
|
154
|
+
log.warning(f"Image '{image_path}' already exists")
|
|
155
|
+
return image
|
|
154
156
|
|
|
155
157
|
try:
|
|
156
158
|
allow_raw_image = Config.instance().settings.Server.allow_raw_images
|
|
@@ -305,10 +305,6 @@ async def project_ws_notifications(
|
|
|
305
305
|
except WebSocketException as e:
|
|
306
306
|
log.warning(f"Error while sending to project event to WebSocket client: {e}")
|
|
307
307
|
finally:
|
|
308
|
-
try:
|
|
309
|
-
await websocket.close()
|
|
310
|
-
except OSError:
|
|
311
|
-
pass # ignore OSError: [Errno 107] Transport endpoint is not connected
|
|
312
308
|
if project.auto_close:
|
|
313
309
|
# To avoid trouble with client connecting disconnecting we sleep few seconds before checking
|
|
314
310
|
# if someone else is not connected
|
|
@@ -24,9 +24,101 @@
|
|
|
24
24
|
"hdb_disk_interface": "ide",
|
|
25
25
|
"arch": "x86_64",
|
|
26
26
|
"console_type": "telnet",
|
|
27
|
-
"kvm": "require"
|
|
27
|
+
"kvm": "require",
|
|
28
|
+
"options": "-cpu host"
|
|
28
29
|
},
|
|
29
30
|
"images": [
|
|
31
|
+
{
|
|
32
|
+
"filename": "vEOS64-lab-4.32.0F.vmdk",
|
|
33
|
+
"version": "4.32.0F",
|
|
34
|
+
"md5sum": "851771260bb18ad3e90fa6956f0c6161",
|
|
35
|
+
"filesize": 591724544,
|
|
36
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"filename": "vEOS64-lab-4.31.3M.vmdk",
|
|
40
|
+
"version": "4.31.3M",
|
|
41
|
+
"md5sum": "7df107da137f4a4e752014d4f0e94cd3",
|
|
42
|
+
"filesize": 577961984,
|
|
43
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"filename": "vEOS64-lab-4.30.6M.vmdk",
|
|
47
|
+
"version": "4.30.6M",
|
|
48
|
+
"md5sum": "19721aace820b9ebf6d7ae6524803cf5",
|
|
49
|
+
"filesize": 553123840,
|
|
50
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"filename": "vEOS64-lab-4.29.8M.vmdk",
|
|
54
|
+
"version": "4.29.8M",
|
|
55
|
+
"md5sum": "131888f74cd63a93894521d40eb4d0b6",
|
|
56
|
+
"filesize": 548405248,
|
|
57
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"filename": "vEOS64-lab-4.28.11M.vmdk",
|
|
61
|
+
"version": "4.28.11M",
|
|
62
|
+
"md5sum": "6cac0e7b04a74ee0dc358327a00accfd",
|
|
63
|
+
"filesize": 513343488,
|
|
64
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"filename": "vEOS64-lab-4.27.12M.vmdk",
|
|
68
|
+
"version": "4.27.12M",
|
|
69
|
+
"md5sum": "34c4f785c7fc054cda8754dd13c0d7c7",
|
|
70
|
+
"filesize": 496697344,
|
|
71
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"filename": "vEOS-lab-4.32.0F.vmdk",
|
|
75
|
+
"version": "4.32.0F",
|
|
76
|
+
"md5sum": "584b901a1249717504050e48f74fb8dd",
|
|
77
|
+
"filesize": 591396864,
|
|
78
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"filename": "vEOS-lab-4.31.3M.vmdk",
|
|
82
|
+
"version": "4.31.3M",
|
|
83
|
+
"md5sum": "a2e130697cdf8547006eebebde6eefca",
|
|
84
|
+
"filesize": 590086144,
|
|
85
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"filename": "vEOS-lab-4.30.6M.vmdk",
|
|
89
|
+
"version": "4.30.6M",
|
|
90
|
+
"md5sum": "a4467648bcfa7b19640af8a4ad3153c6",
|
|
91
|
+
"filesize": 565968896,
|
|
92
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"filename": "vEOS-lab-4.29.8M.vmdk",
|
|
96
|
+
"version": "4.29.8M",
|
|
97
|
+
"md5sum": "1952f6114a4376212c525db9ec8efd5f",
|
|
98
|
+
"filesize": 558039040,
|
|
99
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"filename": "vEOS-lab-4.28.11M.vmdk",
|
|
103
|
+
"version": "4.28.11M",
|
|
104
|
+
"md5sum": "5502df24dfc231c45afb33d6018c16d0",
|
|
105
|
+
"filesize": 521338880,
|
|
106
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"filename": "vEOS-lab-4.27.12M.vmdk",
|
|
110
|
+
"version": "4.27.12M",
|
|
111
|
+
"md5sum": "e08a97e7c1977993f947fedeb4c6ddd5",
|
|
112
|
+
"filesize": 504299520,
|
|
113
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"filename": "Aboot-veos-serial-8.0.2.iso",
|
|
117
|
+
"version": "8.0.2",
|
|
118
|
+
"md5sum": "8d7e754efebca1930a93a2587ff7606c",
|
|
119
|
+
"filesize": 6291456,
|
|
120
|
+
"download_url": "https://www.arista.com/en/support/software-download"
|
|
121
|
+
},
|
|
30
122
|
{
|
|
31
123
|
"filename": "vEOS-lab-4.26.2F.vmdk",
|
|
32
124
|
"version": "4.26.2F",
|
|
@@ -218,6 +310,90 @@
|
|
|
218
310
|
}
|
|
219
311
|
],
|
|
220
312
|
"versions": [
|
|
313
|
+
{
|
|
314
|
+
"name": "4.32.0F",
|
|
315
|
+
"images": {
|
|
316
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
317
|
+
"hdb_disk_image": "vEOS64-lab-4.32.0F.vmdk"
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"name": "4.31.3M",
|
|
322
|
+
"images": {
|
|
323
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
324
|
+
"hdb_disk_image": "vEOS64-lab-4.31.3M.vmdk"
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"name": "4.30.6M",
|
|
329
|
+
"images": {
|
|
330
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
331
|
+
"hdb_disk_image": "vEOS64-lab-4.30.6M.vmdk"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "4.29.8M",
|
|
336
|
+
"images": {
|
|
337
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
338
|
+
"hdb_disk_image": "vEOS64-lab-4.29.8M.vmdk"
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"name": "4.28.11M",
|
|
343
|
+
"images": {
|
|
344
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
345
|
+
"hdb_disk_image": "vEOS64-lab-4.28.11M.vmdk"
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"name": "4.27.12M",
|
|
350
|
+
"images": {
|
|
351
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
352
|
+
"hdb_disk_image": "vEOS64-lab-4.27.12M.vmdk"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "4.32.0F",
|
|
357
|
+
"images": {
|
|
358
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
359
|
+
"hdb_disk_image": "vEOS-lab-4.32.0F.vmdk"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "4.31.3M",
|
|
364
|
+
"images": {
|
|
365
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
366
|
+
"hdb_disk_image": "vEOS-lab-4.31.3M.vmdk"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"name": "4.30.6M",
|
|
371
|
+
"images": {
|
|
372
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
373
|
+
"hdb_disk_image": "vEOS-lab-4.30.6M.vmdk"
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "4.29.8M",
|
|
378
|
+
"images": {
|
|
379
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
380
|
+
"hdb_disk_image": "vEOS-lab-4.29.8M.vmdk"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "4.28.11M",
|
|
385
|
+
"images": {
|
|
386
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
387
|
+
"hdb_disk_image": "vEOS-lab-4.28.11M.vmdk"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"name": "4.27.12M",
|
|
392
|
+
"images": {
|
|
393
|
+
"hda_disk_image": "Aboot-veos-serial-8.0.2.iso",
|
|
394
|
+
"hdb_disk_image": "vEOS-lab-4.27.12M.vmdk"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
221
397
|
{
|
|
222
398
|
"name": "4.26.2F",
|
|
223
399
|
"images": {
|
|
@@ -398,4 +574,4 @@
|
|
|
398
574
|
}
|
|
399
575
|
}
|
|
400
576
|
]
|
|
401
|
-
}
|
|
577
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"appliance_id": "e8001e2b-8ef3-44eb-ace5-79f68f3773e8",
|
|
3
|
+
"name": "Asterfusion vAsterNOS",
|
|
4
|
+
"category": "multilayer_switch",
|
|
5
|
+
"description": "AsterNOS is the core technology of Asterfusion's one-stop turnkey SONiC solution for cloud, enterprise and AI. As an enterprise ready SONiC distribution, AsterNOS features rich functionality enhancement such as MC-LAG, VXLAN, BGP EVPN-Multihoming, RoCEv2(Easy RoCE), and more, making it powerful and easy-to-use in a variety of production scenarios. Currently, AsterNOS is compatible with top commercial switching chips (e.g. Marvell Teralynx, Prestera Falcon/Aldrin/Alleycat, Broadcom Tomahawk/Trident, Intel Tofino and some of NVIDIA's chips.)Through AsterNOS's rich L2/L3 features and enhancements in virtualization and management, cloud architecture built with Asterfusion switching families from 1G-800G (or other standard whitebox switches) can scale to tens of thousands of compute and storage nodes, working smoothly both in underlay nework and overlay cloud fabric with OpenStack integrated, supporting ultra low latency lossless RoCE network in AIGC, distributed storage , or building easily managed access clusters for campus networks.NOTICE: This appliance file is a virtualized version of AsterNOS and is intended to be used only to experience the basic functionality and industry standard CLI (Klish), not for official software testing. For more information about AsterNOS commercial version, please feel free to contact us via Email: bd@cloudswit.ch",
|
|
6
|
+
"vendor_name": "Asterfusion",
|
|
7
|
+
"vendor_url": "https://cloudswit.ch/",
|
|
8
|
+
"vendor_logo_url": "https://raw.githubusercontent.com/GNS3/gns3-registry/master/vendor-logos/asterfusion.png",
|
|
9
|
+
"documentation_url": "https://help.cloudswit.ch/portal/en/kb/articles/vasternos",
|
|
10
|
+
"product_name": "vAsterNOS",
|
|
11
|
+
"product_url": "https://cloudswit.ch/product/sonic-enterprise-distribution",
|
|
12
|
+
"registry_version": 4,
|
|
13
|
+
"status": "experimental",
|
|
14
|
+
"maintainer": "Asterfusion",
|
|
15
|
+
"maintainer_email": "bd@cloudswit.ch",
|
|
16
|
+
"usage": "The login is admin, passwd asteros",
|
|
17
|
+
"symbol": "asterfusion-vAsterNOS.svg",
|
|
18
|
+
"first_port_name": "eth0",
|
|
19
|
+
"port_name_format": "Ethernet{0}",
|
|
20
|
+
"qemu": {
|
|
21
|
+
"adapter_type": "e1000",
|
|
22
|
+
"adapters": 10,
|
|
23
|
+
"ram": 4096,
|
|
24
|
+
"cpus": 2,
|
|
25
|
+
"hda_disk_interface": "virtio",
|
|
26
|
+
"arch": "x86_64",
|
|
27
|
+
"console_type": "telnet",
|
|
28
|
+
"boot_priority": "d",
|
|
29
|
+
"kvm": "require"
|
|
30
|
+
},
|
|
31
|
+
"images": [
|
|
32
|
+
{
|
|
33
|
+
"filename": "vAsterNOS-V3.1.img",
|
|
34
|
+
"version": "V3.1",
|
|
35
|
+
"md5sum": "c323c9c3f60e1a93eca2acdc5034b85c",
|
|
36
|
+
"filesize": 2724659200,
|
|
37
|
+
"download_url": "https://drive.cloudswitch.io/external/8ae2e3932ad8bb2ec30dd25be415d288ff3e4a949c557c6bd48ac6e6265bcfc1"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"versions": [
|
|
41
|
+
{
|
|
42
|
+
"name": "V3.1",
|
|
43
|
+
"images": {
|
|
44
|
+
"hda_disk_image": "vAsterNOS-V3.1.img"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
|
gns3server/appliances/bird.gns3a
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"status": "stable",
|
|
12
12
|
"maintainer": "GNS3 Team",
|
|
13
13
|
"maintainer_email": "developers@gns3.net",
|
|
14
|
-
"usage": "
|
|
14
|
+
"usage": "\n*** BIRD v1 is end-of-life ***\nPlease use the BIRD2 appliance.\n\nConfigure interfaces in /opt/bootlocal.sh, BIRD configuration is done in /usr/local/etc/bird",
|
|
15
15
|
"qemu": {
|
|
16
16
|
"adapter_type": "e1000",
|
|
17
17
|
"adapters": 4,
|
|
@@ -23,6 +23,14 @@
|
|
|
23
23
|
"kvm": "allow"
|
|
24
24
|
},
|
|
25
25
|
"images": [
|
|
26
|
+
{
|
|
27
|
+
"filename": "bird2-debian-2.14.qcow2",
|
|
28
|
+
"version": "2.14",
|
|
29
|
+
"md5sum": "029cf1756201ee79497c169502b08b88",
|
|
30
|
+
"filesize": 303717376,
|
|
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/bird2-debian-2.14.qcow2"
|
|
33
|
+
},
|
|
26
34
|
{
|
|
27
35
|
"filename": "bird2-debian-2.0.12.qcow2",
|
|
28
36
|
"version": "2.0.12",
|
|
@@ -33,6 +41,12 @@
|
|
|
33
41
|
}
|
|
34
42
|
],
|
|
35
43
|
"versions": [
|
|
44
|
+
{
|
|
45
|
+
"name": "2.14",
|
|
46
|
+
"images": {
|
|
47
|
+
"hda_disk_image": "bird2-debian-2.14.qcow2"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
36
50
|
{
|
|
37
51
|
"name": "2.0.12",
|
|
38
52
|
"images": {
|
|
@@ -26,6 +26,13 @@
|
|
|
26
26
|
"kvm": "require"
|
|
27
27
|
},
|
|
28
28
|
"images": [
|
|
29
|
+
{
|
|
30
|
+
"filename": "asav9-18-2.qcow2",
|
|
31
|
+
"version": "9.18.2 CML",
|
|
32
|
+
"md5sum": "6f10fe106edfad9163625770a47a6b73",
|
|
33
|
+
"filesize": 340262912,
|
|
34
|
+
"download_url": "https://learningnetworkstore.cisco.com/cisco-modeling-labs-personal/cisco-modeling-labs-personal/CML-PERSONAL.html"
|
|
35
|
+
},
|
|
29
36
|
{
|
|
30
37
|
"filename": "asav9-16-2.qcow2",
|
|
31
38
|
"version": "9.16.2 CML",
|
|
@@ -119,6 +126,12 @@
|
|
|
119
126
|
}
|
|
120
127
|
],
|
|
121
128
|
"versions": [
|
|
129
|
+
{
|
|
130
|
+
"name": "9.18.2 CML",
|
|
131
|
+
"images": {
|
|
132
|
+
"hda_disk_image": "asav9-18-2.qcow2"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
122
135
|
{
|
|
123
136
|
"name": "9.16.2 CML",
|
|
124
137
|
"images": {
|
|
@@ -24,6 +24,20 @@
|
|
|
24
24
|
"kvm": "require"
|
|
25
25
|
},
|
|
26
26
|
"images": [
|
|
27
|
+
{
|
|
28
|
+
"filename": "c8000v-universalk9_8G_serial.17.09.04a.qcow2",
|
|
29
|
+
"version": "17.09.04a 8G",
|
|
30
|
+
"md5sum": "d5dcba52b522f41648538737af80cdf9",
|
|
31
|
+
"filesize": 1858142208,
|
|
32
|
+
"download_url": "https://software.cisco.com/download/home/286327102/type/282046477/release/Cupertino-17.9.4a"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"filename": "c8000v-universalk9_8G_serial.17.09.01a.qcow2",
|
|
36
|
+
"version": "17.09.01a 8G",
|
|
37
|
+
"md5sum": "a10ae2c4d71f4eb611bc4d83ad7709f0",
|
|
38
|
+
"filesize": 1856634880,
|
|
39
|
+
"download_url": "https://software.cisco.com/download/home/286327102/type/282046477/release/Cupertino-17.9.1a"
|
|
40
|
+
},
|
|
27
41
|
{
|
|
28
42
|
"filename": "c8000v-universalk9_8G_serial.17.06.05.qcow2",
|
|
29
43
|
"version": "17.06.05 8G",
|
|
@@ -54,6 +68,18 @@
|
|
|
54
68
|
}
|
|
55
69
|
],
|
|
56
70
|
"versions": [
|
|
71
|
+
{
|
|
72
|
+
"name": "17.09.04a 8G",
|
|
73
|
+
"images": {
|
|
74
|
+
"hda_disk_image": "c8000v-universalk9_8G_serial.17.09.04a.qcow2"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "17.09.01a 8G",
|
|
79
|
+
"images": {
|
|
80
|
+
"hda_disk_image": "c8000v-universalk9_8G_serial.17.09.01a.qcow2"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
57
83
|
{
|
|
58
84
|
"name": "17.06.05 8G",
|
|
59
85
|
"images": {
|
|
@@ -12,20 +12,27 @@
|
|
|
12
12
|
"status": "experimental",
|
|
13
13
|
"maintainer": "GNS3 Team",
|
|
14
14
|
"maintainer_email": "developers@gns3.net",
|
|
15
|
-
"usage": "There is no default configuration present. Virtual Switch and Interfaces may take several minutes to be usable after appliance boot.",
|
|
15
|
+
"usage": "There is no default configuration present. Virtual Switch and Interfaces may take several minutes to be usable after appliance boot.\n\nOnly has basic Layer 2 switching features. Will need to enable advance features and reboot to gain access to things like BGP, etc... \n\nconfigure terminal \nlicense boot level network-advantage addon dna-advantage \nend \nwrite memory \nreload",
|
|
16
16
|
"first_port_name": "GigabitEthernet0/0",
|
|
17
17
|
"port_name_format": "GigabitEthernet1/0/{port1}",
|
|
18
18
|
"qemu": {
|
|
19
19
|
"adapter_type": "virtio-net-pci",
|
|
20
20
|
"adapters": 9,
|
|
21
|
-
"ram":
|
|
22
|
-
"cpus":
|
|
21
|
+
"ram": 24576,
|
|
22
|
+
"cpus": 4,
|
|
23
23
|
"hda_disk_interface": "virtio",
|
|
24
24
|
"arch": "x86_64",
|
|
25
25
|
"console_type": "telnet",
|
|
26
26
|
"kvm": "require"
|
|
27
27
|
},
|
|
28
28
|
"images": [
|
|
29
|
+
{
|
|
30
|
+
"filename": "cat9kv-prd-17.12.01prd9.qcow2",
|
|
31
|
+
"version": "17.12(1)",
|
|
32
|
+
"md5sum": "e587e92186f42bdf69d7fa27f34425f7",
|
|
33
|
+
"filesize": 2739404800,
|
|
34
|
+
"download_url": "https://learningnetworkstore.cisco.com/myaccount"
|
|
35
|
+
},
|
|
29
36
|
{
|
|
30
37
|
"filename": "cat9kv-prd-17.10.01prd7.qcow2",
|
|
31
38
|
"version": "17.10(1)",
|
|
@@ -35,6 +42,12 @@
|
|
|
35
42
|
}
|
|
36
43
|
],
|
|
37
44
|
"versions": [
|
|
45
|
+
{
|
|
46
|
+
"name": "17.12(1)",
|
|
47
|
+
"images": {
|
|
48
|
+
"hda_disk_image": "cat9kv-prd-17.12.01prd9.qcow2"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
38
51
|
{
|
|
39
52
|
"name": "17.10(1)",
|
|
40
53
|
"images": {
|
|
@@ -24,6 +24,13 @@
|
|
|
24
24
|
"kvm": "require"
|
|
25
25
|
},
|
|
26
26
|
"images": [
|
|
27
|
+
{
|
|
28
|
+
"filename": "csr1000v-universalk9.17.03.06-serial.qcow2",
|
|
29
|
+
"version": "17.03.06",
|
|
30
|
+
"md5sum": "086ab9bef6e66de847af0da3910c60e8",
|
|
31
|
+
"filesize": 1422000128,
|
|
32
|
+
"download_url": "https://software.cisco.com/download/home/284364978/type/282046477/release/Gibraltar-16.12.3"
|
|
33
|
+
},
|
|
27
34
|
{
|
|
28
35
|
"filename": "csr1000v-universalk9.16.12.03-serial.qcow2",
|
|
29
36
|
"version": "16.12.3",
|
|
@@ -159,6 +166,12 @@
|
|
|
159
166
|
}
|
|
160
167
|
],
|
|
161
168
|
"versions": [
|
|
169
|
+
{
|
|
170
|
+
"name": "17.03.06",
|
|
171
|
+
"images": {
|
|
172
|
+
"hda_disk_image": "csr1000v-universalk9.17.03.06-serial.qcow2"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
162
175
|
{
|
|
163
176
|
"name": "16.12.3",
|
|
164
177
|
"images": {
|
|
@@ -32,6 +32,13 @@
|
|
|
32
32
|
"download_url": "https://sourceforge.net/projects/gns-3/files",
|
|
33
33
|
"direct_download_url": "https://sourceforge.net/projects/gns-3/files/Qemu%20Appliances/IOSv_startup_config.img/download"
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
"filename": "vios-adventerprisek9-m.spa.159-3.m8.qcow2",
|
|
37
|
+
"version": "15.9(3)M8",
|
|
38
|
+
"md5sum": "8d93a185c2fa778178a933f20b02150a",
|
|
39
|
+
"filesize": 57319424,
|
|
40
|
+
"download_url": "https://learningnetworkstore.cisco.com/myaccount"
|
|
41
|
+
},
|
|
35
42
|
{
|
|
36
43
|
"filename": "vios-adventerprisek9-m.spa.159-3.m6.qcow2",
|
|
37
44
|
"version": "15.9(3)M6",
|
|
@@ -97,6 +104,13 @@
|
|
|
97
104
|
}
|
|
98
105
|
],
|
|
99
106
|
"versions": [
|
|
107
|
+
{
|
|
108
|
+
"name": "15.9(3)M8",
|
|
109
|
+
"images": {
|
|
110
|
+
"hda_disk_image": "vios-adventerprisek9-m.spa.159-3.m8.qcow2",
|
|
111
|
+
"hdb_disk_image": "IOSv_startup_config.img"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
100
114
|
{
|
|
101
115
|
"name": "15.9(3)M6",
|
|
102
116
|
"images": {
|
|
@@ -26,6 +26,13 @@
|
|
|
26
26
|
"options": "-smp 4 -cpu host"
|
|
27
27
|
},
|
|
28
28
|
"images": [
|
|
29
|
+
{
|
|
30
|
+
"filename": "xrv9k-fullk9-x-7.7.1.qcow2",
|
|
31
|
+
"version": "7.7.1",
|
|
32
|
+
"md5sum": "682fff40d2ff373d8da3342906553b54",
|
|
33
|
+
"filesize": 1643905024,
|
|
34
|
+
"download_url": "https://software.cisco.com/download/home/286288939/type/280805694/release/7.1.1"
|
|
35
|
+
},
|
|
29
36
|
{
|
|
30
37
|
"filename": "xrv9k-fullk9-x-7.1.1.qcow2",
|
|
31
38
|
"version": "7.1.1",
|
|
@@ -105,6 +112,12 @@
|
|
|
105
112
|
}
|
|
106
113
|
],
|
|
107
114
|
"versions": [
|
|
115
|
+
{
|
|
116
|
+
"name": "7.7.1",
|
|
117
|
+
"images": {
|
|
118
|
+
"hda_disk_image": "xrv9k-fullk9-x-7.7.1.qcow2"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
108
121
|
{
|
|
109
122
|
"name": "7.1.1",
|
|
110
123
|
"images": {
|
|
@@ -18,6 +18,12 @@
|
|
|
18
18
|
"startup_config": "iou_l2_base_startup-config.txt"
|
|
19
19
|
},
|
|
20
20
|
"images": [
|
|
21
|
+
{
|
|
22
|
+
"filename": "x86_64_crb_linux_l2-adventerprisek9-ms",
|
|
23
|
+
"version": "17.12.1",
|
|
24
|
+
"md5sum": "2b5055e4cef8fd257416d74a94adb626",
|
|
25
|
+
"filesize": 240355720
|
|
26
|
+
},
|
|
21
27
|
{
|
|
22
28
|
"filename": "i86bi-linux-l2-ipbasek9-15.1g.bin",
|
|
23
29
|
"version": "15.1g",
|
|
@@ -38,6 +44,12 @@
|
|
|
38
44
|
}
|
|
39
45
|
],
|
|
40
46
|
"versions": [
|
|
47
|
+
{
|
|
48
|
+
"name": "17.12.1",
|
|
49
|
+
"images": {
|
|
50
|
+
"image": "x86_64_crb_linux_l2-adventerprisek9-ms"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
41
53
|
{
|
|
42
54
|
"name": "15.1g",
|
|
43
55
|
"images": {
|
|
@@ -18,6 +18,12 @@
|
|
|
18
18
|
"startup_config": "iou_l3_base_startup-config.txt"
|
|
19
19
|
},
|
|
20
20
|
"images": [
|
|
21
|
+
{
|
|
22
|
+
"filename": "x86_64_crb_linux-adventerprisek9-ms",
|
|
23
|
+
"version": "17.12.1",
|
|
24
|
+
"md5sum": "4a2fce8de21d1831fbceffd155e41ae7",
|
|
25
|
+
"filesize": 288947184
|
|
26
|
+
},
|
|
21
27
|
{
|
|
22
28
|
"filename": "i86bi_LinuxL3-AdvEnterpriseK9-M2_157_3_May_2018.bin",
|
|
23
29
|
"version": "15.7(3)M2",
|
|
@@ -38,6 +44,12 @@
|
|
|
38
44
|
}
|
|
39
45
|
],
|
|
40
46
|
"versions": [
|
|
47
|
+
{
|
|
48
|
+
"name": "17.12.1",
|
|
49
|
+
"images": {
|
|
50
|
+
"image": "x86_64_crb_linux-adventerprisek9-ms"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
41
53
|
{
|
|
42
54
|
"name": "15.7(3)M2",
|
|
43
55
|
"images": {
|