Community discussions

MikroTik App
 
pkropf
just joined
Topic Author
Posts: 12
Joined: Wed Apr 15, 2020 9:54 pm
Location: Oakland, CA
Contact:

Lost configuring LTE on Ting

Thu Sep 24, 2020 11:10 pm

I'm having trouble getting Internet access via LTE on a RBwAPR-2nD&R11e-LTE-US using a Ting SIM card that's been activated for data. Here's my config:
[admin@MikroTik] > /export
# jan/02/1970 13:48:28 by RouterOS 6.47.3
# software id = 36IV-1EHB
#
# model = RBwAPR-2nD
# serial number = SN
/interface bridge
add admin-mac=xx:xx:xx:xx:xx auto-mac=no comment=defconf name=bridge
/interface wireless
set [ find default-name=wlan1 ] ssid=MikroTik
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface lte apn
add apn=wholesale
/interface lte
set [ find ] apn-profiles=wholesale name=lte1
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/ip dhcp-server
add address-pool=default-dhcp disabled=no interface=bridge name=defconf
/interface bridge port
add bridge=bridge comment=defconf interface=ether1
add bridge=bridge comment=defconf interface=wlan1
/ip neighbor discovery-settings
set discover-interface-list=LAN
/interface list member
add comment=defconf interface=bridge list=LAN
add comment=defconf interface=lte1 list=WAN
/ip address
add address=192.168.88.1/24 comment=defconf interface=bridge network=192.168.88.0
/ip dhcp-server network
add address=192.168.88.0/24 comment=defconf gateway=192.168.88.1
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=192.168.88.1 comment=defconf name=router.lan
/ip firewall filter
add action=accept chain=input comment="defconf: accept established,related,untracked" connection-state=\
    established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=invalid
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=accept chain=input comment="defconf: accept to local loopback (for CAPsMAN)" dst-address=127.0.0
add action=drop chain=input comment="defconf: drop all not coming from LAN" in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" connection-state=established,rel
add action=accept chain=forward comment="defconf: accept established,related, untracked" connection-state=\
    established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" connection-state=invalid
add action=drop chain=forward comment="defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstna
    connection-state=new in-interface-list=WAN
/ip firewall nat
add action=masquerade chain=srcnat comment="defconf: masquerade" ipsec-policy=out,none out-interface-list=W
/tool mac-server
set allowed-interface-list=LAN
/tool mac-server mac-winbox
set allowed-interface-list=LAN
[admin@MikroTik] > 

It looks like I'm connected to the LTE network and have an assigned IP address:
[admin@MikroTik] > /ip address print          
Flags: X - disabled, I - invalid, D - dynamic 
 #   ADDRESS            NETWORK         INTERFACE                                                                                          
 0   ;;; defconf
     192.168.88.1/24    192.168.88.0    bridge                                                                                             
 1 D 21.250.179.145/32  21.250.179.145  lte1                                                                                               
[admin@MikroTik] > /interface print           
Flags: D - dynamic, X - disabled, R - running, S - slave 
 #     NAME                                TYPE       ACTUAL-MTU L2MTU  MAX-L2MTU MAC-ADDRESS      
 0  RS ether1                              ether            1500  1598       2028 48:8F:5A:xx:xx:xx
 1  XS wlan1                               wlan             1500  1600       2290 48:8F:5A:xx:xx:xx
 2  R  ;;; defconf
       bridge                              bridge           1500  1598            48:8F:5A:xx:xx:xx
 3  R  lte1                                lte              1500                  CE:AE:69:xx:xx:xx
[admin@MikroTik] > 

However, I'm unable to ping the outside world:
[admin@MikroTik] > ping interface=lte1 8.8.8.8
  SEQ HOST                                     SIZE TTL TIME  STATUS                                                                       
    0 8.8.8.8                                                 timeout                                                                      
    1 8.8.8.8                                                 timeout                                                                      
    2 8.8.8.8                                                 timeout                                                                      
    3 8.8.8.8                                                 timeout                                                                      
    sent=4 received=0 packet-loss=100% 

[admin@MikroTik] > 
Does anyone see anything obviously wrong with my config? LTE is new to me so I'm not even sure where to start troubleshooting.

Thanks.

- Peter
 
User avatar
SiB
Forum Guru
Forum Guru
Posts: 1888
Joined: Sun Jan 06, 2013 11:19 pm
Location: Poland

Re: Lost configuring LTE on Ting

Fri Sep 25, 2020 3:26 am

Maybe run Tools>SMS and enable receiving sms, open Inbox and check if your ISP not block your internet :).
Config is like OK.
Maybe you must disable the /interface lte apn set use-network-apn=no
to force use your own APN.
Your lte apn setting have got the Add Default Route - it not exist in export but this is default behavior and should be enabled as default.
 
pkropf
just joined
Topic Author
Posts: 12
Joined: Wed Apr 15, 2020 9:54 pm
Location: Oakland, CA
Contact:

Re: Lost configuring LTE on Ting

Fri Sep 25, 2020 8:17 am

SMS messaging works.

Running the use-network-apn=no command fails as does the syntax as shown on https://help.mikrotik.com/docs/display/ ... PN+problem
[admin@MikroTik] > /interface lte apn set use-network-apn=no
syntax error (line 1 column 24)
[admin@MikroTik] > /interface lte apn add apn=xyzzy use-network-apn=no
expected end of command (line 1 column 34)
[admin@MikroTik] > 
 
User avatar
SiB
Forum Guru
Forum Guru
Posts: 1888
Joined: Sun Jan 06, 2013 11:19 pm
Location: Poland

Re: Lost configuring LTE on Ting

Fri Sep 25, 2020 11:51 am

R11e-LTE-US have a v16.02.183961 firmware ??
Check activation in your ISP.

Enable LTE logs
/system logging add topics=lte
reboot mikrotik
wait 5m and generate logs to file
/log print file=mylog.txt
upload file here.
 
pkropf
just joined
Topic Author
Posts: 12
Joined: Wed Apr 15, 2020 9:54 pm
Location: Oakland, CA
Contact:

Re: Lost configuring LTE on Ting

Sat Sep 26, 2020 12:27 am

Here's the log:
# jan/ 2/1970  0: 8:35 by RouterOS 7.1beta2
# software id = 36IV-1EHB
#
00:05:47 system,info router rebooted 
00:05:48 bridge,info hardware offloading activated on bridge "bridge" ports: ether1 
00:05:49 interface,info ether1 link up (speed 100M, full duplex) 
00:06:03 lte,async lte1: sent AT E0 V1 
00:06:03 lte,async lte1: rcvd OK 
00:06:03 lte,async lte1: sent AT+CFUN=1,1 
00:06:03 lte,async lte1: rcvd OK 
00:06:04 lte,async lte1: modem hung up 
00:06:43 system,info,account user admin logged in from 18:DB:F2:2F:7B:CA via winbox 
00:06:45 system,info,account user admin logged in via local 
00:06:49 lte,async lte1: sent AT E0 V1 
00:06:49 lte,async lte1: rcvd OK 
00:06:49 lte,async lte1: sent AT+GMI 
00:06:49 lte,async lte1: rcvd MikroTik 
00:06:49 lte,async lte1: sent AT+GMM 
00:06:49 lte,async lte1: rcvd R11e-LTE-US 
00:06:49 lte,async lte1: sent AT+GMR 
00:06:49 lte,async lte1: rcvd MPSS: R11eL_v16.02.183961 APSS: R11eL_v05.03.183961 CUSTAPP:  
00:06:49 lte,async lte1: sent AT+CGSN 
00:06:49 lte,async lte1: rcvd 355509090236572 
00:06:49 lte,async lte1: sent AT+CFUN? 
00:06:49 lte,async lte1: rcvd +CFUN: 1 
00:06:49 lte,async lte1: sent AT+CFUN=4 
00:06:50 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CFUN? 
00:06:53 lte,async lte1: rcvd +CFUN: 4 
00:06:53 lte,async lte1: sent AT+CMEE=2 
00:06:53 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CREG=2 
00:06:53 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CGREG=2 
00:06:53 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CEREG=2 
00:06:53 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CGEREP=2,0 
00:06:53 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CMGF=0 
00:06:53 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CNMI=1,1,0,1,0 
00:06:53 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CFUN=1 
00:06:53 lte,async lte1: rcvd OK 
00:06:53 lte,async lte1: sent AT+CPIN? 
00:06:53 lte,async lte1: rcvd +CPIN: READY 
00:06:53 lte,async,raw lte1: +CREG: 2 
00:06:53 lte,async,raw lte1: +CGREG: 2 
00:06:53 lte,async,raw lte1: +CEREG: 2 
00:06:54 lte,async,raw lte1: +CREG: 1,"FFFE","1465105", 7 
00:06:54 lte,async,raw lte1: +CGREG: 1,"FFFE","1465105",7 
00:06:54 lte,async,raw lte1: +CEREG: 1,"417B","BD","1465105",7 
00:06:57 lte,async lte1: sent AT+CPMS="SM","SM","SM" 
00:06:57 lte,async lte1: rcvd +CPMS: 2,30,2,30,2,30 
00:06:57 lte,async lte1: sent AT+CFUN? 
00:06:57 lte,async lte1: rcvd +CFUN: 1 
00:06:57 lte,async lte1: sent AT+ICCID 
00:06:57 lte,async lte1: rcvd ICCID: 8901260962199792802 
00:06:57 lte,async lte1: sent AT+CNUM 
00:06:57 lte,async lte1: rcvd  
00:06:57 lte,async lte1: sent AT+CIMI 
00:06:57 lte,async lte1: rcvd 310260969979280 
00:06:57 lte,async lte1: sent AT+CPIN? 
00:06:57 lte,async lte1: rcvd +CPIN: READY 
00:06:57 lte,async lte1: sent AT+COPS=2 
00:06:57 lte,async,raw lte1: +CREG: 0 
00:06:57 lte,async,raw lte1: +CGREG: 0 
00:06:57 lte,async,raw lte1: +CEREG: 0 
00:06:57 lte,async lte1: rcvd OK 
00:06:57 lte,async,event lte1: +CGEV: NW DETACH 
00:06:59 lte,async lte1: sent AT+COPS=0,0,, 
00:06:59 lte,async lte1: rcvd OK 
00:06:59 lte,async lte1: sent AT+CGDCONT=1,"IPV4V6","wholesale" 
00:06:59 lte,async lte1: rcvd OK 
00:06:59 lte,async lte1: sent AT$QCPDPP=1,0 
00:06:59 lte,async lte1: rcvd OK 
00:06:59 lte,async,raw lte1: +CREG: 2 
00:06:59 lte,async,raw lte1: +CGREG: 2 
00:06:59 lte,async,raw lte1: +CEREG: 2 
00:07:00 lte,async lte1: sent AT+CEREG=2 
00:07:00 lte,async lte1: rcvd OK 
00:07:00 lte,debug lte1: config ok 
00:07:00 lte,async,raw lte1: sent AT+CFUN? 
00:07:00 lte,async,raw lte1: rcvd +CFUN: 1 
00:07:00 lte,async,raw lte1: sent AT+CSQ 
00:07:00 lte,async,raw lte1: rcvd +CSQ: 23,99 
00:07:00 lte,async,raw lte1: +CREG: 1,"FFFE","1465105", 7 
00:07:00 lte,debug lte1: network access technology: LTE 
00:07:00 lte,info lte1: registered home 
00:07:00 lte,async,raw lte1: +CGREG: 1,"FFFE","1465105",7 
00:07:00 lte,async,raw lte1: +CEREG: 1,"417B","BD","1465105",7 
00:07:03 lte,async,raw lte1: sent AT+CFUN? 
00:07:03 lte,async,raw lte1: rcvd +CFUN: 1 
00:07:03 lte,async,raw lte1: sent AT+COPS? 
00:07:03 lte,async,raw lte1: rcvd +COPS: 0,0,"Ting",7 
00:07:03 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:03 lte,async,raw lte1: rcvd $QCRSRP: 139,5035,"-091.50",082,5035,"-100.60" 
00:07:03 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:03 lte,async,raw lte1: rcvd $QCRSRQ: 139,5035,"-10.40",082,5035,"-18.10" 
00:07:05 lte,async lte1: sent at$ecmcall=1 
00:07:05 lte,async,event lte1: $ECMCALL: 1 
00:07:05 lte,async lte1: rcvd OK 
00:07:05 lte,async lte1: sent at$ecmcall? 
00:07:05 lte,async lte1: rcvd $ECMCALL: 1 
00:07:05 lte,async lte1: sent AT+CGCONTRDP=1 
00:07:05 lte,async lte1: rcvd +CGCONTRDP: 1,5,wholesale,21.251.253.91,38.7.251.144.39.211.39.156.0.0.0.29.222.7.57.1, 254.128.0.0.0.0.0.0.0.0.0.29.222.7.57.64,10.177.0.34 253.0.151.106.0.0.0.0.0.0.0.0.0.0.0.9,10.177.0.210 253.0.151.106.0.0.0.0.0.0.0.0.0.0.0.16 
00:07:05 interface,info lte1 link up 
00:07:05 interface,info lte1 link down 
00:07:05 interface,info lte1 link up 
00:07:05 interface,info lte1 link down 
00:07:06 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:06 lte,async,raw lte1: rcvd $QCRSRP: 139,5035,"-091.30",082,5035,"-101.10" 
00:07:06 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:06 lte,async,raw lte1: rcvd $QCRSRQ: 139,5035,"-10.00",082,5035,"-17.60" 
00:07:06 interface,info lte1 link up 
00:07:09 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:09 lte,async,raw lte1: rcvd $QCRSRP: 139,5035,"-091.50",082,5035,"-101.50" 
00:07:09 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:09 lte,async,raw lte1: rcvd $QCRSRQ: 139,5035,"-10.90",082,5035,"-18.70" 
00:07:12 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:12 lte,async,raw lte1: rcvd $QCRSRP: 139,5035,"-091.20",082,5035,"-100.00" 
00:07:12 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:12 lte,async,raw lte1: rcvd $QCRSRQ: 139,5035,"-10.90",082,5035,"-17.30" 
00:07:15 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:15 lte,async,raw lte1: rcvd $QCRSRP: 139,5035,"-091.50",082,5035,"-101.40" 
00:07:15 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:15 lte,async,raw lte1: rcvd $QCRSRQ: 139,5035,"-10.80",082,5035,"-19.30" 
00:07:18 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:18 lte,async,raw lte1: rcvd $QCRSRP: 139,5035,"-090.70" 
00:07:18 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:18 lte,async,raw lte1: rcvd $QCRSRQ: 139,5035,"-10.60" 
00:07:21 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:21 lte,async,raw lte1: rcvd $QCRSRP: 139,5035,"-091.60" 
00:07:21 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:21 lte,async,raw lte1: rcvd $QCRSRQ: 139,5035,"-11.10" 
00:07:24 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:24 lte,async,raw lte1: rcvd $QCRSRP: 139,5035,"-092.30",082,5035,"-097.70",139,2300,"-105.90",137,1025,"-104.20",139,1025,"-103.90" 
00:07:24 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:24 lte,async,raw lte1: rcvd $QCRSRQ: 139,5035,"-12.30",082,5035,"-17.50",139,2300,"-14.80",137,1025,"-15.80",139,1025,"-15.00" 
00:07:25 lte,async,raw lte1: +CREG: 1,"FFFE","1465108", 7 
00:07:25 lte,async,raw lte1: +CGREG: 1,"FFFE","1465108",7 
00:07:25 lte,async,raw lte1: +CEREG: 1,"417B","BD","1465108",7 
00:07:27 lte,async,raw lte1: sent AT+CFUN? 
00:07:27 lte,async,raw lte1: rcvd +CFUN: 1 
00:07:27 lte,async,raw lte1: sent AT+COPS? 
00:07:27 lte,async,raw lte1: rcvd +COPS: 0,0,"Ting",7 
00:07:27 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:27 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-105.00",137,1025,"-108.00",139,5035,"-092.00",082,5035,"-096.60",139,2300,"-105.90" 
00:07:27 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:27 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.10",137,1025,"-17.50",139,5035,"-12.90",082,5035,"-16.70",139,2300,"-15.90" 
00:07:30 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:30 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-105.00",137,1025,"-107.20",139,5035,"-092.00",082,5035,"-096.60",139,2300,"-105.90" 
00:07:30 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:30 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.10",137,1025,"-18.00",139,5035,"-12.90",082,5035,"-16.70",139,2300,"-15.90" 
00:07:33 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:33 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-105.20",137,1025,"-106.80",139,5035,"-092.00",082,5035,"-096.60",139,2300,"-105.90" 
00:07:33 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:33 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-15.70",137,1025,"-17.00",139,5035,"-12.90",082,5035,"-16.70",139,2300,"-15.90" 
00:07:36 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:36 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-105.10",137,1025,"-108.50",139,5035,"-092.00",082,5035,"-096.60",139,2300,"-105.90" 
00:07:36 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:36 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-16.00",137,1025,"-16.50",139,5035,"-12.90",082,5035,"-16.70",139,2300,"-15.90" 
00:07:39 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:39 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-105.00",139,5035,"-092.00",082,5035,"-096.60",139,2300,"-105.90" 
00:07:39 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:39 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.80",139,5035,"-12.90",082,5035,"-16.70",139,2300,"-15.90" 
00:07:42 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:42 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.20",139,5035,"-092.00",082,5035,"-096.60",139,2300,"-105.90" 
00:07:42 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:42 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-15.30",139,5035,"-12.90",082,5035,"-16.70",139,2300,"-15.90" 
00:07:45 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:45 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-103.40",139,5035,"-092.00",082,5035,"-096.60",139,2300,"-105.90" 
00:07:45 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:45 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-16.00",139,5035,"-12.90",082,5035,"-16.70",139,2300,"-15.90" 
00:07:48 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:48 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.30",137,1025,"-114.00" 
00:07:48 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:48 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.00",137,1025,"-20.00" 
00:07:51 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:51 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.50",137,1025,"-115.10" 
00:07:51 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:51 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-15.70",137,1025,"-20.00" 
00:07:54 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:54 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.60",137,1025,"-113.60" 
00:07:54 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:54 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-15.70",137,1025,"-20.00" 
00:07:57 lte,async,raw lte1: sent QAT$QCRSRP? 
00:07:57 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.50",137,1025,"-115.50",223,1025,"-112.50" 
00:07:57 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:07:57 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.30",137,1025,"-20.00",223,1025,"-20.00" 
00:08:00 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:00 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-105.10",137,1025,"-116.10",223,1025,"-111.30" 
00:08:00 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:00 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-15.70",137,1025,"-20.00",223,1025,"-20.00" 
00:08:03 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:03 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.70" 
00:08:03 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:03 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.10" 
00:08:06 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:06 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.70" 
00:08:06 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:06 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.10" 
00:08:09 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:09 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-102.90" 
00:08:09 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:09 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-16.80" 
00:08:12 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:12 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.50" 
00:08:12 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:12 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-16.40" 
00:08:15 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:15 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-103.80" 
00:08:15 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:15 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.50" 
00:08:18 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:18 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-103.30" 
00:08:18 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:18 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-17.30" 
00:08:21 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:21 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-103.00" 
00:08:21 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:21 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-14.60" 
00:08:23 lte,async lte1: sent AT+CGSMS=2 
00:08:23 lte,async lte1: rcvd OK 
00:08:23 lte,async lte1: sent AT+CMGS=15 
00:08:23 lte,async lte1: sent 0021000A810448284972001103EEF01A\0x1a 
00:08:23 lte,async lte1: rcvd >  
00:08:24 lte,async,event lte1: +CMGS: 4 
00:08:24 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:24 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-104.20",223,1025,"-115.10",138,1025,"-114.20" 
00:08:24 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:24 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-16.10",223,1025,"-20.00",138,1025,"-20.00" 
00:08:25 lte,async,event lte1: +CDS: 24\r 
00:08:25 lte,async,event 07912160130350F606040A8104482849720290524152118A0290524152218A00 
00:08:25 gsm,info sms delivery report for NNNNNNNNNN: ok 
00:08:27 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:27 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-103.30",223,1025,"-117.90",082,1025,"-114.60",137,1025,"-118.60" 
00:08:27 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:27 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-15.20",223,1025,"-20.00",082,1025,"-20.00",137,1025,"-20.00" 
00:08:30 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:30 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-103.50",137,1025,"-114.40" 
00:08:30 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:30 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-15.40",137,1025,"-20.00" 
00:08:33 lte,async,raw lte1: sent QAT$QCRSRP? 
00:08:33 lte,async,raw lte1: rcvd $QCRSRP: 139,1025,"-103.50",137,1025,"-117.00" 
00:08:33 lte,async,raw lte1: sent QAT$QCRSRQ? 
00:08:33 lte,async,raw lte1: rcvd $QCRSRQ: 139,1025,"-16.10",137,1025,"-20.00" 
 
pkropf
just joined
Topic Author
Posts: 12
Joined: Wed Apr 15, 2020 9:54 pm
Location: Oakland, CA
Contact:

Re: Lost configuring LTE on Ting

Sun Sep 27, 2020 1:36 am

Forgot to include the LTE firmware:
[admin@MikroTik] > /interface lte firmware-upgrade lte1 
  installed: R11eL_v16.02.183961
     latest: R11eL_v16.02.183961
[admin@MikroTik] > 
 
User avatar
SiB
Forum Guru
Forum Guru
Posts: 1888
Joined: Sun Jan 06, 2013 11:19 pm
Location: Poland

Re: Lost configuring LTE on Ting

Sun Sep 27, 2020 6:33 pm

00:07:05 lte,async lte1: sent AT+CGCONTRDP=1
00:07:05 lte,async lte1: rcvd +CGCONTRDP: 1,5,wholesale,21.251.253.91,38.7.251.144.39.211.39.156.0.0.0.29.222.7.57.1, 254.128.0.0.0.0.0.0.0.0.0.29.222.7.57.64,10.177.0.34 253.0.151.106.0.0.0.0.0.0.0.0.0.0.0.9,10.177.0.210 253.0.151.106.0.0.0.0.0.0.0.0.0.0.0.16
00:07:05 interface,info lte1 link up
00:07:05 interface,info lte1 link down
00:07:05 interface,info lte1 link up
00:07:05 interface,info lte1 link down
After connection your was DOWN and your internet disconnected.
I think you should create a supout.fif file and send it to support@mikrotik.com bcs you can connect and I don't know why you is rapid disconnect.
 
pkropf
just joined
Topic Author
Posts: 12
Joined: Wed Apr 15, 2020 9:54 pm
Location: Oakland, CA
Contact:

Re: Lost configuring LTE on Ting

Sun Sep 27, 2020 8:14 pm

Thanks for you help. I've sent a support.rif file to support@mikrotik.com.
 
pkropf
just joined
Topic Author
Posts: 12
Joined: Wed Apr 15, 2020 9:54 pm
Location: Oakland, CA
Contact:

Re: Lost configuring LTE on Ting

Tue Sep 21, 2021 2:27 am

Was this ever resolved?
 
User avatar
SiB
Forum Guru
Forum Guru
Posts: 1888
Joined: Sun Jan 06, 2013 11:19 pm
Location: Poland

Re: Lost configuring LTE on Ting

Thu Sep 23, 2021 8:19 pm

You are a OP of this thread. You should know if this is solved or not.
You write to support@mikrotik.com, what you receive answer ?

You should show what DNS you receive from ISP, try resolve by ISP DNS.
Check if SMS give you some hint.
Maybe this ISP block your hotspot/mifi (after router) configuration?
Maybe your ISP block you because in your APN / Plan you should use a phone and not LTE Router?

Many answers are not check yet in this case.
 
pkropf
just joined
Topic Author
Posts: 12
Joined: Wed Apr 15, 2020 9:54 pm
Location: Oakland, CA
Contact:

Re: Lost configuring LTE on Ting

Thu Sep 23, 2021 8:38 pm

I was hoping that someone else may have gotten something similar working with Ting. My phrasing was completely wrong. Apologies for any confusion.
 
User avatar
SiB
Forum Guru
Forum Guru
Posts: 1888
Joined: Sun Jan 06, 2013 11:19 pm
Location: Poland

Re: Lost configuring LTE on Ting

Fri Sep 24, 2021 12:37 am

Your problems can be by simple wrong APN.
https://help.ting.com/hc/en-us/articles ... etup-guide
show us that options:
Mobile Data settings for an X3 SIM card, APN wireless.dish.com
Tethering Settings for an X3 SIM card, APN tethering.dish.com
APN settings for an X1 SIM card, APN wholesale

Seams X1 SIM is for Phone and X3 for device like MikroTik...

Who is online

Users browsing this forum: miks and 41 guests