Questions tagged [fritzbox]

Questions about the AVM FRITZ!Box router and it's software apis

The AVM Fritz!Box is a popular router from germany:

https://avm.de/produkte/fritzbox/

APIs

The Fritz!Box has several APIs for developers see

https://avm.de/service/schnittstellen/

e.g.

API implementations can be found on github e.g.

Go

  1. https://github.com/bpicode/fritzctl

##Java

  1. https://github.com/BITPlan/com.bitplan.fritzbox
  2. https://github.com/ISchwarz23/FritzBox-API
  3. https://github.com/kaklakariada/fritzbox-java-api

Node.js

  1. https://github.com/andig/fritzapi

PHP

  1. https://github.com/carlos22/fritzbox_api_php

Python

  1. https://github.com/DerMitch/fritzbox-smarthome
  2. https://github.com/kbr/fritzconnection

Shell

  1. https://github.com/Tscherno/Fritzbox.sh
24 questions
0
votes
0 answers

How to reconnect fritzbox with soap and Java?

i try to access my Fritzbox with soap and java, my first goal is to tell the fritzbox it should reconnect. The java programm dosen´t come up with an exception but the router dosen´t reconnect. I checked the tr64desc.xml if the soap stuff is…
0
votes
0 answers

Is it possible to run a .sh file on my local fritzbox router?

Hey is it possible to run a .sh file on my local fritzbox router? NEW_IP=`curl -s http://ipv4.icanhazip.com` CURRENT_IP=`cat /path/to/current/ip.txt` if [ "$NEW_IP" = "$CURRENT_IP" ] then echo "No Change in IP Address" else #domain-one curl…
Mqx
  • 182
  • 7
0
votes
1 answer

Access FritzBox via HtmlUnit

I am trying to access my FritzBox via HTMLUnit, but got error that my browser was too old and not supported. try (final WebClient webClient = new WebClient(BrowserVersion.CHROME))…
steven
  • 31
  • 5
0
votes
1 answer

icinga check command check_nwc_health returns "Unkown option:" but at cli the command works

i want to write a test / check condition in icinga2 using the check_nwc_health check to get some status infos of avm dect 200 electricity socket where gives informations about state of connection, power on, energy consumption etc, of the connected…
Teddy2000
  • 21
  • 1
  • 2
0
votes
1 answer

Can't access nodejs from outside network?

I have a Fritzbox 7490 router and have port forwarded (i think) a port 8080. This port is not open externally for some reason but is accessible through the router ip address. I set up a nodejs express app that hosts html pages and listens on port…
Snuffles
  • 487
  • 6
  • 17
0
votes
1 answer

Python Flask can't host Backend on my machine

So I wanted to host my backed on my machine for my website. The Problem is I can't the frontend works perfectly but the Flask backend doesn't. The backend works when I use localhost or my local ip to access it. But doesn't work when I try to use it…
Sutsuj
  • 73
  • 1
  • 10
0
votes
1 answer

Getting Request from FritzBox TR-064 API fails

I'm trying since days to get the info of via Wifi connected hosts from my FritzRepeater which is offering an SOAP API for that. I'm using curl... everything is working fine until I have to use arguments/parameters. It seems like I'm missing…
Thomas S.
  • 55
  • 7
0
votes
1 answer

sending Tr064 Requests to AVM FritzBox 7270

I am just learning how to send SOAP requests to my AVM FritzBox 7270 router using C#. Here ist my method that sends a SOAP request to the router: private string Execute(string controlUrl, string serviceType, string action) { …
-1
votes
1 answer

Weekly schedule control for recurrently tasks

Searching for a control in c# which can do the following: Should be a chart, on top the hours (0-24) on the left the days (Mon-Sun). Then I want the user to set a schedule for the days in the week. E.g. first shift starts from Mo-Fr at 8:00 and ends…
Max R.
  • 811
  • 1
  • 13
  • 31
1
2