• 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

    RT-BE88U - 10G speeds are 1G

    If you're using merlin firmware, I believe the latest firmware has not merged 38152 into it yet. I'm also waiting for this (plus the IPv6 DDNS function) to be added.
  2. i0ntempest

    IPv6 traffic forwarding problem: connection hangs

    This is the script I use to create forwarding rules. If the source and destination port is the same, this should be enough. I only have problems if the ports are different. #!/bin/sh # Remember to set static ULA in dnsmasq config #ip6tables -I FORWARD -i [IF] -m state --state NEW -p [PROT]...
  3. i0ntempest

    VLAN and SDN index/bridge index number questions - how are they decided?

    Thanks - took me some time but I now have IPv6 internet connectivity provided by ip6tables MASQUERADE nat66. I know nAt66 BaD but assigning another /64 in parallel to my main network's /64 just doesn't work despite my ISP giving me a /48. `ip -6 route` gives no default routes if I do that. Also...
  4. i0ntempest

    VLAN and SDN index/bridge index number questions - how are they decided?

    Hi, I have a BE88U with merlin 3006.102 and I have created a guest VLAN with DHCP. The system assigned it SDN index 5 (as I have `dnsmasq-5.conf`) and bridge device `br56`. I would like some clarifications on how these numbers are decided so I can write reliable scripts to operate on this...
  5. i0ntempest

    How to limit upload and download bandwidth of a ethernet port?

    Indeed, I didn't even need to do a modprobe. It's already loaded. But despite that the `tc` command didn't seem to work. Ended up doing exactly this with my GS305E, with VLAN tagging enabled to isolate one of the ports to the guest VLAN. Initially I was thinking of experimenting with bandwidth...
  6. i0ntempest

    How to limit upload and download bandwidth of a ethernet port?

    I'm aware of that but limiting to 100M is too little. I have a gigabit internet connection and want to set a limit at maybe 500-600M for guests.
  7. i0ntempest

    How to limit upload and download bandwidth of a ethernet port?

    I searched a bit and asked ChatGPT, it seems like I can limit egress (client upload) rate with `tc` command, but I cannot limit ingress (client download) without ifb, which isn't included in the firmware. Anyone can provide some pointers on how to achieve port based upload and download limits...
  8. 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...
  9. 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?
  10. 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...
  11. 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?
  12. 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...
  13. 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.
  14. i0ntempest

    BE88U: Remove hidden wireless networks?

    What are you using to search networks? Windows will not show hidden networks.
Back
Top