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

    How can I get old version of transmission for Entware?

    Here is the Wiki that taught me how: How to add a new package or rebuild the feed. https://github.com/Entware/entware/wiki/How-to-add-a-new-package-or-rebuild-the-feed However, the Entware project is a "Mips only" Buildroot environment. You may skip the step titled, "git clone...
  2. ASAT

    How can I get old version of transmission for Entware?

    The OpenWrt packages pulls the Transmission source code from this place. http://download-origin.transmissionbt.com/files/ Use the toolchain included with OpenWRT for ARMv7. You could try to update the Makefile here...
  3. ASAT

    How can I get old version of transmission for Entware?

    You might be able to get away with directly modifying the current version /opt/bin/transmission-daemon, using a binary editor. A quick and dirty hack might be easier than trying to gather all the dependent packages for compiling. How do they check the transmission version?
  4. ASAT

    Trying to understand iptables

    Sometimes it drops without logging. Better to check the byte and packets counts here, to see if the rule is working: iptables -L -v -n Or, try the rule without "-i" option. iptables -I INPUT -s 43.229.0.0/16 -j logdrop Finally, there is this. My NSA friend showed me how to check: tcpdump -i...
  5. ASAT

    How can I get old version of transmission for Entware?

    Maybe is a way to edit /opt/bin/transmission-daemon, to change the string "2.84" to "1.92" or whatever?
  6. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    I run three instances of dnscrypt-proxy on the Asuswrt-Merlin router, on ports 60053-60055, and I want to use it with ipset-dns. However, ipset-dns does not allow the user to specify the port number of the upstream DNS resolver. How to do it: # start ipset-dns with a bogus upstream DNS...
  7. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    I've been propagating the Microsoft tracking domains and my Ad blocking domains plus their resolved IP addresses to Privoxy. So now I tell Privoxy to handle the Ad blocking domains differently as: +handle-as-image. It resolves the URL to a GIF image (4x4 pixels), similar to Pixelserv...
  8. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    I want to extend this approach for ad blocking too. So, for that firewall rule, what's the difference between DROP and REJECT? For the Microsoft tracking I think it is appropriate to DROP their requests on the floor without responding, causing their programs to timeout while waiting for a...
  9. ASAT

    Bypassing ISP's Transparent Proxy with Merlin

    Install the TOR browser bundle to your computer, AND configure it to be a DNS resolver. EDIT FILE: ~\Tor Browser\Browser\TorBrowser\Data\Tor\torrc ADD LINE: DNSPort 127.0.0.1:53 Computer TCP Settings: Set your preferred DNS server to: 127.0.0.1 Must keep the TOR browser running for it to...
  10. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    ipset-dns is a DNS forwarder that uses ipset to collect IP addresses from DNS lookups. Then the firewall rule can blacklist those IPs in realtime. To see the IPs collected by ipset-dns, type: ipset --list Or, you can manually add IPs, this way: ipset -A Win10tracking 65.52.108.11
  11. ASAT

    Dnscrypt from opendns

    Here's my wiki mod. No Optware or Entware required. /jffs/scripts/wan-start #!/bin/sh logger -t $(basename $0) "started [$$]" /bin/pidof dnscrypt-proxy > /dev/null 2>&1 || \ ( # Now resolve DNS name for NTP server ntp_name=$(nvram get ntp_server0) grep "$ntp_name"...
  12. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    It works great with ipset-dns. However, is there a way to use TOR as the upstream DNS resolver for ipset-dns? So my ISP does not see the DNS lookups. Here is my wish: ipset-dns Win10tracking Win10tracking 1919 127.0.0.1:9053
  13. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    It works. The computers cannot ping 173.194.74.28.
  14. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    Am I doing it right? It is not working for RT-AC68U 378.55 Merlin firmware. ipset -N blockedsites iphash ipset -A blockedsites 173.194.74.28 iptables -I FORWARD -m set --match-set blockedsites src,dst -j DROP ping 173.194.74.28
  15. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    I upgraded to dnsmasq-2.75, have defined the HAVE_IPSET switch, and recompiled the 378.55 firmware. However, it is still the same results. Dnsmasq unable to add the ipset member?
  16. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    I'm already using a hosts file to block certain sites. I assumed that there was something special about ipsets that I wasn't aware of. For example if the Microsoft servers attempt to make inbound connections to my systems without my knowledge or consent.
  17. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    It is not working for me on ARMv7 router. I changed -DNO_IPSET to -DHAVE_IPSET in release/src/router/Makefile, and rebuilt the 378.55 firmware for RT-AC68U router. I have confirmed that dnsmasq has the ipset feature now, by typing: dnsmasq --ipset=zzz No longer getting an error about needing...
  18. ASAT

    How to disable Windows 10 tracking using ipset + Entware

    It would prevent MSFT from tracking my movements while on the road. However, once back at home (MSFT already knows where I live), you turn it off so that the Windows Update and the Windows Defender can function normally. Take it with you when you travel. Bring it on the airplane.
  19. ASAT

    Dnscrypt from opendns

    Use the toolchain included with the Asuswrt-Merlin firmware to compile dnscrypt-proxy. Then you copy the binaries to /jffs/bin. No Optware or Entware required.
  20. ASAT

    HOWTO: Compile latest Transmission for Entware/ARMv7 on RT-AC68U Asuswrt-Merlin

    I want to compile the latest experimental source code for Transmission to help with the testing. For example, here it is: https://build.transmissionbt.com/job/trunk-linux/lastSuccessfulBuild/artifact/transmission-trunk-r14560.tar.xz How to add a new package or rebuild the feed...
Top