#!/bin/bash
# Name: Virtual Ethernet Device IP Generator
#
# Description: This script is used to generate proper entried for the /etc/network/interfaces file
# creating virtual devices like eth0:0. It promts you for all the required information before outputing
# to which every file you wish.
#
# This file must be named debian-add-ips.sh to work properly.
#
# Author: Matthew Koster
clear
echo -e 'E[1;31;40m'"==================================================================="
echo -e 'E[1;31;40m'"= ="
echo -e 'E[1;31;40m'"= E[1;37;40mThis applicaiton is used to generate virtual ethernet devices E[1;31;40m="
echo -e 'E[1;31;40m'"= E[1;37;40mon Debian based system. These sytems have entries added into E[1;31;40m="
echo -e 'E[1;31;40m'"= E[1;37;40mthe E[1;36;40m/etc/network/interfaces E[1;37;40mfile. This script will add the E[1;31;40m="
echo -e 'E[1;31;40m'"= E[1;37;40mappropriate lines tot he file for you, making it easier to E[1;31;40m="
echo -e 'E[1;31;40m'"= E[1;37;40mmultiple virtual interfaces all at once. E[1;31;40m="
echo -e 'E[1;31;40m'"= E[1;37;40mTo exit, use ctrl+c E[1;31;40m="
echo -e 'E[1;31;40m'"= ="
echo -e 'E[1;31;40m'"= E[1;37;40mCreated by: E[1;33;40mMatthew Koster E[1;31;40m="
echo -e 'E[1;31;40m'"= ="
echo -e 'E[1;31;40m'"==================================================================="; tput sgr0
echo " "
echo " "
# Ask for File location
echo -e 'E[1;33;40m'"Enter the file you wish to insert the ips into, followed by [ENTER]"; tput sgr0
read -e -p "File: " -i "/etc/network/interfaces" file
echo ""
# Ask for virtual Device name (eth0, em0, etc)
echo -e 'E[1;33;40m'"Enter the device you wish to add IPs to (ex: eth0), followed by [ENTER]"; tput sgr0
read -p "Device: " netdevice
echo " "
# ASk for staring numeber (eth0:0)
echo -e 'E[1;33;40m'"Enter the first virtual number# (normally 0), followed by [ENTER]"; tput sgr0
read -p $netdevice":" start
echo " "
while [[ ! "$start" =~ ^[0-9]+$ ]]
do
echo -e 'E[1;31;40m'"!!ERROR!!"; tput sgr0
echo -e 'E[1;33;40m'"This value has to be a number"; tput sgr0
read -p $netdevice":" start
echo ""
done
# Ask for the first 3 octets of the IP Address (ex 192.168.1)
echo -e 'E[1;33;40m'"Enter the first 3 octets of an the IP Address, folloed by [ENTER]"; tput sgr0
echo -e 'E[1;32;40m'"Example, 192.168.1 (no trailing .)"; tput sgr0
read -p "Partial IP Address: " ipaddr
echo " "
# Ask for the last octet of first IP address in sequence
echo -e 'E[1;33;40m'"Enter the last octent of first IP address, followed by [ENTER]:"; tput sgr0
echo -e 'E[1;32;40m'"Example, for 192.168.1.2 you would enter 2"; tput sgr0
read -p "Start Octet: " first
echo " "
while [[ ! "$first" =~ ^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])$ ]]
do
echo -e 'E[1;31;40m'"!!ERROR!!"; tput sgr0
echo -e 'E[1;33;40m'"The value has to be a number between 1 and 254"; tput sgr0
read -p "Start Octet: " first
echo ""
done
# Ask for the last octet of the last IP address in sequence
echo -e 'E[1;33;40m'"Enter the last octent of last IP address, followed by [ENTER]:"; tput sgr0
echo -e 'E[1;32;40m'"Example, for 192.168.1.254 you would enter 254"; tput sgr0
read -p "End Octet: " last
echo " "
while [[ ! "$last" =~ ^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])$ ]]
do
echo -e 'E[1;31;40m'"!!ERROR!!"; tput sgr0
echo -e 'E[1;33;40m'"The last IP address has to be a number between 1 and 254"; tput sgr0
read -p "End Octet: " last
echo ""
done
# If the last IP address is lower than the first, issue and error
while [ "$last" -le "$first" ]
do
echo -e 'E[1;31;40m'"!!ERROR!!"; tput sgr0
echo -e 'E[1;33;40m'"The last IP address has to be greater than the first..."; tput sgr0
read -p "End Octet: " last
echo ""
while [[ ! "$last" =~ ^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$ ]]
do
echo -e 'E[1;31;40m'"!!ERROR!!"; tput sgr0
echo -e 'E[1;33;40m'"The last IP address has to be a number between 0 and 255"; tput sgr0
read -p "End Octet: " last
echo ""
done
done
# Ask for the last octet of the netmask
echo -e 'E[1;33;40m'"Enter the last octent of the Netmask, followerd by [ENTER]"; tput sgr0
echo -e 'E[1;32;40m'"Example, for 255.255.255.240, you would use 240"; tput sgr0
read -p "Netmask: " netmask
echo " "
while [[ ! "$netmask" =~ ^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-4])$ ]]
do
echo -e 'E[1;31;40m'"!!ERROR!!"; tput sgr0
echo -e 'E[1;33;40m'"The last IP address has to be a number"; tput sgr0
read -p "End Octet: " netmask
echo ""
done
# Verifiy info with user, if incorrect, restart script
clear
echo -e 'E[1;31;40m'"=========================================="; tput sgr0
echo -e 'E[1;31;40m'"= PLEASE REVIEW THE FOLLOING CAREFULLY ="; tput sgr0
echo -e 'E[1;31;40m'"=========================================="; tput sgr0
echo ""
echo -e 'E[1;33;40m'"Here is the info you entered:"; tput sgr0
echo -e 'E[1;33;40m'"File to be modified: c"; tput sgr0
echo $file
echo -e 'E[1;33;40m'"First Virtual interface: c"; tput sgr0
echo $netdevice":"$start
echo -e 'E[1;33;40m'"IP Range: c"; tput sgr0
echo $ipaddr"."$first "-" $ipaddr"."$last
echo -e 'E[1;33;40m'"Netmask: c"; tput sgr0
echo "255.255.255."$netmask
echo " "
echo -e 'E[1;33;40m'"Is this correct? [Y/N]: c"; tput sgr0
read corr
# User must enter Y or y to continue, otherwise script restarts
if [ "$corr" != y ]; then
if [ "$corr" != Y ]; then
clear
./debian-add-ips.sh
fi
fi
# Back up the file if it exists, we all make mistakes.
if [ -f "$file" ]; then
cp $file $file.bak
bkup=1
fi
# Loop the output for as many IPs as requsted
x=$start
y=$first
z=$last
while [ "$y" -le "$z" ]
do
echo "" >> $file
echo "auto " $netdevice:$x >> $file
echo "iface "$netdevice:$x" inet static" >> $file
echo " address "$ipaddr"."$y >> $file
echo " netmask 255.255.255."$netmask >> $file
y=$[$y+1]
x=$[$x+1]
done
clear
# Let them know where the back up is (if they have one) and cat the file for inspction
echo -e 'E[1;33;40m'"All done - Press enter to CAT the file for final inspection"; tput sgr0
if [ "$bkup" == 1 ]; then
echo -e 'E[1;33;40m'"Note - A back up for the file has been created as: c"; tput sgr0
echo $file".bak"
fi
read -p "Press any key to continue... " -n1 -s
clear
echo " "
echo -e 'E[1;33;40m'"Out put of file c"; tput sgr0
echo $file
echo ""
echo -e "E[1;31;40m============================================================================================"; tput sgr0
echo ""
cat $file
echo ""
echo -e "E[1;31;40m============================================================================================"; tput sgr0
echo ""
echo "Virtual Ethernet IP Generation complete."
echo ""