aboutsummaryrefslogtreecommitdiff
path: root/rumba/model.py
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@ugent.be>2017-04-13 16:33:26 +0200
committerSander Vrijders <sander.vrijders@ugent.be>2017-04-13 16:33:26 +0200
commit81ca2217d34b70e6a3ef7385261be38958cb4a42 (patch)
tree8732620d1d9c8fb84bf1573d6bbededf2fb9dbb2 /rumba/model.py
parenta766f2d202eaf586b8da5f678e9a8a21b31448d7 (diff)
downloadrumba-81ca2217d34b70e6a3ef7385261be38958cb4a42.tar.gz
rumba-81ca2217d34b70e6a3ef7385261be38958cb4a42.zip
rumba: Add ProxyCommand for jFed
This adds a proxy command for the jFed testbed so that it can be accessed when someone does not have IPv6.
Diffstat (limited to 'rumba/model.py')
-rw-r--r--rumba/model.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rumba/model.py b/rumba/model.py
index c2c4cfa..4ada554 100644
--- a/rumba/model.py
+++ b/rumba/model.py
@@ -128,9 +128,10 @@ class NormalDIF(DIF):
# SSH Configuration
#
class SSHConfig:
- def __init__(self, hostname, port=22):
+ def __init__(self, hostname, port=22, proxycommand=None):
self.hostname = hostname
self.port = port
+ self.proxycommand = proxycommand
# A node in the experiment
#