Latest update broke dynamic dns updater

Started by Sakata_T, May 07, 2023, 08:45:16 AM

Previous topic - Next topic
Quote from: Sakata_T on May 14, 2023, 02:13:11 AM
Not sure that this is related to the OpenVPN stuff that is mentioned...

@Sakata_T, to understand if OpenVPN could be affecting your problem, do you have any client instances configured, or just your roadwarrior server?


Quote from: Sakata_T on May 22, 2023, 01:37:10 AM
Just server instance. No clients
In that case, I am minded to consider root causes not related to OpenVPN.

Have you considered the discussion in this topic.

May 23, 2023, 04:22:38 PM #18 Last Edit: May 28, 2023, 11:52:05 AM by yosemitesam
Hi,

Have the same problem: Both WAN IP addresses are identified as the fixed IP on the Wireguard Interface. Any workaround ?

edit:
workaround: used icanhazip for "Check ip method"

rgds,
Y

I thought "Interface to monitor" is specifying the interface to probe, but none of the methods can extract the interface IP.

Once again i resort to routes. But that is temporary. Routes however don't allow hostnames, apps don't allow aliases etc, so need to create an action.d to refresh:

    for host in freedns.afraid.org ...; do
        for ip in $(host -4t A $host | grep " has address " | cut -d' ' -f4); do
            route add -inet $ip/32 -link -iface wgX
        done
    done