Fritz! Box 7490 : 수정 된 구성 파일을 업로드하는 방법


11

AVM 의 Fritz! Box 7490 주거용 DSL / 모뎀 / 라우터가 있습니다.

라우터의 현재 구성을 파일로 덤프 할 수 있습니다 ( "시스템> 백업> 저장 탭"아래). 결과는 JSON이 아닌 간단한 구조화 된 텍스트 파일이지만 거의 그렇지 않습니다 (Excellent design decision, AVM!).

라우터 구성을 변경하기 위해 기존의 방식으로 수정하고 다시 업로드하고 싶습니다.

무엇을 수정하고 싶습니까? 먼저 터무니없이 큰 DHCP 캐시를 비 웁니다. 인터페이스를 통해이 작업을 수행하려면 시간이 오래 걸립니다 (클릭 시간). 둘째, LAN의 DHCP 클라이언트에 전달 된 DNS 서버, 옵션 servercfg.user_dns1_for_ipv4및을 수정하십시오.이 서버 servercfg.user_dns2_for_ipv4는 7490 인터페이스를 통해 액세스 할 수 없습니다.

그러나 라우터의 구성 업로드 기능 ( "시스템> 백업> 복원 탭")은 파일 무결성을 확인합니다. 분명히 내용에서 체크섬을 계산하고 업로드 할 파일에 포함 된 체크섬과 비교하여 확인합니다. 이것은 맨 끝에 다음 줄입니다.

**** END OF EXPORT 0428BE3C ****

불일치가 있으면 "지정된 파일이 유효한 가져 오기 파일이 아닙니다."로 업로드가 거부됩니다. (일치하는 경우 추가 작업없이 업로드가 적용되고 라우터가 재부팅됩니다. 아야!)

7390 모델에서는 맨 NoChecks=yes앞에 인트로 문자열 **** CFGFILE:ar7.cfg을 추가하여 무결성 검사를 비활성화 할 수 있습니다 (예 : Fritzbox에서 DNS 변경 참조 ) 7490에서는 더 이상 작동하지 않습니다 (너무 많은 사람들이 장치를 사용하고 있습니까?)

이 최신 버전의 POKE를 작동시키는 또 다른 해결 방법이 있습니까?


동료는 실제로 Fritz! Box VBScripte 에서 체크섬 계산 알고리즘을 찾았습니다 . 흠 ... 시간이 테스트 (펄에 다시?)하기
데이비드 Tonhofer

당신은 또한 당신 자신의 답변 질문을 받아 들일 수 있습니다.
peterh-복원 모니카

UI에서 거부 된 설정을 설정할 수 있습니까? 예를 들어, SSID에서 전체 유니 코드 공간을 사용합니까?
nikeee

@nikeee 나는 모른다. 아마 가능합니다.
David Tonhofer

답변:


12

다음은 체크섬을 올바르게 계산하는 것으로 보이는 스크립트이며 CRC32 체크섬입니다. 결국, 구성 덤프 / 수정 / 복원을 통해 Fritz! Box의 DHCP 캐시를 지우지 못했습니다. 한숨.

#!/usr/bin/perl

# Read Fritz!Box configuration dump file and compute its checksum using CRC32.
# The problem is only knowing what to checksum exactly, and in this case its not pretty.
# Inspired from the very compact Visual Basic script by Michael Engelke available at
# http://www.mengelke.de/Projekte/FritzBoxVBScript 

# The Fritz!Box accepts a modified file where the checksum has been changed 
# manually to the output of this program in the last line. I have no idea what 
# happens if there is a syntax error anywhere inside the config file, so beware.

# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

use strict;
use warnings;

# ---
# Compute CRC start values
# ---

sub build_crc_table() {
   my @crctbl = (); # Accepts 256 values

   for (my $a = 0; $a < 256; $a++) {
      my $c = $a;
      for (my $b = 0; $b < 8; $b++) {
         my $d = $c & 0x01;
         $c = ($c >> 1) & 0x7FFFFFFF;
         if ($d) { 
            $c = $c ^ 0xEDB88320;
         }
      }
      push @crctbl, $c
   }

   my $print = 0;

   if ($print) {
      my $i = 0;
      foreach my $x (@crctbl) {
         print sprintf("CRC table value $i: %08x\n", $x);
         $i++
      }
   }

   return @crctbl
}

# ---
# Transform a string into a vector of its ASCII code points
# ---

sub numerize {
   my ($str) = @_;
   my @res = ();
   foreach my $ch (split('',$str)) {
      push @res, ord($ch)
   }
   return @res;
}

# ---
# Transform a hexstring into a vector of its 8-bit values
# ---

sub hexnumerize {
   my ($str) = @_;
   my @res = ();
   my $tmp;
   my $i = 0;
   foreach my $ch (split('',$str)) {
      if ($i == 0) { $tmp = $ch; $i++; }
      else         { $tmp.= $ch; $i=0; push @res,hex($tmp) } 
   }
   if ($i != 0) {
      die "Irregular hex string: $str\n";
   }
   return @res;
}

# ---
# Compute CRC-32 checksum
# See https://en.wikipedia.org/wiki/Cyclic_redundancy_check
# This must yield 414fa339:
# print sprintf("%08Xi\n", compute_crc32(numerize("The quick brown fox jumps over the lazy dog")));
# ---

sub compute_crc32 {
   my(@data)  = @_;
   my @crctbl = build_crc_table(); # not very efficient on multiple calls
   my $crc = 0xFFFFFFFF;
   my $i = 0;
   foreach my $x (@data) {
      my $index = ($crc ^ $x) & 0xFF;
      $crc = $crctbl[$index] ^ ($crc >> 8); # ">>" is zero-filling in Perl
      $crc = $crc & 0xFFFFFFFF;             # format to 32 bit
      #if ($i > 98700 && $i < 99000) {
      #   print sprintf("$i %c : $x => %08X\n",$x,$crc); 
      #}
      $i++
   }
   return $crc ^ 0xFFFFFFFF
}

# ---
# The name of the configuration file may have been given on the command line. 
# If so slurp the file.
# If nothing has been given, slurp STDIN.
# After that, the input can be found in "@lines" (line terminators are still in there)
# ---

my @lines;

if ($ARGV[0]) {
   open(my $fh,'<',$ARGV[0]) or die "Could not open file '$ARGV[0]': $!";
   @lines = <$fh>;
   close($fh)
}
else {
   @lines = <>;
}

# ---
# Stateful analysis.
# If there are lines after "END OF EXPORT" we will disregard them
# ---

my $firmware;       # will capture firmware version
my $fritzbox;       # will capture name string in header
my @data = ();      # will capture 8-bit values to be CRC-checksummed later
my $cursum;         # will capture the current CRC checksum in the text

# "state" indicates where we are in the file

my $state = 'NOTSTARTED';

# we consider the lines as a stack and push/pop to the stack

@lines = reverse @lines;

while (@lines && $state ne 'END') {

   my $line = pop @lines;

   if ($state eq 'NOTSTARTED') {
      if ($line =~ /^\*{4} (.*?) CONFIGURATION EXPORT/) {
         $fritzbox = $1;
         $state    = 'HEADER'
      }
      else {
         chomp $line;
         die "Expected 'CONFIGURATION EXPORT' in NOTSTARTED state, got '$line'"
      }
      next
   }

   if ($state eq 'HEADER') {
      chomp $line;
      if ($line =~ /(\w+)=([\w\$\.]+)$/) {
         my $key = $1;
         my $val = $2;
         if ($key eq 'FirmwareVersion') { $firmware = $val }
         push @data,numerize($key);
         push @data,numerize($val);
         push @data,0;
      }
      elsif ($line =~ /^\*{4}/) {
         $state = 'NEXTSECTION';
         push @lines,$line
      }
      else {
         die "Unexpected line in HEADER state: '$line'"
      }
      next
   }

   if ($state eq 'NEXTSECTION') {
      chomp $line;
      if ($line =~ /^\*{4} (?:CRYPTED)?(CFG|BIN)FILE:(\S+)/) {
         $state = "INSIDESECTION_$1";
         my $secname = $2;
         print "Section $line\n";
         push @data,numerize($secname);
         push @data,0
      }   
      elsif ($line =~ /^\*{4} END OF EXPORT (\w{8}) \*{4}/) {
         $state  = 'END';
         $cursum = $1
      }
      else {
          die "Unexpected line in NEXTSECTION state: '$line'"
      }
      next
   }

   if ($state eq 'INSIDESECTION_BIN') {
      chomp $line;
      if ($line =~ /^\*{4} END OF FILE \*{4}/) {
         $state = 'NEXTSECTION'
      } 
      else {
         push @data,hexnumerize($line)
      } 
      next
   }

   if ($state eq 'INSIDESECTION_CFG') {
      if ($line =~ /^\*{4} END OF FILE \*{4}/) {
         # Something unbelievably dirty: All section-internal linefeeds (and carriage returns)
         # are kept as is for checksumming, except for the last one before the "END OF FILE"
         if ($data[-1] == ord("\n")) {
            pop @data;
            if ($data[-1] == ord("\r")) {
               pop @data;
            }
         }
         $state = 'NEXTSECTION'
      }
      else {
         # More dirty stuff: Double backspaces are replaced by single ones for some reason.
         $line =~ s/\\\\/\\/g;
         push @data,numerize($line)
      }
      next
   } 

   die "Unexpected state $state"

}

if ($state ne 'END') {
   die 'Did not find proper end of configuration'
}
if (@lines) {
   my $n = @lines;
   print "There are still $n lines left that will be disregarded"
}

my $crc = compute_crc32(@data);
my $newsum = sprintf("%08X", $crc);

print "$fritzbox with firmware $firmware\n";

if ($newsum eq $cursum) {
   print "Checksum is OK: $cursum\n"
}
else {
   print "Found new checksum: $newsum\n";
   print "Checksum embedded in file is $cursum\n"
}

1
Fritz! Box 7390으로 스크립트를 테스트하고 수정 된 구성을 업로드 할 수있었습니다.
은하

훌륭한 도구! (은하와 마찬가지로) 여전히 7390에서 작동하고 있습니다. 내 펌웨어 : 6.30 :)
Madivad

3
파이썬 버전을 확인합니다 (포함 사전 구축 된는 Win32 EXE GUI)에서 github.com/mementum/fritzchecksum
mementum

1
@David 정말 좋은, 대단히 감사합니다. 이것이 F! Box 7490의 현재 LAB-BETA (6.69)에서 작동하고 있음을 확인할 수 있습니다
Kev Inski
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.