You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
526 B
12 lines
526 B
:INPUT,FORWARD,OUTPUT
|
|
-m iprange --src-range 1.1.1.1-1.1.1.10;=;OK
|
|
-m iprange ! --src-range 1.1.1.1-1.1.1.10;=;OK
|
|
-m iprange --dst-range 1.1.1.1-1.1.1.10;=;OK
|
|
-m iprange ! --dst-range 1.1.1.1-1.1.1.10;=;OK
|
|
# it shows -A INPUT -m iprange --src-range 1.1.1.1-1.1.1.1, should we support this?
|
|
# ERROR: should fail: iptables -A INPUT -m iprange --src-range 1.1.1.1
|
|
# -m iprange --src-range 1.1.1.1;;FAIL
|
|
# ERROR: should fail: iptables -A INPUT -m iprange --dst-range 1.1.1.1
|
|
#-m iprange --dst-range 1.1.1.1;;FAIL
|
|
-m iprange;;FAIL
|