What's new

Using ipset revisited

  • 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 to double check....what does

uname -m

return?
armv7l

Figured out that if I used "--match-set" directly instead of "$MATCH_SET" in the below command, it worked fine.

Code:
[ -z "$(iptables-save | grep MicrosoftSpyServers)" ] && iptables -I FORWARD -m set $MATCH_SET MicrosoftSpyServers dst -j DROP

So I added an "echo $MATCH_SET" and it came back blank... but why...

*FIXED
I just manually retyped the below, can't see what was wrong though.

Code:
#!/bin/sh
# Different routers got different iptables syntax
case $(uname -m) in
  armv7l)
    MATCH_SET='--match-set'
    ;;
  mips)
    MATCH_SET='--set'
    ;;
esac
 
Last edited:

Similar threads

Latest threads

Sign Up For SNBForums Daily Digest

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