NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.

Forum Discussion

jimgbritt's avatar
Jan 16, 2017

ORBI SDK or REST API

Is there any SDK or REST API available for the ORBI system to be able to access the log?  I'd like to access the log remotely and send it into another system for analysis.

 

Hardware Version

   RBR50
 
Firmware Version   V1.4.0.34

 

5 Replies

  • I pray not.  This is one of the leading security holes in consumer gear from multiple vendors.

     

    Rodney

    • jimgbritt's avatar
      jimgbritt
      Tutor

      There is already a GUI, was hoping for at least a REST API.  I can do some ugly PowerShell to grab the data and then parse but would rather not.

       

      $URI = Invoke-RestMethod -Credential $Cred -Uri http://<IP of Orbi>/FW_log.htm
      $URI | Foreach-Object{
      $var = $_.Split([char]0X000A)
      New-Variable -Name $var[0] -Value $var[1]
      }

      [array]$Log = foreach($v in $Var){if($V.Contains("[") -and $v.contains("]")){$V}}

       

      Just looking for a way to scrape the log data.  

      • rhester72's avatar
        rhester72
        Virtuoso

        I'd far rather they allow basic syslog forwarding.

         

        Rodney