45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
"""
|
|
This is a script to run a small switch based scenario and depends on
|
|
the user running this script through the "Execute Python Script" option
|
|
in the GUI. The usage of globals() below allows this script to leverage the
|
|
same CoreEmu instance the GUI is using.
|
|
"""
|
|
|
|
import logging
|
|
|
|
from core.emulator.coreemu import CoreEmu
|
|
from core.emulator.emudata import IpPrefixes
|
|
from core.emulator.enumerations import EventTypes
|
|
from core.nodes.base import CoreNode
|
|
from core.nodes.network import SwitchNode
|
|
|
|
NODES = 2
|
|
|
|
|
|
def main():
|
|
# ip generator for example
|
|
prefixes = IpPrefixes("10.83.0.0/16")
|
|
|
|
# create emulator instance for creating sessions and utility methods
|
|
coreemu: CoreEmu = globals()["coreemu"]
|
|
session = coreemu.create_session()
|
|
|
|
# must be in configuration state for nodes to start, when using "node_add" below
|
|
session.set_state(EventTypes.CONFIGURATION_STATE)
|
|
|
|
# create switch network node
|
|
switch = session.add_node(SwitchNode)
|
|
|
|
# create nodes
|
|
for _ in range(NODES):
|
|
node = session.add_node(CoreNode)
|
|
interface = prefixes.create_interface(node)
|
|
session.add_link(node.id, switch.id, interface1_data=interface)
|
|
|
|
# instantiate session
|
|
session.instantiate()
|
|
|
|
|
|
if __name__ in {"__main__", "__builtin__"}:
|
|
logging.basicConfig(level=logging.INFO)
|
|
main()
|