Recent content by The Chief

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. T

    Release Asuswrt-Merlin 386.12 is now available for AC models

    Does not work. I've just changed mywghost=$(dig +short myhostname.privatedns.org 2>&1 | grep -P '^((25[0-5]|(2[0-4]|1\d|[1-9]|)\d)\.?\b){4}$') to mywghost=$(nslookup myhostname.privatedns.org | awk '/^Address 1:.*myhostname\.privatedns\.org$/ { print $3 }' | grep -P...
  2. T

    Release Asuswrt-Merlin 386.12 is now available for AC models

    Nah, does not fix error in my case.
  3. T

    Release Asuswrt-Merlin 386.12 is now available for AC models

    dig command causes error in the log:
  4. T

    Problem with firewall enabled

    Same error in my case. admin@RT-AC86U:/jffs/root# iptables -L INPUT -v --line-numbers Chain INPUT (policy ACCEPT 0 packets, 0 bytes) num pkts bytes target prot opt in out source destination 1 284 70830 ACCEPT all -- any any anywhere...
  5. T

    MiniUPnPd problem (solved & helper script)

    Hmmm… I've got a few cases when realip is properly set, but still no ext_ip= statement in miniupnpd config. Then we need to force update process. #!/bin/sh # IPv4 detection taken from WGM code by Martineau Is_IPv4() { grep -oE '^([0-9]{1,3}\.){3}[0-9]{1,3}$' # IPv4 format...
  6. T

    MiniUPnPd problem (solved & helper script)

    DualWAN-friendly: #!/bin/sh # IPv4 detection taken from WGM code by Martineau Is_IPv4() { grep -oE '^([0-9]{1,3}\.){3}[0-9]{1,3}$' # IPv4 format } Is_Private_IPv4() { grep -oE...
  7. T

    MiniUPnPd problem (solved & helper script)

    Slightly optimized: #!/bin/sh # IPv4 detection taken from WGM code by Martineau Is_IPv4() { grep -oE '^([0-9]{1,3}\.){3}[0-9]{1,3}$' # IPv4 format } Is_Private_IPv4() { grep -oE...
  8. T

    way to reset Traffic Monitor Last 24 Hours chart without reboot?

    What about 'Save frequency'?
  9. T

    way to reset Traffic Monitor Last 24 Hours chart without reboot?

    Only if Traffic history location is RAM (not permanent).
  10. T

    MiniUPnPd problem (solved & helper script)

    I've got a problem in 386.5_2 with miniupnpd refuses to map ports. Instead I got this: Apr 23 01:50:25 RT-AC86U miniupnpd[2782]: Failed to add NAT-PMP 42613 tcp->192.168.16.16:22000 'NAT-PMP 42613 tcp' Apr 23 01:50:26 RT-AC86U miniupnpd[2782]: Failed to add NAT-PMP 42613...
  11. T

    Guest wi-fi can still talk to LAN devices

    UPnP on external IP, I guess?
  12. T

    Wireguard Session Manager - Discussion thread (CLOSED/EXPIRED Oct 2021 use http://www.snbforums.com/threads/session-manager-discussion-2nd-thread.75129/)

    What I needed to do is rather opposite — to route all my local clients to WAN, except when destination IP is from predefined IPset, then route to VPN (wg11).
  13. T

    Wireguard Session Manager - Discussion thread (CLOSED/EXPIRED Oct 2021 use http://www.snbforums.com/threads/session-manager-discussion-2nd-thread.75129/)

    Yes, wg11 mark is 0x1000. ip rule del prio 9901 ip rule add from 0/0 fwmark "0x1000/0x1000" table 121 prio 9901 Yeah I've figured it out (put it to wg11-route-up.sh), but what I've NOT figured is 'echo 0 > /proc/sys/net/ipv4/conf/wg11/rp_filter' magick. :) It works now, thanx a lot!
  14. T

    Wireguard Session Manager - Discussion thread (CLOSED/EXPIRED Oct 2021 use http://www.snbforums.com/threads/session-manager-discussion-2nd-thread.75129/)

    Why then 'peer wg11 rule add vpn src=192.168.mysubnet.mycomputer' works in policy mode (it really works), so it creates all routing rules , but IPset setting doesn't? I don't understand it, totally confused. Smth like 'peer wg11 rule add vpn ipset=ipsetname' (where ipsetname is dst) would be...
Top