gns3-server/gns3server/compute/dynamips/nodes/c1700.py

161 lines
4.4 KiB
Python
Raw Normal View History

2013-12-22 02:42:33 +02:00
#
# Copyright (C) 2013 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Interface for Dynamips virtual Cisco 1700 instances module ("c1700")
http://github.com/GNS3/dynamips/blob/master/README.hypervisor#L428
"""
2015-02-11 06:50:02 +02:00
import asyncio
2013-12-22 02:42:33 +02:00
from .router import Router
from ..adapters.c1700_mb_1fe import C1700_MB_1FE
from ..adapters.c1700_mb_wic1 import C1700_MB_WIC1
import logging
2021-04-13 12:16:50 +03:00
log = logging.getLogger(__name__)
2013-12-22 02:42:33 +02:00
class C1700(Router):
2015-02-13 15:43:28 +02:00
2013-12-22 02:42:33 +02:00
"""
Dynamips c1700 router.
2015-02-11 06:50:02 +02:00
:param name: The name of this router
:param node_id: Node instance identifier
2015-02-11 06:50:02 +02:00
:param project: Project instance
:param manager: Parent VM Manager
2015-02-12 04:21:34 +02:00
:param dynamips_id: ID to use with Dynamips
:param console: console port
:param console_type: console type
:param aux: auxiliary console port
:param aux_type: auxiliary console type
2013-12-22 02:42:33 +02:00
:param chassis: chassis for this router:
1720, 1721, 1750, 1751 or 1760 (default = 1720).
1710 is not supported.
"""
2021-04-13 12:16:50 +03:00
def __init__(
self,
name,
node_id,
project,
manager,
dynamips_id,
console=None,
console_type="telnet",
aux=None,
aux_type="none",
chassis="1720",
):
super().__init__(
name, node_id, project, manager, dynamips_id, console, console_type, aux, aux_type, platform="c1700"
)
2013-12-22 02:42:33 +02:00
# Set default values for this platform (must be the same as Dynamips)
self._ram = 64
2013-12-22 02:42:33 +02:00
self._nvram = 32
self._disk0 = 0
self._disk1 = 0
self._chassis = chassis
self._iomem = 15 # percentage
self._clock_divisor = 8
2015-02-11 06:50:02 +02:00
self._sparsemem = False # never activate sparsemem for c1700 (unstable)
2013-12-22 02:42:33 +02:00
2021-04-17 17:04:28 +03:00
def asdict(self):
2013-12-22 02:42:33 +02:00
2021-04-13 12:16:50 +03:00
c1700_router_info = {"iomem": self._iomem, "chassis": self._chassis, "sparsemem": self._sparsemem}
2021-04-17 17:04:28 +03:00
router_info = Router.asdict(self)
2015-02-11 06:50:02 +02:00
router_info.update(c1700_router_info)
return router_info
async def create(self):
2013-12-22 02:42:33 +02:00
await Router.create(self)
2015-02-11 06:50:02 +02:00
if self._chassis != "1720":
await self.set_chassis(self._chassis)
2015-02-11 06:50:02 +02:00
self._setup_chassis()
2013-12-22 02:42:33 +02:00
def _setup_chassis(self):
"""
Sets up the router with the corresponding chassis
2013-12-22 02:42:33 +02:00
(create slots and insert default adapters).
"""
# With 1751 and 1760, WICs in WIC slot 1 show up as in slot 1, not 0
# e.g. s1/0 not s0/2
2021-04-13 12:16:50 +03:00
if self._chassis in ["1751", "1760"]:
2013-12-22 02:42:33 +02:00
self._create_slots(2)
self._slots[1] = C1700_MB_WIC1()
else:
self._create_slots(1)
self._slots[0] = C1700_MB_1FE()
@property
def chassis(self):
"""
Returns the chassis.
:returns: chassis string
"""
return self._chassis
async def set_chassis(self, chassis):
2013-12-22 02:42:33 +02:00
"""
Sets the chassis.
2013-12-22 02:42:33 +02:00
:param: chassis string:
1720, 1721, 1750, 1751 or 1760
"""
2021-04-13 12:07:58 +03:00
await self._hypervisor.send(f'c1700 set_chassis "{self._name}" {chassis}')
2021-04-13 12:16:50 +03:00
log.info(
'Router "{name}" [{id}]: chassis set to {chassis}'.format(name=self._name, id=self._id, chassis=chassis)
)
2013-12-22 02:42:33 +02:00
self._chassis = chassis
self._setup_chassis()
@property
def iomem(self):
"""
Returns I/O memory size for this router.
:returns: I/O memory size (integer)
"""
return self._iomem
async def set_iomem(self, iomem):
2013-12-22 02:42:33 +02:00
"""
Sets I/O memory size for this router.
2013-12-22 02:42:33 +02:00
:param iomem: I/O memory size
"""
2021-04-13 12:07:58 +03:00
await self._hypervisor.send(f'c1700 set_iomem "{self._name}" {iomem}')
2021-04-13 12:16:50 +03:00
log.info(
'Router "{name}" [{id}]: I/O memory updated from {old_iomem}% to {new_iomem}%'.format(
name=self._name, id=self._id, old_iomem=self._iomem, new_iomem=iomem
)
)
2013-12-22 02:42:33 +02:00
self._iomem = iomem