Recent content by datan

  • 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. D

    DHCP not working - solved

    just wanted to mention I had the exact same problem today. - all wired and wireless clients disconnected - rebooted couple of times - could not get DHCP when connected by LAN - manually assigned an IP address to connect to the admin page - admin page was fine. everything looked normal except of...
  2. D

    Is there a command line to automaticly reconnect the VPN on a timer

    both. I use a startup script to put this into cron.
  3. D

    Is there a command line to automaticly reconnect the VPN on a timer

    for reference, here's the script that I use to check whether the VPN tunnel is up (by pinging google.com). If not, reset it. #/bin/sh ping -c 1 -w 3 -I tun11 google.com if [ $? -eq 0 ]; then date +"%Y-%m-%d %r - UP" >> /dev/null else date +"%Y-%m-%d %r - DOWN" >> /jffs/scripts/check.log...
  4. D

    AI mesh client: merlin or stock firmware

    thanks everyone. as far as I understand, there's no way to access the node webui once it becomes an aimesh node right?
  5. D

    AI mesh client: merlin or stock firmware

    What's the consensus on whether to use Merlin or stock firmware for AI mesh client? main: 86u client: 68u
  6. D

    Is there a command line to automaticly reconnect the VPN on a timer

    use cron service restart_vpnclient1
  7. D

    Diversion Diversion - the Router Ad-Blocker

    hi something weird's going with the whitelist. I have these two domains added to the white list and processed. But the first one is allowed while the other is blocked (checked in the dnsmasq.log). Any idea what I'm doing wrong...
  8. D

    Splitting WLAN from LAN

    yup that's what I was thinking needs to be done (splitting WLAN or the physical ports from the bridge). Hoping someone has done it before.
  9. D

    Splitting WLAN from LAN

    Hi all, I would like to create a different subnet for my WLAN (from the physical ports). I tried to tinker with the dnsmasq.conf but it doesn't quite work. I think the LAN section is conflicting with the WLAN section. How can I split the WLAN from the LAN? Or should I have individual entries...
  10. D

    YazFi YazFi - enhanced AsusWRT-Merlin Guest WiFi inc. SSID <-> VPN Client

    how do I allow the clients on the guest network to access the router's admin page? I'm basically using YazFi to create different subnets rather than it being a real "guest" network. thanks! ok I directly edited the iptables to allow tcp connections. is there a better way to do this?
Top