From c77d0ade0d432d882bea4a00925e236cdd7fa85d Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 21 Dec 2015 21:10:10 +0100 Subject: [PATCH] Support chassis 1710 --- gns3converter/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gns3converter/models.py b/gns3converter/models.py index 42a085d..da30664 100644 --- a/gns3converter/models.py +++ b/gns3converter/models.py @@ -27,7 +27,7 @@ MODEL_MATRIX[platform] = {} # 1700s have one FE on the motherboard -for chassis in ('1720', '1721', '1750', '1751', '1760'): +for chassis in ('1710', '1720', '1721', '1750', '1751', '1760'): MODEL_MATRIX['c1700'][chassis] = {'ports': 1, 'type': 'F'} # 2600s have one or more interfaces on the motherboard @@ -61,7 +61,7 @@ '3725': 'c3725', '3745': 'c3745', '7200': 'c7200'} -for chassis in ('1720', '1721', '1750', '1751', '1760'): +for chassis in ('1710', '1720', '1721', '1750', '1751', '1760'): MODEL_TRANSFORM[chassis] = 'c1700' for chassis in ('2620', '2621', '2610XM', '2611XM', '2620XM', '2621XM', '2650XM', '2651XM'):