aboutsummaryrefslogtreecommitdiff
path: root/rumba/prototypes/ouroboros.py
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri.staessens@ugent.be>2018-03-17 14:11:33 +0100
committerDimitri Staessens <dimitri.staessens@ugent.be>2018-03-17 14:11:33 +0100
commit7b1c1726fe77c307ce51be1860d5c598e2287606 (patch)
treedce3d059078f42a302aaac50e247b1355fe5c449 /rumba/prototypes/ouroboros.py
parente174aaf3650c23331c757921b1af9b152f53c6e5 (diff)
downloadrumba-7b1c1726fe77c307ce51be1860d5c598e2287606.tar.gz
rumba-7b1c1726fe77c307ce51be1860d5c598e2287606.zip
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.
Diffstat (limited to 'rumba/prototypes/ouroboros.py')
-rw-r--r--rumba/prototypes/ouroboros.py2
1 files changed, 1 insertions, 1 deletions
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"