mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-19 04:47:54 +00:00
Cisco VIOS
This commit is contained in:
parent
7c56457545
commit
527424cd5a
37
appliances/cisco-vios.json
Normal file
37
appliances/cisco-vios.json
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
"category": "router",
|
||||
"status": "experimental",
|
||||
"maintainer": "GNS3 Team",
|
||||
"name": "Cisco vIOS",
|
||||
"versions": [
|
||||
{
|
||||
"images": {
|
||||
"hda_disk_image": "vios-1.3.qcow2"
|
||||
},
|
||||
"name": "1.3.0"
|
||||
}
|
||||
],
|
||||
"registry_version": 1,
|
||||
"maintainer_email": "developers@gns3.net",
|
||||
"documentation_url": "http://www.cisco.com/c/en/us/support/routers/3800-series-integrated-services-routers-isr/tsd-products-support-series-home.html",
|
||||
"images": [
|
||||
{
|
||||
"filesize": 2147483648,
|
||||
"md5sum": "c251cede77c5772a9c2f2e38d1b5f935",
|
||||
"version": "1.3.0",
|
||||
"download_url": "https://developer.cisco.com/site/onepk/downloads/all-in-one-vm/",
|
||||
"filename": "vios-1.3.qcow2"
|
||||
}
|
||||
],
|
||||
"vendor_name": "Cisco",
|
||||
"qemu": {
|
||||
"adapter_type": "e1000",
|
||||
"console_type": "telnet",
|
||||
"ram": 384,
|
||||
"arch": "x86_64",
|
||||
"adapters": 6
|
||||
},
|
||||
"product_name": "vIOS",
|
||||
"vendor_url": "http://www.cisco.com",
|
||||
"description": "Cisco Virtual IOS allow user to run IOS on a standard computer."
|
||||
}
|
@ -77,7 +77,8 @@
|
||||
"title": "Optional formating of the newtorking port example: eth{0}"
|
||||
},
|
||||
"port_segment_size": {
|
||||
"type": "integer"
|
||||
"type": "integer",
|
||||
"title": "Optional port segment size"
|
||||
},
|
||||
|
||||
"qemu": {
|
||||
@ -94,7 +95,7 @@
|
||||
},
|
||||
"ram": {
|
||||
"type": "integer",
|
||||
"title": "Ram allocated to the appliance"
|
||||
"title": "Ram allocated to the appliance (MB)"
|
||||
},
|
||||
"arch": {
|
||||
"enum": ["aarch64", "alpha", "arm", "cris", "i386", "lm32", "m68k", "microblaze", "microblazeel", "mips", "mips64", "mips64el", "mipsel", "moxie", "or32", "ppc", "ppc64", "ppcemb", "s390x", "sh4", "sh4eb", "sparc", "sparc64", "tricore", "unicore32", "x86_64", "xtensa", "xtensaeb"],
|
||||
@ -229,7 +230,6 @@
|
||||
"vendor_url",
|
||||
"documentation_url",
|
||||
"product_name",
|
||||
"product_url",
|
||||
"registry_version",
|
||||
"status",
|
||||
"maintainer",
|
||||
|
@ -1,9 +1,9 @@
|
||||
{% extends "layout/default.html" %}
|
||||
{% block body %}
|
||||
<h1>{{group_by|capitalize|replace("_", " ")}}</h1>
|
||||
<h1>{{group_by|replace("_", " ")}}</h1>
|
||||
<ul>
|
||||
{% for key in keys|sort %}
|
||||
<li><a href="/appliances/{{group_by}}/{{key}}.html">{{key|capitalize|replace("_", " ")}}</a></li>
|
||||
<li><a href="/appliances/{{group_by}}/{{key}}.html">{{key|replace("_", " ")}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in New Issue
Block a user