• 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!

Recent content by user2k10

  1. U

    [Fork] Asuswrt-Merlin 374.43 LTS releases (Archive)

    Why is it so difficult to find an RT-AC68U with H/W B1? I cannot find one to buy online. There do not seem to be any locally. __________________ Sent from my Samsung Galaxy Note4 (SM-N910F) on Sammy KK 4.4.4 (NK4) powered by Stock kernel via Tapatalk Pro
  2. U

    [Fork] Asuswrt-Merlin 374.43 LTS releases (Archive)

    John, the opening post states that this fork does not work on the RT-AC1900P. But does it work on the non P version, the RT-AC1900? I'm not sure what the difference is between the two. Thanks __________________ Sent from my Samsung Galaxy Note4 (SM-N910F) on Sammy KK 4.4.4 (NK4) powered by...
  3. U

    Can I change the WLAN MAC Address?

    This works on my RT-AC66U and RT-AC68U, it changes the LAN and the Wireless 2.4GHz MAC address. #!/bin/sh nvram set et0macaddr=DE:FA:CE:DE:FA:CE nvram commit reboot exit 0
  4. U

    blocking specific site on ASUS RT N66R

    You can also get the Facebook IP addresses from this site:- http://bgp.he.net/AS32934#_prefixes
  5. U

    blocking specific site on ASUS RT N66R

    Facebook IP addresses can be obtained with the following command:- whois -h whois.radb.net -- '-i origin AS32934' | awk '/^route:/ {print $2;}' | sort -n -t . -k 1,1 -k 2,2 -k 3,3 -k 4,4 | uniq whois -h whois.radb.net -- '-i origin AS32934' | awk '/^route:/ {print $2;}' | \ sort -n -t ...
  6. U

    Iptables FORWARD chain: br0 or ppp0

    I have an RT-AC68U and it is connected to my fibre modem via the wan port using a PPPoE connection. I want to add some rules to the FORWARD chain to block outgoing and incoming packets from the Internet. iptables -I FORWARD -i br0 -o ppp0 -m set --match-set Microsoft dst -j DROP iptables...
  7. U

    Iptables forward rules: br0 or ppp0

    I have an RT-AC68U and it is connected to my fibre modem via the wan port. I want to add some rules to the FORWARD chain to block outgoing and incoming packets from the Internet. I am confused about when to use br0 and when to use ppp0. To block outgoing packets to the internet do I specify...
  8. U

    [Fork] Asuswrt-Merlin 374.43 LTS releases (Archive)

    +1 Excellent firmware and developer. Sent from my Samsung S3 (GT-i9300) on Sammy JB 4.3 (NB6) powered by Boeffla kernel via Tapatalk
  9. U

    [Fork] Asuswrt-Merlin 374.43 LTS releases (Archive)

    If not in the GUI then maybe something like an nvram option similar to the mod you did to stop the syslog.log file being copied to /jffs Sent from my Samsung S3 (GT-i9300) on Sammy JB 4.3 (NB6) powered by Boeffla kernel via Tapatalk
  10. U

    [Fork] Asuswrt-Merlin 374.43 LTS releases (Archive)

    According to the dropbear command line it should just be a case of adding to the existing -p switch: -p 192.168.0.1:22 http://linux.die.net/man/8/dropbear I could just stop and restart dropbear with the above -p option in the services-start script. Sent from my Samsung S3 (GT-i9300) on Sammy...
  11. U

    [Fork] Asuswrt-Merlin 374.43 LTS releases (Archive)

    Any chance that you can add a facility to restrict dropbear from listening on all interfaces? TIA Sent from my Samsung S3 (GT-i9300) on Sammy JB 4.3 (NB6) powered by Boeffla kernel via Tapatalk
  12. U

    Privoxy iptables

    I am running privoxy on my RT-AC68U and have a problem which I think it is related to the iptables rules I am using. It is setup so that only client packets going to 216.239.32.20 go through privoxy and this works as I would expect. The problem is when I try to browse to the privoxy config page...
  13. U

    iptables/OpenVPN not applying rule

    #!/bin/sh iptables -t nat -A PREROUTING -p udp -d $(nvram get wan0_ipaddr) -i $(nvram get wan0_ifname) --dport 53 -j REDIRECT --to-port 1194 admin@RT-AC66U:/jffs/scripts# iptables -t nat -L Chain PREROUTING (policy ACCEPT) target prot opt source destination ACCEPT udp -- anywhere anywhere udp...
  14. U

    Flashed Merlin Fork on Tmobile Cellspot -script to auto change wan MAC daily?

    Have a look at this post: http://forums.smallnetbuilder.com/showthread.php?p=63044#post63044
  15. U

    Dnscrypt from opendns

    I have optware installed on my RT-AC68U (ARM) via the external USB drive and wanted to install DNScrypt the correct way, so i tried the following: ipkg update ipkg install dnscrypt ipkg install dnscrypt-proxy Both give a package not found error I then tried ipkg list | grep...
Back
Top