Linux實作ppp撥號4G模塊聯網全球APN之泰國(Thailand)
- 網路運營商APN
- AIS (1-2-Call, you! Mobile)
- dtac
- TrueMove H
- My (by CAT)
- Penguin SIM (on CAT)
- Finn Mobile (previously LINE Mobile, on dtac)
泰國擁有六個網路運營商:
AIS (1-2-Call, you! Mobile)
dtac
TrueMove H
My (by CAT)
My (by CAT)
Penguin SIM (on CAT)
Finn Mobile (previously LINE Mobile, on dtac)
chat腳本配置
chat腳本主要用來通過AT命令完成4G模塊的撥號程序
chat還有個常用的關鍵詞為ABORT,這個關鍵詞用于判斷何時終止腳本,在AT互動程序中,模塊發生錯誤,并且輸出一些錯誤資訊時,ABORT可根據設定的詞,停止當前腳本,
以下腳本命名為“gprs-connect-chat”
修改gprs-connect-chat腳本
vi /etc/ppp/peers/gprs-chat-connect
網路運營商APN
AIS (1-2-Call, you! Mobile)
ABORT "BUSY"
ABORT "NO CARRIER"
ABORT "NO DIALTONE"
ABORT "ERROR"
ABORT "NO ANSWER"
TIMEOUT 120
"" AT
OK \rATZ
# Connection to the network
OK \rAT+CGDCONT=1,"IP","internet",,0,0
# Dial the number
OK-AT-OK ATDT*99#
CONNECT \d\c
dtac
ABORT "BUSY"
ABORT "NO CARRIER"
ABORT "NO DIALTONE"
ABORT "ERROR"
ABORT "NO ANSWER"
TIMEOUT 120
"" AT
OK \rATZ
# Connection to the network
OK \rAT+CGDCONT=1,"IP","www.dtac.co.th",,0,0
# Dial the number
OK-AT-OK ATDT*99#
CONNECT \d\c
TrueMove H
ABORT "BUSY"
ABORT "NO CARRIER"
ABORT "NO DIALTONE"
ABORT "ERROR"
ABORT "NO ANSWER"
TIMEOUT 120
"" AT
OK \rATZ
# Connection to the network
OK \rAT+CGDCONT=1,"IP","internet",,0,0
# Dial the number
OK-AT-OK ATDT*99#
CONNECT \d\c
My (by CAT)
ABORT "BUSY"
ABORT "NO CARRIER"
ABORT "NO DIALTONE"
ABORT "ERROR"
ABORT "NO ANSWER"
TIMEOUT 120
"" AT
OK \rATZ
# Connection to the network
OK \rAT+CGDCONT=1,"IP","internet",,0,0
# Dial the number
OK-AT-OK ATDT*99#
CONNECT \d\c
Penguin SIM (on CAT)
ABORT "BUSY"
ABORT "NO CARRIER"
ABORT "NO DIALTONE"
ABORT "ERROR"
ABORT "NO ANSWER"
TIMEOUT 120
"" AT
OK \rATZ
# Connection to the network
OK \rAT+CGDCONT=1,"IP","internet",,0,0
# Dial the number
OK-AT-OK ATDT*99#
CONNECT \d\c
Finn Mobile (previously LINE Mobile, on dtac)
ABORT "BUSY"
ABORT "NO CARRIER"
ABORT "NO DIALTONE"
ABORT "ERROR"
ABORT "NO ANSWER"
TIMEOUT 120
"" AT
OK \rATZ
# Connection to the network
OK \rAT+CGDCONT=1,"IP","internet",,0,0
# Dial the number
OK-AT-OK ATDT*99#
CONNECT \d\c
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/92121.html
標籤:其他
