# Use this script to create the model for the experiment

from mergexp import *
net = Network('sp2026artifact', addressing==ipv4, routing==static)
a = net.node('a', disk.capacity==gb(128), memory.capacity >= gb(8))
link = net.connect([a])
experiment(net)

# After creating the model:
# 1. Create a reservation
# 2. Activate the reservation
# 3. Create an XDC
# 4. Attach the reservation to the XDC
# 5. Open a terminal connection to node a (not the XDC)
# 6. Execute the script in `allocation`
