Merge pull request #227 from adosztal/master

Added Cisco NX-OSv9k & Python containers
This commit is contained in:
Julien Duponchelle 2017-06-07 09:50:51 +02:00 committed by GitHub
commit 5f169c4888
3 changed files with 58 additions and 8 deletions

View File

@ -12,17 +12,26 @@
"maintainer": "GNS3 Team",
"maintainer_email": "developers@gns3.net",
"first_port_name": "mgmt0",
"usage": "The old (I5) versions might require 8192 MB of RAM; adjust it if necessary.",
"port_name_format": "Ethernet1/{port1}",
"qemu": {
"cpus": 2,
"adapter_type": "e1000",
"adapters": 10,
"ram": 8096,
"hda_disk_interface": "sata",
"arch": "x86_64",
"console_type": "telnet",
"kvm": "require"
},
"images": [
{
"filename": "nxosv-final.7.0.3.I6.1.qcow2",
"version": "7.0.3.I6.1",
"md5sum": "18bb991b814a508d1190575f99deed99",
"filesize": 780402688,
"download_url": "https://software.cisco.com/download/"
},
{
"filename": "nxosv-final.7.0.3.I5.2.qcow2",
"version": "7.0.3.I5.2",
@ -38,27 +47,34 @@
"download_url": "https://software.cisco.com/download/"
},
{
"filename": "OVMF-X64-r15214.fd",
"version": "7.0.3.I5.1",
"md5sum": "443c99c734736d6323f68b3f6c0df06f",
"filesize": 1048576,
"download_url": "https://sourceforge.net/projects/edk2/files/OVMF/",
"direct_download_url": "https://sourceforge.net/projects/edk2/files/OVMF/OVMF-X64-r15214.zip/download",
"filename": "OVMF-20160813.fd",
"version": "16.08.13",
"md5sum": "8ff0ef1ec56345db5b6bda1a8630e3c6",
"filesize": 2097152,
"download_url": "",
"direct_download_url": "https://sourceforge.net/projects/gns-3/files/Qemu%20Appliances/OVMF-20160813.fd.zip/download",
"compression": "zip"
}
],
"versions": [
{
"name": "7.0.3.I6.1",
"images": {
"bios_image": "OVMF-20160813.fd",
"hda_disk_image": "nxosv-final.7.0.3.I6.1.qcow2"
}
},
{
"name": "7.0.3.I5.2",
"images": {
"bios_image": "OVMF-X64-r15214.fd",
"bios_image": "OVMF-20160813.fd",
"hda_disk_image": "nxosv-final.7.0.3.I5.2.qcow2"
}
},
{
"name": "7.0.3.I5.1",
"images": {
"bios_image": "OVMF-X64-r15214.fd",
"bios_image": "OVMF-20160813.fd",
"hda_disk_image": "nxosv-final.7.0.3.I5.1.qcow2"
}
}

17
appliances/python2.gns3a Normal file
View File

@ -0,0 +1,17 @@
{
"name": "Python2",
"category": "guest",
"description": "Python is an interpreted, interactive, object-oriented, open-source programming language that lets you work quickly and integrate systems more effectively.",
"vendor_name": "Python Software Foundation",
"vendor_url": "https://www.python.org",
"documentation_url": "https://docs.python.org/2/",
"product_name": "Python 2.x",
"registry_version": 3,
"status": "stable",
"maintainer": "GNS3 Team",
"maintainer_email": "developers@gns3.net",
"docker": {
"adapters": 1,
"image": "python:2"
}
}

17
appliances/python3.gns3a Normal file
View File

@ -0,0 +1,17 @@
{
"name": "Python3",
"category": "guest",
"description": "Python is an interpreted, interactive, object-oriented, open-source programming language that lets you work quickly and integrate systems more effectively.",
"vendor_name": "Python Software Foundation",
"vendor_url": "https://www.python.org",
"documentation_url": "https://docs.python.org/3/",
"product_name": "Python 3.x",
"registry_version": 3,
"status": "stable",
"maintainer": "GNS3 Team",
"maintainer_email": "developers@gns3.net",
"docker": {
"adapters": 1,
"image": "python:3"
}
}