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

    Entware cgi-bin support (apcupsd-cgi)

    http://www.apcupsd.com/manual/manual.html#apcupsd-network-monitoring-cgi-programs The documentation says, "[.cgi programs] should go in the cgi-bin of your Web server." I have apcupsd compiled directly into the AsusWRT firmware for RT-AC68U. Anyone know if the WebUI supports CGI-BIN ? The...
  2. Fitz Mutch

    RT-AC68U 3.0.0.4.382.18547

    The GPL 382.18547 source code for RT-AC68U will probably be released on Thursday, November 16, but I could be wrong.
  3. Fitz Mutch

    qBittorrent shows ISP IP even if VPN configured in router

    Ha! Maybe you got STUN'd ? https://github.com/RMerl/asuswrt-merlin/commit/35d4867f6694fba524e9dadc981c4861f0028a17
  4. Fitz Mutch

    ARM toolchains with NPTL for Asuswrt/Merlin

    When using your toolchain, today I confirmed that running Transmission results in only one process. This is good. And with Asuswrt-Merlin toolchain (Linux threads), there is five processes.
  5. Fitz Mutch

    ARM toolchains with NPTL for Asuswrt/Merlin

    Yes, I had to update an environment variable RTVER in this file, ~/asuswrt-merlin/release/src-rt/platform.mak. And the Beceem_BCMS250_arm with prebuilt librt.so had to be updated too. Unfortunately, your build of the toolchain, I had issues with some custom programs. Transmission-daemon...
  6. Fitz Mutch

    ARM toolchains with NPTL for Asuswrt/Merlin

    I ran out of time trying to compile the toolchain myself. Now I'm rebuilding the firmware with your toolchain. However, there's a problem with the host libraries and your toolchain. My OS is Ubuntu 16.04 LTS 64-bit. awk: symbol lookup error: awk: undefined symbol: mpfr_z_sub...
  7. Fitz Mutch

    ARM toolchains with NPTL for Asuswrt/Merlin

    In the AsusWRT firmware there is a file /lib/libpthread.so.0. Do you happen to know if it is a good pthreads library?
  8. Fitz Mutch

    ARM toolchains with NPTL for Asuswrt/Merlin

    Thank you. This file appears to be the .config to built the ARM toolchain for AsusWRT ? dl_save/defconfig-arm-uclibc
  9. Fitz Mutch

    ARM toolchains with NPTL for Asuswrt/Merlin

    After compiling and linking Transmission-daemon against AsusWRT, it seems to be running as multiple processes. Under Entware-ng, there is only one Transmission-daemon process. I'm just trying Transmission/uClibc for better performance on my RT-AC68U with Asuswrt-Merlin. So now I'm looking at...
  10. Fitz Mutch

    ARM toolchains with NPTL for Asuswrt/Merlin

    Does ASUS or Broadcom publish the Buildroot 2012.02 configuration file ".config" used to build the ARM toolchain ?
  11. Fitz Mutch

    Only allow OpenVPN connections to the outside (iptables)

    The FORWARD chain is for traffic passing through the router. The OUTPUT chain is for traffic that originates at the router itself. Try this? /jffs/scripts/firewall-start #!/bin/sh # iptables -I FORWARD -s 192.168.76.7 -j DROP # iptables -I FORWARD -i br0 -p udp -s 192.168.76.7 --dport 1194 -j...
  12. Fitz Mutch

    ASUS Krackattack patch?

    This exploit allows you to spy on authenticated clients via MITM attack. You cannot steal your neighbor's Wi-Fi with this.
  13. Fitz Mutch

    WARNING: Curl silently ignores the specified proxy

    Proxy server support is not compiled into curl on Asuswrt-Merlin. The problem is that curl doesn't return an error (or show a warning) when you specify a proxy server. It always goes directly to the specified URL, silently ignoring any specified proxy server. This may or may not be an issue...
  14. Fitz Mutch

    Transmission High CPU (Debian via Optware)

    The Optware repo is no supported anymore. And you don't need to chroot Debian on the router, just to run Transmission. This forum would recommend using Entware-ng because it's actively supported and maintained. It's like the OpenWRT package repo.
  15. Fitz Mutch

    Transmission High CPU (Debian via Optware)

    Just re-read your post. So you are running a chrooted Debian on the router? That could be your problem. I'm using the Transmission package installed from the Entware-ng repo. Here's my kernel tweak for Transmission...
  16. Fitz Mutch

    Help with remote openvpn connection and lan communication

    https://www.snbforums.com/threads/windows-10-issue-with-openvpn-server.41572/
  17. Fitz Mutch

    Transmission High CPU (Debian via Optware)

    How to tweak the kernel. Example: /jffs/scripts/init-start #!/bin/sh /bin/echo 16384 >/proc/sys/vm/min_free_kbytes
  18. Fitz Mutch

    Windows 10 issue with OpenVPN server

    Have a look at your IPv4 Route Table in Windows. Type 'route print'. When my Windows laptop is connected to the router VPN, I think Windows assumes there is two different routes to the same destination network 192.168.1.0/24. So it uses the LAN metric to decide which route to take having the...
  19. Fitz Mutch

    Windows 10 issue with OpenVPN server

    It's only an issue when the private LAN address range (i.e. 192.168.1.0/24) is the same for both local and remote networks.
  20. Fitz Mutch

    Isolating guest network in AP mode

    You will need the ebtables brouting rules to un-bridge the traffic you want dropped.
Top