Difference between revisions of "Buffalo: WZRHPG450H Cara Recovery"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | Siapkan Aplikasi Pendukung | ||
+ | |||
+ | sudo su | ||
+ | apt -y install curl tftp | ||
+ | |||
+ | |||
Untuk melakukan TFTP recovery di Buffalo WZR HP G450H | Untuk melakukan TFTP recovery di Buffalo WZR HP G450H | ||
Line 24: | Line 30: | ||
==Langkah Yang Lebih Stabil== | ==Langkah Yang Lebih Stabil== | ||
+ | |||
+ | sudo su | ||
+ | apt -y install curl tftp | ||
+ | |||
Buat Script | Buat Script | ||
Line 31: | Line 41: | ||
Isi dengan | Isi dengan | ||
− | ifconfig eth0 | + | ifconfig eth0 192.168.11.2 |
arp -s 192.168.11.1 02:aa:bb:cc:dd:23 | arp -s 192.168.11.1 02:aa:bb:cc:dd:23 | ||
curl -T openwrt-ar71xx-generic-wzr-hp-g450h-squashfs-tftp.bin tftp://192.168.11.1 | curl -T openwrt-ar71xx-generic-wzr-hp-g450h-squashfs-tftp.bin tftp://192.168.11.1 | ||
+ | |||
+ | atau | ||
+ | |||
+ | ifconfig enp3s0 192.168.11.2 | ||
+ | arp -s 192.168.11.1 02:aa:bb:cc:dd:23 | ||
+ | curl -T openwrt-18.06.5-ar71xx-generic-wzr-hp-g450h-squashfs-tftp.bin tftp://192.168.11.1 | ||
+ | |||
+ | |||
+ | Buat Script | ||
+ | |||
+ | vi setip.sh | ||
+ | |||
+ | Isi dengan | ||
+ | |||
+ | #!/bin/bash | ||
+ | |||
+ | while [ true ]; | ||
+ | do | ||
+ | ifconfig eth0 192.168.11.2 | ||
+ | arp -s 192.168.11.1 02:aa:bb:cc:dd:23 | ||
+ | done | ||
+ | |||
+ | atau | ||
+ | |||
+ | #!/bin/bash | ||
+ | |||
+ | while [ true ]; | ||
+ | do | ||
+ | ifconfig enp3s0 192.168.11.2 | ||
+ | arp -s 192.168.11.1 02:aa:bb:cc:dd:23 | ||
+ | done | ||
+ | |||
Save script di tempat firmware openwrt tersebut berada. | Save script di tempat firmware openwrt tersebut berada. | ||
+ | * chmod 777 pada script | ||
+ | chmod 777 *sh | ||
+ | |||
* Matikan Buffalo | * Matikan Buffalo | ||
− | * Masukan kabel LAN PC ke LAN4 Buffalo yang pas sebelah Internet. | + | * Masukan kabel LAN PC ke LAN4 Buffalo yang pas sebelah [[Internet]]. |
* Masuk ke folder tempat image openwrt berada. | * Masuk ke folder tempat image openwrt berada. | ||
* Jadi superuser | * Jadi superuser | ||
Line 45: | Line 90: | ||
sudo su | sudo su | ||
− | * | + | * Jalankan |
− | |||
+ | ./setip.sh & | ||
./buatflashbuffalo.sh | ./buatflashbuffalo.sh | ||
+ | |||
+ | * Masukan power Buffalo | ||
Akan tampak pada layar | Akan tampak pada layar | ||
Line 73: | Line 120: | ||
* Gunakan tftp di atas untuk me-recover, gunakan buffalo factory image dengan file extensions 'enc' | * Gunakan tftp di atas untuk me-recover, gunakan buffalo factory image dengan file extensions 'enc' | ||
* Kita tidak perlu menyolder apa-apa atau beli router baru | * Kita tidak perlu menyolder apa-apa atau beli router baru | ||
+ | |||
+ | |||
Line 81: | Line 130: | ||
===Wireless=== | ===Wireless=== | ||
+ | * [[Buffalo: Cara Recovery]] | ||
* [[Buffalo: WZRHPG450H Firmware Original]] | * [[Buffalo: WZRHPG450H Firmware Original]] | ||
* [[Buffalo: WZRHPG450H Default Username Password]] | * [[Buffalo: WZRHPG450H Default Username Password]] | ||
Line 89: | Line 139: | ||
* [[Buffalo: WZRHPG450H Screen Shot WebUI DD-WRT v24sp2]] | * [[Buffalo: WZRHPG450H Screen Shot WebUI DD-WRT v24sp2]] | ||
* [[Buffalo: WZRHPG450H DD-WRT mengaktifkan SSH Server]] | * [[Buffalo: WZRHPG450H DD-WRT mengaktifkan SSH Server]] | ||
+ | * [[Buffalo: WZRHPG450H OpenWRT mengaktifkan setelah di flash]] | ||
+ | * [[Buffalo: WZRHPG450H OpenWRT instalasi aplikasi Pendukung OLSRD]] | ||
===Storage Server=== | ===Storage Server=== |
Latest revision as of 10:20, 5 January 2020
Siapkan Aplikasi Pendukung
sudo su apt -y install curl tftp
Untuk melakukan TFTP recovery di Buffalo WZR HP G450H
- Set IP address anda ke 192.168.11.2
ifconfig eth0:11 192.168.11.2
- Set ARP Statik untuk 192.168.11.1 ke 02:aa:bb:cc:dd:23
sudo arp -s 192.168.11.1 02:aa:bb:cc:dd:23
- TFTP image dalam windows 4 second dan tunggu
tftp 192.168.11.1 tftp> binary tftp> trace tftp> put openwrt-ar71xx-generic-wzr-hp-g450h-squashfs-tftp.bin
- Menggunakan Curl tampaknya lebih effisien
curl -T openwrt-ar71xx-generic-wzr-hp-g450h-squashfs-tftp.bin tftp://192.168.11.1
Nyalakan Buffalo Device setelah anda mengetik put atau curl di atas.
Langkah Yang Lebih Stabil
sudo su apt -y install curl tftp
Buat Script
vi buatflashbuffalo.sh
Isi dengan
ifconfig eth0 192.168.11.2 arp -s 192.168.11.1 02:aa:bb:cc:dd:23 curl -T openwrt-ar71xx-generic-wzr-hp-g450h-squashfs-tftp.bin tftp://192.168.11.1
atau
ifconfig enp3s0 192.168.11.2 arp -s 192.168.11.1 02:aa:bb:cc:dd:23 curl -T openwrt-18.06.5-ar71xx-generic-wzr-hp-g450h-squashfs-tftp.bin tftp://192.168.11.1
Buat Script
vi setip.sh
Isi dengan
#!/bin/bash while [ true ]; do ifconfig eth0 192.168.11.2 arp -s 192.168.11.1 02:aa:bb:cc:dd:23 done
atau
#!/bin/bash while [ true ]; do ifconfig enp3s0 192.168.11.2 arp -s 192.168.11.1 02:aa:bb:cc:dd:23 done
Save script di tempat firmware openwrt tersebut berada.
- chmod 777 pada script
chmod 777 *sh
- Matikan Buffalo
- Masukan kabel LAN PC ke LAN4 Buffalo yang pas sebelah Internet.
- Masuk ke folder tempat image openwrt berada.
- Jadi superuser
sudo su
- Jalankan
./setip.sh & ./buatflashbuffalo.sh
- Masukan power Buffalo
Akan tampak pada layar
% Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 2560k 0 0 100 2560k 0 197k 0:00:12 0:00:12 --:--:-- 367k 100 2560k 0 0 100 2560k 0 197k 0:00:12 0:00:12 --:--:-- 197k
Jika kita cek arp -n akan tampak
arp -n
Address HWtype HWaddress Flags Mask Iface 192.168.11.1 ether 02:aa:bb:cc:dd:23 CM eth0
Jika Terjadi Kesalahan
Jika terjadi kesalahan maka
- Lampu merah diag akan langsung nyala saat boot
- Lampu merah diag akan nyala terus
- Flash gagal.
- Gunakan tftp di atas untuk me-recover, gunakan buffalo factory image dengan file extensions 'enc'
- Kita tidak perlu menyolder apa-apa atau beli router baru
Pranala Menarik
Wireless
- Buffalo: Cara Recovery
- Buffalo: WZRHPG450H Firmware Original
- Buffalo: WZRHPG450H Default Username Password
- Buffalo: WZRHPG450H Screen Shot WebUI 1.75
- Buffalo: WZRHPG450H OpenWRT Firmware
- Buffalo: WZRHPG450H Cara Recovery
- Buffalo: WZRHPG450H Update Firmware
- Buffalo: WZRHPG450H Screen Shot WebUI DD-WRT v24sp2
- Buffalo: WZRHPG450H DD-WRT mengaktifkan SSH Server
- Buffalo: WZRHPG450H OpenWRT mengaktifkan setelah di flash
- Buffalo: WZRHPG450H OpenWRT instalasi aplikasi Pendukung OLSRD
Storage Server
- NAS: Buffalo TeraStation
- NAS: Buffalo TeraStation - Interface Web
- NAS: Buffalo LinkStation Mini - menu konfigurasi utama
- NAS: Buffalo LinkStation Mini - setup network
- NAS: Buffalo LinkStation Mini - setup system
Beberapa Teknik Operasi NAS
- NAS: Buffalo LinkStation Mini - Cara Shutdown
- NAS: Buffalo LinkStation Mini - Delete Folder yang di share
- NAS: Buffelo LinkStation Mini - Mengaktifkan Web Server
- NAS: Buffalo LinkStation Mini - Format harddisk
- NAS: Buffalo LinkStation Mini - Mengaktifkan Media Server
- NAS: Buffalo LinkStation Mini - Setup Torrent