Fritzbox 7270 v3, from German to English annex A
Whoops I bought the German version of the device, so it seems I have the 7270 v3 version.
What I’ve done:
You need to get your hand on : “fritz_as_avme_newer” and “fritz_as_annex_a_kernel_args_newer” from “telefonicus” @ http://www.ip-phone-forum.de
The scripts are made to upload as “firmware” but I’ve logged in with telnet to the fritzbox and executed the commands myself. I wanted to see what was happening.
I’m not going to give any kind of support. But these are the 2 scripts:
fritz_as_avme_newer |
#! /bin/sh ################################################################################## # get Kernelversion for further handling (update 2.4<->2.6) ################################################################################## case `uname -r` in 2.4*) echo “install: have Kernel 2.4”; kversion=24 ;; 2.6*) echo “install: have Kernel 2.6”; kversion=26 ;; *) exit $INSTALL_OTHER_ERROR ;; esac ############################################################################# # # Set Box to AVME # ############################################################################# if [ “${kversion}” = 24 ] ; then echo “firmware_version avme” > /proc/avalanche/env else echo “firmware_version avme” > /proc/sys/urlader/environment fi ##################################################################################ctlmgr ## Bitte keine “rote Meldung” ## Fehler: Kein Fehler |
fritz_as_annex_a_kernel_args_newer |
#! /bin/sh ################################################################################## # get Kernelversion for further handling (update 2.4<->2.6) ################################################################################## case `uname -r` in 2.4*) echo “install: have Kernel 2.4”; kversion=24 ;; 2.6*) echo “install: have Kernel 2.6”; kversion=26 ;; *) exit $INSTALL_OTHER_ERROR ;; esac ############################################################################# # # Set Box to Annex A # ############################################################################# if [ “${kversion}” = 24 ] ; then echo “kernel_args annex=A” > /proc/avalanche/env else echo “kernel_args annex=A” > /proc/sys/urlader/environment fi ##################################################################################ctlmgr ## Bitte keine “rote Meldung” ## Fehler: Kein Fehler |
Then I’ve followed the recovery procedure of the international version. you’ll need FRITZ.Box_Fon_WLAN_7270_v3.en-de-es-it-fr.05.06.recover-image from ftp://ftp.avm.de/fritz.box/fritzbox.fon_wlan_7270_v3/x_misc/english/
Enjoy!