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. Fitz Mutch

    Compile asuswrt-merlin.ng for RT-AC5300

    https://www.snbforums.com/threads/merlinwrt-compile-instructions.47984/page-3#post-421529
  2. Fitz Mutch

    Failed to compile firmware for RT-AC68u

    Alternatively, how to download a fresh copy directly from the source. Download a fresh 384.9 final ### Download a fresh 384.9 final cd mkdir -p asuswrt-merlin.ng-source cd asuswrt-merlin.ng-source wget -O 384.9-0-680426d.tar.gz...
  3. Fitz Mutch

    Failed to compile firmware for RT-AC68u

    You could fix this yourself by editing ~/asuswrt-merlin.ng/release/src/router/Makefile. The place to fix this is near "ffmpeg/stamp-h1:", in that file. Here's how to see the valid arguments to the configure program. cd ~/asuswrt-merlin.ng/release/src/router/ffmpeg ./configure --help I have...
  4. Fitz Mutch

    Integrating dnsmasq with TOR (I did it)

    /jffs/home/tor-dnsmasq-start.sh #!/bin/sh dnsmasq_conf=/etc/dnsmasq.tor.conf dnsmasq_dnsport=9953 tor_firewall_script="/jffs/home/tor-firewall-changes.sh" dnsmasq_tor_restart=$1 this_script=$(readlink -f $0) this_script_basename=$(basename $this_script) create_dnsmasq_conf() {...
  5. Fitz Mutch

    Integrating dnsmasq with TOR (I did it)

    Run a separate instance of dnsmasq for Tor. Why? It can be configured to block 100% Windows Updates and Microsoft Telemetry for your Windows PCs who route all their traffic through the Tor network. And I no longer need a special hosts file on my Windows PCs to block Microsoft Telemetry, when...
  6. Fitz Mutch

    VPN - TOR: How flexible can you get with how a client connects?

    For Windows PCs that route all traffic through the Tor network, you can turn on Windows Update Delivery Optimization in Windows 10, to allow downloads from other PCs on the local network. For corporate enviroments running Windows Server 2016, the Windows PCs would configure Local Group...
  7. Fitz Mutch

    VPN - TOR: How flexible can you get with how a client connects?

    The FBI will come. https://www.microsoft.com/en-us/corporate-responsibility/lerr
  8. Fitz Mutch

    Configuring apcupsd

    This post may be related for what you are trying to do. https://www.snbforums.com/threads/asus-merlin-emails-can-only-do-tls1-0.47718/#post-417676
  9. Fitz Mutch

    Wifi LAN and TOR internet, is it possible?

    The Tor nodes are easily overloaded, as evidenced from my log. /tmp/torlog Nov 24 16:15:00.000 [notice] Tried for 121 seconds to get a connection to [scrubbed]:80. Giving up. (waiting for circuit) Nov 24 16:15:00.000 [notice] Tried for 121 seconds to get a connection to [scrubbed]:0. Giving...
  10. Fitz Mutch

    USB GPS instead of NTP

    It's also possible to hide the USB stick behind the vinyl siding of a house, when there is no window to display a frying pan. The GPS radio waves pass right through the plastic. Use a long drill bit to go through the exterior wall, to run the USB cable. And then weatherproof by filling the...
  11. Fitz Mutch

    USB GPS instead of NTP

    If you have aluminum mini-blinds just close the blinds and push the USB stick into one of the slits between the blinds. Now you've got a big reflector for the GPS receiver.
  12. Fitz Mutch

    How setup TOR only for .onion domains?

    If you do this, the FBI will come.
  13. Fitz Mutch

    Route all ntp traffic to my ntp raspberry pi serverHow

    During a GPS blackout, my NTP server transitions to the System Clock. How? /jffs/configs/ntp.conf # Undisciplined Local Clock server 127.127.1.0 fudge 127.127.1.0 stratum 15 My GPS device is up on the roof of the building, for the best satellite reception. However, the USAF can simulate...
  14. Fitz Mutch

    Route all ntp traffic to my ntp raspberry pi serverHow

    /jffs/scripts/nat-start #!/bin/sh iptables -t nat -I PREROUTING -i br0 -s 192.168.1.0/24 -p udp --dport 123 -j DNAT --to-destination 192.168.1.88 AND, resolve the DNS name locally, so that NTP clients function properly when there is no Internet connection or your upstream DNS server is down...
  15. Fitz Mutch

    Route all ntp traffic to my ntp raspberry pi serverHow

    Connect the battery-backed RTC to the Pi, and then run "hwclock -s" during Linux boot time, to set the System Clock from the RTC. Great, now you've got the correct time in your system logs. Once your GPS is locked on to the satellites, you can do "hwclock -w" to keep the battery-backed RTC in...
  16. Fitz Mutch

    Route all ntp traffic to my ntp raspberry pi serverHow

    Looks good. Now, if your GPS module is suddenly disconnected from the Pi, does the Pi still serve time to clients? Does it fail over to a reasonable time source and continue even when there's a GPS blackout? Consider adding an Undisciplined Local Clock to your ntp.conf, and give it a high...
  17. Fitz Mutch

    MerlinWRT - compile instructions?

    Could be another thing that ASUS never cleanup and never gets compiled because the CFE is mostly a pre-compiled, compressed, encrypted binary blob? If you want to keep digging, consider looking at the top-level makefiles, as this may tell you whaat's going on.
  18. Fitz Mutch

    VPN - TOR combination and ordering?

    I believe the Asuswrt-Merlin Tor firewall is nat-based, so it's for clients only. You can route a VPN through Tor, if the VPN connection is started from a client computer/device. If you just need to bypass captchas for Tor clients, you could configure a web browser to use a SOCKS proxy. Try...
  19. Fitz Mutch

    MerlinWRT - compile instructions?

    Very good point. For the HND toolchain (routers RT-AC86U, AC2900, GT-AC5300), I wouldn't try it with anything less than 4GB memory, otherwise it will crash the Linux OS. Here's my VM details. Memory: 4GB Processors: 2
  20. Fitz Mutch

    MerlinWRT - compile instructions?

    I don't know why it's different for you. Try keeping the .git directory when copying from the repo to the build tree. I make this change to my script. #rsync -aq asuswrt-merlin.ng/ asuswrt-merlin.ng-build --exclude .git cp -a asuswrt-merlin.ng/ asuswrt-merlin.ng-build
Top