|
|
|
@ -6,9 +6,9 @@ |
|
|
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
|
|
|
|
|
|
|
|
|
function header_info { |
|
|
|
|
cat <<"EOF" |
|
|
|
|
cat <<"EOF" |
|
|
|
|
__ ____ __ __ _ __ ____ __ ____ _____ |
|
|
|
|
/ |/ (_) /___________ / /_(_) /__ / __ \____v5__ __/ /____ _____/ __ \/ ___/ |
|
|
|
|
/ |/ (_) /___________ / /_(_) /__ / __ \____ __ __/ /____ _____/ __ \/ ___/ |
|
|
|
|
/ /|_/ / / //_/ ___/ __ \/ __/ / //_/ / /_/ / __ \/ / / / __/ _ \/ ___/ / / /\__ \ |
|
|
|
|
/ / / / / < / / / /_/ / /_/ / < / _ _/ /_/ / /_/ / /_/ __/ / / /_/ /___/ / |
|
|
|
|
/_/ /_/_/_/|_/_/ \____/\__/_/_/|_| /_/ |_|\____/\__,_/\__/\___/_/ \____//____/ |
|
|
|
@ -20,14 +20,14 @@ header_info |
|
|
|
|
echo -e "Loading..." |
|
|
|
|
GEN_MAC=$(echo '00 60 2f'$(od -An -N3 -t xC /dev/urandom) | sed -e 's/ /:/g' | tr '[:lower:]' '[:upper:]') |
|
|
|
|
NEXTID=$(pvesh get /cluster/nextid) |
|
|
|
|
YW=`echo "\033[33m"` |
|
|
|
|
BL=`echo "\033[36m"` |
|
|
|
|
HA=`echo "\033[1;34m"` |
|
|
|
|
RD=`echo "\033[01;31m"` |
|
|
|
|
BGN=`echo "\033[4;92m"` |
|
|
|
|
GN=`echo "\033[1;92m"` |
|
|
|
|
DGN=`echo "\033[32m"` |
|
|
|
|
CL=`echo "\033[m"` |
|
|
|
|
YW=$(echo "\033[33m") |
|
|
|
|
BL=$(echo "\033[36m") |
|
|
|
|
HA=$(echo "\033[1;34m") |
|
|
|
|
RD=$(echo "\033[01;31m") |
|
|
|
|
BGN=$(echo "\033[4;92m") |
|
|
|
|
GN=$(echo "\033[1;92m") |
|
|
|
|
DGN=$(echo "\033[32m") |
|
|
|
|
CL=$(echo "\033[m") |
|
|
|
|
BFR="\\r\\033[K" |
|
|
|
|
HOLD="-" |
|
|
|
|
CM="${GN}✓${CL}" |
|
|
|
@ -62,7 +62,7 @@ function cleanup() { |
|
|
|
|
} |
|
|
|
|
TEMP_DIR=$(mktemp -d) |
|
|
|
|
pushd $TEMP_DIR >/dev/null |
|
|
|
|
if [ `pveversion | grep "pve-manager/7" | wc -l` -ne 1 ]; then |
|
|
|
|
if [ $(pveversion | grep "pve-manager/7" | wc -l) -ne 1 ]; then |
|
|
|
|
echo "⚠ This version of Proxmox Virtual Environment is not supported" |
|
|
|
|
echo "Requires PVE Version: 7.XX" |
|
|
|
|
echo "Exiting..." |
|
|
|
@ -107,63 +107,64 @@ function default_settings() { |
|
|
|
|
echo -e "${BL}Creating a Mikrotik RouterOS VM using the above default settings${CL}" |
|
|
|
|
} |
|
|
|
|
function advanced_settings() { |
|
|
|
|
VMID=$(whiptail --inputbox "Set Virtual Machine ID" 8 58 $NEXTID --title "VIRTUAL MACHINE ID" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
VMID=$(whiptail --inputbox "Set Virtual Machine ID" 8 58 $NEXTID --title "VIRTUAL MACHINE ID" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
echo -e "${DGN}Using Virtual Machine ID: ${BGN}$VMID${CL}" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
exit |
|
|
|
|
fi |
|
|
|
|
VM_NAME=$(whiptail --inputbox "Set Hostname" 8 58 Mikrotik-RouterOS --title "HOSTNAME" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
fi |
|
|
|
|
VM_NAME=$(whiptail --inputbox "Set Hostname" 8 58 Mikrotik-RouterOS --title "HOSTNAME" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
HN=$(echo ${VM_NAME,,} | tr -d ' ') |
|
|
|
|
echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
exit |
|
|
|
|
fi |
|
|
|
|
CORE_COUNT=$(whiptail --inputbox "Allocate CPU Cores" 8 58 1 --title "CORE COUNT" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
fi |
|
|
|
|
CORE_COUNT=$(whiptail --inputbox "Allocate CPU Cores" 8 58 1 --title "CORE COUNT" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
exit |
|
|
|
|
fi |
|
|
|
|
RAM_SIZE=$(whiptail --inputbox "Allocate RAM in MiB" 8 58 1024 --title "RAM" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
fi |
|
|
|
|
RAM_SIZE=$(whiptail --inputbox "Allocate RAM in MiB" 8 58 1024 --title "RAM" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
exit |
|
|
|
|
fi |
|
|
|
|
BRG=$(whiptail --inputbox "Set a Bridge" 8 58 vmbr0 --title "BRIDGE" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
fi |
|
|
|
|
BRG=$(whiptail --inputbox "Set a Bridge" 8 58 vmbr0 --title "BRIDGE" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
exit |
|
|
|
|
fi |
|
|
|
|
MAC1=$(whiptail --inputbox "Set a MAC Address" 8 58 $GEN_MAC --title "MAC ADDRESS" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
fi |
|
|
|
|
MAC1=$(whiptail --inputbox "Set a MAC Address" 8 58 $GEN_MAC --title "MAC ADDRESS" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
MAC="$MAC1" |
|
|
|
|
echo -e "${DGN}Using MAC Address: ${BGN}$MAC1${CL}" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
exit |
|
|
|
|
fi |
|
|
|
|
VLAN1=$(whiptail --inputbox "Set a Vlan(leave blank for default)" 8 58 --title "VLAN" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
if [ -z $VLAN1 ]; then VLAN1="Default" VLAN=""; |
|
|
|
|
fi |
|
|
|
|
VLAN1=$(whiptail --inputbox "Set a Vlan(leave blank for default)" 8 58 --title "VLAN" 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
if [ -z $VLAN1 ]; then |
|
|
|
|
VLAN1="Default" VLAN="" |
|
|
|
|
echo -e "${DGN}Using Vlan: ${BGN}$VLAN1${CL}" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
VLAN=",tag=$VLAN1" |
|
|
|
|
echo -e "${DGN}Using Vlan: ${BGN}$VLAN1${CL}" |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
MTU1=$(whiptail --inputbox "Set Interface MTU Size (leave blank for default)" 8 58 --title "MTU SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
fi |
|
|
|
|
MTU1=$(whiptail --inputbox "Set Interface MTU Size (leave blank for default)" 8 58 --title "MTU SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3) |
|
|
|
|
exitstatus=$? |
|
|
|
|
if [ $exitstatus = 0 ]; then |
|
|
|
|
if [ -z $MTU1 ]; then |
|
|
|
|
MTU1="Default" MTU="" |
|
|
|
|
echo -e "${DGN}Using Interface MTU Size: ${BGN}$MTU1${CL}" |
|
|
|
@ -171,35 +172,35 @@ if [ $exitstatus = 0 ]; then |
|
|
|
|
MTU=",mtu=$MTU1" |
|
|
|
|
echo -e "${DGN}Using Interface MTU Size: ${BGN}$MTU1${CL}" |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
if (whiptail --title "START VIRTUAL MACHINE" --yesno "Start Mikrotik RouterOS VM when completed?" 10 58); then |
|
|
|
|
fi |
|
|
|
|
if (whiptail --title "START VIRTUAL MACHINE" --yesno "Start Mikrotik RouterOS VM when completed?" 10 58); then |
|
|
|
|
echo -e "${DGN}Start Mikrotik RouterOS VM when completed: ${BGN}yes${CL}" |
|
|
|
|
START_VM="yes" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
echo -e "${DGN}Start Mikrotik RouterOS VM when completed: ${BGN}no${CL}" |
|
|
|
|
START_VM="no" |
|
|
|
|
fi |
|
|
|
|
if (whiptail --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create Mikrotik RouterOS VM?" 10 58); then |
|
|
|
|
fi |
|
|
|
|
if (whiptail --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create Mikrotik RouterOS VM?" 10 58); then |
|
|
|
|
echo -e "${RD}Creating Mikrotik RouterOS VM using the above advanced settings${CL}" |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
clear |
|
|
|
|
header_info |
|
|
|
|
echo -e "${RD}Using Advanced Settings${CL}" |
|
|
|
|
advanced_settings |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
|
function start_script() { |
|
|
|
|
if (whiptail --title "SETTINGS" --yesno "Use Default Settings?" 10 58); then |
|
|
|
|
if (whiptail --title "SETTINGS" --yesno "Use Default Settings?" 10 58); then |
|
|
|
|
clear |
|
|
|
|
header_info |
|
|
|
|
echo -e "${BL}Using Default Settings${CL}" |
|
|
|
|
default_settings |
|
|
|
|
else |
|
|
|
|
else |
|
|
|
|
clear |
|
|
|
|
header_info |
|
|
|
|
echo -e "${RD}Using Advanced Settings${CL}" |
|
|
|
|
advanced_settings |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
|
start_script |
|
|
|
|
msg_info "Validating Storage" |
|
|
|
@ -212,14 +213,14 @@ while read -r line; do |
|
|
|
|
if [[ $((${#ITEM} + $OFFSET)) -gt ${MSG_MAX_LENGTH:-} ]]; then |
|
|
|
|
MSG_MAX_LENGTH=$((${#ITEM} + $OFFSET)) |
|
|
|
|
fi |
|
|
|
|
STORAGE_MENU+=( "$TAG" "$ITEM" "OFF" ) |
|
|
|
|
STORAGE_MENU+=("$TAG" "$ITEM" "OFF") |
|
|
|
|
done < <(pvesm status -content images | awk 'NR>1') |
|
|
|
|
VALID=$(pvesm status -content images | awk 'NR>1') |
|
|
|
|
if [ -z "$VALID" ]; then |
|
|
|
|
echo -e "\n${RD}⚠ Unable to detect a valid storage location.${CL}" |
|
|
|
|
echo -e "Exiting..." |
|
|
|
|
exit |
|
|
|
|
elif [ $((${#STORAGE_MENU[@]}/3)) -eq 1 ]; then |
|
|
|
|
elif [ $((${#STORAGE_MENU[@]} / 3)) -eq 1 ]; then |
|
|
|
|
STORAGE=${STORAGE_MENU[0]} |
|
|
|
|
else |
|
|
|
|
while [ -z "${STORAGE:+x}" ]; do |
|
|
|
@ -245,12 +246,12 @@ msg_info "Extracting Mikrotik RouterOS Disk Image" |
|
|
|
|
gunzip -f -S .zip $FILE |
|
|
|
|
STORAGE_TYPE=$(pvesm status -storage $STORAGE | awk 'NR>1 {print $2}') |
|
|
|
|
case $STORAGE_TYPE in |
|
|
|
|
nfs|dir) |
|
|
|
|
nfs | dir) |
|
|
|
|
DISK_EXT=".qcow2" |
|
|
|
|
DISK_REF="$VMID/" |
|
|
|
|
DISK_IMPORT="-format qcow2" |
|
|
|
|
;; |
|
|
|
|
btrfs) |
|
|
|
|
btrfs) |
|
|
|
|
DISK_EXT=".raw" |
|
|
|
|
DISK_REF="$VMID/" |
|
|
|
|
DISK_FORMAT="subvol" |
|
|
|
@ -277,8 +278,8 @@ qm set $VMID \ |
|
|
|
|
[](https://ko-fi.com/D1D7EP4GF)" >/dev/null |
|
|
|
|
msg_ok "Mikrotik RouterOS VM ${CL}${BL}(${HN})" |
|
|
|
|
if [ "$START_VM" == "yes" ]; then |
|
|
|
|
msg_info "Starting Mikrotik RouterOS VM" |
|
|
|
|
qm start $VMID |
|
|
|
|
msg_ok "Started Mikrotik RouterOS VM" |
|
|
|
|
msg_info "Starting Mikrotik RouterOS VM" |
|
|
|
|
qm start $VMID |
|
|
|
|
msg_ok "Started Mikrotik RouterOS VM" |
|
|
|
|
fi |
|
|
|
|
msg_ok "Completed Successfully!\n" |
|
|
|
|