Difference between revisions of "Buffalo: WZRHPG450H Cara Recovery"

From OnnoWiki
Jump to navigation Jump to search
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
To perform a TFTP recovery on this model:
+
Siapkan Aplikasi Pendukung
  
* Set your IP address to 192.168.11.2
+
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
 
  ifconfig eth0:11 192.168.11.2
  
* Set a static arp entry for 192.168.11.1 to 02:aa:bb:cc:dd:23
+
* 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
 
  sudo arp -s 192.168.11.1 02:aa:bb:cc:dd:23
  
* TFTP the image during the 4 second window and wait
+
* TFTP image dalam windows 4 second dan tunggu
  
 
  tftp 192.168.11.1
 
  tftp 192.168.11.1
Line 20: Line 26:
 
  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
  
 +
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==
Line 30: 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 38: Line 130:
 
===Wireless===
 
===Wireless===
  
 +
* [[Buffalo: Cara Recovery]]
 
* [[Buffalo: WZRHPG450H Firmware Original]]
 
* [[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 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===
 
===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

Storage Server

Beberapa Teknik Operasi NAS