Golden Client - Intel NUC with Endpoint
| Introduction | The golden client is the reference system for performing latency measurements with the ByteBlower Endpoint. In the sections below describe how to install Linux, ByteBlower Endpoints, and configure time synchronization using PTP. |
| Installing the OS | Just like the Time synchronization system, Debian is chosen as the base OS for the Golden client. It's a popular Linux distribution with a long history that will stay relevant for the time being. The guide below has been tested on Debian 11 and Ubuntu 22.04. The ISO image for the Linux installer is available from the link below. A common approach is to copy this binary onto a USB stick and create a boot from this USB stick. Several tools are available for performing this step. For example, Balena Etcher is available on a large number of platforms.
This Low latency ByteBlower Endpoint client does not require a desktop environment. If you’re comfortable with managing such a headless system, the desktop can be omitted. For the Intel NUC platform both headless and desktop should work well, no large performance differences are expected. |
| Installing the Endpoint | Installing the ByteBlower Endpoint The ByteBlower Endpoint is available in the Excentis repository. Adding this repository to the system makes it keeps the application up to date. The steps below add this repository to the system and next install the software. # Add our Excentis Repository to the system. wget -qO - http://bbdl.excentis.com/repo/public-key.key | sudo apt-key add - echo "deb http://bbdl.excentis.com/repo/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/byteblower.list # Finally install the ByteBlower Endpoint sudo apt-get update sudo apt-get install byteblower-wireless-endpoint |
| Configure Endpoint service | The following configuration launches the ByteBlower Endpoint immediately at startup. It defines a systemd service. The contents should be saved to the following file
[Unit] The above configuration uses three parameters that depend on the actual configuration:
After saving the above file, you need to reload the systemd configuration and start the service with the following commands: sudo systemctl daemon-reload The service can also be enabled. This ensures that the ByteBlower Endpoint is launched on each subsequent startup. sudo systemctl enable byteblower-endpoint.service Since the ByteBlower Endpoint runs in the background, no GUI is launched. To see the current status, you can run either of the following commands: sudo systemctl status byteblower-endpoint.service The top command prints out the current status and the last lines from the log, and the bottom one shows the log messages of the last hour. |
| Install time synchronization software | As detailed at the start, it is important for the ByteBlower server and ByteBlower Endpoint to be synchronized to the same time reference. On local networks, one can use the Precision-Time-Protocol. This offers the most reliable time-sync. To configure PTP on Linux, the following two packages are required. sudo apt-get install linuxptp chrony LinuxPTP takes care of the PTP configuration. Chrony organizes the overall time synchronization. In case when the PTP clock becomes unavailable it will fall back to other time sources. |
| Configure time synchronization | The time synchronization is configured in the following file. It needs to be edited as a root user.
# Configuration file for timemaster The above configuration has three important configuration parameters:
To start the services with the new configuration, execute the commands: sudo systemctl restart timemaster.service Check that the time synchronization services are running fine: sudo systemctl status chrony.service To show the status of the time synchronization, execute the commands: chronyc -n tracking |
| Example result | The results below show example results attainable with the ByteBlower Endpoint and a proper Time Synchronization master. It contains the latency results between the same two hosts, Golden Client to a ByteBlower 4100, but over different media
|