Cybertection LabsTraining Center

Connect to the labs

Every student gets a personal WireGuard profile. It only routes lab traffic (10.20.0.0/16) through the tunnel, so your normal internet keeps working.

1. Download your config

Sign in, open Labs, and click Download .conf. The file is yours alone. Don't share it; each profile is tied to your account.

2. Bring the tunnel up

WireGuard is in the Kali repos. Install it once:

sudo apt update && sudo apt install -y wireguard resolvconf

Then from the folder where you saved the file (replace student.conf with your file name):

sudo wg-quick up ./student.conf

3. Check it's working

sudo wg show

You should see latest handshake: a few seconds ago. Then start a machine on the dashboard and ping its IP:

ping -c 3 <TARGET_IP>

4. Disconnect when done

sudo wg-quick down ./student.conf

Troubleshooting