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.
16 lines
485 B
16 lines
485 B
4 months ago
|
:INPUT,FORWARD,OUTPUT
|
||
|
-m ttl --ttl-eq 0;=;OK
|
||
|
-m ttl --ttl-eq 255;=;OK
|
||
|
-m ttl ! --ttl-eq 0;=;OK
|
||
|
-m ttl ! --ttl-eq 255;=;OK
|
||
|
-m ttl --ttl-gt 0;=;OK
|
||
|
# not possible have anything greater than 255, TTL is 8-bit long
|
||
|
# ERROR: should fail: iptables -A INPUT -m ttl --ttl-gt 255
|
||
|
## -m ttl --ttl-gt 255;;FAIL
|
||
|
# not possible have anything below 0
|
||
|
# ERROR: should fail: iptables -A INPUT -m ttl --ttl-lt 0
|
||
|
## -m ttl --ttl-lt 0;;FAIL
|
||
|
-m ttl --ttl-eq 256;;FAIL
|
||
|
-m ttl --ttl-eq -1;;FAIL
|
||
|
-m ttl;;FAIL
|