Hello,
I am using Fona 808 in serial connection with the Raspberry Pi 3. I have completed all the steps mentioned at https://learn.adafruit.com/fona-tetheri ... k?view=all
The problem is that the PPP connection is not getting established.
My cat /var/log/syslog | grep chat response is below,
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (BUSY)
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (VOICE)
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (NO CARRIER)
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (NO DIALTONE)
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (NO DIAL TONE)
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (NO ANSWER)
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (DELAYED)
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (ERROR)
Oct 20 15:04:12 raspberrypi chat[1444]: abort on (+CGATT: 0)
Oct 20 15:04:12 raspberrypi chat[1444]: send (AT^M)
Oct 20 15:04:12 raspberrypi chat[1444]: timeout set to 12 seconds
Oct 20 15:04:12 raspberrypi chat[1444]: expect (OK)
Oct 20 15:04:12 raspberrypi chat[1444]: AT^M^M
Oct 20 15:04:12 raspberrypi chat[1444]: OK
Oct 20 15:04:12 raspberrypi chat[1444]: -- got it
Oct 20 15:04:12 raspberrypi chat[1444]: send (ATH^M)
Oct 20 15:04:12 raspberrypi chat[1444]: expect (OK)
Oct 20 15:04:12 raspberrypi chat[1444]: ^M
Oct 20 15:04:12 raspberrypi chat[1444]: ATH^M^M
Oct 20 15:04:12 raspberrypi chat[1444]: OK
Oct 20 15:04:12 raspberrypi chat[1444]: -- got it
Oct 20 15:04:12 raspberrypi chat[1444]: send (ATE1^M)
Oct 20 15:04:12 raspberrypi chat[1444]: expect (OK)
Oct 20 15:04:12 raspberrypi chat[1444]: ^M
Oct 20 15:04:12 raspberrypi chat[1444]: ATE1^M^M
Oct 20 15:04:12 raspberrypi chat[1444]: OK
Oct 20 15:04:12 raspberrypi chat[1444]: -- got it
Oct 20 15:04:12 raspberrypi chat[1444]: send (AT+CGDCONT=1,"IP","web.qtel","",0,0^M)
Oct 20 15:04:12 raspberrypi chat[1444]: expect (OK)
Oct 20 15:04:12 raspberrypi chat[1444]: ^M
Oct 20 15:04:12 raspberrypi chat[1444]: AT+CGDCONT=1,"IP","web.qtel","",0,0^M^M
Oct 20 15:04:12 raspberrypi chat[1444]: OK
Oct 20 15:04:12 raspberrypi chat[1444]: -- got it
Oct 20 15:04:12 raspberrypi chat[1444]: send (ATD*99#^M)
Oct 20 15:04:12 raspberrypi chat[1444]: timeout set to 22 seconds
Oct 20 15:04:12 raspberrypi chat[1444]: expect (CONNECT)
Oct 20 15:04:12 raspberrypi chat[1444]: ^M
Oct 20 15:04:12 raspberrypi chat[1444]: ATD*99#^M^M
Oct 20 15:04:12 raspberrypi chat[1444]: CONNECT
Oct 20 15:04:12 raspberrypi chat[1444]: -- got it
Oct 20 15:04:12 raspberrypi chat[1444]: send (^M)
And the cat /var/log/syslog | grep ppp response is below
Oct 20 15:03:38 raspberrypi pppd[1262]: Serial connection established.
Oct 20 15:03:38 raspberrypi pppd[1262]: Using interface ppp0
Oct 20 15:03:38 raspberrypi pppd[1262]: Connect: ppp0 <--> /dev/ttyAMA0
Oct 20 15:03:39 raspberrypi pppd[1262]: PAP authentication succeeded
Oct 20 15:03:39 raspberrypi pppd[1262]: LCP terminated by peer
Oct 20 15:03:42 raspberrypi pppd[1262]: Connection terminated.
Oct 20 15:03:42 raspberrypi pppd[1262]: Modem hangup
Oct 20 15:04:12 raspberrypi pppd[1262]: Serial connection established.
Oct 20 15:04:12 raspberrypi pppd[1262]: Using interface ppp0
Oct 20 15:04:12 raspberrypi pppd[1262]: Connect: ppp0 <--> /dev/ttyAMA0
Oct 20 15:04:13 raspberrypi pppd[1262]: PAP authentication succeeded
Oct 20 15:04:13 raspberrypi pppd[1262]: LCP terminated by peer
Oct 20 15:04:16 raspberrypi pppd[1262]: Connection terminated.
Oct 20 15:04:16 raspberrypi pppd[1262]: Modem hangup
Oct 20 15:04:16 raspberrypi pppd[1262]: Exit.
Please guide me in finding the issue.
Thanks.