Configuring Toniebox for cloud connection (Custom ip patch)

{
    "general": {
        "_desc": "Changes Boxine URLs to custom ones.",
        "_memPos": "",
        "_fwVer": "3.0.5+"
    },
    "searchAndReplace": [{
        "_desc": "prod.de.tbs.toys to prod.revvox",
        "search":  ["70", "72", "6f", "64", "2e", "64", "65", "2e", "74", "62", "73", "2e", "74", "6f", "79", "73", "00"],
        "replace": ["49", "57", "50", "46", "49", "54", "56", "46", "50", "46", "53", "00", "??", "??", "??", "??", "??"]
    }, {
        "_desc": "rtnl.bxcl.de to rtnl.revvox",
        "search":  ["72", "74", "6e", "6c", "2e", "62", "78", "63", "6c", "2e", "64", "65", "00"],
        "replace": ["49", "57", "50", "46", "49", "54", "56", "46", "50", "46", "53", "00", "??"]
    }]
}

Does this look correct for setting a fixed IP? I am not seeing any connection attempts in the TeddyCloud logs.

IWPFITVFPFS is not a valid IP address. The numbers need to be in hex not decimal

This should be the right sequence if you wanted 192.168.2.5:
31 39 32 2e 31 36 38 2e 32 2e 35

https://gchq.github.io/CyberChef/#recipe=To_Hex(‘Space’,0)&input=MTkyLjE2OC4yLjU

1 Like

Thanks. Here is a Python one-liner for other lazy people:
", ".join([f"\"{ord(c):x}\"" for c in "192.168.2.5"]) + ", \"00\""

1 Like