Search results

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

    Solved GUI Re-direct Issue

    I can't seem to find that option (only WAN down redirect). I'm using the stock firmware, 3.0.0.4.388_22237. Maybe that is a Merlin feature?
  2. R

    Solved GUI Re-direct Issue

    Does the Asus DNS have a hosts file or something? Maybe if it blocked asusrouter.com, the redirect would also be stopped?
  3. R

    Solved GUI Re-direct Issue

    Minor annoyance on the RT-AX58U. Wondering if there is a fix. I am trying to save a bookmark for a particular GUI webpage (system log). If I have the device client VPN enabled (ExpressVPN), I can use the URL http://192.168.1.1/Main_LogStatus_Content.asp . After I log-in, it will display the...
  4. R

    Is there an app that can notify you if the Wi-Fi channel changes?

    I run the following script from Termux on my phone. I am sure you could do something similar from DOS. ~ $ cat wifichan.sh #!/bin/sh ssh admin@192.168.1.1 nvram show | grep _sel_ ~ $ ./wifichan.sh size: 73144 bytes (57928 left) wl0_sel_bw=20 wl0_sel_channel=8 wl0_sel_nctrlsb=0 wl1_sel_bw=160...
  5. R

    SCP missing?

    The only change for the newer firmware is to mount the usb opt folder on top of the existing opt folder which I do remotely, but can be done when the usb is inserted: #!/bin/sh ssh xxxxxx@192.168.1.1 'mount /dev/sda /opt' Then Entware installs smoothly IIRC.
  6. R

    SCP missing?

    I use this to send files to the home directory: #!/bin/sh tar cz $* | ssh xxxxxx@192.168.1.1 'tar xvz' And this to pull: #!/bin/sh ssh xxxxxx@192.168.1.1 'tar cz '$* | tar xvz I sure this could be done more eloquently.
Top