How says he hasn't? Or is there an invisible internet filter that prohibits anyone from hiding their true identity behind a screen name?Anyone else think it's a little strange that the man himself has yet to make a comment in this thread ?
How says he hasn't? Or is there an invisible internet filter that prohibits anyone from hiding their true identity behind a screen name?Anyone else think it's a little strange that the man himself has yet to make a comment in this thread ?
They, who wants to talk about legality, have a choice NOT to install it. Look at this thread, out 9 pages 95% of it is about legal things. You can write it once, make your statement, warn people and they let it be.
You are very confused about the issue.
We are not interested in the fact we have a choice not to install, we are interested that there is a gpl violation of code we respect.
We can write this firmware violates gpl numerous times in the hope hgg corrects the problem.
Ps you are right that the moderator should delete this thread.
The same scripts that work on Rmerlins fork also work with this one.So has anyone developed a firewall blocking script for bad IP ranges / MS Telemetry with this fork, cos I can't get any of the example ones to work.
The same scripts that work on Rmerlins fork also work with this one.
#!/bin/sh
# Loading ipset modules
lsmod | grep "ipt_set" > /dev/null 2>&1 || \
for module in ip_set ip_set_nethash ip_set_iphash ipt_set
do
insmod $module
done
# Preparing folder to cache downloaded files
IPSET_LISTS_DIR=/jffs/ipset_lists
[ -d "$IPSET_LISTS_DIR" ] || mkdir -p $IPSET_LISTS_DIR
# Different routers got different iptables syntax
case $(uname -m) in
armv7l)
MATCH_SET='--match-set'
;;
mips)
MATCH_SET='--set'
;;
esac
# Block traffic from Tor nodes
if [ "$(ipset --swap TorNodes TorNodes 2>&1 | grep 'Unknown set')" != "" ]
then
ipset -N TorNodes iphash
[ -e $IPSET_LISTS_DIR/tor.lst ] || wget -q -O $IPSET_LISTS_DIR/tor.lst http://torstatus.blutmagie.de/ip_list_all.php/Tor_ip_list_ALL.csv
for IP in $(cat $IPSET_LISTS_DIR/tor.lst)
do
ipset -A TorNodes $IP
done
fi
[ -z "$(iptables-save | grep TorNodes)" ] && iptables -I INPUT -m set $MATCH_SET TorNodes src -j DROP
# Block incoming traffic from some countries. cn and pk is for China and Pakistan. See other countries code at http://www.ipdeny.com/ipblocks/
if [ "$(ipset --swap BlockedCountries BlockedCountries 2>&1 | grep 'Unknown set')" != "" ]
then
ipset -N BlockedCountries nethash
for country in pk cn
do
[ -e $IPSET_LISTS_DIR/$country.lst ] || wget -q -O $IPSET_LISTS_DIR/$country.lst http://www.ipdeny.com/ipblocks/data/countries/$country.zone
for IP in $(cat $IPSET_LISTS_DIR/$country.lst)
do
ipset -A BlockedCountries $IP
done
done
fi
[ -z "$(iptables-save | grep BlockedCountries)" ] && iptables -I INPUT -m set $MATCH_SET BlockedCountries src -j DROP
# Block Microsoft telemetry spying servers
if [ "$(ipset --swap MicrosoftSpyServers MicrosoftSpyServers 2>&1 | grep 'Unknown set')" != "" ]
then
ipset -N MicrosoftSpyServers iphash
for IP in 23.99.10.11 63.85.36.35 63.85.36.50 64.4.6.100 64.4.54.22 64.4.54.32 64.4.54.254 \
65.52.100.7 65.52.100.9 65.52.100.11 65.52.100.91 65.52.100.92 65.52.100.93 65.52.100.94 \
65.55.29.238 65.55.39.10 65.55.44.108 65.55.163.222 65.55.252.43 65.55.252.63 65.55.252.71 \
65.55.252.92 65.55.252.93 66.119.144.157 93.184.215.200 104.76.146.123 111.221.29.177 \
131.107.113.238 131.253.40.37 134.170.52.151 134.170.58.190 134.170.115.60 134.170.115.62 \
134.170.188.248 157.55.129.21 157.55.133.204 157.56.91.77 168.62.187.13 191.234.72.183 \
191.234.72.186 191.234.72.188 191.234.72.190 204.79.197.200 207.46.223.94 207.68.166.254
do
ipset -A MicrosoftSpyServers $IP
done
fi
[ -z "$(iptables-save | grep MicrosoftSpyServers)" ] && iptables -I FORWARD -m set $MATCH_SET MicrosoftSpyServers dst -j DROP
/jffs/scripts$ sh firewall-start
iptables v1.4.14: Set TorNodes doesn't exist.
Try `iptables -h' or 'iptables --help' for more information.
iptables v1.4.14: Set BlockedCountries doesn't exist.
Try `iptables -h' or 'iptables --help' for more information.
iptables v1.4.14: Set MicrosoftSpyServers doesn't exist.
Try `iptables -h' or 'iptables --help' for more information.
If you can't build fw just stop talking. People who can't do they like to teach.
I would love to build and improve this firmware but due to lack of source I am unable to.
That is the problem, there is no source even though this firmware uses code that was released under gpl. The current situation is unfair to all develops that have helped develop this code.
Wow. That is a mature answer. Only if you would be capable.
Here is the hint. Like HGG, start with Merlin's source. Make it better than HGG.
Show that yours is better, then we will talk.
I dare you.
If somebody is talking about how legal and "safe" this firmware is should be able to prove they can do better.
We already established that HGG fw is not GPL complaint and I don't care. I does not have to be reiterated again and again and again.
ps This my replay on this matter, may than people like bits will go away with their post about legality and "safety".
Since when FCC rules the world?
If somebody is talking about how legal and "safe" this firmware is should be able to prove they can do better. I'm grateful that John, Merlin and HGG do this for us. We already established that HGG fw is not GPL complaint and I don't care. I does not have to be reiterated again and again and again.
ps This my replay on this matter, may than people like bits will go away with their post about legality and "safety".
I have a question... I created also for this one a new thread but no answer yet. I can't even remove it from there.
Because I use this FW maybe the right place for the question is here..
It is possible to use DLNA with shared folders from network and not just with attached drives?
I have more sources available as windows shared folders and I would like to use DLNA from my router AC87U
Any idea?
Thank you in advance!
Yes, you are right. First I asked there then I said that maybe I do it in the wrong place. I couldn't undo that.Cross post:
http://www.snbforums.com/threads/dlna-from-network-shared-folder.29774/
People have read your posts. If they know the answer, they'll answer you.
Cross posting doesn't make your voice louder nor understood.
What "Channel bandwidth" and "Control Channel" did you used? On my windows tablet I had the option to disable 802.11d and then the things changed. I didn't found this option on all devices.Hello! Firmware 380.57 had an issue.
There is no way to enable 802.11d wlan regulation mode!
Without enabling this feature, my devices gets wrong country code, drops down mcs index and speed at same level of router's tx power and rssi on client's side.
5GHZ 802.11ac test.
12m from router, directional 9dbi antennas.
( 585mbps @ 378.55.4 - country code: #a ) 700mw
( 243mbps @ 380.57.1 - country code: disabled) 1000mw
AC68U
Since when FCC rules the world?
How says he hasn't? Or is there an invisible internet filter that prohibits anyone from hiding their true identity behind a screen name?
Though there has been valid discussion about GPL violation and licensing of this firmware, I have not seen any offer to help HGGomes, such as clean source code up, setup a github account or encourage to join here and discuss how we can fix things.
HGGomes attempted to contribute and with help could work out any issues, hopefully its not too late.
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!