Created
June 10, 2021 22:01
-
-
Save mkyrychenko/ca641da329f76c12ce411dc1267fa95f to your computer and use it in GitHub Desktop.
Bash IP Calculator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#1. if you have only network prefix available (no netmask) | |
IP=10.20.30.240 | |
PREFIX=26 | |
IFS=. read -r i1 i2 i3 i4 <<< $IP | |
IFS=. read -r xx m1 m2 m3 m4 <<< $(for a in $(seq 1 32); do if [ $(((a - 1) % 8)) -eq 0 ]; then echo -n .; fi; if [ $a -le $PREFIX ]; then echo -n 1; else echo -n 0; fi; done) | |
printf "%d.%d.%d.%d\n" "$((i1 & (2#$m1)))" "$((i2 & (2#$m2)))" "$((i3 & (2#$m3)))" "$((i4 & (2#$m4)))" | |
# 2. | |
IP=10.20.30.240 | |
MASK=255.255.252.0 | |
IFS=. read -r i1 i2 i3 i4 << EOF | |
$IP | |
EOF | |
IFS=. read -r m1 m2 m3 m4 << EOF | |
$MASK | |
EOF | |
read masked << EOF | |
$(( $i1 & $m1 )).$(( $i2 & $m2 )).$(( $i3 & $m3 )).$(( $i4 & $m4 )) | |
EOF | |
echo $masked | |
# 3. if you only have the prefix length | |
IP=10.20.30.240 | |
PREFIX=22 | |
IFS=. read -r i1 i2 i3 i4 << EOF | |
$IP | |
EOF | |
mask=$(( ((1<<32)-1) & (((1<<32)-1) << (32 - $PREFIX)) )) | |
read masked << EOF | |
$(( $i1 & ($mask>>24) )).$(( $i2 & ($mask>>16) )).$(( $i3 & ($mask>>8) )).$(( $i4 & $mask )) | |
EOF | |
echo $masked | |
# 4. | |
IFS=. read -r i1 i2 i3 i4 <<< "192.168.1.15" | |
IFS=. read -r m1 m2 m3 m4 <<< "255.255.0.0" | |
printf "%d.%d.%d.%d\n" "$((i1 & m1))" "$((i2 & m2))" "$((i3 & m3))" "$((i4 & m4))" | |
# -> 192.168.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
ip2int() | |
{ | |
local a b c d | |
{ IFS=. read a b c d; } <<< $1 | |
echo $(((((((a << 8) | b) << 8) | c) << 8) | d)) | |
} | |
int2ip() | |
{ | |
local ui32=$1; shift | |
local ip n | |
for n in 1 2 3 4; do | |
ip=$((ui32 & 0xff))${ip:+.}$ip | |
ui32=$((ui32 >> 8)) | |
done | |
echo $ip | |
} | |
netmask() | |
# Example: netmask 24 => 255.255.255.0 | |
{ | |
local mask=$((0xffffffff << (32 - $1))); shift | |
int2ip $mask | |
} | |
broadcast() | |
# Example: broadcast 192.0.2.0 24 => 192.0.2.255 | |
{ | |
local addr=$(ip2int $1); shift | |
local mask=$((0xffffffff << (32 -$1))); shift | |
int2ip $((addr | ~mask)) | |
} | |
network() | |
# Example: network 192.0.2.0 24 => 192.0.2.0 | |
{ | |
local addr=$(ip2int $1); shift | |
local mask=$((0xffffffff << (32 -$1))); shift | |
int2ip $((addr & mask)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment