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. ASAT

    Download Master install problem - advice please

    First, uninstall DownloadMaster. Second, setup the Entware. https://github.com/RMerl/asuswrt-merlin/wiki/Entware Now you can install Transmission or RTorrent for a better BitTorrent client.
  2. ASAT

    dropbearconvert not working

    Here's what I did to get it working EXACTLY how I wanted. First, I turned off "Enable SSH" in the WebUI, and left it off. This method is probably not for the faint of heart. That said, Use PUTTYGEN.exe on Windows to produce a SSH-2 RSA 4096 bit public/private key pair. The PRIVATE key file...
  3. ASAT

    How to block everything except one Port from the internet?

    The WebUI will create iptables rules, like this. Drop all non-TCP. And then drop all TCP that is not port 443. iptables -I FORWARD -s 10.0.1.22 -p tcp ! --dport 443 -j DROP iptables -I FORWARD -s 10.0.1.22 ! -p tcp -j DROP How to undo it: iptables -D FORWARD -s 10.0.1.22 -p tcp ! --dport 443...
  4. ASAT

    Results/Comments: Successfully replaced Google Fiber Box with RT-AC87U

    I recommend overclocking the ASUS router. You'll also need a USB powered fan and some bungee cord to hold the fan against the router. Otherwise, you'll cook router.
  5. ASAT

    Programmatic web browser

    Can anyone recommend a programmatic/headless web browser that supports JavaScript and AJAX, and that runs on these Asus routers? An Entware package? Thank you.
  6. ASAT

    Dead loop on virtual device vlan 10, fix it urgently (AC56U 378.54_2)

    Can you see the output these commands? nvram show|grep -i ifnames robocfg show brctl show ebtables -t filter -L --Lmac2 --Lc --Ln ebtables -t broute -L --Lmac2 --Lc --Ln ebtables -t nat -L --Lmac2 --Lc --Ln iptables -t filter -L --line-numbers -v -n iptables -t nat -L --line-numbers -v -n
  7. ASAT

    N66R Running Merlin - Port Forwarding Disappearing

    Just a guess. Try this fixes the issue? Administration -> System -> Enable WAN down browser redirect notice = No
  8. ASAT

    [Feedback] Minidlna

    Confirmed a bug in MiniDLNA 1.1.4. The problem manifests itself as a bug with INotify where it does not see the new files added. The bug is actually with how MiniDLNA scans the files within a newly added directory. Specifically, do not use the feature in minidlna.conf that restricts media...
  9. ASAT

    Bug in wanduck and apparent loss of Internet

    When I power cycle the cable modem, the following custom scripts are always run: /jffs/scripts/wan-start /jffs/scripts/nat-start /jffs/scripts/firewall-start /jffs/scripts/dnsmasq.postconf Therefore, I moved my NAT rules from firewall-start to nat-start. And, in wan-start I added a check to...
  10. ASAT

    Bug in wanduck and apparent loss of Internet

    Whenever I unplug my cable modem, the router magically replaces my DNS redirect rules: DNAT udp -- 192.168.1.0/24 0.0.0.0/0 udp dpt:53 to:192.168.1.1 DNAT tcp -- 192.168.1.0/24 0.0.0.0/0 tcp dpt:53 to:192.168.1.1 with these ones here: DNAT tcp -- 0.0.0.0/0 !192.168.1.0/24 tcp...
  11. ASAT

    SSID to VLAN

    why eapd?
  12. ASAT

    Linux TV

    My Hauppauge WinTV-HVR-1950 is now recognized by the RT-AC56U router. Had to enable I2C, Video4Linux and Extra Firmware option in the firmware kernel build. I also disabled some USB serial modules that may or may not have been causing issues. I've attached my entire "config_base.6a" file to...
  13. ASAT

    Linux TV

    I verified that my cable TV tuner works with Linux Mint before I plugged it into the router. /var/log/syslog Jun 14 14:18:04 rebecca-vm kernel: [ 4722.580571] usb 1-1: new high-speed USB device number 5 using ehci_hcd Jun 14 14:18:05 rebecca-vm mtp-probe: checking bus 1, device 5...
  14. ASAT

    Linux TV

    I'm trying to record live TV from cable TV with the RT-AC56U Asuswrt-Merlin and Hauppauge WinTV-HVR-1950. Apparently, there is some support for this unit ==> http://linuxtv.org/wiki/index.php/ATSC_USB_Devices Has anyone tried this to know what kernel modules or USB firmware is needed? When I...
  15. ASAT

    Certificate Verification issue with RT-N66U

    This works too. Set the default CA bundle for wget: /jffs/scripts/services-start #!/bin/sh echo "ca-certificate=/rom/ca-bundle.crt" > ~/.wgetrc
  16. ASAT

    Entware-ARM swap file problem

    A swap partition is better.
  17. ASAT

    Entware-ARM swap file problem

    Type 'mount' command without parameters. It will give the same information as /etc/fstab.
  18. ASAT

    Entware-ARM swap file problem

    What does your /etc/fstab file look like? It was created automatically by the firmware at boot time. The firmware does a good job of auto-detecting this information. Use this file as a starting point to create your own /jffs/configs/fstab. A Linux Swap partition is probably a good idea too...
  19. ASAT

    Entware-ARM swap file problem

    Try a delay loop before enabling the swap file. The /opt partition might not be accessible at this point in the boot process. Examples: /jffs/scripts/services-start #!/bin/sh # Wait up to 60 seconds to make sure /opt partition is mounted tmax=60 i=0 while [ $i -le $tmax ] do if [ -d...
  20. ASAT

    Entware-ARM swap file problem

    Be sure you replace my fake UUIDs with your real UUIDs from blkid. These configs are taken from my RT-AC68U with the latest Asuswrt-Merlin. What does the 'blkid' command show? You should see your ext4 and swap partitions with device UUIDs?
Top