lixuewei / rt-n56u

Automatically exported from code.google.com/p/rt-n56u
0 stars 0 forks source link

Kernel module xt_set is not loaded in. #1269

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Set modprobe xt_set enabled with ipset in Administration->Tweaks->Run after 
Router started.
2.
3.

What is the expected output? What do you see instead?
I am expecting to see a blacklist develop using IPset.

What version of the product are you using? On what operating system?
Most recent firmware build from commit dbde079b7dba.  Win7 64-bit

Please describe the problem as detailed as it's possible.
If you have connection problem, then syslog file is required. (please do
attach it as a file)
Note that if there will be a poor problem description the issue status will
be changed to 'Invalid'!

I am expecting to see a blacklist created using IPset.  I SSH into the router 
and manually run an IPtables command. 

iptables -D INPUT -m set --match-set Blacklist src -j DROP

I see a message stating "iptables v1.4.16.3: Kernel module xt_set is not loaded 
in."

Original issue reported on code.google.com by ScottJac...@gmail.com on 17 Jun 2014 at 2:24

GoogleCodeExporter commented 9 years ago
First of all, I don't know what you are expecting with this command =) It's 
syntax is incorrect - that's I know...
Second, there is another script for custom firewall rules - 'Run after Firewall 
Rules restarted'
Third, if a module is not loaded, but exists, then load it! What's the problem?

lsmod | grep -q xt_set || modprobe xt_set

Original comment by d...@soulblader.com on 17 Jun 2014 at 5:33