From 1c4202187aa1b12db7668abe5c419c98aea7511e Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 3 Apr 2015 19:11:28 -0600 Subject: [PATCH] Fixes TAP interface use with VPCS. --- gns3server/modules/vpcs/vpcs_vm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/modules/vpcs/vpcs_vm.py b/gns3server/modules/vpcs/vpcs_vm.py index 416420f5..a19e4647 100644 --- a/gns3server/modules/vpcs/vpcs_vm.py +++ b/gns3server/modules/vpcs/vpcs_vm.py @@ -393,7 +393,7 @@ class VPCSVM(BaseVM): elif isinstance(nio, NIOTAP): # TAP interface command.extend(["-e"]) - command.extend(["-d", nio.tap_vm]) + command.extend(["-d", nio.tap_device]) command.extend(["-m", str(self._manager.get_mac_id(self.id))]) # the unique ID is used to set the MAC address offset command.extend(["-i", "1"]) # option to start only one VPC instance