-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm300-c090-v2.13-help.html
5776 lines (5776 loc) · 174 KB
/
m300-c090-v2.13-help.html
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>User Manual</title>
<!-- Bootstrap CSS CDN -->
<link rel="stylesheet" href="manual/css/bootstrap.min.css">
<!-- Our Custom CSS -->
<link rel="stylesheet" href="manual/style.css">
<!-- Scrollbar Custom CSS -->
<link rel="stylesheet" href="manual/css/jquery.mCustomScrollbar.min.css">
<!-- Font Awesome JS -->
<link rel="stylesheet" href="libs/fontawesome-free-5.12.1-web/css/all.css">
<!--
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/solid.css" integrity="sha384-rdyFrfAIC05c5ph7BKz3l5NG5yEottvO/DQ0dCrwD8gzeQDjYBHNr1ucUpQuljos" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/fontawesome.css" integrity="sha384-u5J7JghGz0qUrmEsWzBQkfvc8nK3fUT7DCaQzNQ+q4oEXhGSx+P2OqjWsfIRB8QT" crossorigin="anonymous">
-->
</head>
<body>
<div class="wrapper">
<!-- Sidebar -->
<nav id="sidebar">
<div class="sidebar-header">
<h3>
User Manual
</h3>
</div>
<ul class="list-unstyled components">
<li>
<a href="#">
Status
</a>
</li>
<li>
<a href="#systemSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-sitemap"></i>
System
</a>
<ul class="collapse list-unstyled" id="systemSubmenu">
<li><a href="#system_time_and_date">Time and Date</a></li>
<li><a href="#system_com_ports">COM Ports</a></li>
<li><a href="#system_logging">Logging</a></li>
<li><a href="#system_alarm">Alarm</a></li>
<li><a href="#system_ethernet">Ethernet</a></li>
<li><a href="#system_modbus">Modbus</a></li>
<li><a href="#system_client_list">Client List</a></li>
<li><a href="#system_led">LED</a></li>
</ul>
</li>
<li>
<a href="#wanSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-exchange-alt"></i>
WAN
</a>
<ul class="collapse list-unstyled" id="wanSubmenu">
<li><a href="#wan_priority">Priority</a></li>
<li><a href="#wan_ethernet">Ethernet</a></li>
<li><a href="#wan_ipv6_dns">IPv6 DNS</a></li>
<li><a href="#wan_health_check">Health Check</a></li>
</ul>
</li>
<li>
<a href="#lteSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-signal"></i>
LTE
</a>
<ul class="collapse list-unstyled" id="lteSubmenu">
<li><a href="#lte_lte_config">LTE Config</a></li>
<li><a href="#lte_gps">GPS</a></li>
<li><a href="#lte_gps_track">GPS Track</a></li>
<li><a href="#lte_dual_sim">Dual SIM</a></li>
<li><a href="#lte_usage_display">Usage Display</a></li>
<li><a href="#lte_sms">SMS</a></li>
<li><a href="#lte_serving_cell">Serving Cell</a></li>
<li><a href="#lte_dns">DNS</a></li>
<li><a href="#lte_search_operators">Search Operators</a></li>
</ul>
</li>
<li>
<a href="#wifiSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-wifi"></i>
WIFI
</a>
<ul class="collapse list-unstyled" id="wifiSubmenu">
<li><a href="#wifi_config">WIFI Config</a></li>
<li><a href="#wifi_infomation">WIFI Information</a></li>
</ul>
</li>
<li>
<a href="#lanSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-exchange-alt"></i>
LAN
</a>
<ul class="collapse list-unstyled" id="lanSubmenu">
<li><a href="#lan_ipv4">IPv4</a></li>
<li><a href="#lan_ipv6">IPv6</a></li>
<li><a href="#lan_vlan">VLAN</a></li>
<li><a href="#lan_subnet">Subnet</a></li>
</ul>
</li>
<li>
<a href="#ipRoutingSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-random"></i>
IP Routing
</a>
<ul class="collapse list-unstyled" id="ipRoutingSubmenu">
<li><a href="#ip_routing_static_route">Static Route</a></li>
<li><a href="#policyRT">Policy Route</a></li>
<li><a href="#ip_routing_rip">RIP</a></li>
<li><a href="#ip_routing_ospf">OSPF</a></li>
<li><a href="#ip_routing_bgp">BGP</a></li>
</ul>
</li>
<li>
<a href="#vpnSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-train"></i>
VPN
</a>
<ul class="collapse list-unstyled" id="vpnSubmenu">
<li><a href="#vpn_open_vpn">Open VPN</a></li>
<li><a href="#vpn_ipsec">IPSec</a></li>
<li><a href="#vpn_gre">GRE</a></li>
<li><a href="#vpn_pptp_srever">PPTP Server</a></li>
<li><a href="#vpn_l2tp">L2TP</a></li>
</ul>
</li>
<li>
<a href="#firewallSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-shield-alt"></i>
Firewall
</a>
<ul class="collapse list-unstyled" id="firewallSubmenu">
<li><a href="#firewall_basic_rules">Basic Rules</a></li>
<li><a href="#firewall_port_forwarding">Port Forwarding</a></li>
<li><a href="#firewall_dmz">DMZ</a></li>
<li><a href="#firewall_management_ip">Management IP Address</a></li>
<li><a href="#firewall_service_port">Service PORT</a></li>
<li><a href="#firewall_ip_filter">IP Filter</a></li>
<li><a href="#firewall_mac_filter">MAC Filter</a></li>
<li><a href="#firewall_url_filter">URL Filter</a></li>
<li><a href="#firewall_nat">NAT</a></li>
<li><a href="#firewall_ips">IPS</a></li>
</ul>
</li>
<li>
<a href="#serviceSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-plus-circle"></i>
Service
</a>
<ul class="collapse list-unstyled" id="serviceSubmenu">
<li><a href="#service_snmp">SNMP</a></li>
<li><a href="#service_tr069">TR069</a></li>
<li><a href="#service_dynamic_dns">Dynamic DNS</a></li>
<li><a href="#service_vrrp">VRRP</a></li>
<li><a href="#service_mqtt">MQTT</a></li>
<li><a href="#service_upnp">UPnP</a></li>
<li><a href="#service_smtp">SMTP</a></li>
<li><a href="#service_ip_alias">IP Alias</a></li>
<li><a href="#service_qos">QoS</a></li>
<li><a href="#service_ipv6">IPv6</a></li>
</ul>
</li>
<li>
<a href="#managementSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-cog"></i>
Management
</a>
<ul class="collapse list-unstyled" id="managementSubmenu">
<li><a href="#management_identification">Identification</a></li>
<li><a href="#management_administration">Administration</a></li>
<li><a href="#management_contacts">Contacts / On Duty</a></li>
<li><a href="#management_ssh">SSH</a></li>
<li><a href="#management_fail2ban">Fail2Ban</a></li>
<li><a href="#management_web">Web</a></li>
<li><a href="#management_firmware">Firmware</a></li>
<li>
<a href="#management_modemfw">Modem Firmware</a>
</li>
<li><a href="#management_configuration">Configuration</a></li>
<li><a href="#management_load_factory">Load Factory</a></li>
<li><a href="#management_restart">Restart</a></li>
<li><a href="#management_schedule_reboot">Schedule Reboot</a></li>
<li><a href="#management_fota">FOTA</a></li>
<li><a href="#management_osmart">O'smart</a></li>
</ul>
</li>
<li>
<a href="#diagnosisSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
<i class="fas fa-wrench"></i>
Diagnosis
</a>
<ul class="collapse list-unstyled" id="diagnosisSubmenu">
<li><a href="#diagnosis_ping">Ping</a></li>
<li><a href="#diagnosis_traceroute">Traceroute</a></li>
<li><a href="#diagnosis_tty2tcp">TTY2TCP</a></li>
</ul>
</li>
</ul>
<ul class="list-unstyled components">
<p>
Color:
<span id="color_01" style="color: #EAEAEF" class="color-picker color-picker-active"><i class="fas fa-circle"></i></span>
<span id="color_02" style="color: #E9EBFE" class="color-picker "><i class="fas fa-circle"></i></span>
<span id="color_03" style="color: #DCE2F1" class="color-picker "><i class="fas fa-circle"></i></span>
<span id="color_04" style="color: #E3EDCD" class="color-picker "><i class="fas fa-circle"></i></span>
<span id="color_05" style="color: #FDE6E0" class="color-picker "><i class="fas fa-circle"></i></span>
<span id="color_06" style="color: #FFF2E2" class="color-picker "><i class="fas fa-circle"></i></span>
<span id="color_07" style="color: #FAF9DE" class="color-picker "><i class="fas fa-circle"></i></span>
</p>
</ul>
</nav>
<!-- Page Content -->
<div id="content">
<!-- Status -->
<h2 id="status">Status</h2>
<p>When you enter the web browser in the beginning and have not log in, the first item of main menu shows your status that you are a guest. This status only can view status page without any permission to log in. The interface of main window displays the status of router to show about information, including Cellular Attribute, Dual SIM information, the current connectivity of WAN Ethernet and LAN Ethernet. If the router has GPS function, the GPS interface is shown.</p>
<p>After logging in the system, you can set up the status of user and divide into three levels for setting user's authority, including Super User, Administrator, and Read Only. For Guest, this status is without any authority. All users log in or log out and they need to have Web UI log records.</p>
<h4>Status > DO</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Alarm OFF</th>
<td>Alarm configured to be disabled.</td>
</tr>
<tr>
<th scope="row">Alarm ON</th>
<td>Alarm configured to be enabled.</td>
</tr>
<tr>
<th scope="row">Alarm PULSE</th>
<td>Alarm configured to be enabled and DO in pulse mode.</td>
</tr>
<tr>
<th scope="row"> Force ON</th>
<td>DO is force ON and in always mode by SMS/HTTPS.</td>
</tr>
<tr>
<th scope="row"> Force OFF</th>
<td>DO is force OFF by SMS/HTTPS.</td>
</tr>
<tr>
<th scope="row"> Force PULSE</th>
<td>DO is force ON and in pulse mode by SMS/HTTPS.</td>
</tr>
</tbody>
</table>
<h4>Status > CPU</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Temperature</th>
<td>CPU Temperature.</td>
</tr>
</tbody>
</table>
<h4>Title Bar</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">RSSI</th>
<td>Received Signal Strength Indicator.</td>
</tr>
<tr>
<th scope="row">Uptime</th>
<td>The time starting turn on the router until current using.</td>
</tr>
<tr>
<th scope="row">WAN Priority</th>
<td>Which WAN take first priority.</td>
</tr>
<tr>
<th scope="row">SIM Slot</th>
<td>The current using of SIM Slot that inserts into SIM1 or SIM2.</td>
</tr>
<tr>
<th scope="row">Location</th>
<td>(Latitude,Longitude).</td>
</tr>
<tr>
<th scope="row">Google Maps</th>
<td>Display Google Map according to location.</td>
</tr>
<tr>
<th scope="row">Language</th>
<td>Choose your language from the drop-down list on the upper right corner of the title bar.</td>
</tr>
<tr>
<th scope="row">Login/Logout</th>
<td>Click to log in or log out of the web configurator.</td>
</tr>
<tr>
<th scope="row">?</th>
<td>On-line manual.</td>
</tr>
</tbody>
</table>
<h4>Status > WAN LTE</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">SIM Status</th>
<td>
<ul>
<ul>
<li>Ready: No PIN code protection or unlock already</li>
<li>Unlock: Unlock pin code protection</li>
<li>Locked: Locked by pin code</li>
<li>Error: SIM operation error</li>
<li>Blocked: PUK needed to unlock</li>
<li>Not Inserted: No sim card</li>
<li>Hardware Error: Unable to enable function</li>
<li>Ignore: Ignore Specified SIM in dual sim device</li>
</ul>
</ul>
</td>
</tr>
<tr>
<th scope="row">Operator</th>
<td>Operator name.</td>
</tr>
<tr>
<th scope="row">Modem Access</th>
<td>The router to access protocol type.</td>
</tr>
<tr>
<th scope="row">IMSI</th>
<td>The IMSI number of the SIM card.</td>
</tr>
<tr>
<th scope="row">ICCID</th>
<td>The ICCID number of the SIM card.</td>
</tr>
<tr>
<th scope="row">Phone Number</th>
<td>The phone number of the SIM card.</td>
</tr>
<tr>
<th scope="row">Band</th>
<td>The current connected Band.</td>
</tr>
<tr>
<th scope="row">EARFCN</th>
<td>Absolute radio-frequency channel number.</td>
</tr>
<tr>
<th scope="row">PLMN</th>
<td>Public LAN Mobile Network ID.</td>
</tr>
<tr>
<tr>
<th scope="row">IPv4 Address</th>
<td>LTE WAN obtain IPv4 Address.</td>
</tr>
<tr>
<th scope="row">IPv4 Mask</th>
<td>LTE WAN obtain IPv4 Mask.</td>
</tr>
<tr>
<th scope="row">Default Gateway</th>
<td>LTE WAN IPv4 Default Gateway.</td>
</tr>
<tr>
<th scope="row">IPv4 Conn Time</th>
<td>LTE WAN IPv4 Connected Time.</td>
</tr>
<tr>
<th scope="row">Roaming</th>
<td>Roaming status.</td>
</tr>
<tr>
<th scope="row">Uplink Speed Kbps</th>
<td>Upload speed.</td>
</tr>
<tr>
<th scope="row">Downlink Speed Kbps</th>
<td>Download speed.</td>
</tr>
<tr>
<th scope="row">Tx/Rx KBytes</th>
<td>Sum of transmission and reception .</td>
</tr>
<tr>
<th scope="row">Tx/Rx Dropped Packets</th>
<td>Number of discarded packets.</td>
</tr>
</tbody>
</table>
<p></p>
<h4>Status > WAN Ethernet</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">IPv4 Address</th>
<td>Ethernet WAN obtain IPv4 Address.</td>
</tr>
<tr>
<th scope="row">IPv4 Mask</th>
<td>Ethernet WAN obtain IPv4 Mask.</td>
</tr>
<tr>
<th scope="row">Default Gateway</th>
<td>Ethernet WAN IPv4 Default Gateway.</td>
</tr>
<tr>
<th scope="row">IPv4 Conn Time</th>
<td>Ethernet WAN IPv4 Connected Time.</td>
</tr>
<tr>
<th scope="row">Uplink Speed Kbps</th>
<td>Upload speed.</td>
</tr>
<tr>
<th scope="row">Downlink Speed Kbps</th>
<td>Download speed.</td>
</tr>
<tr>
<th scope="row">Tx/Rx KBytes</th>
<td>Sum of transmission and reception .</td>
</tr>
<tr>
<th scope="row">Tx/Rx Dropped Packets</th>
<td>Number of discarded packets.</td>
</tr>
</tbody>
</table>
<p></p>
<h4>Status > WAN DNS</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">IPv4 DNS Server #1</th>
<td>IPv4 DNS Server Address#1.</td>
</tr>
<tr>
<th scope="row">IPv4 DNS Server #2</th>
<td>IPv4 DNS Server Address#2.</td>
</tr>
<tr>
<th scope="row">IPv4 DNS Server #3</th>
<td>IPv4 DNS Server Address#3.</td>
</tr>
<tr>
<th scope="row">IPv6 DNS Server #1</th>
<td>IPv6 DNS Server Address#1.</td>
</tr>
<tr>
<th scope="row">IPv6 DNS Server #2</th>
<td>IPv6 DNS Server Address#2.</td>
</tr>
<tr>
<th scope="row">IPv6 DNS Server #3</th>
<td>IPv6 DNS Server Address#3.</td>
</tr>
</tbody>
</table>
<p></p>
<h4>Status > LAN Ethernet</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">IPv4 Address</th>
<td>LAN is assigned IPv4 Address.</td>
</tr>
<tr>
<th scope="row">IPv4 Mask</th>
<td>LAN is assigned IPv4 Mask.</td>
</tr>
<tr>
<th scope="row">IPv6 Address</th>
<td>LAN is assigned IPv6 Address.</td>
</tr>
<tr>
<th scope="row">IPv6 Conn Time</th>
<td>IPv6 Connected Time.</td>
</tr>
<tr>
<th scope="row">Uplink Speed Kbps</th>
<td>Upload speed.</td>
</tr>
<tr>
<th scope="row">Downlink Speed Kbps</th>
<td>Download speed.</td>
</tr>
<tr>
<th scope="row">Tx/Rx KBytes</th>
<td>Sum of transmission and reception .</td>
</tr>
<tr>
<th scope="row">Tx/Rx Dropped Packets</th>
<td>Number of discarded packets.</td>
</tr>
</tbody>
</table>
<p></p>
<h4>Status > WiFi</h4>
<ul>Display the Wi-Fi connected clients number.</ul>
<p></p>
<h4>Status > GPS</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Latitude</th>
<td>The latitude of location.</td>
</tr>
<tr>
<th scope="row">Longitude</th>
<td>The longitude of location.</td>
</tr>
<tr>
<th scope="row">Horizontal</th>
<td>The horizontal of location.</td>
</tr>
<tr>
<th scope="row">Altitude</th>
<td>The altitude of location.</td>
</tr>
<tr>
<th scope="row">Date(UTC)</th>
<td>The date of location query.</td>
</tr>
<tr>
<th scope="row">Satellite</th>
<td>The satellite number of location query.</td>
</tr>
</tbody>
</table>
<p></p>
<h4>Status > System</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Modem Firmware Version</th>
<td>show the modem firmware version of the device</td>
</tr>
<tr>
<th scope="row">LTE IMEI</th>
<td>show the IMEI - International Mobile Equipment Identity</td>
</tr>
<tr>
<th scope="row">Software Version</th>
<td>show the software version currently running on the device</td>
</tr>
<tr>
<th scope="row">Serial Number</th>
<td>show the serial number of the device</td>
</tr>
<tr>
<th scope="row">LAN Ethernet MAC Address</th>
<td>show the MAC address of LAN interface</td>
</tr>
<tr>
<th scope="row">WAN Ethernet MAC Address</th>
<td>show the MAC address of WAN interface</td>
</tr>
<tr>
<th scope="row">Ethernet WAN Port as</th>
<td>show the status of current 'WAN/LANx Port Function'</td>
</tr>
</tbody>
</table>
<p></p>
<h4>Status > Connected VPN Connections</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Open VPN</th>
<td>Open VPN connected number</td>
</tr>
<tr>
<th scope="row">IPSec</th>
<td>IPSec connected number</td>
</tr>
<tr>
<th scope="row">GRE</th>
<td>GRE connected number</td>
</tr>
<tr>
<th scope="row">PPTP Server</th>
<td>PPTP server connected number</td>
</tr>
<tr>
<th scope="row">L2TP</th>
<td>L2TP connected number</td>
</tr>
</tbody>
</table>
<div class="line"></div>
<!-- System - Time and Date -->
<h2 id="system_time_and_date">
<i class="fas fa-sitemap"></i>
System > Time and Date
</h2>
<p>This section allows you to set up the time and date of router and NTP server. There are two modes at Time and Date Setup, including Get from Time Server and Manual. The default mode is Get from Time Server.</p>
<p>If the router has GPS function, you can turn on "GPS Time" for sync time from GPS server.</p>
<p>For Time Zone Setup, the Daylight Savings Time allows the device to forward/backward the amount of time from Ahead of standard time setting automatically when the time is at the Daylight Savings duration that you have set up before.</p>
<h4>System > Time and Date > Time Zone Setup</h4>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Daylight Saving</th>
<td>Turn on/off the Daylight Savings feature. Select from Off or On. The default is Off.</td>
</tr>
<tr>
<th scope="row">Ahead of standard time</th>
<td>The forward/backward minutes when enter/leave Daylight Savings duration. Default is 60 mins.</td>
</tr>
<tr>
<th scope="row">Start Date/Start Time</th>
<td>
<ul>
<li>Time to enter Daylight Savings duration.</li>
<li>The Month range is 1~12</li>
<ul>
<li>1- Jan</li>
<li>2 - Feb</li>
<li>3 - Mar</li>
<li>4 - Apr</li>
<li>5 - May</li>
<li>6 - Jun</li>
<li>7 - Jul</li>
<li>8 - Aug</li>
<li>9 - Sep</li>
<li>10 - Oct</li>
<li>11 - Nov</li>
<li>12 - Dec</li>
</ul>
<li>The Week range is 1~5</li>
<ul>
<li>1 - first week in month.</li>
<li>2 - second week in month</li>
<li>3 - third week in month</li>
<li>4 - fourth week in month</li>
<li>5 - fifth week in month</li>
</ul>
<li>The Day range is 0~6</li>
<ul>
<li>0 - Sunday(The start day of a week)</li>
<li>1- Monday</li>
<li>2 - Tuesday</li>
<li>3 - Wednesday</li>
<li>4 - Thursday</li>
<li>5 - Friday</li>
<li>6 - Saturday</li>
</ul>
<li>The Hour range is 0~23</li>
<li>The Min range is 0~59</li>
</ul>
</td>
</tr>
<tr>
<th scope="row">End Date/End Time</th>
<td>Time to leave Daylight Savings duration. Same with Start Date/Start Time.</td>
</tr>
</tbody>
</table>
<h4>System > Time and Date > Time Server</h4>
<p>The Time server feature allows user to set a time server for LAN side client to get the time through NTP/SNTP protocol.</p>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Server mode</th>
<td>Turn on/off the time server.</td>
</tr>
<tr>
<th scope="row">Server port</th>
<td>The UDP port listened by time server.</td>
</tr>
</tbody>
</table>
<div class="line"></div>
<!-- System - COM Ports -->
<h2 id="system_com_ports">
<i class="fas fa-sitemap"></i>
System > COM Ports
</h2>
<p>This section provides you to configure the COM port settings and remotely manage the device through the virtual COM setting. For the remote management, the managed device should be connected to the cellular router by serial interface either RS232 or RS485.</p>
<p>Note: The COM 1 and COM 2 are RS232 interface, and the COM 3 is RS485 interface.</p>
<table class="table table-bordered">
<tbody>
<tr>
<th colspan="1" rowspan="1">
<p><span>Item</span></p>
</th>
<th colspan="1" rowspan="1">
<p><span>Description</span></p>
</th>
</tr>
<tr>
<th class="c224 c471" colspan="2" rowspan="1">
<p><span>Edit Configuration</span></p>
</th>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Baud Rate</span></p>
</td>
<td colspan="1" rowspan="1">
<p><span>Select from the current Baud Rate. </span></p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Data</span></p>
</td>
<td colspan="1" rowspan="1">
<p><span>Select from 7 bit or 8 bit.</span></p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Parity</span></p>
</td>
<td colspan="1" rowspan="1">
<p><span>Select from the information of Parity.</span></p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Stop</span></p>
</td>
<td colspan="1" rowspan="1">
<p><span>Select from 1 bit or 2 bit.</span></p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Flow Control</span></p>
</td>
<td colspan="1" rowspan="1">
<p><span>Select from none, Xon/Xoff or hardware. </span></p>
</td>
</tr>
<tr>
<th class="c471 c224" colspan="2" rowspan="1">
<p><span>Virtual COM</span></p>
</th>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Mode</span></p>
</td>
<td colspan="1" rowspan="1">
<p><span>Select from Disable, Server or Client. </span></p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Protocol</span></p>
</td>
<td colspan="1" rowspan="1">
<p><span>Select from TCP or UDP.</span></p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Host Address</span></p>
</td>
<td colspan="1" rowspan="1">
<p><span>The host address is only available on client mode. Specify what the domain name or IP address (IPv4 or IPv6) to be connected.</span></p>
</td>
</tr>
<tr>
<td colspan="1" rowspan="1">
<p><span>Redirect Port</span></p>
</td>
<td colspan="1" rowspan="1">
<ul class="c12 lst-kix_list_22-0">
<li class="c54 c183"><span>Server Mode: This network package of cellular router is on this port. </span></li>
<li class="c54 c183"><span>Client Mode: The network package of remote device is on the remote host.</span></li>
</ul>
</td>
</tr>
</tbody>
</table>
<div class="line"></div>
<!-- System - Logging -->
<h2 id="system_logging">
<i class="fas fa-sitemap"></i>
System > Logging
</h2>
<p>This section allows cellular router to record the data and display the status of data.</p>
<h4>Logging > Logging</h4>
<p>Logging section provides you to control all logging records.</p>
<p>Users need to select Apply to confirm your settings.</p>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Mode</th>
<td>Turn on/off the logging configuration. Select from Disable or Enable. The default is Enable.</td>
</tr>
<tr>
<th scope="row">Remote Log</th>
<td>The logging messages send to remote log or not. Select from Disable or Enable. The default is Disable.</td>
</tr>
<tr>
<th scope="row">Log Server Address</th>
<td>When you choose Enable on Remote Log, you should input IP address to save and receive all logging data.<br />
Note: This server should have installed Log software.</td>
</tr>
</tbody>
</table>
<h4>Logging > Log</h4>
<p>This section displays all data status.</p>
<ol>
<li>You can choose Filter function to quickly search for your data.</li>
<li>When you click Clear, all of the data that displays on the interface will be totally cleared without any backup.</li>
<li>When you click Refresh, the system will update and display the latest data from your cellular router.</li>
<li>When you click Download Logs, the system will download the latest data from your cellular router.</li>
</ol>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Filter</th>
<td>Filter the required data quickly.</td>
</tr>
<tr>
<th scope="row">Date</th>
<td>Show the date of log for each logging data.</td>
</tr>
<tr>
<th scope="row">Group</th>
<td>Show the group of software functions.</td>
</tr>
<tr>
<th scope="row">Module</th>
<td>Show the module of group of software functions.</td>
</tr>
<tr>
<th scope="row">Message</th>
<td>Show the messages for each logging data.</td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
</tr>
</tbody>
</table>
<div class="line"></div>
<!-- System - Alarm -->
<h2 id="system_alarm">
<i class="fas fa-sitemap"></i>
System > Alarm
</h2>
<ul>
<li>If you select [SMS] in Alarm input/output, you need to add the trust phone number into [Contracts/ On Duty].</li>
<li>If you select [SNMP trap] in Alarm output, you need to set up SNMP trap configuration from Service SNMP.</li>
<li>If you select [E-Mail] in Alarm output, you need to set up SMTP configuration from Service SMTP.</li>
<li>If you select [TR069] in Alarm output, you need to set up TR069 configuration from Service TR069.</li>
</ul>
<table class="table table-bordered">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Mode</th>
<td>Turn on/off the Alarm configuration. Select from Disable or Enable. The default is Disable.</td>
</tr>
<tr>
<th scope="row">Alarm Input</th>
<td>
<ul>
<li>SMS: It means on duty team members on [Contacts / On Duty] can send SMS to the phone number of using SIM card to trigger alarm.</li>
<li>DI: IO to trigger alarm.</li>
<li>VPN disconnect: All tunnels get disconnected then trigger alarm.</li>
<li>WAN disconnect: WAN connections get disconnected then trigger alarm.</li>
<li>LAN disconnect: LAN connection get disconnected then trigger alarm.</li>
<li>Reboot: Reboot then trigger alarm.</li>
<li>CPU Thermal: CPU temperature is too high or too low than the specified value then trigger alarm.</li>
<li>LTE Reach Data Limit: LTE usage reach data upper bound then trigger alarm.</li>
<li>LTE Data Blocked: LTE data is blocked then trigger alarm.</li>
</ul>
</td>
</tr>
<tr>
<th scope="row">Alarm Output</th>
<td>Select from SMS, DO, SNMP trap, E-mail and TR069 as alarm output.</td>
</tr>
<tr>
<th scope="row">DI 1/2 Trigger</th>
<td>Select from High or Low. The default is High Trigger</td>
</tr>
<tr>
<th scope="row">DO behavior</th>
<td>
<ul>
<li>Always: Pull DO high</li>
<li>Pulse: High and Low continuously</li>
<li>Pulse Time Length: Pulse time length (unit: mini seconds)</li>
</ul>
</td>
</tr>
<tr>
<th scope="row">CPU Thermal</th>
<td>Specify CPU low and high temperature to trigger alarm.</td>
</tr>
<tr>
<th scope="row">SMS/E-mail</th>
<td>Write your messages and the messages limit 80 pure English characters or 20 characters for other languages to deliver.</td>
</tr>
</tbody>
</table>
<div class="line"></div>
<h2 id="system_alarm">
<i class="fas fa-sitemap"></i>
System > Alarm Current Status
</h2>
<ul>
<li>[Refresh]: To update the newest alarm status.</li>
<li>[Clean Recover]: To clean up recovered alarm from status table.</li>
<li>[Clean All]: To clean up all alarm from status table.</li>