mirror of
https://github.com/pi-hole/pi-hole
synced 2024-11-18 06:08:21 +00:00
travis didn't like that
Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
parent
162a7b56fe
commit
79aada0b87
@ -507,15 +507,15 @@ testIPv6() {
|
|||||||
# will contain 162 which is the decimal value corresponding to 0xa2
|
# will contain 162 which is the decimal value corresponding to 0xa2
|
||||||
value2=$(( (0x$first)%256 ))
|
value2=$(( (0x$first)%256 ))
|
||||||
# the ULA test is testing for fc00::/7 according to RFC 4193
|
# the ULA test is testing for fc00::/7 according to RFC 4193
|
||||||
if (( value1&254 == 252 )); then
|
if (( (value1&254)==252 )); then
|
||||||
echo "ULA"
|
echo "ULA"
|
||||||
fi
|
fi
|
||||||
# the GUA test is testing for 2000::/3 according to RFC 4291
|
# the GUA test is testing for 2000::/3 according to RFC 4291
|
||||||
if (( value1&112 == 32 )); then
|
if (( (value1&112)==32 )); then
|
||||||
echo "GUA"
|
echo "GUA"
|
||||||
fi
|
fi
|
||||||
# the LL test is testing for fe80::/10 according to RFC 4193
|
# the LL test is testing for fe80::/10 according to RFC 4193
|
||||||
if (( value1 == 254 )) && (( value2&192 == 128 )); then
|
if (( (value1)==254 )) && (( (value2&192)==128 )); then
|
||||||
echo "Link-local"
|
echo "Link-local"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user