Juniper re-learnings, Workstation
July 10, 2026
Workstation
- Apparently suspending the WS, causes the vEX software to crash somehow so added a graceful stop script to EVE at the following location
/lib/systemd/system-sleep/eve-graceful-stop
#!/bin/bash
# Executes right before the EVE-NG OS goes to sleep
if [ "$1" = "pre" ]; then
# Gracefully stops all active nodes (including your vJunos switch)
/opt/unetlab/wrappers/unl_wrapper -a stopall
# Gives the virtual disk images a few seconds to flush data to disk
sleep 5
fi