gns3-server 3.0.0a6__py3-none-any.whl → 3.0.0b2__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.0a6.dist-info → gns3_server-3.0.0b2.dist-info}/METADATA +17 -18
- {gns3_server-3.0.0a6.dist-info → gns3_server-3.0.0b2.dist-info}/RECORD +68 -67
- {gns3_server-3.0.0a6.dist-info → gns3_server-3.0.0b2.dist-info}/WHEEL +1 -1
- gns3server/api/routes/compute/notifications.py +1 -5
- gns3server/api/routes/controller/acl.py +6 -2
- gns3server/api/routes/controller/controller.py +0 -5
- gns3server/api/routes/controller/projects.py +0 -4
- 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 +13 -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/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 +2 -2
- gns3server/compute/docker/docker_vm.py +12 -3
- gns3server/compute/dynamips/__init__.py +3 -0
- gns3server/compute/dynamips/nodes/router.py +1 -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/import_project.py +5 -2
- gns3server/controller/project.py +19 -5
- 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/docker_templates.py +1 -1
- gns3server/server.py +3 -4
- gns3server/services/authentication.py +5 -5
- gns3server/static/web-ui/3rdpartylicenses.txt +23 -0
- gns3server/static/web-ui/index.html +1 -1
- gns3server/static/web-ui/main.8e8e3d55e78d84fc.js +1 -0
- gns3server/static/web-ui/runtime.24fa95b7061d7056.js +1 -0
- gns3server/utils/asyncio/telnet_server.py +17 -4
- gns3server/version.py +1 -1
- gns3server/static/web-ui/main.5699f8c67ccc8359.js +0 -1
- gns3server/static/web-ui/runtime.53e0b4d68251ad21.js +0 -1
- {gns3_server-3.0.0a6.dist-info → gns3_server-3.0.0b2.dist-info}/LICENSE +0 -0
- {gns3_server-3.0.0a6.dist-info → gns3_server-3.0.0b2.dist-info}/entry_points.txt +0 -0
- {gns3_server-3.0.0a6.dist-info → gns3_server-3.0.0b2.dist-info}/top_level.txt +0 -0
|
@@ -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,13 @@
|
|
|
24
24
|
"kvm": "require"
|
|
25
25
|
},
|
|
26
26
|
"images": [
|
|
27
|
+
{
|
|
28
|
+
"filename": "c8000v-universalk9_8G_serial.17.09.01a.qcow2",
|
|
29
|
+
"version": "17.09.01a 8G",
|
|
30
|
+
"md5sum": "a10ae2c4d71f4eb611bc4d83ad7709f0",
|
|
31
|
+
"filesize": 1856634880,
|
|
32
|
+
"download_url": "https://software.cisco.com/download/home/286327102/type/282046477/release/Bengaluru-17.6.5"
|
|
33
|
+
},
|
|
27
34
|
{
|
|
28
35
|
"filename": "c8000v-universalk9_8G_serial.17.06.05.qcow2",
|
|
29
36
|
"version": "17.06.05 8G",
|
|
@@ -54,6 +61,12 @@
|
|
|
54
61
|
}
|
|
55
62
|
],
|
|
56
63
|
"versions": [
|
|
64
|
+
{
|
|
65
|
+
"name": "17.09.01a 8G",
|
|
66
|
+
"images": {
|
|
67
|
+
"hda_disk_image": "c8000v-universalk9_8G_serial.17.09.01a.qcow2"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
57
70
|
{
|
|
58
71
|
"name": "17.06.05 8G",
|
|
59
72
|
"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": {
|
|
@@ -26,6 +26,13 @@
|
|
|
26
26
|
"kvm": "require"
|
|
27
27
|
},
|
|
28
28
|
"images": [
|
|
29
|
+
{
|
|
30
|
+
"filename": "nexus9300v64.10.3.1.F.qcow2",
|
|
31
|
+
"version": "9300v 10.3.1.F",
|
|
32
|
+
"md5sum": "a6ffd2501a5791c11cee319943b912da",
|
|
33
|
+
"filesize": 2097086464,
|
|
34
|
+
"download_url": "https://software.cisco.com/download/home/286312239/type/282088129/release/10.1(1)"
|
|
35
|
+
},
|
|
29
36
|
{
|
|
30
37
|
"filename": "nexus9500v64.10.1.1.qcow2",
|
|
31
38
|
"version": "9500v 10.1.1",
|
|
@@ -40,6 +47,34 @@
|
|
|
40
47
|
"filesize": 1990983680,
|
|
41
48
|
"download_url": "https://software.cisco.com/download/home/286312239/type/282088129/release/10.1(1)"
|
|
42
49
|
},
|
|
50
|
+
{
|
|
51
|
+
"filename": "nexus9500v.9.3.13.qcow2",
|
|
52
|
+
"version": "9500v 9.3.13",
|
|
53
|
+
"md5sum": "bacf0f664ee34625c85a9f278b2466a2",
|
|
54
|
+
"filesize": 2248409088,
|
|
55
|
+
"download_url": "https://software.cisco.com/download/home/286312239/type/282088129/release/9.3(13)"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"filename": "nexus9300v.9.3.13.qcow2",
|
|
59
|
+
"version": "9300v 9.3.13",
|
|
60
|
+
"md5sum": "d8ce30cb762df02d77ec27786a2435ad",
|
|
61
|
+
"filesize": 2248343552,
|
|
62
|
+
"download_url": "https://software.cisco.com/download/home/286312239/type/282088129/release/9.3(13)"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"filename": "nexus9500v.9.3.12.qcow2",
|
|
66
|
+
"version": "9500v 9.3.12",
|
|
67
|
+
"md5sum": "452e5cb2a7a25feaa3ba0624a82ff9ca",
|
|
68
|
+
"filesize": 1997996032,
|
|
69
|
+
"download_url": "https://software.cisco.com/download/home/286312239/type/282088129/release/9.3(12)"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"filename": "nexus9300v.9.3.12.qcow2",
|
|
73
|
+
"version": "9300v 9.3.12",
|
|
74
|
+
"md5sum": "7b6b5dad1001e11d6ebb54662616e9f2",
|
|
75
|
+
"filesize": 1997930496,
|
|
76
|
+
"download_url": "https://software.cisco.com/download/home/286312239/type/282088129/release/9.3(12)"
|
|
77
|
+
},
|
|
43
78
|
{
|
|
44
79
|
"filename": "nexus9500v.9.3.9.qcow2",
|
|
45
80
|
"version": "9500v 9.3.9",
|
|
@@ -198,6 +233,13 @@
|
|
|
198
233
|
}
|
|
199
234
|
],
|
|
200
235
|
"versions": [
|
|
236
|
+
{
|
|
237
|
+
"name": "9300v 10.3.1.F",
|
|
238
|
+
"images": {
|
|
239
|
+
"bios_image": "OVMF-edk2-stable202305.fd",
|
|
240
|
+
"hda_disk_image": "nexus9300v64.10.3.1.F.qcow2"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
201
243
|
{
|
|
202
244
|
"name": "9500v 10.1.1",
|
|
203
245
|
"images": {
|
|
@@ -212,6 +254,34 @@
|
|
|
212
254
|
"hda_disk_image": "nexus9300v.10.1.1.qcow2"
|
|
213
255
|
}
|
|
214
256
|
},
|
|
257
|
+
{
|
|
258
|
+
"name": "9500v 9.3.13",
|
|
259
|
+
"images": {
|
|
260
|
+
"bios_image": "OVMF-edk2-stable202305.fd",
|
|
261
|
+
"hda_disk_image": "nexus9500v.9.3.13.qcow2"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "9300v 9.3.13",
|
|
266
|
+
"images": {
|
|
267
|
+
"bios_image": "OVMF-edk2-stable202305.fd",
|
|
268
|
+
"hda_disk_image": "nexus9300v.9.3.13.qcow2"
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"name": "9500v 9.3.12",
|
|
273
|
+
"images": {
|
|
274
|
+
"bios_image": "OVMF-edk2-stable202305.fd",
|
|
275
|
+
"hda_disk_image": "nexus9500v.9.3.12.qcow2"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"name": "9300v 9.3.12",
|
|
280
|
+
"images": {
|
|
281
|
+
"bios_image": "OVMF-edk2-stable202305.fd",
|
|
282
|
+
"hda_disk_image": "nexus9300v.9.3.12.qcow2"
|
|
283
|
+
}
|
|
284
|
+
},
|
|
215
285
|
{
|
|
216
286
|
"name": "9500v 9.3.9",
|
|
217
287
|
"images": {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Clavister NetShield (cOS Stream) Virtual Appliance offers the same functionality as the Clavister NetShield physical NGappliances FWs in a virtual environment.",
|
|
6
6
|
"vendor_name": "Clavister",
|
|
7
7
|
"vendor_url": "https://www.clavister.com/",
|
|
8
|
-
"documentation_url": "https://
|
|
8
|
+
"documentation_url": "https://docs.clavister.com",
|
|
9
9
|
"product_name": "NetShield",
|
|
10
10
|
"product_url": "https://www.clavister.com/products/netshield/",
|
|
11
11
|
"registry_version": 4,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"availability": "free-to-try",
|
|
14
14
|
"maintainer": "Mattias Nordlund",
|
|
15
15
|
"maintainer_email": "mattias.nordlund@clavister.com",
|
|
16
|
-
"usage": "No configuration by default,
|
|
16
|
+
"usage": "No configuration by default, use console to set IPs and activate configuration.",
|
|
17
17
|
"port_name_format": "if{0}",
|
|
18
18
|
"qemu": {
|
|
19
19
|
"adapter_type": "virtio-net-pci",
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
"options": "-cpu Nehalem"
|
|
28
28
|
},
|
|
29
29
|
"images": [
|
|
30
|
+
{
|
|
31
|
+
"filename": "clavister-cos-stream-4.00.00.34-virtual-x64-generic.qcow2",
|
|
32
|
+
"version": "cOS Stream 4.00.00",
|
|
33
|
+
"md5sum": "02b480621d9bf1a9a4e116cd47bef006",
|
|
34
|
+
"filesize": 132841472,
|
|
35
|
+
"download_url": "https://my.clavister.com/download/86399b21-44c7-ee11-a434-005056bdfeb0"
|
|
36
|
+
},
|
|
30
37
|
{
|
|
31
38
|
"filename": "clavister-cos-stream-3.80.09.01-virtual-x64-generic.qcow2",
|
|
32
39
|
"version": "cOS Stream 3.80.09",
|
|
@@ -36,6 +43,12 @@
|
|
|
36
43
|
}
|
|
37
44
|
],
|
|
38
45
|
"versions": [
|
|
46
|
+
{
|
|
47
|
+
"name": "cOS Stream 4.00.00",
|
|
48
|
+
"images": {
|
|
49
|
+
"hda_disk_image": "clavister-cos-stream-4.00.00.34-virtual-x64-generic.qcow2"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
39
52
|
{
|
|
40
53
|
"name": "cOS Stream 3.80.09",
|
|
41
54
|
"images": {
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Clavister NetWall (cOS Core) Virtual Appliance offers the same functionality as the Clavister NetWall physical NGFWs in a virtual environment.",
|
|
6
6
|
"vendor_name": "Clavister",
|
|
7
7
|
"vendor_url": "https://www.clavister.com/",
|
|
8
|
-
"documentation_url": "https://
|
|
8
|
+
"documentation_url": "https://docs.clavister.com",
|
|
9
9
|
"product_name": "NetWall",
|
|
10
10
|
"product_url": "https://www.clavister.com/products/ngfw/",
|
|
11
11
|
"registry_version": 4,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"availability": "free-to-try",
|
|
14
14
|
"maintainer": "Mattias Nordlund",
|
|
15
15
|
"maintainer_email": "mattias.nordlund@clavister.com",
|
|
16
|
-
"usage": "DHCP enabled on all interfaces by default, WebUI/SSH access enabled on the local network connected to If1.",
|
|
16
|
+
"usage": "DHCP & cloud-init enabled on all interfaces by default, WebUI/SSH access enabled on the local network connected to If1.",
|
|
17
17
|
"port_name_format": "If{0}",
|
|
18
18
|
"qemu": {
|
|
19
19
|
"adapter_type": "e1000",
|
|
@@ -26,6 +26,13 @@
|
|
|
26
26
|
"kvm": "allow"
|
|
27
27
|
},
|
|
28
28
|
"images": [
|
|
29
|
+
{
|
|
30
|
+
"filename": "clavister-cos-core-14.00.13.08-kvm-en.img",
|
|
31
|
+
"version": "cOS Core 14.00.13 (x86)",
|
|
32
|
+
"md5sum": "d36797077378accb2b8fc72d09d07ee1",
|
|
33
|
+
"filesize": 536870912,
|
|
34
|
+
"download_url": "https://my.clavister.com/download/f3f494a3-9ee7-ee11-a434-005056bdfeb0"
|
|
35
|
+
},
|
|
29
36
|
{
|
|
30
37
|
"filename": "clavister-cos-core-14.00.01.13-kvm-en.img",
|
|
31
38
|
"version": "cOS Core 14.00.01 (x86)",
|
|
@@ -42,6 +49,12 @@
|
|
|
42
49
|
}
|
|
43
50
|
],
|
|
44
51
|
"versions": [
|
|
52
|
+
{
|
|
53
|
+
"name": "cOS Core 14.00.13 (x86)",
|
|
54
|
+
"images": {
|
|
55
|
+
"hda_disk_image": "clavister-cos-core-14.00.13.08-kvm-en.img"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
45
58
|
{
|
|
46
59
|
"name": "cOS Core 14.00.01 (x86)",
|
|
47
60
|
"images": {
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
},
|
|
25
25
|
"images": [
|
|
26
26
|
{
|
|
27
|
-
"filename": "debian-12.
|
|
28
|
-
"version": "12.
|
|
29
|
-
"md5sum": "
|
|
30
|
-
"filesize":
|
|
27
|
+
"filename": "debian-12.4.qcow2",
|
|
28
|
+
"version": "12.4",
|
|
29
|
+
"md5sum": "adcf7fdc25e10b3d2d9e2ef91168bffd",
|
|
30
|
+
"filesize": 286179840,
|
|
31
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.
|
|
32
|
+
"direct_download_url": "https://downloads.sourceforge.net/project/gns-3/Qemu%20Appliances/debian-12.4.qcow2"
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
"filename": "debian-11.8.qcow2",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
],
|
|
43
43
|
"versions": [
|
|
44
44
|
{
|
|
45
|
-
"name": "12.
|
|
45
|
+
"name": "12.4",
|
|
46
46
|
"images": {
|
|
47
|
-
"hda_disk_image": "debian-12.
|
|
47
|
+
"hda_disk_image": "debian-12.4.qcow2"
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
{
|
|
@@ -11,26 +11,36 @@
|
|
|
11
11
|
"status": "experimental",
|
|
12
12
|
"maintainer": "GNS3 Team",
|
|
13
13
|
"maintainer_email": "developers@gns3.net",
|
|
14
|
-
"usage": "Make sure the Boot priority of the configuration template is HDD or CD.\n\
|
|
14
|
+
"usage": "Make sure the Boot priority of the configuration template is HDD or CD.\n\nFor FTOS 9.8, switch to vnc console, start the device, abort the BMP process and format the flash after first boot by entering these commands:\nen\nformat flash:\n\nSometimes the flash device is not available after boot.",
|
|
15
15
|
"first_port_name": "Management0/0",
|
|
16
16
|
"port_name_format": "fortyGigE0/{0}",
|
|
17
17
|
"qemu": {
|
|
18
18
|
"adapter_type": "e1000",
|
|
19
19
|
"adapters": 6,
|
|
20
|
-
"ram":
|
|
20
|
+
"ram": 1024,
|
|
21
21
|
"hda_disk_interface": "ide",
|
|
22
22
|
"arch": "i386",
|
|
23
|
-
"console_type": "
|
|
23
|
+
"console_type": "telnet",
|
|
24
24
|
"boot_priority": "cd",
|
|
25
25
|
"kvm": "require"
|
|
26
26
|
},
|
|
27
27
|
"images": [
|
|
28
|
+
{
|
|
29
|
+
"filename": "FTOS-SI-9.13.0.0.iso",
|
|
30
|
+
"version": "9.13.0",
|
|
31
|
+
"md5sum": "8418049e451c76e7b85e36eca0a0a730",
|
|
32
|
+
"filesize": 131278848,
|
|
33
|
+
"download_url": "https://www.dell.com/support/kbdoc/en-us/000184062/ftos-for-s-series-os-emulator-current-release-evaluation-version",
|
|
34
|
+
"direct_download_url": "https://downloads.dell.com/translatedpdf/force10/os9/FTOS-SI-9.13.0.0.zip",
|
|
35
|
+
"compression": "zip"
|
|
36
|
+
},
|
|
28
37
|
{
|
|
29
38
|
"filename": "FTOS-SI-9.8.0.0.iso",
|
|
30
39
|
"version": "9.8.0",
|
|
31
40
|
"md5sum": "b9b50eda0a73407dc381792ff7975e24",
|
|
32
41
|
"filesize": 108115968,
|
|
33
|
-
"download_url": "https://www.
|
|
42
|
+
"download_url": "https://www.dell.com/support/kbdoc/en-us/000184062/ftos-for-s-series-os-emulator-current-release-evaluation-version",
|
|
43
|
+
"direct_download_url": "https://downloads.dell.com/translatedpdf/force10/os9/FTOS-SI-9.8.0.0.zip",
|
|
34
44
|
"compression": "zip"
|
|
35
45
|
},
|
|
36
46
|
{
|
|
@@ -43,6 +53,13 @@
|
|
|
43
53
|
}
|
|
44
54
|
],
|
|
45
55
|
"versions": [
|
|
56
|
+
{
|
|
57
|
+
"name": "9.13.0",
|
|
58
|
+
"images": {
|
|
59
|
+
"hda_disk_image": "empty30G.qcow2",
|
|
60
|
+
"cdrom_image": "FTOS-SI-9.13.0.0.iso"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
46
63
|
{
|
|
47
64
|
"name": "9.8.0",
|
|
48
65
|
"images": {
|