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

    pool.ntp.org time not updating

    Maybe is DNS issue? You could work around the problem, this way: Administration -> System -> "Enable JFFS custom scripts and configs" = YES /jffs/configs/hosts.add 208.75.88.4 pool.ntp.org 204.2.134.162 pool.ntp.org 208.53.158.34 pool.ntp.org 108.61.194.85 pool.ntp.org 108.61.56.35...
  2. ASAT

    Allow computers on the guest network to see eachother?

    I put one of the Ethernet ports on its own VLAN. http://www.snbforums.com/threads/force-lan-port-4-to-use-the-guest-network-for-asus-merlin-rt-ac68u.18969/page-2#post-185959
  3. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    I want Win10tracking to behave the same way when using TOR. It seems that after the packet has gone through NAT prerouting, it's no longer possible to match the destination IP against Win10tracking. Is it possible to do this without marking packets in the mangle prerouting table? That's how I...
  4. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    That fixed it. Thank you, sir. I may add a check at startup that only runs the nat-start logic from within firewall-start during startup. Once the router has gotten past the startup phase, it would use nat-start correctly. In the meantime, I will set this option: Administration -> System ->...
  5. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    My router is the RT-AC68U. At router startup, something is triggering a second instance of nat-start. So there are two instances of nat-start, launched at the same time, that run simultaneously. This sometimes causes the creation of duplicate firewall rules, even though I have logic that...
  6. ASAT

    Fast HTTP pixel image server for ad blocking

    My test was https://1.0.0.1 Note that this is a port 443 request. Both Firefox and IE took over 90 seconds before giving up. By adding the filter REJECT tcp-reset, it is done in 3 seconds or less. Maybe there is an explanation for it?
  7. ASAT

    Fast HTTP pixel image server for ad blocking

    Just need a good sample piece of C code to do it.
  8. ASAT

    Allow computers on the guest network to see eachother?

    Will this work? I have not tried it. Set "Access Intranet" = Yes AND try this: /jffs/scripts/firewall-start # Deny packets from Primary 2.4GHz Wi-Fi ebtables -t filter -I FORWARD -i eth1 -o wl0.1 -j DROP # to Guest 2.4GHz Wi-Fi ebtables -t filter -I FORWARD -i eth1 -o wl1.1 -j DROP # to...
  9. ASAT

    Overclocking RT-AC56U

    For the RT-AC68U, I compiled the firmware myself. Just did a 'make rt-ac68u'. Also, it's probably not a fair test because there was other processes running on the router.
  10. ASAT

    Fast HTTP pixel image server for ad blocking

    I updated the iptables rules. My router is also a TOR transparent proxy for some devices on my network, that's why the additional iptables rules.
  11. ASAT

    ARM-based router CPUs

    I managed to get a root shell on my NVR video surveillance system. Found the CPU to be a dual-core ARMv7, the same as the ASUS RT-AC68U router, except I see that this one here has more CPU features than the ASUS ARM-based routers. This NVR is essentially a router without the Wi-Fi, as it is...
  12. ASAT

    Overclocking RT-AC56U

    Here's the other one: nvram get model RT-AC56U nvram get clkfreq 1200,775 nvram get bl_version 1.0.2.8 cat /proc/cpuinfo Processor : ARMv7 Processor rev 0 (v7l) processor : 0 BogoMIPS : 2398.61 processor : 1 BogoMIPS : 2398.61 Features : swp half thumb fastmult edsp CPU implementer ...
  13. ASAT

    Overclocking RT-AC56U

    nvram get model RT-AC68U nvram get clkfreq 1200,800 nvram get bl_version 1.0.2.1 cat /proc/cpuinfo Processor : ARMv7 Processor rev 0 (v7l) processor : 0 BogoMIPS : 2398.61 processor : 1 BogoMIPS : 2398.61 Features : swp half thumb fastmult edsp CPU implementer : 0x41 CPU architecture...
  14. ASAT

    Fast HTTP pixel image server for ad blocking

    A simple HTTP server returns a static 1x1 pixels image. Similar to pixelserv. Written in less than 100 lines of C code. Compiles with the ARM toolchain included with Asuswrt-Merlin firmware. No Optware or Entware required. nweb23.c #include <stdio.h> #include <stdlib.h> #include <unistd.h>...
  15. ASAT

    Adding sshfs support to dropbear?

    Are you using WinSCP for the client? If dropbear is running and you've installed openssh-sftp-server, it should work automatically.
  16. ASAT

    Adding sshfs support to dropbear?

    Setup Entware here: https://github.com/RMerl/asuswrt-merlin/wiki/Entware Then: opkg update opkg install openssh-sftp-server
  17. ASAT

    Allow computers on the guest network to see eachother?

    You can allow specific access for specific purpose. However, remember it is a guest network after all. You want device isolation to be the rule. Otherwise, why have a guest network? Here's what I did to access my HP printer residing on a special guest Ethernet VLAN. I used Wireshark to view...
  18. ASAT

    How can I get old version of transmission for Entware?

    I successfully built Transmission 2.52 for Entware-ARM, by applying these two patch files. Note that "010_libtransmission_fallocate64_eglibc.patch" has different contents than the patch file included in the most recent openwrt feed. Just open the patch file to verify these contents...
  19. ASAT

    How can I get old version of transmission for Entware?

    On Linux, these commands are equivalent. Any of them will change your current directory to the current user home directory. cd cd ~ cd $HOME Now try this. Running 'make' will build the ARM toolchain and create the openwrt_trunk directory in your home directory. If you can't get this piece to...
  20. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    A use for the dnsmasq.postconf? Like this: /jffs/scripts/dnsmasq.postconf #!/bin/sh dnsmasq -v | grep -i "no-ipset" > /dev/null 2>&1 if [ $? -eq 0 ]; then # dnsmasq does not have ipset support echo "conf-file=/jffs/configs/dnsmasq.ipsetdns.conf" >> "$1" else # dnsmasq has ipset support...
Top