What's new

searching RMerlin 380.63 alpha 2 ( unofficial / nightly / latest commit ) build for RT-AC88U

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

Just as an FYI for your debugging.....both iptables commands work OK on my fork with ipset 6.

EDIT: One thing you may want to try is manually loading some of the modules if you aren't already doing so....
Code:
 for module in ip_set ip_set_hash_net ip_set_hash_ip xt_set
do
     insmod $module
done

I need to see if maybe xt_set might also be requiring an alias, like the various hash modules needed for the automagic module loader to work properly.
 
I compiled 380.63_alpha2 without any problems. Only problem is making ipset blacklist win10tracking work.
 
I compiled 380.63_alpha2 without any problems. Only problem is making ipset blacklist win10tracking work.

Don't forget to modprobe xt_set .
 
Don't forget to modprobe xt_set .

I got Win10tracking working. It seems you don't need to load modules... they're already loaded. Only thing is I had to do # ipset -N Win10tracking iphash manually then run the firewall-start. Works now. Not bad work doing trial and error work...

snippet---
# ipset list
Name: Win10tracking
Type: hash:ip
Revision: 0
Header: family inet hashsize 1024 maxelem 65536
Size in memory: 8280
References: 1
Members:
64.4.54.253
64.4.54.254
snippet---
 
I got Win10tracking working. It seems you don't need to load modules... they're already loaded. Only thing is I had to do # ipset -N Win10tracking iphash manually then run the firewall-start. Works now. Not bad work doing trial and error work...

snippet---
# ipset list
Name: Win10tracking
Type: hash:ip
Revision: 0
Header: family inet hashsize 1024 maxelem 65536
Size in memory: 8280
References: 1
Members:
64.4.54.253
64.4.54.254
snippet---

Did u compiled for RT-AC88U ?
 
I think some lines in Win10tracking firewall-start script needs to be changed:

# Create ip set
if [ "$(ipset swap Win10tracking Win10tracking 2>&1 | grep 'Unknown set')" != "" ]; #(change --swap to swap)
then
# ipset -N Win10tracking iphash #(comment out or remove)
ipset create -exist Win10tracking hash:ip #(new command)
fi

Can anyone test this out?
 
Last edited:
I think some lines in Win10tracking firewall-start script needs to be changed:

# Create ip set
if [ "$(ipset swap Win10tracking Win10tracking 2>&1 | grep 'Unknown set')" != "" ]; #(change --swap to swap)
then
# ipset -N Win10tracking iphash #(comment out or remove)
ipset create -exist Win10tracking hash:ip #(new command)
fi

Can anyone test this out?
I have both forms in my scripts without problems. ipset 6 is downward compatible with the old command syntax.
 
Similar threads

Similar threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top