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

  1. R

    Beta Asuswrt-Merlin 3006.102.5 Beta is now available

    I'll second this approach. I decided on Zigbee for my "IoT" devices at the time, altough LoRa is looking good if I change things up. I don't really understand why people choose WiFi for security/environmental sensors. Maybe one or two, but a full deployment should be done using another...
  2. R

    Any way to make devices join the IOT network

    How would a device "jump" networks without having the SSID and password?
  3. R

    Beta Asuswrt-Merlin 3006.102.5 Beta is now available

    On my RT-AX88U_Pro I can successfully select any LAN port for WAN access (enabled Dual Wan, change primary to LANX and secondary to WAN, move WAN cable to LANX and works fine).
  4. R

    [ 3006.102.5 alpha Build(s) ] available build(s)

    Apply button works fine on AX-88u-Pro
  5. R

    [ 3006.102.5 alpha Build(s) ] available build(s)

    Anyone know why Wifi 6 isn't being renamed?
  6. R

    [ 3006.102.5 alpha Build(s) ] available build(s)

    Isn't Guest Network Pro getting renamed?
  7. R

    My ip cams problem

    What about when the cloud is unavailable?
  8. R

    Double NAT with backup TMobile internet

    With Tailscale your lan can traverse many other networks automagically.
  9. R

    Double NAT with backup TMobile internet

    Use Tailscale to VPN behind CGNAT and/or doublenatting.
  10. R

    Release Asuswrt-Merlin 3006.102.4 is now available

    63 character password? Holy smokes that's overkill - there are weaknesses that would be exploited way before a password that length would get in the way. Glad you shortened it.
  11. R

    Guest and IoT Network Configuration

    That is correct. IPs are assigned either static (at the device), manually reserved in the GUI, or in dnsmasqconf.add config file (I use all three, no particular reason).
  12. R

    Iptables functionality on 3006.102.4

    NB: I am intending on this to be either global or applied to the main bridge/network, so this should not be a SDN issue.
  13. R

    Iptables functionality on 3006.102.4

    #!/bin/sh REJECT="REJECT --reject-with icmp-host-prohibited" REJECT_TCP="REJECT --reject-with tcp-reset" #block dhcp allocated devices 224-255 iptables -I FORWARD -s 192.168.50.224/27 -j $REJECT iptables -I FORWARD -p tcp -s 192.168.50.224/27 -j $REJECT_TCP #allow Nintendo Bedrock...
  14. R

    Iptables functionality on 3006.102.4

    Dirty upgrade from 3004 to 3006.102.4 on my AX88u-Pro a couple days ago. All looked good so far, except I have some iptables rules in firewall-start that do not seem to work anymore. One set of rules dnat'd any DNS other than those in the cleanbrowsing ranges. Ie, if a device used any...
Back
Top