Node-red-contrib-fritz Change guest wifi password

Hello!

Is it possible to change the guest password with it?

Maybe someone can help me there.

Thank you in advance.

I was going to suggest you the node's author on its GitHub page but it looks like you have already done that.

Did you check out the other 'fritz nodes? Could you use any of them?

[Note: I have never used a fritz device]

No problem to change the guest password from within NR
Works for me on a Fritz 6660 Cable with the node-red-contrib-fritz 1.4.5

Choose for service (after clicking on the magnifying glass) urn:dslforum-org:service:WLANConfiguration3
Action: SetSecurityKeys

Your payload should look something like this:

{
    "NewWEPKey0": "",
    "NewWEPKey1": "",
    "NewWEPKey2": "",
    "NewWEPKey3": "",
    "NewPreSharedKey": "",
    "NewKeyPassphrase": "MyNewNetworkKey"
}

Example:

[{"id":"5bc96a6f7d718179","type":"fritzbox-in","z":"1563e1fd.e3637e","device":"2414994c.ab3e6e","name":"","service":"urn:dslforum-org:service:WLANConfiguration:3","action":"SetSecurityKeys","arguments":"{\n  \"NewWEPKey0\": \"value\",\n  \"NewWEPKey1\": \"value\",\n  \"NewWEPKey2\": \"value\",\n  \"NewWEPKey3\": \"value\",\n  \"NewPreSharedKey\": \"value\",\n  \"NewKeyPassphrase\": \"value\"\n}","x":590,"y":880,"wires":[["efb460456b656e83"]]},{"id":"29794d10743cbf80","type":"inject","z":"1563e1fd.e3637e","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"{\"NewWEPKey0\":\"\",\"NewWEPKey1\":\"\",\"NewWEPKey2\":\"\",\"NewWEPKey3\":\"\",\"NewPreSharedKey\":\"\",\"NewKeyPassphrase\":\"MyNewNetworkKey\"}","payloadType":"json","x":430,"y":880,"wires":[["5bc96a6f7d718179"]]},{"id":"efb460456b656e83","type":"debug","z":"1563e1fd.e3637e","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":770,"y":880,"wires":[]},{"id":"2414994c.ab3e6e","type":"fritzbox-config","name":"FritzBox","host":"192.168.1.254","port":"49000","ssl":false,"user":"nodered"}]

Note: WLANConfiguration3 is the guest wifi network, WLANConfiguration2 is the regular 5Ghz network and WLANConfiguration1 is the regular 2.4Ghz wifi network.

1 Like

Hello!

Thank you very much.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.