EVE-NG Linux VM SSH troubleshooting
September 20, 2025
Automating EVE-NG installation
Installing an EVE-NG server is a task I encounter every time I need to prepare a new course. For this reason, I have created an Ansible play
Installing an EVE-NG server is a task I encounter every time I need to prepare a new course. For this reason, I have created an Ansible playbook that, starting from an Ubuntu Linux Server 22.04 LTS installation, installs EVE-NG as seen in the previous chapters.
The playbook is available in the GitHub repository dedicated to DevNetOps courses. Therefore, let’s install Ansible and retrieve the playbook from the GitHub repository:
git clone https://github.com/dainok/courses
cd courses
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cd "EVE-NG setup"
Continue reading the post on Patreon .