mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-23 14:42:27 +00:00
Merge branch 'master' of https://github.com/GNS3/gns3-registry
This commit is contained in:
commit
bedc92dd21
16
.github/workflows/add-new-issues-to-project.yml
vendored
Normal file
16
.github/workflows/add-new-issues-to-project.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
name: Add new issues to GNS3 project
|
||||
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- opened
|
||||
|
||||
jobs:
|
||||
add-to-project:
|
||||
name: Add issue to project
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/add-to-project@v0.4.0
|
||||
with:
|
||||
project-url: https://github.com/orgs/GNS3/projects/3
|
||||
github-token: ${{ secrets.ADD_NEW_ISSUES_TO_PROJECT }}
|
92
README.md
Normal file
92
README.md
Normal file
@ -0,0 +1,92 @@
|
||||
GNS3-registry
|
||||
=============
|
||||
|
||||
[![image](https://travis-ci.org/GNS3/gns3-registry.svg)](https://travis-ci.org/GNS3/gns3-registry)
|
||||
|
||||
This is the GNS3 registry where user can share appliances and symbols.
|
||||
|
||||
Policy for new appliances
|
||||
-------------------------
|
||||
|
||||
We welcome pull requests for new appliances.
|
||||
|
||||
Regarding images / disks referenced in new appliance files, we accept
|
||||
links that point to well-known vendor websites or other trusted source
|
||||
websites.
|
||||
|
||||
For new contribution, we accept links depending on multiple criteria:
|
||||
the kind of appliance, who submits it and especially if scripts to build
|
||||
the images(s) are provided (packer scripts are recommended for Qemu
|
||||
appliances). Then we will build on our side, verify and upload the
|
||||
image(s) on the GNS3 Sourceforge account.
|
||||
|
||||
For Docker appliances, please provide a Dockerfile.
|
||||
We will then build and push the image on Docker hub.
|
||||
|
||||
Adding a new appliance
|
||||
-------------------
|
||||
|
||||
There are two ways to create a new appliance:
|
||||
|
||||
* Copy and paste a JSON from the `appliances` directory
|
||||
* Run `new_appliance.py`
|
||||
|
||||
After that you can send us a pull request on Github
|
||||
|
||||
In schemas/appliance.json you have a JSON with a schema for controlling
|
||||
the file and can be use as documentation for each field.
|
||||
|
||||
### Versioning
|
||||
|
||||
GNS3 checks the schema version, if the schema of an appliance is not supported it shows the error "Please update GNS3 in order to install this appliance".
|
||||
|
||||
| Schema | min. GNS3 version | Additions |
|
||||
| :-: | :-----: | --------- |
|
||||
| 2 | 1.4.0 | |
|
||||
| 3 | 1.5.0 | docker |
|
||||
| 4 | 2.0.0 | availability<br>qemu/cpus<br>qemu/hd?_disk_interface: sata<br>versions/images/bios_image |
|
||||
| 5 | 2.1.0 | qemu/console_type: spice |
|
||||
| 6 | 2.2.0 | qemu/custom_adapters<br>qemu/console_type: spice+agent<br>all/console_type: none|
|
||||
| 7 | 2.2.36 | qemu/tpm |
|
||||
|
||||
Adding a new symbol
|
||||
-------------------
|
||||
|
||||
Look for examples in the `symbols` directory.
|
||||
|
||||
Docker container
|
||||
----------------
|
||||
|
||||
This repository also contains the source of Docker container published by
|
||||
the GNS3 team and that can be used as an appliance in GNS3.
|
||||
|
||||
Tools
|
||||
-----
|
||||
|
||||
All tools require python3 and dependencies can be installed using pip:
|
||||
|
||||
``` {.bash}
|
||||
python3 -m pip install -r requirements.txt
|
||||
```
|
||||
|
||||
### Check appliance files
|
||||
|
||||
``` {.bash}
|
||||
python3 check.py
|
||||
python3 check_urls.py
|
||||
```
|
||||
|
||||
### Create a new appliance
|
||||
|
||||
``` {.bash}
|
||||
python3 new_appliance.py
|
||||
```
|
||||
|
||||
### Prettify appliances JSON
|
||||
|
||||
This will indent the JSON of all appliance and sort the key in same
|
||||
order as the JSON schema.
|
||||
|
||||
``` {.bash}
|
||||
python3 prettify_appliances.py
|
||||
```
|
85
README.rst
85
README.rst
@ -1,85 +0,0 @@
|
||||
GNS3-registry
|
||||
================
|
||||
|
||||
.. image:: https://travis-ci.org/GNS3/gns3-registry.svg
|
||||
:target: https://travis-ci.org/GNS3/gns3-registry
|
||||
|
||||
This is the GNS3 registry where user can share
|
||||
appliances configurations and symbols.
|
||||
|
||||
Policy for new appliances
|
||||
#########################
|
||||
|
||||
We welcome pull requests for new appliances.
|
||||
|
||||
Regarding images / disks referenced in new appliance files, we accept links
|
||||
that point to well-known vendor websites or other trusted source websites.
|
||||
|
||||
For new contribution, we accept links depending on multiple criteria: the kind of appliance,
|
||||
who submits it and especially if scripts to build the images(s) are provided (packer scripts are
|
||||
recommended for Qemu appliances). Then we will build on our side, verify and upload the image(s)
|
||||
on the GNS3 Sourceforge account.
|
||||
|
||||
For Docker appliances, please provide a Dockerfile.
|
||||
|
||||
Add a new symbol
|
||||
################
|
||||
Look for examples in the symbols directory.
|
||||
|
||||
|
||||
Add a new appliance
|
||||
###################
|
||||
|
||||
Two way to create a new appliance:
|
||||
- Copy paste a JSON from the appliances directory
|
||||
- Use the new_appliance.py
|
||||
|
||||
After that you can send us a pull request on Github.
|
||||
|
||||
|
||||
In schemas/appliance.json you have a JSON with a schema for controlling the file
|
||||
and can be use as documentation for each fields.
|
||||
|
||||
Docker container
|
||||
################
|
||||
|
||||
This repository contain also the source of Docker container publish by the GNS3
|
||||
team and that can be used as appliance in GNS3.
|
||||
|
||||
Tools
|
||||
#######
|
||||
|
||||
All tools require python3 and the installation of dependencies via:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
pip3 install -r requirements.txt
|
||||
|
||||
|
||||
Check appliance files
|
||||
-----------------------
|
||||
|
||||
.. code:: bash
|
||||
|
||||
python3 check.py
|
||||
python3 check_urls.py
|
||||
|
||||
If `imagemagick` is installed, it will be used to check the symbol properties.
|
||||
Otherwise an (experimental) internal function will do that.
|
||||
|
||||
Create a new appliance
|
||||
-----------------------
|
||||
|
||||
.. code:: bash
|
||||
|
||||
python3 new_appliance.py
|
||||
|
||||
|
||||
Prettify appliances JSON
|
||||
-------------------------
|
||||
|
||||
This will indent the JSON of all appliance and sort the key in same order as
|
||||
the JSON schema.
|
||||
|
||||
.. code:: bash
|
||||
python3 prettify_appliances.py
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "https://www.kali.org/",
|
||||
"documentation_url": "http://www.ipcop.org/docs.html",
|
||||
"product_name": "IP Cop",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "Brent Stewart",
|
||||
"maintainer_email": "brent@stewart.tc",
|
||||
|
@ -7,8 +7,8 @@
|
||||
"vendor_url": "https://www.a10networks.com/",
|
||||
"documentation_url": "https://www.a10networks.com/support",
|
||||
"product_name": "A10 vThunder",
|
||||
"product_url": "https://www.a10networks.com/products/thunder-series-appliances/vthunder-virtualized-application_delivery_controller/",
|
||||
"registry_version": 3,
|
||||
"product_url": "https://www.a10networks.com/products/vthunder-trial/",
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Ubuntu",
|
||||
"vendor_url": "https://www.ubuntu.com/",
|
||||
"product_name": "AAA",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "Andras Dosztal",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://www.alcatel-lucent.com/support",
|
||||
"product_name": "Alcatel 7750",
|
||||
"product_url": "https://www.alcatel-lucent.com/products/7750-service-router",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -25,12 +25,12 @@
|
||||
},
|
||||
"images": [
|
||||
{
|
||||
"filename": "AlmaLinux-8-GenericCloud-8.5-20211119.x86_64.qcow2",
|
||||
"version": "8.5",
|
||||
"md5sum": "a64ece809ae06180ac59cfa622d98af0",
|
||||
"filesize": 561774592,
|
||||
"filename": "AlmaLinux-8-GenericCloud-8.7-20221111.x86_64.qcow2",
|
||||
"version": "8.7",
|
||||
"md5sum": "b2b8c7fd3b6869362f3f8ed47549c804",
|
||||
"filesize": 566231040,
|
||||
"download_url": "https://repo.almalinux.org/almalinux/8/cloud/x86_64/images/",
|
||||
"direct_download_url": "https://repo.almalinux.org/almalinux/8/cloud/x86_64/images/AlmaLinux-8-GenericCloud-8.5-20211119.x86_64.qcow2"
|
||||
"direct_download_url": "https://repo.almalinux.org/almalinux/8/cloud/x86_64/images/AlmaLinux-8-GenericCloud-8.7-20221111.x86_64.qcow2"
|
||||
},
|
||||
{
|
||||
"filename": "almalinux-cloud-init-data.iso",
|
||||
@ -42,9 +42,9 @@
|
||||
],
|
||||
"versions": [
|
||||
{
|
||||
"name": "8.5",
|
||||
"name": "8.7",
|
||||
"images": {
|
||||
"hda_disk_image": "AlmaLinux-8-GenericCloud-8.5-20211119.x86_64.qcow2",
|
||||
"hda_disk_image": "AlmaLinux-8-GenericCloud-8.7-20221111.x86_64.qcow2",
|
||||
"cdrom_image": "almalinux-cloud-init-data.iso"
|
||||
}
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
"availability": "free",
|
||||
"maintainer": "Adnan RIHAN",
|
||||
"maintainer_email": "adnan@rihan.fr",
|
||||
"usage": "Autologin is enabled as \"root\" with no password.\n\nThe network interfaces aren't configured, you can do either of the following:\n- Use alpine's DHCP client: `udhcpc`\n- Configure them manually (ip address add …, ip route add …)\n- Modify interfaces file in /etc/network/interfaces\n- Use alpine's wizard: `setup-interfaces`",
|
||||
"usage": "Autologin is enabled as \"root\" with no password.\n\nThe network interfaces aren't configured, you can do either of the following:\n- Use alpine's DHCP client: `udhcpc`\n- Configure them manually (ip address add \u2026, ip route add \u2026)\n- Modify interfaces file in /etc/network/interfaces\n- Use alpine's wizard: `setup-interfaces`",
|
||||
"symbol": "alpine-virt-qemu.svg",
|
||||
"port_name_format": "eth{0}",
|
||||
"qemu": {
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://alpinelinux.org",
|
||||
"documentation_url": "http://wiki.alpinelinux.org",
|
||||
"product_name": "Alpine Linux",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Arista",
|
||||
"vendor_url": "http://www.arista.com/",
|
||||
"product_name": "cEOS",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://www.arista.com/assets/data/docs/Manuals/EOS-4.17.2F-Manual.pdf",
|
||||
"product_name": "vEOS",
|
||||
"product_url": "https://eos.arista.com/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -36,7 +36,7 @@
|
||||
"md5sum": "40f9ddf1e12640376af443b5d982f2f6",
|
||||
"filesize": 356162560,
|
||||
"download_url": "https://asp.arubanetworks.com/"
|
||||
},
|
||||
},
|
||||
{
|
||||
"filename": "arubaoscx-disk-image-genericx86-p4-20220616193419.vmdk",
|
||||
"version": "10.10.0002",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://wiki.asterisk.org/wiki/display/AST/Installing+AsteriskNOW",
|
||||
"product_name": "AsteriskNOW / FreePBX",
|
||||
"product_url": "http://www.asterisk.org/downloads/asterisknow",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.bigswitch.com/support",
|
||||
"product_name": "Big Cloud Fabric",
|
||||
"product_url": "http://www.bigswitch.com/sdn-products/big-cloud-fabrictm",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://bird.network.cz/",
|
||||
"documentation_url": "http://bird.network.cz/?get_doc&f=bird.html",
|
||||
"product_name": "BIRD internet routing daemon",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Brocade",
|
||||
"vendor_url": "https://www.brocade.com",
|
||||
"product_name": "Virtual ADX",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.brocade.com/en/products-services/software-networking/network-functions-virtualization/vrouter.html",
|
||||
"product_name": "vRouter",
|
||||
"product_url": "http://www.brocade.com/en/products-services/software-networking/network-functions-virtualization/vrouter.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.brocade.com/en/products-services/software-networking/application-delivery-controllers/virtual-traffic-manager.html",
|
||||
"product_name": "vTM DE",
|
||||
"product_url": "http://www.brocade.com/en/products-services/software-networking/application-delivery-controllers/virtual-traffic-manager.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Olivier Cochard-Labbe",
|
||||
"vendor_url": "https://bsdrp.net/",
|
||||
"product_name": "BSDRP",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://wiki.centos.org/Documentation",
|
||||
"product_name": "Centos Cloud",
|
||||
"product_url": "https://wiki.centos.org/Cloud",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Chromium",
|
||||
"vendor_url": "https://www.chromium.org/",
|
||||
"product_name": "Chromium",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/index.html",
|
||||
"product_name": "1700",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/index.html",
|
||||
"product_name": "2600",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/index.html",
|
||||
"product_name": "2691",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/index.html",
|
||||
"product_name": "3620",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/index.html",
|
||||
"product_name": "3640",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/index.html",
|
||||
"product_name": "3660",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/index.html",
|
||||
"product_name": "3725",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/routers/3745-multiservice-access-router/model.html",
|
||||
"product_name": "3745",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/products/routers/7200-series-routers/index.html",
|
||||
"product_name": "7200",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com/",
|
||||
"product_name": "ASA",
|
||||
"product_url": "http://www.cisco.com/c/en/us/products/security/adaptive-security-appliance-asa-software/index.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "broken",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/security/virtual-adaptive-security-appliance-firewall/products-installation-guides-list.html",
|
||||
"product_name": "ASAv",
|
||||
"product_url": "http://www.cisco.com/c/en/us/products/security/virtual-adaptive-security-appliance-firewall/index.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
@ -26,7 +26,7 @@
|
||||
"kvm": "require"
|
||||
},
|
||||
"images": [
|
||||
{
|
||||
{
|
||||
"filename": "asav9-16-2.qcow2",
|
||||
"version": "9.16.2 CML",
|
||||
"md5sum": "1f8db97063a7f738fddc81ac880a906c",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://www.cisco.com/c/en/us/td/docs/routers/C8000V/Configuration/c8000v-installation-configuration-guide.html",
|
||||
"product_name": "c8000v",
|
||||
"product_url": "https://www.cisco.com/c/en/us/support/routers/catalyst-8000v-edge-software/series.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/routers/cloud-services-router-1000v-series/products-installation-and-configuration-guides-list.html",
|
||||
"product_name": "CSR1000v",
|
||||
"product_url": "http://www.cisco.com/c/en/us/support/routers/cloud-services-router-1000v-series/tsd-products-support-series-home.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/cloud-systems-management/data-center-network-manager-10/model.html",
|
||||
"product_name": "DCNM",
|
||||
"product_url": "http://www.cisco.com/c/en/us/products/cloud-systems-management/prime-data-center-network-manager/index.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com/",
|
||||
"product_name": "IOSv",
|
||||
"product_url": "http://virl.cisco.com/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com/",
|
||||
"product_name": "IOSvL2",
|
||||
"product_url": "http://virl.cisco.com/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/td/docs/ios_xr_sw/ios_xrv/release/notes/xrv-rn.html",
|
||||
"product_name": "IOS XRv",
|
||||
"product_url": "http://virl.cisco.com/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/td/docs/ios_xr_sw/ios_xrv/release/notes/xrv-rn.html",
|
||||
"product_name": "IOS XRv 9000",
|
||||
"product_url": "http://virl.cisco.com/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Cisco",
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"product_name": "Cisco IOU L2",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Cisco",
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"product_name": "Cisco IOU L3",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.cisco.com/",
|
||||
"product_name": "NX-OSv",
|
||||
"product_url": "http://virl.cisco.com/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -184,7 +184,7 @@
|
||||
"hda_disk_image": "nexus9500v64.10.1.1.qcow2"
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "9300v 9.3.8",
|
||||
"images": {
|
||||
"bios_image": "OVMF-20160813.fd",
|
||||
|
19
appliances/cisco-pyats.gns3a
Normal file
19
appliances/cisco-pyats.gns3a
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"appliance_id": "d9ce131e-ecdc-49d2-be7d-d883d3919a06",
|
||||
"name": "Cisco PyATS",
|
||||
"category": "guest",
|
||||
"description": "pyATS is an end-to-end DevOps automation ecosystem. Agnostic by design, pyATS enable network engineers to automate their day-to-day DevOps activities, perform stateful validation of their device operational status, build a safety-net of scalable, data-driven and reusable tests around their network, and visualize everything in a modern, easy to use dashboard.",
|
||||
"vendor_name": "Cisco",
|
||||
"vendor_url": "https://cisco.com",
|
||||
"product_name": "PyATS",
|
||||
"product_url": "https://developer.cisco.com/pyats/",
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "Xander Petty",
|
||||
"maintainer_email": "Xander.Petty@protonmail.com",
|
||||
"docker": {
|
||||
"adapters": 1,
|
||||
"image": "gns3/pyats:latest",
|
||||
"console_type": "telnet"
|
||||
}
|
||||
}
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/products/wireless/wireless-lan-controller/index.html",
|
||||
"product_name": "Virtual Wireless LAN Controller",
|
||||
"product_url": "http://www.cisco.com/c/en/us/support/wireless/virtual-wireless-controller/tsd-products-support-series-home.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/security/web-security-appliance/tsd-products-support-series-home.html",
|
||||
"product_name": "Web Security Virtual Appliance",
|
||||
"product_url": "http://www.cisco.com/c/en/us/products/security/web-security-appliance/index.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://www.citrix.com/products/netscaler-adc/support.html",
|
||||
"product_name": "NetScaler VPX",
|
||||
"product_url": "https://www.citrix.com/products/netscaler-adc/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"appliance_id": "2d5634dc-ad39-46cf-a2fd-17b291abab91",
|
||||
"name": "Citrix SD-WAN",
|
||||
"category": "router",
|
||||
"description": "A software-defined wide area network (SD-WAN) is a virtual WAN architecture, in which any blend of network transport types — not only multiprotocol label switching (MPLS) but also broadband internet, cellular, and satellite — can be virtualized and bonded then centrally managed in software, to securely connect users to applications and desktops in accordance with policy. Essentially, SD-WAN is software-defined networking (SDN) for the WAN.",
|
||||
"description": "A software-defined wide area network (SD-WAN) is a virtual WAN architecture, in which any blend of network transport types \u2014 not only multiprotocol label switching (MPLS) but also broadband internet, cellular, and satellite \u2014 can be virtualized and bonded then centrally managed in software, to securely connect users to applications and desktops in accordance with policy. Essentially, SD-WAN is software-defined networking (SDN) for the WAN.",
|
||||
"vendor_name": "Citrix",
|
||||
"vendor_url": "http://www.citrix.com/",
|
||||
"documentation_url": "https://docs.citrix.com/en-us/citrix-sd-wan",
|
||||
|
@ -18,7 +18,7 @@
|
||||
"adapter_type": "virtio-net-pci",
|
||||
"adapters": 4,
|
||||
"ram": 8192,
|
||||
"cpus": 4,
|
||||
"cpus": 4,
|
||||
"hda_disk_interface": "ide",
|
||||
"arch": "x86_64",
|
||||
"console_type": "telnet",
|
||||
|
@ -18,7 +18,7 @@
|
||||
"qemu": {
|
||||
"adapter_type": "virtio-net-pci",
|
||||
"adapters": 4,
|
||||
"ram": 1024,
|
||||
"ram": 1024,
|
||||
"hda_disk_interface": "virtio",
|
||||
"arch": "x86_64",
|
||||
"console_type": "telnet",
|
||||
@ -37,10 +37,10 @@
|
||||
],
|
||||
"versions": [
|
||||
{
|
||||
"name": "cOS Stream 3.80.09",
|
||||
"images": {
|
||||
"hda_disk_image": "clavister-cos-stream-3.80.09.01-virtual-x64-generic.qcow2"
|
||||
},
|
||||
"name": "cOS Stream 3.80.09"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -43,16 +43,16 @@
|
||||
],
|
||||
"versions": [
|
||||
{
|
||||
"name": "cOS Core 14.00.01 (x86)",
|
||||
"images": {
|
||||
"hda_disk_image": "clavister-cos-core-14.00.01.13-kvm-en.img"
|
||||
},
|
||||
"name": "cOS Core 14.00.01 (x86)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "cOS Core 14.00.00 (x86)",
|
||||
"images": {
|
||||
"hda_disk_image": "clavister-cos-core-14.00.00.12-kvm-en.img"
|
||||
},
|
||||
"name": "cOS Core 14.00.00 (x86)"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://www.clearos.com/resources/documentation/clearos-7-documentation-overview",
|
||||
"product_name": "ClearOS CE",
|
||||
"product_url": "https://www.clearos.com/clearfoundation/software/clearos-7-community",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://cloudrouter.atlassian.net/wiki/display/CPD/CloudRouter+Project+Information",
|
||||
"product_name": "CloudRouter",
|
||||
"product_url": "https://cloudrouter.org/about/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "https://coreos.com/",
|
||||
"documentation_url": "https://coreos.com/docs/",
|
||||
"product_name": "CoreOS",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.cumulusnetworks.com/",
|
||||
"product_name": "Cumulus VX",
|
||||
"product_url": "https://cumulusnetworks.com/cumulus-vx/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Debian",
|
||||
"vendor_url": "https://www.debian.org",
|
||||
"product_name": "Debian",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.deftlinux.net/",
|
||||
"documentation_url": "http://www.deftlinux.net/deft-manual/",
|
||||
"product_name": "DEFT Linux",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.dell.com/",
|
||||
"product_name": "Dell OS9",
|
||||
"product_url": "http://www.dell.com/us/business/p/open-platform-software/pd",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Ubuntu",
|
||||
"vendor_url": "https://www.ubuntu.com/",
|
||||
"product_name": "DNS",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "Andras Dosztal",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -18,9 +18,9 @@
|
||||
"adapter_type": "e1000",
|
||||
"adapters": 1,
|
||||
"ram": 1024,
|
||||
"hda_disk_interface": "sata",
|
||||
"arch": "x86_64",
|
||||
"console_type": "vnc",
|
||||
"hda_disk_interface": "sata",
|
||||
"boot_priority": "d",
|
||||
"kvm": "allow"
|
||||
},
|
||||
@ -33,7 +33,7 @@
|
||||
"download_url": "https://sourceforge.net/projects/gns-3/files/Empty%20Qemu%20disk/",
|
||||
"direct_download_url": "https://sourceforge.net/projects/gns-3/files/Empty%20Qemu%20disk/empty8G.qcow2/download"
|
||||
},
|
||||
{
|
||||
{
|
||||
"filename": "empty30G.qcow2",
|
||||
"version": "30G",
|
||||
"md5sum": "3411a599e822f2ac6be560a26405821a",
|
||||
@ -41,7 +41,7 @@
|
||||
"download_url": "https://sourceforge.net/projects/gns-3/files/Empty%20Qemu%20disk/",
|
||||
"direct_download_url": "https://sourceforge.net/projects/gns-3/files/Empty%20Qemu%20disk/empty30G.qcow2/download"
|
||||
},
|
||||
{
|
||||
{
|
||||
"filename": "empty100G.qcow2",
|
||||
"version": "100G",
|
||||
"md5sum": "1e6409a4523ada212dea2ebc50e50a65",
|
||||
@ -77,11 +77,11 @@
|
||||
"hda_disk_image": "empty100G.qcow2"
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "200G",
|
||||
"images": {
|
||||
"hda_disk_image": "empty200G.qcow2"
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "https://www.extremenetworks.com",
|
||||
"documentation_url": "https://www.extremenetworks.com/support/documentation",
|
||||
"product_name": "EXOS VM",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "Extreme Networks",
|
||||
"maintainer_email": "GitHubscripting@extremenetworks.com",
|
||||
@ -27,14 +27,14 @@
|
||||
"options": "-cpu core2duo"
|
||||
},
|
||||
"images": [
|
||||
{
|
||||
{
|
||||
"filename": "EXOS-VM_v32.1.1.6.qcow2",
|
||||
"version": "32.1.1.6",
|
||||
"md5sum": "48868bbcb4255d6365049b5941dd2af7",
|
||||
"filesize": 231211008,
|
||||
"direct_download_url": "https://akamai-ep.extremenetworks.com/Extreme_P/github-en/Virtual_EXOS/EXOS-VM_v32.1.1.6.qcow2"
|
||||
},
|
||||
{
|
||||
{
|
||||
"filename": "EXOS-VM_v31.7.1.4.qcow2",
|
||||
"version": "31.7.1.4",
|
||||
"md5sum": "a70e4fa3bc361434237ad12937aaf0fb",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.extremenetworks.com",
|
||||
"documentation_url": "http://www.extremenetworks.com/support/documentation",
|
||||
"product_name": "VOSS_VM",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "Extreme Networks",
|
||||
"maintainer_email": "voss@extremenetworks.com",
|
||||
@ -32,7 +32,7 @@
|
||||
"version": "v8.8.0.0",
|
||||
"md5sum": "caa01094bad8ea5750261924b82ca746",
|
||||
"filesize": 348389376,
|
||||
"direct_download_url": "https://akamai-ep.extremenetworks.com/Extreme_P/github-en/Virtual_VOSS/VOSSGNS3.8.8.0.0.qcow2"
|
||||
"direct_download_url": "https://akamai-ep.extremenetworks.com/Extreme_P/github-en/Virtual_VOSS/VOSSGNS3.8.8.0.0.qcow2"
|
||||
},
|
||||
{
|
||||
"filename": "VOSSGNS3.8.4.0.0.qcow2",
|
||||
@ -87,8 +87,7 @@
|
||||
"versions": [
|
||||
{
|
||||
"name": "v8.8.0.0",
|
||||
"images":
|
||||
{
|
||||
"images": {
|
||||
"hda_disk_image": "VOSSGNS3.8.8.0.0.qcow2"
|
||||
}
|
||||
},
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://support.f5.com/kb/en-us/products/big-ip_ltm/manuals/product/bigip-ve-kvm-setup-11-3-0.html",
|
||||
"product_name": "F5 BIG-IP LTM VE",
|
||||
"product_url": "https://f5.com/products/modules/local-traffic-manager",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://support.f5.com/csp/#/knowledge-center/software/BIG-IQ?module=BIG-IQ%20Centralized%20Management",
|
||||
"product_name": "F5 BIG-IQ CM",
|
||||
"product_url": "https://f5.com/products/big-iq-centralized-management",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://docs.fedoraproject.org/en-US/docs/",
|
||||
"product_name": "Fedora Cloud Base",
|
||||
"product_url": "https://alt.fedoraproject.org/cloud/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "Da-Geek",
|
||||
"maintainer_email": "dageek@dageeks-geeks.gg",
|
||||
@ -42,7 +42,7 @@
|
||||
}
|
||||
],
|
||||
"versions": [
|
||||
{
|
||||
{
|
||||
"name": "35-1.2",
|
||||
"images": {
|
||||
"hda_disk_image": "Fedora-Cloud-Base-35-1.2.x86_64.qcow2",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://support.mozilla.org",
|
||||
"product_name": "Firefox",
|
||||
"product_url": "https://www.mozilla.org/firefox",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://docs.fortinet.com/fortiadc-manager/",
|
||||
"product_name": "FortiADC Manager",
|
||||
"product_url": "https://www.fortinet.com/products/application-delivery-controller/fortiadc.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/fortiadc-d-series/admin-guides",
|
||||
"product_name": "FortiADC",
|
||||
"product_url": "https://www.fortinet.com/products-services/products/application-delivery-controllers/fortiadc.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
@ -34,6 +34,27 @@
|
||||
"filesize": 30998528,
|
||||
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
||||
},
|
||||
{
|
||||
"filename": "FAD_KVM-v700-build0111-FORTINET.out.kvm-boot.qcow2",
|
||||
"version": "7.1.0",
|
||||
"md5sum": "5977fe2e031dfa5759b7b2c9958eeb09",
|
||||
"filesize": 134676480,
|
||||
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
||||
},
|
||||
{
|
||||
"filename": "FAD_KVM-v700-build0048-FORTINET.out.kvm-boot.qcow2",
|
||||
"version": "7.0.4",
|
||||
"md5sum": "ea3329a7e18085838c83436ee7a6e3f8",
|
||||
"filesize": 127664128,
|
||||
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
||||
},
|
||||
{
|
||||
"filename": "FAD_KVM-v600-build0237-FORTINET.out.kvm-boot.qcow2",
|
||||
"version": "6.2.4",
|
||||
"md5sum": "7cf30c1af4891e13b37e6a5c3933169f",
|
||||
"filesize": 125304832,
|
||||
"download_url": "https://support.fortinet.com/Download/FirmwareImages.aspx"
|
||||
},
|
||||
{
|
||||
"filename": "FAD_KVM-V500-build0655-FORTINET.out.kvm-boot.qcow2",
|
||||
"version": "5.3.3",
|
||||
@ -204,6 +225,27 @@
|
||||
}
|
||||
],
|
||||
"versions": [
|
||||
{
|
||||
"name": "7.1.0",
|
||||
"images": {
|
||||
"hda_disk_image": "FAD_KVM-v700-build0111-FORTINET.out.kvm-boot.qcow2",
|
||||
"hdb_disk_image": "FAD_KVM-FORTINET.out.kvm-data.qcow2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "7.0.4",
|
||||
"images": {
|
||||
"hda_disk_image": "FAD_KVM-v700-build0048-FORTINET.out.kvm-boot.qcow2",
|
||||
"hdb_disk_image": "FAD_KVM-FORTINET.out.kvm-data.qcow2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "6.2.4",
|
||||
"images": {
|
||||
"hda_disk_image": "FAD_KVM-v600-build0237-FORTINET.out.kvm-boot.qcow2",
|
||||
"hdb_disk_image": "FAD_KVM-FORTINET.out.kvm-data.qcow2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "5.3.3",
|
||||
"images": {
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/fortianalyzer/",
|
||||
"product_name": "FortiAnalyzer",
|
||||
"product_url": "https://www.fortinet.com/products-services/products/management-reporting/fortianalyzer.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/fortiauthenticator/admin-guides",
|
||||
"product_name": "FortiAuthenticator",
|
||||
"product_url": "https://www.fortinet.com/products/identity-access-management/fortiauthenticator.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/forticache/admin-guides",
|
||||
"product_name": "FortiCache",
|
||||
"product_url": "https://www.fortinet.com/products-services/products/wan-appliances/forticache.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/p/inside-fortios",
|
||||
"product_name": "FortiGate",
|
||||
"product_url": "http://www.fortinet.com/products/fortigate/virtual-appliances.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/fortimail/admin-guides",
|
||||
"product_name": "FortiMail",
|
||||
"product_url": "http://www.fortinet.com/products/fortimail/index.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/p/inside-fortios",
|
||||
"product_name": "FortiManager",
|
||||
"product_url": "http://www.fortinet.com/products/fortimanager/virtual-security-management.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://docs.fortinet.com/fortiproxy/",
|
||||
"product_name": "FortiProxy",
|
||||
"product_url": "https://www.fortinet.com/content/dam/fortinet/assets/data-sheets/FortiProxy.pdf",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://docs.fortinet.com/fortirecorder/",
|
||||
"product_name": "FortiRecorder",
|
||||
"product_url": "https://www.fortinet.com/products/network-based-video-security/forticam-fortirecorder.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/fortisandbox/admin-guides",
|
||||
"product_name": "FortiSandbox",
|
||||
"product_url": "https://www.fortinet.com/products/sandbox/fortisandbox.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/fortisiem/admin-guides",
|
||||
"product_name": "FortiSIEM",
|
||||
"product_url": "https://www.fortinet.com/products/siem/fortisiem.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://docs.fortinet.com/fortiweb",
|
||||
"product_name": "FortiWeb",
|
||||
"product_url": "http://www.fortinet.com/products/fortiweb/index.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://freerouter.nop.hu/",
|
||||
"product_name": "freeRouter",
|
||||
"product_url": "http://freerouter.nop.hu/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.freebsd.org",
|
||||
"documentation_url": "https://www.freebsd.org/docs.html",
|
||||
"product_name": "FreeBSD",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://doc.freenas.org/9.10/freenas.html",
|
||||
"product_name": "FreeNAS",
|
||||
"product_url": "http://www.openfiler.com/products",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "FRRouting Project",
|
||||
"vendor_url": "https://frrouting.org",
|
||||
"product_name": "FRR",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://support.hpe.com/hpesc/public/home/documentHome?document_type=135&sp4ts.oid=5195141",
|
||||
"product_name": "VSR1001",
|
||||
"product_url": "https://www.hpe.com/us/en/product-catalog/networking/networking-routers/pip.hpe-flexnetwork-vsr1000-virtual-services-router-series.5443163.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -26,7 +26,7 @@
|
||||
"options": "-machine type=pc,accel=kvm -vga std -usbdevice tablet -cpu host"
|
||||
},
|
||||
"images": [
|
||||
{
|
||||
{
|
||||
"filename": "huaweiar1k-5.170-V300R021C00SPC100T-Auto-update-esn.qcow2",
|
||||
"version": "V300R021C00SPC100T",
|
||||
"md5sum": "9d98b31d400a94af37b5af6e9cfe8d80",
|
||||
@ -40,10 +40,9 @@
|
||||
"filesize": 534904832,
|
||||
"download_url": "https://support.huawei.com/enterprise/en/routers/ar1000v-pid-21768212/software"
|
||||
}
|
||||
|
||||
],
|
||||
"versions": [
|
||||
{
|
||||
{
|
||||
"name": "V300R021C00SPC100T",
|
||||
"images": {
|
||||
"hda_disk_image": "huaweiar1k-5.170-V300R021C00SPC100T-Auto-update-esn.qcow2"
|
||||
@ -55,6 +54,5 @@
|
||||
"hda_disk_image": "ar1k-V300R019C00SPC300.qcow2"
|
||||
}
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "http://www.gns3.com",
|
||||
"documentation_url": "http://www.gns3.com",
|
||||
"product_name": "Internet",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://wiki.ipfire.org/en/start",
|
||||
"product_name": "IPFire",
|
||||
"product_url": "http://www.ipfire.org/features",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "ipterm",
|
||||
"vendor_url": "https://www.debian.org",
|
||||
"product_name": "ipterm",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://ipxe.org",
|
||||
"product_name": "iPXE netboot",
|
||||
"product_url": "http://ipxe.org/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.juniper.net/techpubs/",
|
||||
"product_name": "Junos Space",
|
||||
"product_url": "https://www.juniper.net/us/en/dm/free-vqfx-trial/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.juniper.net/techpubs/",
|
||||
"product_name": "Juniper vMX vCP",
|
||||
"product_url": "https://www.juniper.net/us/en/products/routers/mx-series/vmx-virtual-router-software.html",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "none",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.juniper.net/techpubs/",
|
||||
"product_name": "Juniper vMX vFP",
|
||||
"product_url": "http://www.juniper.net/us/en/products-services/routing/mx-series/vmx/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "none",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.juniper.net/techpubs/",
|
||||
"product_name": "Juniper vQFX PFE",
|
||||
"product_url": "https://www.juniper.net/us/en/dm/free-vqfx-trial/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "none",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.juniper.net/techpubs/",
|
||||
"product_name": "Juniper vQFX RE",
|
||||
"product_url": "https://www.juniper.net/us/en/dm/free-vqfx-trial/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "none",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "https://www.juniper.net/documentation/product/en_US/virtual-route-reflector",
|
||||
"product_name": "Juniper vRR",
|
||||
"product_url": "https://www.juniper.net/us/en/products-services/nos/junos/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "none",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
@ -34,12 +34,6 @@
|
||||
"md5sum": "69638ba0ad83d7a99a28b658b1dd8def",
|
||||
"filesize": 2773090304
|
||||
},
|
||||
{
|
||||
"filename": "metadata.img",
|
||||
"version": "20.4R3.8-KVM",
|
||||
"md5sum": "ae4e3562aa389929476d82420c79d511",
|
||||
"filesize": 393216
|
||||
},
|
||||
{
|
||||
"filename": "junos-x86-64-20.3R1.8.img",
|
||||
"version": "20.3R1.8-KVM",
|
||||
@ -48,7 +42,7 @@
|
||||
},
|
||||
{
|
||||
"filename": "metadata.img",
|
||||
"version": "20.3R1.8-KVM",
|
||||
"version": "1",
|
||||
"md5sum": "ae4e3562aa389929476d82420c79d511",
|
||||
"filesize": 393216
|
||||
}
|
||||
|
@ -8,7 +8,7 @@
|
||||
"documentation_url": "http://www.juniper.net/techpubs/",
|
||||
"product_name": "Juniper vSRX",
|
||||
"product_url": "https://www.juniper.net/us/en/products-services/security/srx-series/vsrx/",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Project Jupyter",
|
||||
"vendor_url": "http://jupyter.org/",
|
||||
"product_name": "Jupyter",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -6,7 +6,7 @@
|
||||
"vendor_name": "Project Jupyter",
|
||||
"vendor_url": "http://jupyter.org/",
|
||||
"product_name": "Jupyter",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
@ -7,7 +7,7 @@
|
||||
"vendor_url": "https://www.kali.org/",
|
||||
"documentation_url": "https://www.kali.org/kali-linux-documentation/",
|
||||
"product_name": "Kali Linux",
|
||||
"registry_version": 3,
|
||||
"registry_version": 4,
|
||||
"status": "stable",
|
||||
"maintainer": "GNS3 Team",
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user