From 7b1c1726fe77c307ce51be1860d5c598e2287606 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sat, 17 Mar 2018 14:11:33 +0100 Subject: prototypes: Replace if_name with dev for ouroboros To align with the ip command, we now use "dev" instead of "if_name" to specify the interface for an eth-llc or eth-dix IPCP to use. --- rumba/prototypes/ouroboros.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rumba/prototypes/ouroboros.py') diff --git a/rumba/prototypes/ouroboros.py b/rumba/prototypes/ouroboros.py index a3c6c6c..33ecd0b 100644 --- a/rumba/prototypes/ouroboros.py +++ b/rumba/prototypes/ouroboros.py @@ -123,7 +123,7 @@ class Experiment(mod.Experiment): if isinstance(self.testbed, fake.Testbed): cmd += " type local layer " + ipcp.dif.name else: - cmd += " type eth-llc if_name " + ipcp.ifname + cmd += " type eth-llc dev " + ipcp.ifname cmd += " layer " + ipcp.dif.name elif isinstance(ipcp.dif, mod.NormalDIF): cmd += " type normal" -- cgit v1.2.3