forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslm_start_ppp.sh
executable file
·60 lines (49 loc) · 1.22 KB
/
slm_start_ppp.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash -eu
#
# Copyright (c) 2025 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
# Script to start PPP link inside CMUX channel
# using Serial LTE Modem
#
MODEM=/dev/ttyACM0
BAUD=115200
PPP_CMUX=/dev/gsmtty2
AT_CMUX=/dev/gsmtty1
CHATOPT="-vs"
TIMEOUT=60
# Parse command line parameters
while getopts s:b:t:h flag
do
case "${flag}" in
s) MODEM=${OPTARG};;
b) BAUD=${OPTARG};;
t) TIMEOUT=${OPTARG};;
h|?) echo "Usage: $0 [-s serial_port] [-b baud_rate] [-t timeout]"; exit 0;;
esac
done
cleanup() {
set +eu
pkill pppd
pkill ldattach
echo "Failed to start..."
exit 1
}
trap cleanup ERR
if [[ ! -c $MODEM ]]; then
echo "Serial port not found: $MODEM"
exit 1
fi
stty -F $MODEM $BAUD pass8 raw crtscts clocal
echo "Wait modem to boot"
chat -t5 "" "AT" "OK" <$MODEM >$MODEM || true
echo "Attach CMUX channel to modem..."
ldattach -c $'AT#XCMUX=1\r' GSM0710 $MODEM
sleep 1
stty -F $AT_CMUX clocal
echo "Connect and wait for PPP link..."
test -c $AT_CMUX
chat $CHATOPT -t$TIMEOUT "" "AT+CFUN=1" "OK" "\c" "#XPPP: 1,0" >$AT_CMUX <$AT_CMUX
pppd $PPP_CMUX noauth novj nodeflate nobsdcomp debug noipdefault passive +ipv6 \
noremoteip local linkname nrf91 defaultroute defaultroute-metric -1