2020-11-19 11:54:45 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Created on July 12, 2019 by Saeed Johar (saeedjohar)
|
|
|
|
# Revised on November 19, 2020 by Yasin Kaya (selengalp)
|
|
|
|
|
|
|
|
SIXFAB_PATH="/opt/sixfab"
|
|
|
|
PPP_PATH="/opt/sixfab/ppp_connection_manager"
|
|
|
|
|
|
|
|
REPO_PATH="https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer"
|
2021-01-26 05:38:34 +00:00
|
|
|
BRANCH=master
|
2020-11-19 11:54:45 +00:00
|
|
|
SOURCE_PATH="$REPO_PATH/$BRANCH/src"
|
|
|
|
SCRIPT_PATH="$REPO_PATH/$BRANCH/src/reconnect_scripts"
|
|
|
|
RECONNECT_SCRIPT_NAME="ppp_reconnect.sh"
|
|
|
|
MANAGER_SCRIPT_NAME="ppp_connection_manager.sh"
|
|
|
|
SERVICE_NAME="ppp_connection_manager.service"
|
|
|
|
|
2019-07-12 14:38:39 +00:00
|
|
|
YELLOW='\033[1;33m'
|
|
|
|
RED='\033[0;31m'
|
|
|
|
BLUE='\033[1;34m'
|
|
|
|
SET='\033[0m'
|
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
|
|
|
|
function colored_echo
|
|
|
|
{
|
|
|
|
COLOR=${2:-$YELLOW}
|
2021-01-26 05:38:34 +00:00
|
|
|
echo -e "$COLOR$1 ${SET}"
|
2020-11-19 11:54:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Check Sixfab path
|
|
|
|
if [[ -e $SIXFAB_PATH ]]; then
|
|
|
|
colored_echo "Sixfab path already exist!" ${SET}
|
|
|
|
else
|
|
|
|
sudo mkdir $SIXFAB_PATH
|
|
|
|
colored_echo "Sixfab path is created." ${SET}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check PPP path
|
|
|
|
if [[ -e $PPP_PATH ]]; then
|
|
|
|
colored_echo "PPP path already exist!" ${SET}
|
|
|
|
else
|
|
|
|
sudo mkdir $PPP_PATH
|
|
|
|
colored_echo "PPP path is created." ${SET}
|
|
|
|
fi
|
|
|
|
|
|
|
|
colored_echo "Please choose your Sixfab Shield/HAT:"
|
|
|
|
colored_echo "1: GSM/GPRS Shield"
|
|
|
|
colored_echo "2: 3G, 4G/LTE Base Shield"
|
|
|
|
colored_echo "3: Cellular IoT App Shield"
|
|
|
|
colored_echo "4: Cellular IoT HAT"
|
|
|
|
colored_echo "5: Tracker HAT"
|
|
|
|
colored_echo "6: 3G/4G Base HAT"
|
2019-07-12 14:38:39 +00:00
|
|
|
|
|
|
|
read shield_hat
|
|
|
|
case $shield_hat in
|
2020-11-19 11:54:45 +00:00
|
|
|
1) colored_echo "You chose GSM/GPRS Shield";;
|
|
|
|
2) colored_echo "You chose Base Shield";;
|
|
|
|
3) colored_echo "You chose CellularIoT Shield";;
|
|
|
|
4) colored_echo "You chose CellularIoT HAT";;
|
|
|
|
5) colored_echo "You chose Tracker HAT";;
|
|
|
|
6) colored_echo "You chose 3G/4G Base HAT";;
|
|
|
|
*) colored_echo "Wrong Selection, exiting" ${RED}; exit 1;
|
2019-07-12 14:38:39 +00:00
|
|
|
esac
|
|
|
|
|
2020-11-20 12:06:57 +00:00
|
|
|
colored_echo "Checking requiremments..."
|
|
|
|
|
|
|
|
colored_echo "Installing python3 if it is required..."
|
|
|
|
if ! [ -x "$(command -v python3)" ]; then
|
|
|
|
sudo apt-get install python3 -y >/dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
colored_echo "Installing pip3 if it is required..."
|
|
|
|
if ! [ -x "$(command -v pip3)" ]; then
|
|
|
|
sudo apt-get install python3-pip -y >/dev/null
|
|
|
|
fi
|
|
|
|
|
|
|
|
colored_echo "Installing or upgrading atcom if it is required..."
|
|
|
|
pip3 install -U atcom && source ~/.profile
|
|
|
|
|
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
colored_echo "Downloading setup files..."
|
|
|
|
wget --no-check-certificate $SOURCE_PATH/chat-connect -O chat-connect
|
2020-11-19 17:51:22 +00:00
|
|
|
if [[ $? -ne 0 ]]; then colored_echo "Download failed" ${RED}; exit 1; fi
|
2019-07-12 14:38:39 +00:00
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
wget --no-check-certificate $SOURCE_PATH/chat-disconnect -O chat-disconnect
|
2020-11-19 17:51:22 +00:00
|
|
|
if [[ $? -ne 0 ]]; then colored_echo "Download failed" ${RED}; exit 1; fi
|
2019-07-12 14:38:39 +00:00
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
wget --no-check-certificate $SOURCE_PATH/provider -O provider
|
2020-11-19 17:51:22 +00:00
|
|
|
if [[ $? -ne 0 ]]; then colored_echo "Download failed" ${RED}; exit 1; fi
|
2019-07-12 14:38:39 +00:00
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
colored_echo "ppp installing"
|
2020-10-22 10:48:14 +00:00
|
|
|
apt-get install ppp -y
|
2019-07-12 14:38:39 +00:00
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
colored_echo "What is your carrier APN?"
|
2019-07-12 14:38:39 +00:00
|
|
|
read carrierapn
|
|
|
|
|
|
|
|
while [ 1 ]
|
|
|
|
do
|
2020-11-19 11:54:45 +00:00
|
|
|
colored_echo "Does your carrier need username and password? [Y/n]"
|
2019-07-12 14:38:39 +00:00
|
|
|
read usernpass
|
|
|
|
|
|
|
|
case $usernpass in
|
|
|
|
[Yy]* ) while [ 1 ]
|
|
|
|
do
|
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
colored_echo "Enter username"
|
2019-07-12 14:38:39 +00:00
|
|
|
read username
|
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
colored_echo "Enter password"
|
2019-07-12 14:38:39 +00:00
|
|
|
read password
|
|
|
|
sed -i "s/noauth/#noauth\nuser \"$username\"\npassword \"$password\"/" provider
|
|
|
|
break
|
|
|
|
done
|
|
|
|
|
|
|
|
break;;
|
|
|
|
|
|
|
|
[Nn]* ) break;;
|
2020-11-19 11:54:45 +00:00
|
|
|
*) colored_echo "Wrong Selection, Select among Y or n" ${RED};;
|
2019-07-12 14:38:39 +00:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-11-19 11:54:45 +00:00
|
|
|
colored_echo "What is your device communication PORT? (ttyS0/ttyUSB3/etc.)"
|
2019-07-12 14:38:39 +00:00
|
|
|
read devicename
|
|
|
|
|
|
|
|
mkdir -p /etc/chatscripts
|
|
|
|
|
|
|
|
mv chat-connect /etc/chatscripts/
|
|
|
|
mv chat-disconnect /etc/chatscripts/
|
|
|
|
|
|
|
|
mkdir -p /etc/ppp/peers
|
|
|
|
sed -i "s/#APN/$carrierapn/" provider
|
|
|
|
sed -i "s/#DEVICE/$devicename/" provider
|
|
|
|
mv provider /etc/ppp/peers/provider
|
|
|
|
|
2021-10-28 13:16:35 +00:00
|
|
|
chmod 600 /etc/ppp/*-secrets
|
|
|
|
|
2021-01-29 12:37:36 +00:00
|
|
|
|
|
|
|
if ! (grep -q 'sudo route' /etc/ppp/ip-up ); then
|
|
|
|
echo "sudo route add default ppp0" >> /etc/ppp/ip-up
|
|
|
|
fi
|
|
|
|
|
2019-07-12 14:38:39 +00:00
|
|
|
read -p "Press ENTER key to reboot" ENTER
|
2021-01-29 12:37:36 +00:00
|
|
|
reboot
|