Last active
December 25, 2025 15:31
-
-
Save carlosgrillet/219cb0d9432ba2688ee93272b1ed5be1 to your computer and use it in GitHub Desktop.
Install Mirkotik RouterOS on Hetzner Cloud - cloud-init
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cloud-config | |
| users: | |
| - name: mikrotik | |
| groups: sudo | |
| shell: /bin/bash | |
| packages: | |
| - wget | |
| - gzip | |
| runcmd: | |
| - wget -O routeros.img.zip https://cdn.mikrotik.com/routeros/7.20.4/install-image-7.20.4.zip | |
| - gunzip -c routeros.img.zip > routeros.img | |
| - dd if=routeros.img of=/dev/sda bs=1M | |
| - reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment