Cara Install Mikrotik CHR di VPS Ubuntu 20.04
Pengertian Mikrotik CHR
Mikrotik CHR adalah jenis mikrotik yang dapat diinstall pada perangkat komputasi virtual, seperti VPS.
Cara Install Mikrotik CHR di Ubuntu 20.04:
1. Siapkan VPS yang akan diinstall Mikrotik CHR
2. Remote VPS via ssh putty/terminal.
wget https://download.mikrotik.com/routeros/6.49.17/chr-6.49.17.img.zip -O chr.img.zip && \
gunzip -c chr.img.zip > chr.img && \
mount -o loop,offset=512 chr.img /mnt && \
ADDRESS=ip addr show eth0 | grep global | cut -d' ' -f 6 | head -n 1 && \
GATEWAY=ip route list | grep default | cut -d' ' -f 3 && \
echo "/ip address add address=$ADDRESS interface=[/interface ethernet find where name=ether1]
/ip route add gateway=$GATEWAY
" > /mnt/rw/autorun.scr && \
umount /mnt && \
echo u > /proc/sysrq-trigger && \
dd if=chr.img bs=1024 of=/dev/vda
5. Akses Mikrotik Via Winbox.
Notes: Jika pada saat akses mikrotik connection refused bisa lakukan reboot vps terlebih dahulu.
No comments:
Post a Comment