Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Pegelwerte Fritzbox 6490 Cable auslesen?

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.7k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    2.2k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    16
    1
    3.1k

Pegelwerte Fritzbox 6490 Cable auslesen?

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
199 Beiträge 20 Kommentatoren 45.2k Aufrufe 20 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • I ichderarnd

    @fantomas2006, @NicoS
    Ich gehöre auch zu den Vodafone "Gestörten". Alle Rückkanäle sind dauerhaft auf 16QAM - mit wenigen Ausnahmen. Und das bereits seit fast einem Jahr. Im Januar 2021 waren es wenige Minuten 64QAM.
    Ich habe ein Javascript for den ioBroker geschrieben, das mir die Werte einmal pro Minute abfragt und der SQL-Adapter schreibt diese in eine SQL-Datenbank. Die Darstellung in Grafana sieht dann so aus:

    Upstream QAM.PNG

    Da Vodafone gerade die 7.22 für die Fritz.box 6591 cable ausrollt, werde ich das Script nun anpassen da sich das Verfahren für den Abgriff der Daten geändert haben soll. Aktuell hat die Fritz.box 7.13. Zukünftig kommt da wohl ein JSON String. Leider habe ich noch keine Beispieldaten.

    Weitere Werte lassen sich auch auswerten:

    Fehlerrate und MSE.PNG

    S Offline
    S Offline
    sugram
    schrieb am zuletzt editiert von sugram
    #12

    @arndl
    Habe mich extra wegen deinem Post hier angemeldet :-)
    Das ist ne Klasse Sache.
    Auch ich habe hier teilweise massive Störungen, die aber sehr sporatisch sind :(
    Mein Upload Moduliert hier manchmal nur auf 8 QAM. Habe natürlich auch schon mehrfach die Hotline bemüht, leider bisher ohne Erfolg.
    Es wäre nett wenn du mir auch das Script zur Verfügung stellen könntest.
    Dann muss ich mich hier noch einlesen, wie man das ganze dann "installiert" bzw. zum laufen bringt ;-)

    Ich habe hier die Mietbox in Betrieb, dort ist aktuell die 07.21 aktiv

    I 1 Antwort Letzte Antwort
    0
    • S sugram

      @arndl
      Habe mich extra wegen deinem Post hier angemeldet :-)
      Das ist ne Klasse Sache.
      Auch ich habe hier teilweise massive Störungen, die aber sehr sporatisch sind :(
      Mein Upload Moduliert hier manchmal nur auf 8 QAM. Habe natürlich auch schon mehrfach die Hotline bemüht, leider bisher ohne Erfolg.
      Es wäre nett wenn du mir auch das Script zur Verfügung stellen könntest.
      Dann muss ich mich hier noch einlesen, wie man das ganze dann "installiert" bzw. zum laufen bringt ;-)

      Ich habe hier die Mietbox in Betrieb, dort ist aktuell die 07.21 aktiv

      I Offline
      I Offline
      ichderarnd
      schrieb am zuletzt editiert von
      #13

      @sugram
      Das Script läuft inzwischen ganz gut bei Mike0185 und mir mit der 7.22. Ich muss da allerdings noch ein wenig aufräumen und dann wohl auch mal ins Github packen.

      Installation:

      • Der Javascript-Adapter muss installiert sein und unter „Zusätzliche NPM-Module“ die iconv-lite und crypto Module eingetragen sein.
      • In der Fritzbox einen weiteren Benutzer „ioBroker“ anlegen und mit einem Passwort versehen. Das muss im Script (siehe unten) angegeben werden.
      • Dann das unten stehende Script anlegen und dauerhaft laufen lassen. Die Variablen werden automatisch angelegt und jede Minute gefüllt.
      var logging = true;
      const iconv = require('iconv-lite');
      const crypto = require('crypto');
      
      var DOCSIS30DSChannels = 0;
      var DOCSIS31DSChannels = 0;
      var DOCSIS30USChannels = 0;
      var DOCSIS31USChannels = 0;
      
      var sid;
      var fritzBenutzer = 'ioBroker';
      var fritzPasswort = 'passwort';
      var loginURL = 'http://fritz.box/login_sid.lua?username=';
      var docsisURL = 'http://fritz.box/data.lua';
      
      // Downstream DOCSIS 3.0
      for (var i = 1; i <= 31; i++){
          var Channel = 'C' + (i < 10 ? '0' + i.toString() : i.toString());
          createState('Internet.Docsis.DS.' + Channel + '.Frequency',                    0, false, {name: 'Frequency',  unit: 'MHz',      type: 'mixed', role: 'state'});
          createState('Internet.Docsis.DS.' + Channel + '.Modulation',                   0, false, {name: 'Modulation', unit: 'QAM',      type: 'mixed', role: 'state'});
          createState('Internet.Docsis.DS.' + Channel + '.PowerLevel',                   0, false, {name: 'PowerLevel', unit: 'dBmV',     type: 'mixed', role: 'state'});
          createState('Internet.Docsis.DS.' + Channel + '.MSE',                          0, false, {name: 'MSE',        unit: 'dB',       type: 'mixed', role: 'state'});
          createState('Internet.Docsis.DS.' + Channel + '.Latency',                      0, false, {name: 'Latency',    unit: 'ms',       type: 'mixed', role: 'state'});
          createState('Internet.Docsis.DS.' + Channel + '.CorrectableErrors',            0, false, {name: 'CorrectableErrors',            type: 'mixed', role: 'state'});
          createState('Internet.Docsis.DS.' + Channel + '.CorrectableErrorsPerMinute',   0, false, {name: 'CorrectableErrorsPerMinute',   type: 'mixed', role: 'state'});
          createState('Internet.Docsis.DS.' + Channel + '.UncorrectableErrors',          0, false, {name: 'UncorrectableErrors',          type: 'mixed', role: 'state'});
          createState('Internet.Docsis.DS.' + Channel + '.UncorrectableErrorsPerMinute', 0, false, {name: 'UncorrectableErrorsPerMinute', type: 'mixed', role: 'state'});
      }
      
      // Upstream DOCSIS 3.0
      for (var i = 0; i <= 5; i++){
          var Channel = 'C0' + i.toString();
          createState('Internet.Docsis.US.' + Channel + '.Frequency',       0, false, {name: 'Frequency',  unit: 'MHz',  type: 'mixed', role: 'state'});
          createState('Internet.Docsis.US.' + Channel + '.Modulation',      0, false, {name: 'Modulation', unit: 'QAM',  type: 'mixed', role: 'state'});
          createState('Internet.Docsis.US.' + Channel + '.MultiplexMethod', 0, false, {name: 'MultiplexMethod',          type: 'mixed', role: 'state'});
          createState('Internet.Docsis.US.' + Channel + '.PowerLevel',      0, false, {name: 'PowerLevel', unit: 'dBmV', type: 'mixed', role: 'state'});
      }
      
      // Downstream DOCSIS 3.1
      createState('Internet.Docsis31.DS.C01.Frequency',      0, false, {name: 'Frequency',  unit: 'MHz',    type: 'mixed', role: 'state'});
      createState('Internet.Docsis31.DS.C01.Type',           0, false, {name: 'Modulation', unit: 'K',      type: 'mixed', role: 'state'});
      createState('Internet.Docsis31.DS.C01.PowerLevel',     0, false, {name: 'PowerLevel', unit: 'dBmV',   type: 'mixed', role: 'state'});
      
      // Upstream DOCSIS 3.1
      createState('Internet.Docsis31.US.C00.Frequency',      0, false, {name: 'Frequency',  unit: 'MHz',    type: 'mixed', role: 'state'});
      createState('Internet.Docsis31.US.C00.Type',           0, false, {name: 'Modulation', unit: 'K',      type: 'mixed', role: 'state'});
      createState('Internet.Docsis31.US.C00.MultiplexMethod',0, false, {name: 'MultiplexMethod',            type: 'mixed', role: 'state'});
      createState('Internet.Docsis31.US.C00.PowerLevel',     0, false, {name: 'PowerLevel', unit: 'dBmV',   type: 'mixed', role: 'state'});
      
      /**
       * Simple XML parser
       * @param {String} xml
       * @return {Object}
       */
      function parseXML(xml) {
      
          var beg = -1;
          var end = 0;
          var tmp = 0;
          var current = [];
          var obj = {};
          var from = -1;
      
          while (true) {
      
              beg = xml.indexOf('<', beg + 1);
              if (beg === -1)
                  break;
      
              end = xml.indexOf('>', beg + 1);
              if (end === -1)
                  break;
      
              var el = xml.substring(beg, end + 1);
              var c = el[1];
      
              if (c === '?' || c === '/') {
      
                  var o = current.pop();
      
                  if (from === -1 || o !== el.substring(2, el.length - 1))
                      continue;
      
                  var path = current.join('.') + '.' + o;
                  var value = xml.substring(from, beg);
      
                  if (typeof(obj[path]) === 'undefined')
                      obj[path] = value;
                  else if (obj[path] instanceof Array)
                      obj[path].push(value);
                  else
                      obj[path] = [obj[path], value];
      
                  from = -1;
                  continue;
              }
      
              tmp = el.indexOf(' ');
              var hasAttributes = true;
      
              if (tmp === -1) {
                  tmp = el.length - 1;
                  hasAttributes = false;
              }
      
              from = beg + el.length;
      
              var isSingle = el[el.length - 2] === '/';
              var name = el.substring(1, tmp);
      
              if (!isSingle)
                  current.push(name);
      
              if (!hasAttributes)
                  continue;
      
              var match = el.match(/\w+\=\".*?\"/g);
              if (match === null)
                  continue;
      
              var attr = {};
              var length = match.length;
      
              for (var i = 0; i < length; i++) {
                  var index = match[i].indexOf('"');
                  attr[match[i].substring(0, index - 1)] = match[i].substring(index + 1, match[i].length - 1);
              }
      
              obj[current.join('.') + (isSingle ? '.' + name : '') + '[]'] = attr;
          }
      
          return obj;
      };
      
      function loginAndGetSID(){
      
          sid = null;
      
          // Challenge holen
          var options = {
              url: loginURL + fritzBenutzer,
              method: 'GET'
          };
          request(options, function(error, response, body) {
          if (!error && response.statusCode == 200) {
              //if (logging) log('error: ' + error + ', response: ' + JSON.stringify(response) + ', body: ' + body, 'info');
              var result = parseXML(body);
              var challenge = result['SessionInfo.Challenge'];
      
              // Einloggen und SID holen
              var utf16le_encoded = iconv.encode(challenge + '-' + fritzPasswort, 'UTF-16LE', {addBOM: false});
              var challengeResponse = crypto.createHash('md5').update(utf16le_encoded).digest('hex');
      
              options = {
                  url: loginURL + '/login_sid.lua?username=' + fritzBenutzer + '&response=' + challenge + '-' + challengeResponse,
                  method: 'GET'
              };
              request(options, function(error, response, body) {
                  if (!error && response.statusCode == 200) {
                      var result = parseXML(body);
                      sid = result['SessionInfo.SID'];
                      if (logging) log('Logged in. SID = ' + sid, 'info');
                  }
                  else {
                      log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
                  }
              });
          }
          else {
              log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
          }
          });
      }
      
      // Wenn keine Daten abgerufen werden konnten, werden die States auf NULL gesetzt
      function setStates2NullValues(){
      
          var NullValue = null;
      
          // DOCSIS 3.0 Downstream Channels
          for (i = 0; i < DOCSIS30DSChannels; i++) {
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Frequency', NullValue, true);
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Modulation', NullValue, true);
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.PowerLevel', NullValue, true);
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.MSE', NullValue, true);
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Latency', NullValue, true);
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.CorrectableErrors', NullValue, true);
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.CorrectableErrorsPerMinute', NullValue, true);
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.UncorrectableErrors', NullValue, true);
              setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.UncorrectableErrorsPerMinute', NullValue, true);
          }
      
          // DOCSIS 3.1 Downstream Channel
          setState('Internet.Docsis31.DS.C01.PowerLevel', NullValue, true);
          setState('Internet.Docsis31.DS.C01.Type', NullValue, true);
          setState('Internet.Docsis31.DS.C01.Frequency', NullValue, true);
      
          // DOCSIS 3.0 Upstream Channels
          for (i = 0; i < DOCSIS30USChannels; i++) {
              setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.Frequency', NullValue, true);
              setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.Modulation', NullValue, true);
              setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.MultiplexMethod', NullValue, true);
              setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.PowerLevel', NullValue, true);
          }
      
          // DOCSIS 3.1 Upstream Channel
          setState('Internet.Docsis31.US.C00.PowerLevel', NullValue, true);
          setState('Internet.Docsis31.US.C00.Type', NullValue, true);
          setState('Internet.Docsis31.US.C00.MultiplexMethod', NullValue, true);
          setState('Internet.Docsis31.US.C00.Frequency', NullValue, true);
      }
      
      // Holt die Informationen von der Fritzbox Benutzeroberfläche. Ab fritz.OS Version 7.2x werden die Informationen als JSON-String übermittelt (getCableModemChannelInfos Version 2)
      function getCableModemChannelInfosV2(){
      
          var NullValue = null;
          var tableData;
      
          var options = {
              url: docsisURL,
              method: 'POST',
              headers: {
                  'Content-Type': 'application/x-www-form-urlencoded'
              },
              body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
          };
          request(options, function(error, response, body) {
              if (!error && response.statusCode == 200) {
                  tableData = JSON.parse(body);
                  if(tableData){
                      //log(JSON.stringify(tableData), 'info');
                      
                      // DOCSIS 3.0 Downstream Channels
                      DOCSIS30DSChannels = Object.entries(tableData.data.channelDs.docsis30).length;
                      for (i = 0; i < DOCSIS30DSChannels; i++) {
      
                          var channelID = parseInt(tableData.data.channelDs.docsis30[i].channelID);
      
                          setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Frequency', parseInt(tableData.data.channelDs.docsis30[i].frequency), true);
                          setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Modulation', parseInt(tableData.data.channelDs.docsis30[i].type.replace('QAM', '')), true);
                          setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.PowerLevel', parseFloat(tableData.data.channelDs.docsis30[i].powerLevel), true);
                          setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.MSE', parseFloat(tableData.data.channelDs.docsis30[i].mse), true);
                          setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Latency', parseFloat(tableData.data.channelDs.docsis30[i].latency), true);
      
                          var correctableErrors = getState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrors');
                          var lastValue = correctableErrors.val;
                          var ts_diff = new Date().getTime() - correctableErrors.ts;
                          var newValue = parseInt(tableData.data.channelDs.docsis30[i].corrErrors);
                          setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrors', newValue, true);
                          // Die Differenz zum letzten Wert nur dann speichern, wenn dieser ca. 1 Min. alt ist
                          if (ts_diff > 50000 && ts_diff < 70000){
                              if (newValue > lastValue){
                                  setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrorsPerMinute', newValue - lastValue, true);
                              }
                          }
                          else {
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrorsPerMinute', NullValue, true);
                          }
      
                          var uncorrectableErrors = getState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrors');
                          var lastValue = uncorrectableErrors.val;
                          var ts_diff = new Date().getTime() - uncorrectableErrors.ts;
                          var newValue = parseInt(tableData.data.channelDs.docsis30[i].nonCorrErrors);
                          setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrors', newValue, true);
                          // Die Differenz zum letzten Wert nur dann speichern, wenn dieser ca. 1 Min. alt ist
                          if (ts_diff > 50000 && ts_diff < 70000){
                              if (newValue > lastValue){
                                  setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrorsPerMinute', newValue - lastValue, true);
                              }
                          }
                          else {
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrorsPerMinute', NullValue, true);
                          }
                      }
      
                      // DOCSIS 3.1 Downstream Channel
                      if (tableData.data.channelDs.docsis31 != null){
                          DOCSIS31DSChannels = 1;
                          setState('Internet.Docsis31.DS.C01.PowerLevel', parseFloat(tableData.data.channelDs.docsis31[0].powerLevel), true);
                          setState('Internet.Docsis31.DS.C01.Type', parseInt(tableData.data.channelDs.docsis31[0].type.replace('K', '')), true);
                          setState('Internet.Docsis31.DS.C01.Frequency', tableData.data.channelDs.docsis31[0].frequency, true);
                      }
      
                      // DOCSIS 3.0 Upstream Channels
                      DOCSIS30USChannels = Object.entries(tableData.data.channelUs.docsis30).length;
                      for (i = 0; i < DOCSIS30USChannels; i++) {
                          var channelID = parseInt(tableData.data.channelUs.docsis30[i].channelID);
                          setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.Frequency', parseInt(tableData.data.channelUs.docsis30[i].frequency), true);
                          setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.Modulation', parseInt(tableData.data.channelUs.docsis30[i].type.replace('QAM', '')), true);
                          setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.MultiplexMethod', tableData.data.channelUs.docsis30[i].multiplex, true);
                          setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.PowerLevel', parseFloat(tableData.data.channelUs.docsis30[i].powerLevel), true);
                      }
      
                      // DOCSIS 3.1 Upstream Channel
                      if (tableData.data.channelUs.docsis31 != null){
                          DOCSIS31USChannels = 1;
                          setState('Internet.Docsis31.US.C00.PowerLevel', parseFloat(tableData.data.channelUs.docsis31[0].powerLevel), true);
                          setState('Internet.Docsis31.US.C00.Type', parseInt(tableData.data.channelUs.docsis31[0].type.replace('K', '')), true);
                          setState('Internet.Docsis31.US.C00.MultiplexMethod', tableData.data.channelUs.docsis31[0].multiplex, true);
                          setState('Internet.Docsis31.US.C00.Frequency', parseInt(tableData.data.channelUs.docsis31[0].frequency), true);
                      }
      
                  }
                  else{
                      log('Empty response', 'error');
                      setStates2NullValues();
                      loginAndGetSID();
                  }
              }
              else {
                  log('error: ' + error + ', response: ' + response.statusCode.toString(), 'error');
                  setStates2NullValues();
                  loginAndGetSID();
              }
          });
      
      }
      
      if (logging) log('DocsisInfo starting', 'info');
      
      // SID holen und merken (User Token)
      loginAndGetSID();
      var getSIDinterval = setInterval(loginAndGetSID, 900000);   // Alle 15 Minuten neue SID holen
      
      schedule("* * * * *", function() {                          // Zu jeder vollen Minute die Fritzbox DOCSIS-Daten abfragen
          getCableModemChannelInfosV2();
      });
      
      sigi234S S 2 Antworten Letzte Antwort
      1
      • I ichderarnd

        @sugram
        Das Script läuft inzwischen ganz gut bei Mike0185 und mir mit der 7.22. Ich muss da allerdings noch ein wenig aufräumen und dann wohl auch mal ins Github packen.

        Installation:

        • Der Javascript-Adapter muss installiert sein und unter „Zusätzliche NPM-Module“ die iconv-lite und crypto Module eingetragen sein.
        • In der Fritzbox einen weiteren Benutzer „ioBroker“ anlegen und mit einem Passwort versehen. Das muss im Script (siehe unten) angegeben werden.
        • Dann das unten stehende Script anlegen und dauerhaft laufen lassen. Die Variablen werden automatisch angelegt und jede Minute gefüllt.
        var logging = true;
        const iconv = require('iconv-lite');
        const crypto = require('crypto');
        
        var DOCSIS30DSChannels = 0;
        var DOCSIS31DSChannels = 0;
        var DOCSIS30USChannels = 0;
        var DOCSIS31USChannels = 0;
        
        var sid;
        var fritzBenutzer = 'ioBroker';
        var fritzPasswort = 'passwort';
        var loginURL = 'http://fritz.box/login_sid.lua?username=';
        var docsisURL = 'http://fritz.box/data.lua';
        
        // Downstream DOCSIS 3.0
        for (var i = 1; i <= 31; i++){
            var Channel = 'C' + (i < 10 ? '0' + i.toString() : i.toString());
            createState('Internet.Docsis.DS.' + Channel + '.Frequency',                    0, false, {name: 'Frequency',  unit: 'MHz',      type: 'mixed', role: 'state'});
            createState('Internet.Docsis.DS.' + Channel + '.Modulation',                   0, false, {name: 'Modulation', unit: 'QAM',      type: 'mixed', role: 'state'});
            createState('Internet.Docsis.DS.' + Channel + '.PowerLevel',                   0, false, {name: 'PowerLevel', unit: 'dBmV',     type: 'mixed', role: 'state'});
            createState('Internet.Docsis.DS.' + Channel + '.MSE',                          0, false, {name: 'MSE',        unit: 'dB',       type: 'mixed', role: 'state'});
            createState('Internet.Docsis.DS.' + Channel + '.Latency',                      0, false, {name: 'Latency',    unit: 'ms',       type: 'mixed', role: 'state'});
            createState('Internet.Docsis.DS.' + Channel + '.CorrectableErrors',            0, false, {name: 'CorrectableErrors',            type: 'mixed', role: 'state'});
            createState('Internet.Docsis.DS.' + Channel + '.CorrectableErrorsPerMinute',   0, false, {name: 'CorrectableErrorsPerMinute',   type: 'mixed', role: 'state'});
            createState('Internet.Docsis.DS.' + Channel + '.UncorrectableErrors',          0, false, {name: 'UncorrectableErrors',          type: 'mixed', role: 'state'});
            createState('Internet.Docsis.DS.' + Channel + '.UncorrectableErrorsPerMinute', 0, false, {name: 'UncorrectableErrorsPerMinute', type: 'mixed', role: 'state'});
        }
        
        // Upstream DOCSIS 3.0
        for (var i = 0; i <= 5; i++){
            var Channel = 'C0' + i.toString();
            createState('Internet.Docsis.US.' + Channel + '.Frequency',       0, false, {name: 'Frequency',  unit: 'MHz',  type: 'mixed', role: 'state'});
            createState('Internet.Docsis.US.' + Channel + '.Modulation',      0, false, {name: 'Modulation', unit: 'QAM',  type: 'mixed', role: 'state'});
            createState('Internet.Docsis.US.' + Channel + '.MultiplexMethod', 0, false, {name: 'MultiplexMethod',          type: 'mixed', role: 'state'});
            createState('Internet.Docsis.US.' + Channel + '.PowerLevel',      0, false, {name: 'PowerLevel', unit: 'dBmV', type: 'mixed', role: 'state'});
        }
        
        // Downstream DOCSIS 3.1
        createState('Internet.Docsis31.DS.C01.Frequency',      0, false, {name: 'Frequency',  unit: 'MHz',    type: 'mixed', role: 'state'});
        createState('Internet.Docsis31.DS.C01.Type',           0, false, {name: 'Modulation', unit: 'K',      type: 'mixed', role: 'state'});
        createState('Internet.Docsis31.DS.C01.PowerLevel',     0, false, {name: 'PowerLevel', unit: 'dBmV',   type: 'mixed', role: 'state'});
        
        // Upstream DOCSIS 3.1
        createState('Internet.Docsis31.US.C00.Frequency',      0, false, {name: 'Frequency',  unit: 'MHz',    type: 'mixed', role: 'state'});
        createState('Internet.Docsis31.US.C00.Type',           0, false, {name: 'Modulation', unit: 'K',      type: 'mixed', role: 'state'});
        createState('Internet.Docsis31.US.C00.MultiplexMethod',0, false, {name: 'MultiplexMethod',            type: 'mixed', role: 'state'});
        createState('Internet.Docsis31.US.C00.PowerLevel',     0, false, {name: 'PowerLevel', unit: 'dBmV',   type: 'mixed', role: 'state'});
        
        /**
         * Simple XML parser
         * @param {String} xml
         * @return {Object}
         */
        function parseXML(xml) {
        
            var beg = -1;
            var end = 0;
            var tmp = 0;
            var current = [];
            var obj = {};
            var from = -1;
        
            while (true) {
        
                beg = xml.indexOf('<', beg + 1);
                if (beg === -1)
                    break;
        
                end = xml.indexOf('>', beg + 1);
                if (end === -1)
                    break;
        
                var el = xml.substring(beg, end + 1);
                var c = el[1];
        
                if (c === '?' || c === '/') {
        
                    var o = current.pop();
        
                    if (from === -1 || o !== el.substring(2, el.length - 1))
                        continue;
        
                    var path = current.join('.') + '.' + o;
                    var value = xml.substring(from, beg);
        
                    if (typeof(obj[path]) === 'undefined')
                        obj[path] = value;
                    else if (obj[path] instanceof Array)
                        obj[path].push(value);
                    else
                        obj[path] = [obj[path], value];
        
                    from = -1;
                    continue;
                }
        
                tmp = el.indexOf(' ');
                var hasAttributes = true;
        
                if (tmp === -1) {
                    tmp = el.length - 1;
                    hasAttributes = false;
                }
        
                from = beg + el.length;
        
                var isSingle = el[el.length - 2] === '/';
                var name = el.substring(1, tmp);
        
                if (!isSingle)
                    current.push(name);
        
                if (!hasAttributes)
                    continue;
        
                var match = el.match(/\w+\=\".*?\"/g);
                if (match === null)
                    continue;
        
                var attr = {};
                var length = match.length;
        
                for (var i = 0; i < length; i++) {
                    var index = match[i].indexOf('"');
                    attr[match[i].substring(0, index - 1)] = match[i].substring(index + 1, match[i].length - 1);
                }
        
                obj[current.join('.') + (isSingle ? '.' + name : '') + '[]'] = attr;
            }
        
            return obj;
        };
        
        function loginAndGetSID(){
        
            sid = null;
        
            // Challenge holen
            var options = {
                url: loginURL + fritzBenutzer,
                method: 'GET'
            };
            request(options, function(error, response, body) {
            if (!error && response.statusCode == 200) {
                //if (logging) log('error: ' + error + ', response: ' + JSON.stringify(response) + ', body: ' + body, 'info');
                var result = parseXML(body);
                var challenge = result['SessionInfo.Challenge'];
        
                // Einloggen und SID holen
                var utf16le_encoded = iconv.encode(challenge + '-' + fritzPasswort, 'UTF-16LE', {addBOM: false});
                var challengeResponse = crypto.createHash('md5').update(utf16le_encoded).digest('hex');
        
                options = {
                    url: loginURL + '/login_sid.lua?username=' + fritzBenutzer + '&response=' + challenge + '-' + challengeResponse,
                    method: 'GET'
                };
                request(options, function(error, response, body) {
                    if (!error && response.statusCode == 200) {
                        var result = parseXML(body);
                        sid = result['SessionInfo.SID'];
                        if (logging) log('Logged in. SID = ' + sid, 'info');
                    }
                    else {
                        log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
                    }
                });
            }
            else {
                log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
            }
            });
        }
        
        // Wenn keine Daten abgerufen werden konnten, werden die States auf NULL gesetzt
        function setStates2NullValues(){
        
            var NullValue = null;
        
            // DOCSIS 3.0 Downstream Channels
            for (i = 0; i < DOCSIS30DSChannels; i++) {
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Frequency', NullValue, true);
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Modulation', NullValue, true);
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.PowerLevel', NullValue, true);
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.MSE', NullValue, true);
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Latency', NullValue, true);
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.CorrectableErrors', NullValue, true);
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.CorrectableErrorsPerMinute', NullValue, true);
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.UncorrectableErrors', NullValue, true);
                setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.UncorrectableErrorsPerMinute', NullValue, true);
            }
        
            // DOCSIS 3.1 Downstream Channel
            setState('Internet.Docsis31.DS.C01.PowerLevel', NullValue, true);
            setState('Internet.Docsis31.DS.C01.Type', NullValue, true);
            setState('Internet.Docsis31.DS.C01.Frequency', NullValue, true);
        
            // DOCSIS 3.0 Upstream Channels
            for (i = 0; i < DOCSIS30USChannels; i++) {
                setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.Frequency', NullValue, true);
                setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.Modulation', NullValue, true);
                setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.MultiplexMethod', NullValue, true);
                setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.PowerLevel', NullValue, true);
            }
        
            // DOCSIS 3.1 Upstream Channel
            setState('Internet.Docsis31.US.C00.PowerLevel', NullValue, true);
            setState('Internet.Docsis31.US.C00.Type', NullValue, true);
            setState('Internet.Docsis31.US.C00.MultiplexMethod', NullValue, true);
            setState('Internet.Docsis31.US.C00.Frequency', NullValue, true);
        }
        
        // Holt die Informationen von der Fritzbox Benutzeroberfläche. Ab fritz.OS Version 7.2x werden die Informationen als JSON-String übermittelt (getCableModemChannelInfos Version 2)
        function getCableModemChannelInfosV2(){
        
            var NullValue = null;
            var tableData;
        
            var options = {
                url: docsisURL,
                method: 'POST',
                headers: {
                    'Content-Type': 'application/x-www-form-urlencoded'
                },
                body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
            };
            request(options, function(error, response, body) {
                if (!error && response.statusCode == 200) {
                    tableData = JSON.parse(body);
                    if(tableData){
                        //log(JSON.stringify(tableData), 'info');
                        
                        // DOCSIS 3.0 Downstream Channels
                        DOCSIS30DSChannels = Object.entries(tableData.data.channelDs.docsis30).length;
                        for (i = 0; i < DOCSIS30DSChannels; i++) {
        
                            var channelID = parseInt(tableData.data.channelDs.docsis30[i].channelID);
        
                            setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Frequency', parseInt(tableData.data.channelDs.docsis30[i].frequency), true);
                            setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Modulation', parseInt(tableData.data.channelDs.docsis30[i].type.replace('QAM', '')), true);
                            setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.PowerLevel', parseFloat(tableData.data.channelDs.docsis30[i].powerLevel), true);
                            setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.MSE', parseFloat(tableData.data.channelDs.docsis30[i].mse), true);
                            setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Latency', parseFloat(tableData.data.channelDs.docsis30[i].latency), true);
        
                            var correctableErrors = getState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrors');
                            var lastValue = correctableErrors.val;
                            var ts_diff = new Date().getTime() - correctableErrors.ts;
                            var newValue = parseInt(tableData.data.channelDs.docsis30[i].corrErrors);
                            setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrors', newValue, true);
                            // Die Differenz zum letzten Wert nur dann speichern, wenn dieser ca. 1 Min. alt ist
                            if (ts_diff > 50000 && ts_diff < 70000){
                                if (newValue > lastValue){
                                    setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrorsPerMinute', newValue - lastValue, true);
                                }
                            }
                            else {
                                setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrorsPerMinute', NullValue, true);
                            }
        
                            var uncorrectableErrors = getState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrors');
                            var lastValue = uncorrectableErrors.val;
                            var ts_diff = new Date().getTime() - uncorrectableErrors.ts;
                            var newValue = parseInt(tableData.data.channelDs.docsis30[i].nonCorrErrors);
                            setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrors', newValue, true);
                            // Die Differenz zum letzten Wert nur dann speichern, wenn dieser ca. 1 Min. alt ist
                            if (ts_diff > 50000 && ts_diff < 70000){
                                if (newValue > lastValue){
                                    setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrorsPerMinute', newValue - lastValue, true);
                                }
                            }
                            else {
                                setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrorsPerMinute', NullValue, true);
                            }
                        }
        
                        // DOCSIS 3.1 Downstream Channel
                        if (tableData.data.channelDs.docsis31 != null){
                            DOCSIS31DSChannels = 1;
                            setState('Internet.Docsis31.DS.C01.PowerLevel', parseFloat(tableData.data.channelDs.docsis31[0].powerLevel), true);
                            setState('Internet.Docsis31.DS.C01.Type', parseInt(tableData.data.channelDs.docsis31[0].type.replace('K', '')), true);
                            setState('Internet.Docsis31.DS.C01.Frequency', tableData.data.channelDs.docsis31[0].frequency, true);
                        }
        
                        // DOCSIS 3.0 Upstream Channels
                        DOCSIS30USChannels = Object.entries(tableData.data.channelUs.docsis30).length;
                        for (i = 0; i < DOCSIS30USChannels; i++) {
                            var channelID = parseInt(tableData.data.channelUs.docsis30[i].channelID);
                            setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.Frequency', parseInt(tableData.data.channelUs.docsis30[i].frequency), true);
                            setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.Modulation', parseInt(tableData.data.channelUs.docsis30[i].type.replace('QAM', '')), true);
                            setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.MultiplexMethod', tableData.data.channelUs.docsis30[i].multiplex, true);
                            setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.PowerLevel', parseFloat(tableData.data.channelUs.docsis30[i].powerLevel), true);
                        }
        
                        // DOCSIS 3.1 Upstream Channel
                        if (tableData.data.channelUs.docsis31 != null){
                            DOCSIS31USChannels = 1;
                            setState('Internet.Docsis31.US.C00.PowerLevel', parseFloat(tableData.data.channelUs.docsis31[0].powerLevel), true);
                            setState('Internet.Docsis31.US.C00.Type', parseInt(tableData.data.channelUs.docsis31[0].type.replace('K', '')), true);
                            setState('Internet.Docsis31.US.C00.MultiplexMethod', tableData.data.channelUs.docsis31[0].multiplex, true);
                            setState('Internet.Docsis31.US.C00.Frequency', parseInt(tableData.data.channelUs.docsis31[0].frequency), true);
                        }
        
                    }
                    else{
                        log('Empty response', 'error');
                        setStates2NullValues();
                        loginAndGetSID();
                    }
                }
                else {
                    log('error: ' + error + ', response: ' + response.statusCode.toString(), 'error');
                    setStates2NullValues();
                    loginAndGetSID();
                }
            });
        
        }
        
        if (logging) log('DocsisInfo starting', 'info');
        
        // SID holen und merken (User Token)
        loginAndGetSID();
        var getSIDinterval = setInterval(loginAndGetSID, 900000);   // Alle 15 Minuten neue SID holen
        
        schedule("* * * * *", function() {                          // Zu jeder vollen Minute die Fritzbox DOCSIS-Daten abfragen
            getCableModemChannelInfosV2();
        });
        
        sigi234S Online
        sigi234S Online
        sigi234
        Forum Testing Most Active
        schrieb am zuletzt editiert von sigi234
        #14

        @arndl

        javascript.0	2021-04-04 18:56:00.699	error	(14740) script.js.Fritz.UID: error: null, response: 403
        

        Modell: FRITZ!Box 6590 Cable
        Aktueller Energieverbrauch: 30 %
        FRITZ!OS: 07.20

        Muss der Benutzer ioBroker heißen?

        Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
        Immer Daten sichern!

        I 1 Antwort Letzte Antwort
        0
        • I ichderarnd

          @sugram
          Das Script läuft inzwischen ganz gut bei Mike0185 und mir mit der 7.22. Ich muss da allerdings noch ein wenig aufräumen und dann wohl auch mal ins Github packen.

          Installation:

          • Der Javascript-Adapter muss installiert sein und unter „Zusätzliche NPM-Module“ die iconv-lite und crypto Module eingetragen sein.
          • In der Fritzbox einen weiteren Benutzer „ioBroker“ anlegen und mit einem Passwort versehen. Das muss im Script (siehe unten) angegeben werden.
          • Dann das unten stehende Script anlegen und dauerhaft laufen lassen. Die Variablen werden automatisch angelegt und jede Minute gefüllt.
          var logging = true;
          const iconv = require('iconv-lite');
          const crypto = require('crypto');
          
          var DOCSIS30DSChannels = 0;
          var DOCSIS31DSChannels = 0;
          var DOCSIS30USChannels = 0;
          var DOCSIS31USChannels = 0;
          
          var sid;
          var fritzBenutzer = 'ioBroker';
          var fritzPasswort = 'passwort';
          var loginURL = 'http://fritz.box/login_sid.lua?username=';
          var docsisURL = 'http://fritz.box/data.lua';
          
          // Downstream DOCSIS 3.0
          for (var i = 1; i <= 31; i++){
              var Channel = 'C' + (i < 10 ? '0' + i.toString() : i.toString());
              createState('Internet.Docsis.DS.' + Channel + '.Frequency',                    0, false, {name: 'Frequency',  unit: 'MHz',      type: 'mixed', role: 'state'});
              createState('Internet.Docsis.DS.' + Channel + '.Modulation',                   0, false, {name: 'Modulation', unit: 'QAM',      type: 'mixed', role: 'state'});
              createState('Internet.Docsis.DS.' + Channel + '.PowerLevel',                   0, false, {name: 'PowerLevel', unit: 'dBmV',     type: 'mixed', role: 'state'});
              createState('Internet.Docsis.DS.' + Channel + '.MSE',                          0, false, {name: 'MSE',        unit: 'dB',       type: 'mixed', role: 'state'});
              createState('Internet.Docsis.DS.' + Channel + '.Latency',                      0, false, {name: 'Latency',    unit: 'ms',       type: 'mixed', role: 'state'});
              createState('Internet.Docsis.DS.' + Channel + '.CorrectableErrors',            0, false, {name: 'CorrectableErrors',            type: 'mixed', role: 'state'});
              createState('Internet.Docsis.DS.' + Channel + '.CorrectableErrorsPerMinute',   0, false, {name: 'CorrectableErrorsPerMinute',   type: 'mixed', role: 'state'});
              createState('Internet.Docsis.DS.' + Channel + '.UncorrectableErrors',          0, false, {name: 'UncorrectableErrors',          type: 'mixed', role: 'state'});
              createState('Internet.Docsis.DS.' + Channel + '.UncorrectableErrorsPerMinute', 0, false, {name: 'UncorrectableErrorsPerMinute', type: 'mixed', role: 'state'});
          }
          
          // Upstream DOCSIS 3.0
          for (var i = 0; i <= 5; i++){
              var Channel = 'C0' + i.toString();
              createState('Internet.Docsis.US.' + Channel + '.Frequency',       0, false, {name: 'Frequency',  unit: 'MHz',  type: 'mixed', role: 'state'});
              createState('Internet.Docsis.US.' + Channel + '.Modulation',      0, false, {name: 'Modulation', unit: 'QAM',  type: 'mixed', role: 'state'});
              createState('Internet.Docsis.US.' + Channel + '.MultiplexMethod', 0, false, {name: 'MultiplexMethod',          type: 'mixed', role: 'state'});
              createState('Internet.Docsis.US.' + Channel + '.PowerLevel',      0, false, {name: 'PowerLevel', unit: 'dBmV', type: 'mixed', role: 'state'});
          }
          
          // Downstream DOCSIS 3.1
          createState('Internet.Docsis31.DS.C01.Frequency',      0, false, {name: 'Frequency',  unit: 'MHz',    type: 'mixed', role: 'state'});
          createState('Internet.Docsis31.DS.C01.Type',           0, false, {name: 'Modulation', unit: 'K',      type: 'mixed', role: 'state'});
          createState('Internet.Docsis31.DS.C01.PowerLevel',     0, false, {name: 'PowerLevel', unit: 'dBmV',   type: 'mixed', role: 'state'});
          
          // Upstream DOCSIS 3.1
          createState('Internet.Docsis31.US.C00.Frequency',      0, false, {name: 'Frequency',  unit: 'MHz',    type: 'mixed', role: 'state'});
          createState('Internet.Docsis31.US.C00.Type',           0, false, {name: 'Modulation', unit: 'K',      type: 'mixed', role: 'state'});
          createState('Internet.Docsis31.US.C00.MultiplexMethod',0, false, {name: 'MultiplexMethod',            type: 'mixed', role: 'state'});
          createState('Internet.Docsis31.US.C00.PowerLevel',     0, false, {name: 'PowerLevel', unit: 'dBmV',   type: 'mixed', role: 'state'});
          
          /**
           * Simple XML parser
           * @param {String} xml
           * @return {Object}
           */
          function parseXML(xml) {
          
              var beg = -1;
              var end = 0;
              var tmp = 0;
              var current = [];
              var obj = {};
              var from = -1;
          
              while (true) {
          
                  beg = xml.indexOf('<', beg + 1);
                  if (beg === -1)
                      break;
          
                  end = xml.indexOf('>', beg + 1);
                  if (end === -1)
                      break;
          
                  var el = xml.substring(beg, end + 1);
                  var c = el[1];
          
                  if (c === '?' || c === '/') {
          
                      var o = current.pop();
          
                      if (from === -1 || o !== el.substring(2, el.length - 1))
                          continue;
          
                      var path = current.join('.') + '.' + o;
                      var value = xml.substring(from, beg);
          
                      if (typeof(obj[path]) === 'undefined')
                          obj[path] = value;
                      else if (obj[path] instanceof Array)
                          obj[path].push(value);
                      else
                          obj[path] = [obj[path], value];
          
                      from = -1;
                      continue;
                  }
          
                  tmp = el.indexOf(' ');
                  var hasAttributes = true;
          
                  if (tmp === -1) {
                      tmp = el.length - 1;
                      hasAttributes = false;
                  }
          
                  from = beg + el.length;
          
                  var isSingle = el[el.length - 2] === '/';
                  var name = el.substring(1, tmp);
          
                  if (!isSingle)
                      current.push(name);
          
                  if (!hasAttributes)
                      continue;
          
                  var match = el.match(/\w+\=\".*?\"/g);
                  if (match === null)
                      continue;
          
                  var attr = {};
                  var length = match.length;
          
                  for (var i = 0; i < length; i++) {
                      var index = match[i].indexOf('"');
                      attr[match[i].substring(0, index - 1)] = match[i].substring(index + 1, match[i].length - 1);
                  }
          
                  obj[current.join('.') + (isSingle ? '.' + name : '') + '[]'] = attr;
              }
          
              return obj;
          };
          
          function loginAndGetSID(){
          
              sid = null;
          
              // Challenge holen
              var options = {
                  url: loginURL + fritzBenutzer,
                  method: 'GET'
              };
              request(options, function(error, response, body) {
              if (!error && response.statusCode == 200) {
                  //if (logging) log('error: ' + error + ', response: ' + JSON.stringify(response) + ', body: ' + body, 'info');
                  var result = parseXML(body);
                  var challenge = result['SessionInfo.Challenge'];
          
                  // Einloggen und SID holen
                  var utf16le_encoded = iconv.encode(challenge + '-' + fritzPasswort, 'UTF-16LE', {addBOM: false});
                  var challengeResponse = crypto.createHash('md5').update(utf16le_encoded).digest('hex');
          
                  options = {
                      url: loginURL + '/login_sid.lua?username=' + fritzBenutzer + '&response=' + challenge + '-' + challengeResponse,
                      method: 'GET'
                  };
                  request(options, function(error, response, body) {
                      if (!error && response.statusCode == 200) {
                          var result = parseXML(body);
                          sid = result['SessionInfo.SID'];
                          if (logging) log('Logged in. SID = ' + sid, 'info');
                      }
                      else {
                          log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
                      }
                  });
              }
              else {
                  log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
              }
              });
          }
          
          // Wenn keine Daten abgerufen werden konnten, werden die States auf NULL gesetzt
          function setStates2NullValues(){
          
              var NullValue = null;
          
              // DOCSIS 3.0 Downstream Channels
              for (i = 0; i < DOCSIS30DSChannels; i++) {
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Frequency', NullValue, true);
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Modulation', NullValue, true);
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.PowerLevel', NullValue, true);
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.MSE', NullValue, true);
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.Latency', NullValue, true);
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.CorrectableErrors', NullValue, true);
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.CorrectableErrorsPerMinute', NullValue, true);
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.UncorrectableErrors', NullValue, true);
                  setState('Internet.Docsis.DS.C' + (i < 10 ? '0' : '') + i.toString() + '.UncorrectableErrorsPerMinute', NullValue, true);
              }
          
              // DOCSIS 3.1 Downstream Channel
              setState('Internet.Docsis31.DS.C01.PowerLevel', NullValue, true);
              setState('Internet.Docsis31.DS.C01.Type', NullValue, true);
              setState('Internet.Docsis31.DS.C01.Frequency', NullValue, true);
          
              // DOCSIS 3.0 Upstream Channels
              for (i = 0; i < DOCSIS30USChannels; i++) {
                  setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.Frequency', NullValue, true);
                  setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.Modulation', NullValue, true);
                  setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.MultiplexMethod', NullValue, true);
                  setState('Internet.Docsis.US.C' + (i < 10 ? '0' : '') + i.toString() + '.PowerLevel', NullValue, true);
              }
          
              // DOCSIS 3.1 Upstream Channel
              setState('Internet.Docsis31.US.C00.PowerLevel', NullValue, true);
              setState('Internet.Docsis31.US.C00.Type', NullValue, true);
              setState('Internet.Docsis31.US.C00.MultiplexMethod', NullValue, true);
              setState('Internet.Docsis31.US.C00.Frequency', NullValue, true);
          }
          
          // Holt die Informationen von der Fritzbox Benutzeroberfläche. Ab fritz.OS Version 7.2x werden die Informationen als JSON-String übermittelt (getCableModemChannelInfos Version 2)
          function getCableModemChannelInfosV2(){
          
              var NullValue = null;
              var tableData;
          
              var options = {
                  url: docsisURL,
                  method: 'POST',
                  headers: {
                      'Content-Type': 'application/x-www-form-urlencoded'
                  },
                  body: 'xhr=1&sid=' + sid + '&lang=de&page=docInfo&xhrId=all&no_sidrenew='
              };
              request(options, function(error, response, body) {
                  if (!error && response.statusCode == 200) {
                      tableData = JSON.parse(body);
                      if(tableData){
                          //log(JSON.stringify(tableData), 'info');
                          
                          // DOCSIS 3.0 Downstream Channels
                          DOCSIS30DSChannels = Object.entries(tableData.data.channelDs.docsis30).length;
                          for (i = 0; i < DOCSIS30DSChannels; i++) {
          
                              var channelID = parseInt(tableData.data.channelDs.docsis30[i].channelID);
          
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Frequency', parseInt(tableData.data.channelDs.docsis30[i].frequency), true);
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Modulation', parseInt(tableData.data.channelDs.docsis30[i].type.replace('QAM', '')), true);
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.PowerLevel', parseFloat(tableData.data.channelDs.docsis30[i].powerLevel), true);
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.MSE', parseFloat(tableData.data.channelDs.docsis30[i].mse), true);
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.Latency', parseFloat(tableData.data.channelDs.docsis30[i].latency), true);
          
                              var correctableErrors = getState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrors');
                              var lastValue = correctableErrors.val;
                              var ts_diff = new Date().getTime() - correctableErrors.ts;
                              var newValue = parseInt(tableData.data.channelDs.docsis30[i].corrErrors);
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrors', newValue, true);
                              // Die Differenz zum letzten Wert nur dann speichern, wenn dieser ca. 1 Min. alt ist
                              if (ts_diff > 50000 && ts_diff < 70000){
                                  if (newValue > lastValue){
                                      setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrorsPerMinute', newValue - lastValue, true);
                                  }
                              }
                              else {
                                  setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.CorrectableErrorsPerMinute', NullValue, true);
                              }
          
                              var uncorrectableErrors = getState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrors');
                              var lastValue = uncorrectableErrors.val;
                              var ts_diff = new Date().getTime() - uncorrectableErrors.ts;
                              var newValue = parseInt(tableData.data.channelDs.docsis30[i].nonCorrErrors);
                              setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrors', newValue, true);
                              // Die Differenz zum letzten Wert nur dann speichern, wenn dieser ca. 1 Min. alt ist
                              if (ts_diff > 50000 && ts_diff < 70000){
                                  if (newValue > lastValue){
                                      setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrorsPerMinute', newValue - lastValue, true);
                                  }
                              }
                              else {
                                  setState('Internet.Docsis.DS.C' + (channelID < 10 ? '0' : '') + tableData.data.channelDs.docsis30[i].channelID + '.UncorrectableErrorsPerMinute', NullValue, true);
                              }
                          }
          
                          // DOCSIS 3.1 Downstream Channel
                          if (tableData.data.channelDs.docsis31 != null){
                              DOCSIS31DSChannels = 1;
                              setState('Internet.Docsis31.DS.C01.PowerLevel', parseFloat(tableData.data.channelDs.docsis31[0].powerLevel), true);
                              setState('Internet.Docsis31.DS.C01.Type', parseInt(tableData.data.channelDs.docsis31[0].type.replace('K', '')), true);
                              setState('Internet.Docsis31.DS.C01.Frequency', tableData.data.channelDs.docsis31[0].frequency, true);
                          }
          
                          // DOCSIS 3.0 Upstream Channels
                          DOCSIS30USChannels = Object.entries(tableData.data.channelUs.docsis30).length;
                          for (i = 0; i < DOCSIS30USChannels; i++) {
                              var channelID = parseInt(tableData.data.channelUs.docsis30[i].channelID);
                              setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.Frequency', parseInt(tableData.data.channelUs.docsis30[i].frequency), true);
                              setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.Modulation', parseInt(tableData.data.channelUs.docsis30[i].type.replace('QAM', '')), true);
                              setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.MultiplexMethod', tableData.data.channelUs.docsis30[i].multiplex, true);
                              setState('Internet.Docsis.US.C' + (channelID < 10 ? '0' : '') + tableData.data.channelUs.docsis30[i].channelID + '.PowerLevel', parseFloat(tableData.data.channelUs.docsis30[i].powerLevel), true);
                          }
          
                          // DOCSIS 3.1 Upstream Channel
                          if (tableData.data.channelUs.docsis31 != null){
                              DOCSIS31USChannels = 1;
                              setState('Internet.Docsis31.US.C00.PowerLevel', parseFloat(tableData.data.channelUs.docsis31[0].powerLevel), true);
                              setState('Internet.Docsis31.US.C00.Type', parseInt(tableData.data.channelUs.docsis31[0].type.replace('K', '')), true);
                              setState('Internet.Docsis31.US.C00.MultiplexMethod', tableData.data.channelUs.docsis31[0].multiplex, true);
                              setState('Internet.Docsis31.US.C00.Frequency', parseInt(tableData.data.channelUs.docsis31[0].frequency), true);
                          }
          
                      }
                      else{
                          log('Empty response', 'error');
                          setStates2NullValues();
                          loginAndGetSID();
                      }
                  }
                  else {
                      log('error: ' + error + ', response: ' + response.statusCode.toString(), 'error');
                      setStates2NullValues();
                      loginAndGetSID();
                  }
              });
          
          }
          
          if (logging) log('DocsisInfo starting', 'info');
          
          // SID holen und merken (User Token)
          loginAndGetSID();
          var getSIDinterval = setInterval(loginAndGetSID, 900000);   // Alle 15 Minuten neue SID holen
          
          schedule("* * * * *", function() {                          // Zu jeder vollen Minute die Fritzbox DOCSIS-Daten abfragen
              getCableModemChannelInfosV2();
          });
          
          S Offline
          S Offline
          sugram
          schrieb am zuletzt editiert von
          #15

          @arndl said in Pegelwerte Fritzbox 6490 Cable auslesen?:

          Erstmal vielen Dank für das Script.
          Ich muss mich hierzu dann erst einmal zurechtfinden, habe mit dem IoBroker bisher noch keinerlei Erfahrung.
          Wie ist das

          Der Javascript-Adapter muss installiert sein und unter „Zusätzliche NPM-Module“ die iconv-lite und crypto Module eingetragen sein.

          Mit den "Zusätzlichen NPM-Modulen zu verstehen?
          Ich finde diesen Punkt nicht auf der Oberfläche.
          Tante google hat mich bisher auch nicht wirklich weitergebracht.

          I 1 Antwort Letzte Antwort
          0
          • sigi234S sigi234

            @arndl

            javascript.0	2021-04-04 18:56:00.699	error	(14740) script.js.Fritz.UID: error: null, response: 403
            

            Modell: FRITZ!Box 6590 Cable
            Aktueller Energieverbrauch: 30 %
            FRITZ!OS: 07.20

            Muss der Benutzer ioBroker heißen?

            I Offline
            I Offline
            ichderarnd
            schrieb am zuletzt editiert von
            #16

            @sigi234
            Nein, der Login-Name ist egal. Muss natürlich passend im Script in der Variablen fritzBenutzer angepasst werden.

            1 Antwort Letzte Antwort
            0
            • S sugram

              @arndl said in Pegelwerte Fritzbox 6490 Cable auslesen?:

              Erstmal vielen Dank für das Script.
              Ich muss mich hierzu dann erst einmal zurechtfinden, habe mit dem IoBroker bisher noch keinerlei Erfahrung.
              Wie ist das

              Der Javascript-Adapter muss installiert sein und unter „Zusätzliche NPM-Module“ die iconv-lite und crypto Module eingetragen sein.

              Mit den "Zusätzlichen NPM-Modulen zu verstehen?
              Ich finde diesen Punkt nicht auf der Oberfläche.
              Tante google hat mich bisher auch nicht wirklich weitergebracht.

              I Offline
              I Offline
              ichderarnd
              schrieb am zuletzt editiert von
              #17

              @sugram
              Hier auf den Schraubenschlüssel klicken:
              JavascriptInstanz.PNG

              Dann findest Du diese Konfiguration hier oben links:
              ScreenshotJavascriptAdapter.PNG

              S 1 Antwort Letzte Antwort
              0
              • I ichderarnd

                @sugram
                Hier auf den Schraubenschlüssel klicken:
                JavascriptInstanz.PNG

                Dann findest Du diese Konfiguration hier oben links:
                ScreenshotJavascriptAdapter.PNG

                S Offline
                S Offline
                sugram
                schrieb am zuletzt editiert von sugram
                #18

                @arndl VIELEN DANK!!!!!

                Die Meldung im Logfile ist aber jetzt nicht weiter schlimm, oder?!

                javascript.0	2021-04-04 19:58:34.922	error	(1129) WARN deprecated crypto@1.0.1: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
                

                ich erhalte im Scriptfenster nun folgende Fehlermeldung:

                20:05:00.101	error	javascript.0 (1129) script.js.AVM: error: null, response: 403
                
                I 2 Antworten Letzte Antwort
                0
                • S sugram

                  @arndl VIELEN DANK!!!!!

                  Die Meldung im Logfile ist aber jetzt nicht weiter schlimm, oder?!

                  javascript.0	2021-04-04 19:58:34.922	error	(1129) WARN deprecated crypto@1.0.1: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
                  

                  ich erhalte im Scriptfenster nun folgende Fehlermeldung:

                  20:05:00.101	error	javascript.0 (1129) script.js.AVM: error: null, response: 403
                  
                  I Offline
                  I Offline
                  ichderarnd
                  schrieb am zuletzt editiert von
                  #19

                  @sugram
                  Interessant. Dann lass es in der Konfiguration mal weg. Wenn es dann immer noch geht, ist alles gut.

                  S 1 Antwort Letzte Antwort
                  0
                  • S sugram

                    @arndl VIELEN DANK!!!!!

                    Die Meldung im Logfile ist aber jetzt nicht weiter schlimm, oder?!

                    javascript.0	2021-04-04 19:58:34.922	error	(1129) WARN deprecated crypto@1.0.1: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
                    

                    ich erhalte im Scriptfenster nun folgende Fehlermeldung:

                    20:05:00.101	error	javascript.0 (1129) script.js.AVM: error: null, response: 403
                    
                    I Offline
                    I Offline
                    ichderarnd
                    schrieb am zuletzt editiert von
                    #20

                    @sugram
                    Dann macht die integrierte crypto Bibliothek offensichtlich irgendwas anders.
                    Sie wird in der Zeile

                    var challengeResponse = crypto.createHash('md5').update(utf16le_encoded).digest('hex');
                    

                    verwendet. Stimmt die Response nicht, dann lehnt die Fritzbox das Login ab.

                    1 Antwort Letzte Antwort
                    0
                    • I ichderarnd

                      @sugram
                      Interessant. Dann lass es in der Konfiguration mal weg. Wenn es dann immer noch geht, ist alles gut.

                      S Offline
                      S Offline
                      sugram
                      schrieb am zuletzt editiert von sugram
                      #21

                      @arndl wenn ich das crypto Modul wieder entferne, bekomme ich nach wie vor die gleiche Fehlermeldung

                      Wie kann ich denn dann die Daten überhaupt abgreifen / ansehen?!

                      S 1 Antwort Letzte Antwort
                      0
                      • S sugram

                        @arndl wenn ich das crypto Modul wieder entferne, bekomme ich nach wie vor die gleiche Fehlermeldung

                        Wie kann ich denn dann die Daten überhaupt abgreifen / ansehen?!

                        S Offline
                        S Offline
                        sugram
                        schrieb am zuletzt editiert von
                        #22

                        Wollte hier nur berichten, daß ich es nun auch erfolgreich mit Hilfe von arndl umgesetzt bekommen habe.
                        Die Box ist eine Mietbox mit der 7.21

                        WalW 1 Antwort Letzte Antwort
                        0
                        • S sugram

                          Wollte hier nur berichten, daß ich es nun auch erfolgreich mit Hilfe von arndl umgesetzt bekommen habe.
                          Die Box ist eine Mietbox mit der 7.21

                          WalW Offline
                          WalW Offline
                          Wal
                          Developer
                          schrieb am zuletzt editiert von
                          #23

                          @sugram ,
                          die Lösung wäre besser als die Nachricht das es funktioniert.

                          Gruß
                          Walter

                          DoorIO-Adapter
                          wioBrowser-Adapter und wioBrowser

                          S 1 Antwort Letzte Antwort
                          0
                          • WalW Wal

                            @sugram ,
                            die Lösung wäre besser als die Nachricht das es funktioniert.

                            S Offline
                            S Offline
                            sugram
                            schrieb am zuletzt editiert von
                            #24

                            Das mit der Fehlermeldung ist kann ich nicht erklären.
                            Ich habe einfach ein anderes Passwort gewählt und danach ging der Login auch einwandfrei.

                            Ob ich nun das crypto Modul benötige, oder nicht, kann ich nicht sagen.
                            Ich habe es später wieder installiert.

                            Habe dann die MariaDB Datenbank installiert und konfiguriert.
                            Danach hatte ich dann auch die Werte in der Tabelle stehen.

                            Aktuell verwende ich E-Charts oder Flot zur grafischen Darstellung.
                            Das mit Grafana, da steig ich noch nicht ganz durch.

                            S 1 Antwort Letzte Antwort
                            1
                            • S sugram

                              Das mit der Fehlermeldung ist kann ich nicht erklären.
                              Ich habe einfach ein anderes Passwort gewählt und danach ging der Login auch einwandfrei.

                              Ob ich nun das crypto Modul benötige, oder nicht, kann ich nicht sagen.
                              Ich habe es später wieder installiert.

                              Habe dann die MariaDB Datenbank installiert und konfiguriert.
                              Danach hatte ich dann auch die Werte in der Tabelle stehen.

                              Aktuell verwende ich E-Charts oder Flot zur grafischen Darstellung.
                              Das mit Grafana, da steig ich noch nicht ganz durch.

                              S Offline
                              S Offline
                              sugram
                              schrieb am zuletzt editiert von sugram
                              #25

                              Habe das ganze nun in einem HabPanel dargestellt.
                              Die Werte werden alle 60sec aktualisiert
                              Zur Darstellung habe ich mir noch ein extra Touch Display gegönnt :-)

                              Aktuell habe ich zum Glück keine Probleme.

                              2021-05-01_18h29_41.png

                              S 1 Antwort Letzte Antwort
                              0
                              • S sugram

                                Habe das ganze nun in einem HabPanel dargestellt.
                                Die Werte werden alle 60sec aktualisiert
                                Zur Darstellung habe ich mir noch ein extra Touch Display gegönnt :-)

                                Aktuell habe ich zum Glück keine Probleme.

                                2021-05-01_18h29_41.png

                                S Offline
                                S Offline
                                sugram
                                schrieb am zuletzt editiert von
                                #26

                                Tja, hat bis heute Nacht super funktioniert.
                                Aber seit dem Update auf die 7.27 klappt der Login leider nicht mehr :(

                                Ich bekomme das aktuell auch nicht hin, daß es wieder funktioniert.

                                I 1 Antwort Letzte Antwort
                                0
                                • S sugram

                                  Tja, hat bis heute Nacht super funktioniert.
                                  Aber seit dem Update auf die 7.27 klappt der Login leider nicht mehr :(

                                  Ich bekomme das aktuell auch nicht hin, daß es wieder funktioniert.

                                  I Offline
                                  I Offline
                                  ichderarnd
                                  schrieb am zuletzt editiert von
                                  #27

                                  @sugram
                                  Ich kann’s nicht testen. Bis Vodafone meiner Fritzbox die neue Version spendiert, dauert es bestimmt noch ein halbes Jahr…

                                  S 1 Antwort Letzte Antwort
                                  0
                                  • I ichderarnd

                                    @sugram
                                    Ich kann’s nicht testen. Bis Vodafone meiner Fritzbox die neue Version spendiert, dauert es bestimmt noch ein halbes Jahr…

                                    S Offline
                                    S Offline
                                    sugram
                                    schrieb am zuletzt editiert von
                                    #28

                                    @arndl
                                    Nun, daß glaube ich jetzt zwar mal nicht, denn aktuell bekommen alle möglichen das Update, aber selbst wenn es bei dir länger dauern würde, wäre es EXTREM Klasse, wenn du dir das ansehen könntest.
                                    Denn mangels Java Script Kenntnisse, kann ich mir da leider selbst nicht helfen.
                                    Denn das Monitoring hat wirklich mal bei einer Störung bei der Vodafone Hotline geholfen.
                                    Da man hier dann den exakten Zeitpunkt mitteilen kann, seit wann das Problem besteht.
                                    Da konnte der Mitarbeiter dann nämlich wirklich was feststellen.

                                    I 1 Antwort Letzte Antwort
                                    0
                                    • S sugram

                                      @arndl
                                      Nun, daß glaube ich jetzt zwar mal nicht, denn aktuell bekommen alle möglichen das Update, aber selbst wenn es bei dir länger dauern würde, wäre es EXTREM Klasse, wenn du dir das ansehen könntest.
                                      Denn mangels Java Script Kenntnisse, kann ich mir da leider selbst nicht helfen.
                                      Denn das Monitoring hat wirklich mal bei einer Störung bei der Vodafone Hotline geholfen.
                                      Da man hier dann den exakten Zeitpunkt mitteilen kann, seit wann das Problem besteht.
                                      Da konnte der Mitarbeiter dann nämlich wirklich was feststellen.

                                      I Offline
                                      I Offline
                                      ichderarnd
                                      schrieb am zuletzt editiert von
                                      #29

                                      @sugram
                                      In der Login-Funktion war ein blöder Fehler. Warum auch immer das mit der alten fritz.box Version funktioniert hat...
                                      Ich hatte das "login_sid.lua?username=" doppelt drin.

                                      Die URL im zweiten Request muss wie folgt aussehen:

                                                  url: loginURL + fritzBenutzer + '&response=' + challenge + '-' + challengeResponse,
                                      

                                      Die Login Prozedur sieht dann insgesamt so aus:

                                      var logging = true;
                                      const iconv = require('iconv-lite');
                                      const crypto = require('crypto');
                                      
                                      var sid;
                                      var fritzBenutzer = 'ioBroker';
                                      var fritzPasswort = '********';
                                      var loginURL = 'http://fritz.box/login_sid.lua?username=';
                                      
                                      function loginAndGetSID(){
                                      
                                          sid = null;
                                      
                                          // Challenge holen
                                          var options = {
                                              url: loginURL + fritzBenutzer,
                                              method: 'GET'
                                          };
                                          request(options, function(error, response, body) {
                                          if (!error && response.statusCode == 200) {
                                              //log('error: ' + error + ', response: ' + JSON.stringify(response) + ', body: ' + body, 'info');
                                              var result = parseXML(body);
                                              var challenge = result['SessionInfo.Challenge'];
                                              log(challenge);
                                      
                                              // Einloggen und SID holen
                                              var utf16le_encoded = iconv.encode(challenge + '-' + fritzPasswort, 'UTF-16LE', {addBOM: false});
                                              var challengeResponse = crypto.createHash('md5').update(utf16le_encoded).digest('hex');
                                      
                                              options = {
                                                  url: loginURL + fritzBenutzer + '&response=' + challenge + '-' + challengeResponse,
                                                  method: 'GET'
                                              };
                                              request(options, function(error, response, body) {
                                                  if (!error && response.statusCode == 200) {
                                                      var result = parseXML(body);
                                                      sid = result['SessionInfo.SID'];
                                                      if (logging) log('Logged in. SID = ' + sid, 'info');
                                                  }
                                                  else {
                                                      log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
                                                  }
                                              });
                                          }
                                          else {
                                              log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
                                          }
                                          });
                                      }
                                      
                                      S 1 Antwort Letzte Antwort
                                      0
                                      • I ichderarnd

                                        @sugram
                                        In der Login-Funktion war ein blöder Fehler. Warum auch immer das mit der alten fritz.box Version funktioniert hat...
                                        Ich hatte das "login_sid.lua?username=" doppelt drin.

                                        Die URL im zweiten Request muss wie folgt aussehen:

                                                    url: loginURL + fritzBenutzer + '&response=' + challenge + '-' + challengeResponse,
                                        

                                        Die Login Prozedur sieht dann insgesamt so aus:

                                        var logging = true;
                                        const iconv = require('iconv-lite');
                                        const crypto = require('crypto');
                                        
                                        var sid;
                                        var fritzBenutzer = 'ioBroker';
                                        var fritzPasswort = '********';
                                        var loginURL = 'http://fritz.box/login_sid.lua?username=';
                                        
                                        function loginAndGetSID(){
                                        
                                            sid = null;
                                        
                                            // Challenge holen
                                            var options = {
                                                url: loginURL + fritzBenutzer,
                                                method: 'GET'
                                            };
                                            request(options, function(error, response, body) {
                                            if (!error && response.statusCode == 200) {
                                                //log('error: ' + error + ', response: ' + JSON.stringify(response) + ', body: ' + body, 'info');
                                                var result = parseXML(body);
                                                var challenge = result['SessionInfo.Challenge'];
                                                log(challenge);
                                        
                                                // Einloggen und SID holen
                                                var utf16le_encoded = iconv.encode(challenge + '-' + fritzPasswort, 'UTF-16LE', {addBOM: false});
                                                var challengeResponse = crypto.createHash('md5').update(utf16le_encoded).digest('hex');
                                        
                                                options = {
                                                    url: loginURL + fritzBenutzer + '&response=' + challenge + '-' + challengeResponse,
                                                    method: 'GET'
                                                };
                                                request(options, function(error, response, body) {
                                                    if (!error && response.statusCode == 200) {
                                                        var result = parseXML(body);
                                                        sid = result['SessionInfo.SID'];
                                                        if (logging) log('Logged in. SID = ' + sid, 'info');
                                                    }
                                                    else {
                                                        log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
                                                    }
                                                });
                                            }
                                            else {
                                                log('error: ' + error + ', response: ' + response.statusCode.toString(), 'info');
                                            }
                                            });
                                        }
                                        
                                        S Offline
                                        S Offline
                                        sugram
                                        schrieb am zuletzt editiert von
                                        #30

                                        @arndl du bist der BESTE!!

                                        Klappt nun wieder. VIELEN DANK!!

                                        1 Antwort Letzte Antwort
                                        0
                                        • I Offline
                                          I Offline
                                          ichderarnd
                                          schrieb am zuletzt editiert von
                                          #31

                                          @sugram
                                          :slightly_smiling_face:

                                          1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          995

                                          Online

                                          32.4k

                                          Benutzer

                                          81.5k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe