#!/usr/bin/env python # # NEPI, a framework to manage network experiments # Copyright (C) 2013 INRIA # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Author: Lucia Guevgeozian from nepi.execution.ec import ExperimentController import os # Create the EC exp_id = "sfa_test" ec = ExperimentController(exp_id) slicename = 'ple.inria.lguevgeo' sfauser = os.environ.get('SFA_USER') sfaPrivateKey = os.environ.get('SFA_PK') # nodes node1 = ec.register_resource("WilabtSfaNode") ec.set(node1, "hostname", 'zotacB5') ec.set(node1, "slicename", slicename) ec.set(node1, "sfauser", sfauser) ec.set(node1, "sfaPrivateKey", sfaPrivateKey) ec.set(node1, "gatewayUser", "nepi") ec.set(node1, "gateway", "bastion.test.iminds.be") ec.set(node1, "cleanHome", True) ec.set(node1, "cleanProcesses", True) node2 = ec.register_resource("WilabtSfaNode") ec.set(node2, "hostname", 'zotacM20') ec.set(node2, "slicename", slicename) ec.set(node2, "sfauser", sfauser) ec.set(node2, "sfaPrivateKey", sfaPrivateKey) ec.set(node2, "gatewayUser", "nepi") ec.set(node2, "gateway", "bastion.test.iminds.be") ec.set(node2, "cleanHome", True) ec.set(node2, "cleanProcesses", True) # Deploy ec.deploy() ec.wait_deployed([node1, node2]) ec.shutdown() # End