Sixfab_PPP_Installer/ppp_installer/install.sh

168 lines
4.9 KiB
Bash
Raw Normal View History

2018-10-15 14:58:48 +00:00
#!/bin/sh
# How to use case-esac
YELLOW='\033[1;33m'
RED='\033[0;31m'
SET='\033[0m'
echo "${YELLOW}Please choose your Sixfab Shield:${SET}"
echo "${YELLOW}1: GSM/GPRS Shield${SET}"
echo "${YELLOW}2: 3G, 4G/LTE Base Shield${SET}"
echo "${YELLOW}3: Cellular IoT App Shield${SET}"
echo "${YELLOW}4: Cellular IoT HAT${SET}"
2018-10-15 14:58:48 +00:00
read answer
case $answer in
1) echo "${YELLOW}You chose GSM/GPRS Shield${SET}";;
2) echo "${YELLOW}You chose Base Shield${SET}";;
3) echo "${YELLOW}You chose CellularIoT Shield${SET}";;
4) echo "${YELLOW}You chose CellularIoT HAT${SET}";;
*) echo "${YELLOW}You did not chose 1, 2,3 or 4${SET}"; exit 1;
2018-10-15 14:58:48 +00:00
esac
2019-04-12 14:30:38 +00:00
if [ $answer -eq 3 ] || [ $answer -eq 4 ]; then
echo "${YELLOW}Please choose LTE Technology:${SET}"
echo "${YELLOW}1: GPRS/EDGE${SET}"
echo "${YELLOW}2: CATM1${SET}"
echo "${YELLOW}3: NB-IoT${SET}"
read answer4
case $answer4 in
1) echo "${YELLOW}You chose GPRS/EDGE${SET}";;
2) echo "${YELLOW}You chose CATM1${SET}";;
3) echo "${YELLOW}You chose NB-IoT${SET}";;
*) echo "${YELLOW}You did not chose 1, 2 or 3${SET}"; exit 1;
esac
fi
2018-10-15 14:58:48 +00:00
echo "${YELLOW}Downloading setup files${SET}"
2019-04-09 16:09:52 +00:00
wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/chat-connect -O chat-connect
2018-10-15 14:58:48 +00:00
if [ $? -ne 0 ]; then
echo "${RED}Download failed${SET}"
exit 1;
fi
2019-04-09 16:09:52 +00:00
wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/chat-disconnect -O chat-disconnect
2018-10-15 14:58:48 +00:00
if [ $? -ne 0 ]; then
echo "${RED}Download failed${SET}"
exit 1;
fi
2019-04-09 16:09:52 +00:00
wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/provider -O provider
2018-10-15 14:58:48 +00:00
if [ $? -ne 0 ]; then
echo "${RED}Download failed${SET}"
exit 1;
fi
while [ 1 ]
do
echo "${YELLOW}Do you have updated kernel ? [Y/n] ${SET}"
read answer2
case $answer2 in
Y) break;;
n) echo "${YELLOW}rpi-update${SET}"
rpi-update
break;;
*) echo "${YELLOW}You did not choose y, N${SET}";;
esac
done
echo "${YELLOW}ppp install${SET}"
apt-get install ppp
echo "${YELLOW}What is your carrier APN?${SET}"
read carrierapn
echo "${YELLOW}What is your device communication PORT? (ttyS0/ttyUSB3/etc.)${SET}"
read devicename
if [ $answer4 -eq 1 ]; then
2018-11-07 13:50:44 +00:00
EXTRA='OK AT+QCFG="band",F,400A0E189F,A0E189F,1\nOK AT+QCFG="nwscanseq",01,1\nOK AT+QCFG="nwscanmode",1,1\nOK AT+QCFG="iotopmode",2,1'
2018-10-15 14:58:48 +00:00
elif [ $answer4 -eq 2 ]; then
EXTRA='OK AT+QCFG="band",F,400A0E189F,A0E189F,1\nOK AT+QCFG="nwscanseq",02,1\nOK AT+QCFG="nwscanmode",3,1\nOK AT+QCFG="iotopmode",0,1'
elif [ $answer4 -eq 3 ]; then
EXTRA='OK AT+QCFG="band",F,400A0E189F,A0E189F,1\nOK AT+QCFG="nwscanseq",03,1\nOK AT+QCFG="nwscanmode",3,1\nOK AT+QCFG="iotopmode",1,1'
fi
2018-10-15 14:58:48 +00:00
mkdir -p /etc/chatscripts
if [ $answer -eq 3 ]; then
sed -i "s/#EXTRA/$EXTRA/" chat-connect
else
sed -i "/#EXTRA/d" chat-connect
fi
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
if ! (grep -q 'route' /etc/ppp/ip-up ); then
echo "sudo route del default" >> /etc/ppp/ip-up
echo "sudo route add default ppp0" >> /etc/ppp/ip-up
fi
if [ $answer -eq 2 ]; then
if ! (grep -q 'max_usb_current' /boot/config.txt ); then
echo "max_usb_current=1" >> /boot/config.txt
fi
fi
while [ 1 ]
do
echo "${YELLOW}Do you want to activate auto connect/reconnect service at R.Pi boot up? [Y/n] ${SET}"
read answer3
case $answer3 in
Y) echo "${YELLOW}Downloading setup file${SET}"
2019-04-09 16:09:52 +00:00
wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/reconnect_service -O reconnect.service
2018-10-15 14:58:48 +00:00
if [ $answer -eq 1 ]; then
2019-04-09 16:09:52 +00:00
wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/reconnect_gprsshield -O reconnect.sh
2018-10-15 14:58:48 +00:00
elif [ $answer -eq 2 ]; then
2019-04-09 16:09:52 +00:00
wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/reconnect_baseshield -O reconnect.sh
2018-10-15 14:58:48 +00:00
elif [ $answer -eq 3 ]; then
wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/reconnect_cellulariot_app -O reconnect.sh
2018-10-15 14:58:48 +00:00
elif [ $answer -eq 4 ]; then
wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/reconnect_cellulariot -O reconnect.sh
2018-10-15 14:58:48 +00:00
fi
mv reconnect.sh /usr/src/
mv reconnect.service /etc/systemd/system/
systemctl daemon-reload
systemctl enable reconnect.service
break;;
n) echo "${YELLOW}To connect to internet run \"sudo pon\" and to disconnect run \"sudo poff\" "
break;;
*) echo "${YELLOW}You did not chose Y, N${SET}";;
esac
done
reboot