summaryrefslogtreecommitdiff
path: root/src/validators/ipv4-range
blob: cc59039f14edd0bebc2795c2500ca2d6b0e286d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash

# snippet from https://stackoverflow.com/questions/10768160/ip-address-converter
ip2dec () {
    local a b c d ip=$@
    IFS=. read -r a b c d <<< "$ip"
    printf '%d\n' "$((a * 256 ** 3 + b * 256 ** 2 + c * 256 + d))"
}

# Only run this if there is a hypen present in $1
if [[ "$1" =~ "-" ]]; then
  # This only works with real bash (<<<) - split IP addresses into array with
  # hyphen as delimiter
  readarray -d - -t strarr <<< $1

  ipaddrcheck --is-ipv4-single ${strarr[0]}
  if [ $? -gt 0 ]; then
    exit 1
  fi

  ipaddrcheck --is-ipv4-single ${strarr[1]}
  if [ $? -gt 0 ]; then
    exit 1
  fi

  start=$(ip2dec ${strarr[0]})
  stop=$(ip2dec ${strarr[1]})
  if [ $start -ge $stop ]; then
    exit 1
  fi

  exit 0
fi

exit 1