Vega BS/User Manual
24
Revision 10 – 02 November 2017
ISDN = 0
Phone = *99#
Password = beeline
Username = beeline
where "internet.beeline.ru" is APN cellular operator.
If the strings correspond to the figure above, you do not need to change anything. If
these strings are not present, then they should be added. At that, strings
Init1 = AT+CPIN?
Init2 = AT+CGDCONT=1,"IP","internet.beeline.ru"
entered instead string
Init = AT+CGDCONT=1,"IP","internet.beeline.ru"
The last three strings of the file specify the required dial-up phone, user name and
password (different for each cellular operator):
Phone =
*99#
Password =
beeline
Username =
beeline
4.
Create a script to update the DNS data received from the operator
nano /etc/ppp/ip-up.d/resolv_conf_update
#!/bin/sh -e
cat /etc/ppp/resolv.conf > /etc/resolv.conf
exit 0
Give him the right to run by typing at the command line:
chmod +x /etc/ppp/ip-up.d/resolv_conf_update