• 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!

Recent content by i0ntempest

  1. i0ntempest

    Execute script after DHCPv6 lease renewal?

    Thank you. Based on your reply I have created dhcpc-event script with content: #!/bin/sh if ([ "$1" = "bound" ] || [ "$1" = "updated" ] || [ "$1" = "rebound" ]) && [ "$2" = "6" ]; then ip -6 addr add dev br0 fd00:d:e:f::1/64 fi But this does not seem to work, the prefix still gets cleared...
  2. i0ntempest

    IPv6 and DDNS: ddns-start script does not get passed IPv6 address?

    Good to hear. And I assume it’ll be in the 3006 branch too?
  3. i0ntempest

    IPv6 and DDNS: ddns-start script does not get passed IPv6 address?

    I've been messing with IPv6 DDNS, and I've searched the forum and would like to confirm if these are correct and are still the case right now: 1. When DDNS is set to custom the ddns-start script will NOT get an IPv6 passed to it, only IPv4; IPv6 custom DDNS is completely DIY (Source...
  4. i0ntempest

    Execute script after DHCPv6 lease renewal?

    I didn’t try but the official documentation says this works only with udhcpc, no mention of odhcp6c. You sure it’s going to work with DHCPv6?
  5. i0ntempest

    Execute script after DHCPv6 lease renewal?

    Is there a simple way to execute a script after odhcp6c client renews its lease? Reason I ask this is because I have a ULA range setup in my network and every time odhcp6c renews its lease my ULA prefix on br0 gets cleared. This renew does not appear to trigger any user scripts. I know that...
  6. i0ntempest

    BE88U: Remove hidden wireless networks?

    I disabled WPS on day one. For AiMesh though, I didn't touch it but I couldn't find a place to explicitly disable it either. Is there a way though? There's no other nodes in the AiMesh tab.
  7. i0ntempest

    BE88U: Remove hidden wireless networks?

    What are you using to search networks? Windows will not show hidden networks.
  8. i0ntempest

    BE88U: Remove hidden wireless networks?

    My old AX86U didn't have these hidden networks tho. They have WPA2 enabled so that's a *possible* point of attack but well I guess I'll have to live with it.
  9. i0ntempest

    RT-BE88U - 10G speeds are 1G

    Not sure if you've figured it out but I was able to just `nvram set jumbo_frame_enable=1 && reboot` and now MTU on supported interfaces is 10240.
  10. i0ntempest

    BE88U: Remove hidden wireless networks?

    Just bought a new BE88U and running merlin 3006.102.3 in Router mode. When scanning I found it is broadcasting 2 hidden networks in addition to what I configured, and I can't find a way to get rid of them. They might be related to interfaces wl0.4 and wl1.4, and I tried removing related entries...
  11. i0ntempest

    IPv6 traffic forwarding problem: connection hangs

    Yes indeed, changing -A to -I made it work. Thanks!
  12. i0ntempest

    IPv6 traffic forwarding problem: connection hangs

    This command alone (typo corrected: ip6tables -A FORWARD -m state --state NEW -p tcp --dport 38443 -d fd00:d:e:f::e123 -j ACCEPT) isn't enough to make the service reachable outside, but opening a port in the webui firewall page does. So may I know what exactly is executed by the system for webui...
  13. i0ntempest

    IPv6 traffic forwarding problem: connection hangs

    Yea I did open the port in v6 firewall, just not on the cli but on the webui. I also tried disabling v6 firewall entirely and that didn't change anything. Maybe a bug in v6 DNAT? Also I tried TPROXY as well but that doesn't seem to be included in the firmware.
  14. i0ntempest

    IPv6 traffic forwarding problem: connection hangs

    Indeed - I actually considered using public IPv6 addresses first. But to do this I'll need to configure a hostname for each device, and it won't be compatible with my existing port forwarding IPv4 setup so that need to be redone as well. I do have a plan to move everything to my cloudflare lvl 2...
  15. i0ntempest

    IPv6 traffic forwarding problem: connection hangs

    I tried some ip6tables commands with some help from ChatGPT, and found out that if I open the port on IPv6 firewall using the ULA address, and use this command to create the forward rule: ip6tables -t nat -A PREROUTING -i ppp0 -p tcp --dport 38443 -j DNAT --to-destination...
Back
Top