My first simple experiment

Prerequisites

  • You have a Slices account

  • You have successfully followed the previous tutorial

  • You have a basic understanding of the slices CLI, the notions of projects and experiments

Important: It is NOT POSSIBLE run this experiment directly from your own machine. It is mandatory to use the Webshell we provide.

Design and Implementation of an Experiment

The post-5G blueprint is designed to simplify the definition and execution of custom experiments involving 5G technologies, as we will see later.

It mostly relies on two files:

  • deploy.sh, which orchestrates the experiment.

  • xp.sh, which contains the actual experiment script.

When you launch an experiment with the post5g experiment launch command, it calls deploy.sh, which provisions the environment and then runs the xp.sh script on the deployment node.

To simplify experimentation and reduce the learning curve, SLICES-RI offers a graphical user interface that generates configuration files as well as the deploy.sh file. However, users can construct their own deployment and experimentation scripts.

This document will guide you step by step on how to write your own scripts. The next tutorial will explain how to use the assistant.

Writing My Own xp.sh File

There are no particular constraints for xp.sh. The script simply needs to be executable on the machine used to launch the experiment.

In this example, we will measure the RTT between standard-2-1 and standard-4-1 using four ICMP probes with the ping command. The standard output (stdout) and standard error (stderr) will be stored in the ~/results/ directory.

#!/usr/bin/bash
RESULTS_FOLDER=~/results/
ping -c 4 standard-4-1 > ${RESULTS_FOLDER}ping.stdout 2> ${RESULTS_FOLDER}ping.stderr

Save this file in the current directory of the Webshell with the name xp.sh. We will see how to execute it on standard-2-1.

Writing My Own deploy.sh File

The deploy.sh file implements the experiment workflow. We rely on pos to manage the infrastructure.

The first step is to allocate the hardware for your experiment and provision it with the desired operating system.

Note: We implement deploy.sh in Bash, but you can use your preferred environment as long as it is executable on the pos frontend.

In this scenario, we will use the standard-2-1 and standard-4-1 resources to run the experiment.

  • standard-2-1 will run Ubuntu Jammy.

  • standard-4-1 will run Debian Bookworm with a real-time kernel.

Additionally, we will configure the kernel of standard-4-1 with NoHZ on the last four of its 8 processors (nohz_full=4-7 nohz=on) [NO_HZ: Reducing Scheduling-Clock Ticks].

Summary of Machine Configurations

Machine

OS Image

Boot Parameters

standard-2-1

ubuntu-jammy

standard-4-1

debian-bookworm-rt

nohz_full=4-7 nohz=on

Configuring and Resetting Machines

Below is the code to configure and reset the machines as planned. You can find the sources in the SLICES-RI Git repository.

Since SLICES-RI is a shared infrastructure with loose enforcement, users must explicitly acquire access to machines. This means they must first release any current allocations before requesting a new one.

Once the resource allocation is granted, the user can define the OS image to be installed and set the appropriate boot parameters.

To apply these settings, the machine must be reset. This reloads the OS and applies the specified configurations.

After the reset is complete, the machines are up and running.

On each machine, we create a ~/results directory where we expect experimental results to be stored.

Below is the code to configure our environment:

declare -r NODE_A=standard-2-1
declare -r NODE_B=standard-4-1
# helper list
NODES=( $NODE_A $NODE_B )

# Get the allocation for all the nodes
for node in "${NODES[@]}"; do
  # make sure the node is available
  pos allocations free -k $node
done
# acquire the nodes
pos allocations allocate --result-folder "my_first_xp" ${NODES[@]}

# define the images to be loaded on the nodes and configure the boot parameters
pos nodes image $NODE_A ubuntu-jammy
# Debian bookworm with RT kernel
pos nodes image --staging $NODE_B debian-bookworm-rt@2025-03-29T19:21:31+00:00
# custom cmdline
pos nodes bootparameter $NODE_B "nohz_full=4-7 nohz=on"

# reset the nodes such that they load the right OS and parameters
for node in "${NODES[@]}"; do
  pos nodes reset $node &
done
wait    # wait for all nodes to be up and running

# make sure the results directory exists on every node
for node in "${NODES[@]}"; do
  pos commands launch $node -- mkdir -p results
  pos commands launch $node -- touch results/README.md
done

Now that the nodes are up and running, we can launch the experiment. But we first have to install the experiment script on standard-2-1.

Let assume that deploy.sh is located in the current directory, we just have to copy it to standard-2-1 and then to execute it (and not to forget to make it executable before).

# create the xp directory on standard-2-1
pos commands launch $NODE_A -- mkdir -p xp
# copy the xp.sh file into this directory
pos nodes copy --dest xp/xp.sh $NODE_A  ./xp.sh
# make xp.sh executable
pos commands launch $NODE_A -- chmod u+x xp/xp.sh
# run the xp.sh script and logs it under the name "xp_run"
pos commands launch $NODE_A "xp/xp.sh" --verbose --name "xp_run"

At this stage the experiment is finished, now we have to retrieve the results on every machines to save them outside of the nodes before they would be reset or be taken by another user.

for node in "${NODES[@]}"; do
cat <<EOF | pos command launch $node -i -
#!/usr/bin/bash
pos_upload --force-upload -r results
EOF
done

The effect of this command is to upload the directory in the pos experiment directory, for each node.

The data and meta data of all the experiments made with pos are stored in /srv/testbed/results/.

For the experiment that we just ran, you can determine the subdirectory by running:

POS_RESULTS=/srv/testbed/results/
ALLOC_ID=$( pos allocations show $NODE_A | jq -r .id )
XP_DIR=$POS_RESULTS/$(pos allocations show $ALLOC_ID | jq -r .result_folder)

In this subdirectory, you will see, among others the directories standard-2-1 and standard-4-1, in which you will find the results directory that contains the copy of the results directory of the experiments. In standard-2-1 you will also find 3 files with the postfix

  • _xp_run.status

  • _xp_run.stdout

  • _xp_run.stderr

that contain the output and status of the execution of xp.sh that we called xp_run for logging purpose.