-
Notifications
You must be signed in to change notification settings - Fork 4
/
changelog
1761 lines (1710 loc) · 114 KB
/
changelog
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
# 2022-09-07 00.07.02.7
* Improvements:
* Mobile: improved manual-auto connection mode (ID: 7474)
* Mobile: deleted unusable APN for Verizon operator
* Fix:
* Linux: fixed memory leak vulnerability (CVE-2022-1012) (ID: 7957)
* Zlib: fixed kernel vulnerability CVE-2022-37434 (ID: 7594)
* Mobile: fixed custom APN with Verizon operator (ID: 7316)
* Mobile: fixed VoLTE management for 5G modules (ID: 7560)
* Network: fixed interface option reset after VLAN ID change (ID: 7766)
* Wifi Scanner: fixed out of range crash when iterating collected data (ID: 7872)
* Mobutils: fixed AT command for SMS storage usage (ID: 7673)
* GPS: fixed constellation settings (ID: 7882)
* Port events: removed memory leak (ID: 7448)
* LED: fixed 4g led blinking on connection for devices with EC200A modems (ID: 7702)
* LED: fixed signal led skipping on TRB1 family (ID: 7725)
# 2022-08-24 00.07.02.6
* New:
* apn_db: Added 'home.vodafone.de' APN (ID: 7441)
* Improvements:
* mnf_info: save & get SIM PINs to /log instead of MNF partition (ID: 7384)
* mnf_info: save & get SIM PINs from /log partition (ID: 7384)
* GSM: added RG520N-EU modem support (ID: 7511)
* gps: added RG5XX RG52X modem support (ID: 7511)
* Fix:
* GSM: added SMSC type omitting when empty SMSC number parsed in SMS PDU mode (ID: 7363)
* Port events: removed memory leak (ID: 7448)
* Serial-symlink: fixed dmesg messages on other devices (ID: 7486)
* Operctl: fixed VoLTE management (ID: 7534)
* gsm: fixed TRB5 modem reboot (ID: 7560)
* GRE : fixed GRE not going up on TRB5 (ID: 7636)
* OpenVPN: fix tls-auth and tls-crypt option names (ID: 7508)
# 2022-08-11 00.07.02.5
* New:
* MODBUS TCP Master: added TRB500 support (ID: 6304)
* MODBUSd: added TRB500 support (ID: 6304)
* MQTT Publisher: added TRB500 support (ID: 6304)
* SNMP: added TRB500 support (ID: 6304)
* SMS Utilities: added TRB500 support (ID: 6304)
* Hotspot Landing Page: added CSP response headers (ID: 7097)
* WebUI: added 64 character length limit to custom APN username and password (ID: 7281)
* Improvements:
* GSM: improved mobile connection status handling (ID: 6528)
* GSM: added auto switch to modem sms storage when sim storage doesn't exist (ID: 7313)
* Firewall: added multiple source IP addresses support in port forwarding (ID: 6996)
* Ethernet: optimized CORE distribution for packet handling for RUTX (ID: 5299)
* Curl: updated version to 7.83.1, added patches for CVE-2022-32205, CVE-2022-32206, CVE-2022-32207, CVE-2022-32208 (ID: 7115)
* WebUI: updated firmware validation error messages (ID: 7168)
* Sysupgrade: added error codes for image checking failure (ID: 7168)
* Fix:
* GSM: fixed LAC/TAC parsing in 4G mode for Meiglink modems (ID: 5905)
* GSM: fixed band option setting on BG96 modems (ID: 7029)
* GSM: fixed a problem with empty authentification on Meiglink modems (ID: 7277)
* GSM: fixed authentification to properly support 64 character length credentials (ID: 7281)
* Mobile: fixed mac and leasetime option setting for bridge/passthrough modes (ID: 7203)
* Modems: fixed control port value for EC200A modems (ID: 7401)
* OpenVPN: fixed dev option setting logic (ID: 7242)
* OpenVPN: fixed problem where updating from legacy firmware causes IPv6 not to work (ID: 7274)
* Energy Efficient Ethernet: fixed EEE link advertisment for RUTX (ID: 5299)
* Libxml2: added patch for CVE-2022-29824 (ID: 6735)
* IOmand: fixed POST/GET output state being high after first request (ID: 7275)
* CGI Upload: fixed path traversal (ID: 7125)
* Data to Server: removed limit to proccess less than 10 instances (ID: 7215)
* Data to Server: fixed out of memory crashes when database is full or has large amount of data (ID: 7215)
* BusyBox: fixed CVE-2022-30065 (ID: 7216)
* Kernel: fixed high RS485 baudrates for RUT9XX (ID: 7376)
* Overview: fixed overview configuration interface visibility (ID: 7357)
* WebUI: fixed modal tabs navigation when editing wireless interface with non-english languages (ID: 7172)
# 2022-07-19 00.07.02.4
* New:
* GSM: added disable_rplmn option in sim section of simcard config (ID: 5292)
* GSM: added RG501Q-EU module support (ID: 6526)
* WebUI: added default password change warning message before firmware downgrade (ID: 7092)
* Improvements:
* GSM: extended time period for UE to attach to operator. (ID: 5292)
* GSM: reduced number of modem reboots when changing options (ID: 9292)
* GSM: fixed excessive log output when modem has no sim (ID: 6526)
* Mobile: added modem restart prevention on modem init (ID: 6640)
* System: added fw compatibility check for TCR100 (ID: 7054)
* Fix:
* Hotspot: fixed login in landing page (ID: 6937)
* OpenSSL: fixed vulnerability CVE-2022-2068 (ID: 6952)
* Kernel: fixed RS485 console return symbol skip for RUT956 (ID: 6982)
* STM32: fixed possible RUTX I2C bus lock-up issue when upgrading from 02.xx versions (ID: 6997)
* FOTA: fixed communication error for MediaTek routers (ID: 7072)
* CM: disabled autoconnect (ID: 6832)
* CM: fixed autorization for TRB1 devices on 2G/3G only service mode (ID: 6832)
# 2022-06-23 00.07.02.3
* Fix:
* GSM: added default VoLTE value (ID: 6970)
* Modem: correctly shut down both modems on reboot on RUTX12 routers (ID: 6686)
* Operctl: specified ip family on ping to DNS feature (ID: 6893)
* Operctl: fixed VoLTE management for TRB1 devices (ID: 6938)
* Unhandler: fixed SIM card checking on modem init for Meiglink (ID: 6943)
# 2022-06-17 00.07.02.2
* New:
* Operctl: added ping to dns ipv6 support (ID: 6524)
* UNHANDLER: added modem reset to defaults after device upgrade feature(ID: 6638)
* WebUI: added Port Mirroring page and configuration migration for rut9 (ID: 2441)
* Improvements:
* FSTools : updated package to 2022-05-03 version (ID: 6676)
* GSM: modem init now checks NVRAM sensitive commands before setting (ID: 6641)
* GSM: output was made consistent (ID: 6714)
* Uhttpd: added security headers to web requests (ID: 6868)
* Fix:
* Aboot : fixed possible firmware corruption on TRB14X devices when flashing through fastboot (ID: 6759)
* Bzip2: fixed libbz2 vulnerability CVE-2019-12900 (ID: 6709)
* GSM: fixed behavior of some gsmctl commands (ID: 6712)
* Hostapd: fixed CVE-2022-23303 vulnerability (ID: 6734)
* Linux: fixed linux kernel vulnerability CVE-2022-29581 (ID: 6580)
* Ncurses: fixed ncurses vulnerability CVE-2022-29458 (ID: 6723)
* OpenSSL: resolved c_rehash script command injection vulnerability CVE-2022-1292 (ID: 6720)
* Operctl: fixed segfault on UC20 (ID: 6641)
* UNHANDLER: fixed band locking (ID: 6834)
* Wireless: fixed race condition for wireless configuration initialization (ID: 6744)
# 2022-06-03 00.07.02.1
* Improvements:
* libtlt_uci: removed unnecessary add opt method (ID: 6635)
* Troubleshoot: improved gsm logs. (ID: 6637)
* Fix:
* Mobile: fixed bridge/passtrough mode for RUT230 family device (ID: 6246)
* Init: fixed default configuration generation (ID: 6567)
* IGMP Proxy: fixed menu item not appearing after installing package from Package Manager (ID: 6612)
* MODBUS: fixed write requests (ID: 6635)
# 2022-05-10 00.07.02
* New:
* Mobile: added support for EC200A-AU and EC200A-EU modems (ID: 5184)
* Multiwan: added package support to TRB2 device family (ID: 3926)
* PPPoE: added VLAN priority setting functionality on RUTOS family devices (ID: 2965)
* Firewall: added IPtables filter package for string filtering (ID: 4972)
* Bluetooth: added support for EYE sensors (ID: 4631)
* L2TP: added CHAP authentication support (ID: 2595)
* L2TPv3: added IPv6 support fields (ID: 2054)
* IPSec: added EAP-MSCHAPV2 authentication method support (ID: 2062)
* Data to Server: added DNP3 data support (ID: 3307)
* HotSpot: added configuration profile support (ID: 2508)
* Hotspot: added local users hashing passwords support (ID: 1498)
* MODBUS: added RUT951 and RUT956 support (ID: 4768)
* DNP3: added save to flash option support (ID: 3307)
* DNP3: added test configuration support (ID: 3307)
* SNMP: updated to 5.9.1 version (ID: 3561)
* SNMP: added OpenSSL dependency to enable more authentication options for SNMP v3 (ID: 3561)
* SNMP: added I/O trap support (ID: 3018)
* SNMP: added trap notification ACL or ADC support when values is on enter/exit/both (ID: 5612)
* SNMP: added Mobile sent and received OID support (ID: 3624)
* MQTT: added ACL topic support (ID: 4322)
* Serial: added CRC verification support to MODBUS and RS232/RS485 (ID: 4423)
* I/O: added UTC time ISO 8601 format parameter (%ts) support in I/O Juggler (ID: 4069)
* IGMP Proxy: added IGMP Proxy support (ID: 2168)
* PAM: added Privileged Access Management (PAM) support (ID: 2127)
* Greengrass: added AWS Greengrass support (ID: 3506)
* Auto Reboot: added IPv6 support (ID: 2040)
* Access Control: added uhttpd certificate and key upload support (ID: 1230)
* WebUI: added side widget support (ID: 3304)
* WebUI: added SSH public keys edit box (ID: 5735)
* WebUI: added License page (ID: 2175)
* Improvements:
* kernel: patched CVE-2021-20322 (ID: 5440)
* kernel: patched CVE-2021-4197 (ID: 6036)
* kernel: patched CVE-2022-1011 (ID: 5887)
* kernel: patched CVE-2022-0847 (ID: 5888)
* busybox: updated busybox to version: 1.34.1 (ID: 4920)
* busybox: patched CVE-2022-28391 vulnerability (ID: 6053)
* curl: update to version 7.79.1 (ID: 4197)
* shellinabox: patched to fix vulnerability - CVE-2018-16789 (ID: 5311)
* privoxy: patched CVE-2021-44543, CVE-2021-44542 (ID: 5051)
* GNU Multiple Precision Arithmetic Library: fixed CVE-2021-43618 (ID: 4723)
* zlib: backport security fix for a reproducible crash in compressor (ID: 5967)
* System: added mobile status LEDs turn off support (ID: 2426)
* Mobile: added "iot.1nce.net" APN to APN database (ID: 4884)
* Mobile: added Truphone APNs to APN database (ID: 4366)
* Mobile: added internet and VZWINTERNET APNs to APN database (ID: 6148)
* Mobile: updated mobile usage data point calculation logic (ID: 5315)
* Mobile: added ability to manually enter desired operator number (ID: 2998)
* Mobile: added additional cell ID parsing (ID: 5478)
* Mobile: added parsing for IPv6 of logical interface (ID: 3488)
* Mobile: added modem restart if SIM card is removed during APN database fetching process (ID: 5479)
* Mobile: added qoutes for CHAP secret to allow use of special characters (ID: 4264)
* Mobile Utilities: added unauthorized calls logging (ID: 2596)
* Mobile Utilities: added space characters in SMS commands (ID: 4639)
* Mobile Utilities: added SMS modem storage disable state if SIM is not inserted (ID: 3276)
* Mobile Utilities: changed '%wi' parameter value to return IP address of any currently used WAN interface (not only wired) (ID: 4517)
* GPS: added AVL "Static Navigation" flag (ID: 4456)
* GPS: added GSV parsing for NMEA collecting (ID: 4351)
* Network: added WAN to LAN functionality for all devices with a WAN port (ID: 3681)
* Wireless: improved WiFi scanner enable switch to toggle 2 and 5 ghz instances separately (ID: 3182)
* VLAN: added WAN field for RUT2M family devices (ID: 5903)
* OSPF: added redistribution options and neighboors suport (ID: 4600)
* BGP: added password field support in BGP Peers page (ID: 1544)
* BGP: extended "AS" fields validation to accept integers up to 4294967295 (ID: 4848)
* OpenVPN: added "DHE+RSA" cipher select option (ID: 3463)
* OpenVPN: increased password length from 128 bytes to 512 (ID: 5413)
* OpenVPN: changed HMAC key direction initial value to be different if instance is client or server (ID: 4965)
* OpenVPN: changed HMAC key and HMAC authentication key upload fields to be required (ID: 4965)
* OpenVpn: added patch to address multiple plug-in authentication vulnerability (ID: 6427)
* IPsec: added DES encryption algorithm select option (ID: 6004)
* PPTP: changed username validation in server and client instance creation (ID: 4264)
* PPTP: added require validation for User list username field (ID: 5943)
* Wireguard: added option to manually enter Public key (ID: 1631)
* Wireguard: generating keys is only possible in auto mode now (ID: 1631)
* Wireguard: updated firewall rule logic (ID: 4237)
* Hotspot: removed CHAP authentication protocol due to incompatibility with hashed passwords (ID: 1498)
* Hotspot: added ubus support (ID: 1973)
* Serial Over IP: added RS232 signal line control support (ID: 4428)
* I/O: added newline and GPS location actions in I/O Juggler (ID: 4764)
* I/O: added device name (%pc) parameter in I/O Juggler (ID: 4344)
* Troubleshoot: added events log database to archive (ID: 4435)
* RS232: added Max clients field (ID: 4428)
* RS232/RS485: improved saving logic to create firewall rules (ID: 5431)
* HotSpot: added password encoding option (ID: 4412)
* Hotspot: updated firewall rule setting logic (ID: 5426)
* Access Control: added RFC1918 filter field (ID: 5256)
* Events Reporting: changed default port name of WiFi devices for 'Topology state' rule (ID: 4022)
* IP block: added possiblity to unblock multiple blocked devices (ID: 4077)
* IP block: added "Port" column in blocked login attempts table (ID: 4066)
* Speedtest: added server refresh support (ID: 4984)
* Speedtest: updated servers list (ID: 4984)
* VRRP: added ping section dependence from main instance (ID: 4750)
* Web filter: added asterisk option to Site Blocking (ID: 5961)
* SAMBA: added error code 5 for reserved user names (ID: 5677)
* Package Manager: added MD5 and SHA256 checksum's in validation page (ID: 1961)
* Package Manager: added packages in queue to downloadable list after upgrade with keep settings (ID: 5984)
* Backup: removed upload size limit (ID: 5082)
* Certificates: changed certificate requirements to only require client key file if client certificate is used. (ID: 4360)
* WebUI: added pagination and data retention between table pages (ID: 4861)
* WebUI: improved drag and drop functionality (ID: 2959)
* WebUI: added external modem SMS limit Overview card and widget (ID: 1439)
* WebUI: added APN column to interfaces overview window (ID: 3639)
* WebUI: added duplicates validation for list options (ID: 6008)
* WebUI: added pagination functionality to tables when there are more than 10 records (ID: 2170)
* WebUI: added ability to drag and drop file onto upload component (ID: 4930)
* WebUI: improved table sorting by saving sorting settings in the browser (ID: 1530)
* WebUI: moved "Root CA" from "Access Control" to "Certificates" page (ID: 2769)
* WebUI: added "Strict-Transport-Security" response header for HTTPS (ID: 5725)
* WebUI: added breadcrumbs to modals (ID: 2804)
* WebUI: changed mobile card instance design (ID: 2959)
* WebUI: improved multiple validation rule error display (ID: 4189)
* WebUI: improve mobile network operator display (ID: 4971)
* WebUI: optimized initial WebUI loading after login (ID: 3892)
* WebUI: moved package managers meniu entry position (ID: 6198)
* Fix:
* Mobile: fixed VoLTE mode changing (ID: 5857)
* Mobile: fixed VoLTE management for Meiglink modules (ID: 5665)
* Mobile: fixed deny data roaming on TRB14X devices (ID: 6009)
* Mobile: fixed APN migration if APN was selected from APN list on legacy firmware (ID: 4976)
* Mobile: fixed Sim card settings section display with external modem (ID: 5910)
* Mobile: fixed incorrect parsing of temperature, revision and IP address with MeiG modem (ID: 3502)
* Mobile: added handling for removing sim card on MeiG modems (ID: 5845)
* Mobile: fixed Bridge mode when DNS2 unavailable (ID: 5714)
* Mobile: fixed unnecessary SIM switch when multi APN configured (ID: 5032)
* Mobile: fixed PDP logig for Verizon operator (ID: 5795)
* Mobile: fixed Network operators code save (ID: 6223)
* Mobile: fixed data limit for external modem (ID: 1439)
* Interfaces: fixed incorrect DHCP validation range for start and limit fields (ID: 5053)
* Interfaces: fixed mobile APN display in interfaces edit page (ID: 5845)
* Interfaces: fixed PAP/CHAP username and password fields not saving in interface edit window (ID: 5325)
* Interfaces: removed "auto" option for network interfaces (ID: 6108)
* Interfaces: fixed DHCP-Options save seperated with comma (ID: 6080)
* Interfaces: fixed exclude and listen interfaces (ID: 5473)
* DHCP: fixed broadcast option saving (ID: 6176)
* Relayd: fixed wireless interface option load for RUT2 family devices (ID: 6424)
* Multiwan: fixed failover functionality for secondary modem (ID: 4863)
* Multiwan: fixed problem where Multiwan reload flushed network tables (ID: 6411)
* Wireless: fixed signal strength display (ID: 2651)
* Wireless: fixed multi WiFi not turning off on multi AP section delete (ID: 5850)
* Wireless: fixed loss of connectivity for clients when router is in STA+AP mode (ID: 4777)
* Wireless: added validation, which disallows automatic connection to first unencrypted AP when using MULTI AP (ID: 5840)
* Wifi Scanner: fixed Wireless data not being stored in certain scenarios (ID: 5253)
* Wifi Scanner: fixed wifi scanner not turning on after FW upgrade with keep settings (ID: 5936)
* VLAN: fixed second id not being locked for RUT9M devices (ID: 5813)
* Bluetooth: fixed hci device detection due to possible race condition (ID: 5964)
* Bluetooth: fixed device decoupling (ID: 5468)
* Bluetooth: fixed paired devices RSSI display (ID: 4467)
* Firewall: fixed Traffic Rules saving (ID: 5734)
* Firewall: fixed zone assign when creating new interface (ID: 4818)
* OpenVPN: fixed netmask and ip address fields validation (ID: 2570)
* OpenVPN: fixed TAP (bridged) configuration saving (ID: 5596)
* OpenVPN: fixed configuration problems in TAP mode (ID: 5979)
* BGP: fixed dynamic routes State display (ID: 5484)
* BGP: fixed peer enable in edit page (ID: 5039)
* RIP: fixed configuration migration (ID: 6069)
* PPTP: fixed firewall rule deletion (ID: 5674)
* L2TP: fixed issue when no L2TP client instance could be binded to ipsec (ID: 5153)
* L2TP: removed auto option for client interface (ID: 6274)
* L2TP: fixed firewall rule and zone behavior (ID: 4772)
* L2TPv3: fixed enable saving in edit page (ID: 5495)
* L2TPv3: fixed netmask value saving in config (ID: 5863)
* IPsec: fixed passthrough option saving to IPsec file (ID: 4799)
* DMVPN: fixed issue where instance configuration could not be saved (ID: 5422)
* Wireguard: added multiwan support for wireguard default route (ID: 6138)
* Wireguard: fixed migration script to correctly migrate interface status (ID: 4239)
* Wireguard: fixed issue where peer could not be saved (ID: 5451)
* Mobile Utilities: fixed SMS Gateway Auto Reply and SMS Forwading phone group option value dublication (ID: 5500)
* Mobile Utilities: fixed sending email without secure connection (ID: 5879)
* Mobile Utilities: fixed post/get sms listing by state (ID: 4744)
* Mobile Utilities: fixed monitoring status message (ID: 4568)
* Mobile Utilities: fixed Call Utilities events log message for reboot rule (ID: 6301)
* Mobile Utilities: fixed default config options for ssh and web access (ID: 6037)
* Mobile Utilities: fixed SMS 'Mobile Data usage reset' rule (ID: 5376)
* Mobile Utilities: fixed "iostatus" SMS command (ID: 5340)
* Mobile Utilities: fixed default state of sms_list post/get (ID: 4929)
* Mobile Utilities: fixed infinite spinner issue after double save (ID: 5506)
* Mobile utilities: fixed SMS command validation for no-authorization option (ID: 6015)
* NTP: fixed NTP client time synchronization after firstboot (ID: 4724)
* NTP: fixed device time display with selected time zone (ID: 4439)
* GPS: fixed restoring HTTPS options after keep settings (ID: 5997)
* GPS: fixed missing NMEA sentences (ID: 4351)
* GPS: fixed nmea cache sentence calculation (ID: 2191)
* GPS: fixed outside/inside range condition (ID: 5829)
* MODBUS: fixed indexation issue where bracket becomes missing (ID: 4959)
* MODBUS: fixed initial tcp request count validation (ID: 5701)
* MODBUS: fixed Modbus SMS alarms enable saving (ID: 4858)
* MODBUS: fixed TCP slave modem not starting after switching sim card (ID: 6292)
* MODBUS: fixed pin3/4 direction switching (ID: 5805)
* MODBUS: fixed socket closing if connection failed (ID: 4838)
* MODBUS: fixed alarm configuration deletion (ID: 5808)
* DNP3: fixed master not working after upgrading with keep settings (ID: 6345)
* DNP3: fixed outstation not returning error messages (ID: 4487)
* SNMP: added missing SNMP objects: mobile IP, data sent/received today (ID: 5086)
* MQTT: fixed Publisher "Remote address" field validation (ID: 5450)
* I/O: fixed missing 10 pin connector display for RUT956 device (ID: 4765)
* I/O: fixed relay value display in IO juggler condition page (ID: 4786)
* I/O: fixed I/O Juggler functionality with script action type (ID: 5883)
* I/O: fixed I/O Juggler Wi-Fi rule not enabling or disabling Wi-Fi interfaces (ID: 4781)
* I/O: fixed I/O Juggler double delete bug on io juggler actions and conditions instances (ID: 5516)
* I/O: fixed I/O Juggler external modem recognition (ID: 2082)
* I/Or: fixed I/O Juggler wrong I/O status messages (ID: 5277)
* Azure IoT Hub: fixed long interface name support (ID: 5904)
* Azure IoT Hub: increased maximum 'Connection String' length to 4096 characters (ID: 5209)
* Greengrass: fixed stopping the service when uploaded configuration file is deleted (ID: 5862)
* Cumulocity: fixed cumulocity connection problems with devices that do not have mobile modem (ID: 3662)
* HotSpot: fixed user group limit not reseting on specified time (ID: 5279)
* RMS: removed an error message when no hotspot users were created (ID: 5534)
* RMS: fixed bugs when running RMS with no SIM card inserted (ID: 5524)
* Recipients: fixed showing phone groups menu for devices with no modem (ID: 5530)
* TR-069: fixed missing sent/received data (ID: 4252)
* TR-069: fixed URL input field length validation (ID: 5843)
* Backup: fixed admin login after backup from older firmwares upload (ID: 5981)
* Events reporting: fixed MAC address formatting (ID: 4012)
* Events reporting: fixed DHCP lease message spam, when no new lease is added (ID: 2569)
* Troubleshoot: fixed logging crashing after downloading file (ID: 4592)
* Memory expansion: fixed flash driver reformating after memory shrunk (ID: 5646)
* WOL: fixed Wake On Lan for RUT300 device (ID: 2875)
* WOL: fixed Wake on Lan to be only visible on devices with ethernet port (ID: 4531)
* Traffic logging: fixed log file transferring to ftp server (ID: 4915)
* Web filter: fixed service reloading after a host list file is uploaded (ID: 6323)
* JSON-RPC: fixed access denied messages when sending JSON-RPC requests from root user (ID: 4608)
* Profile: fixed error message display about duplicated intervals in scheduler (ID: 4985)
* System: fixed keep settings migration for ip_block max fail count and port (ID: 6038)
* System: fixed modem upgrade for secondary modem (ID: 5733)
* System: fixed firmware available on server version checking (ID: 4918)
* Package Manager: fixed Python package installation dependencies (ID: 5999)
* Package Manager: fixed edge case where package where shown as upgradable (ID: 3537)
* Package Manager: fixed minidlna package installation (ID: 4877)
* Package Manager: fixed storage calculation for packages (ID: 3647)
* WebUI: fixed firmware deletion after leaving the page (ID: 4822)
* WebUI: fixed setup wizard redirect after LAN IP change (ID: 3412)
* WebUI: fixed save and apply spinner transition (ID: 6206)
* WebUI: fixed asynchronous data loading for non-editable fields (ID: 5854)
* WebUI: fixed various validation bugs, typos, option hints & alignments (ID: 3887)
* WebUI: fixed IPv6 routed prefix and Custom delegated IPv6-prefix fields validation to only validate ipv6 subnets (ID: 5771)
* WebUI: changed IPv6 routed prefix field placeholder (ID: 5771)
* WebUI: fixed IPv6 address field validation to validate Ipv6 addresses and Ipv6 subnets (ID: 5771)
* WebUI: fixed MIME error when trying to load non existing css files (ID: 5792)
* WebUI: fixed Mac address section appearing in devices with no ethernet in system information page (ID: 5711)
* WebUI: fixed table data display logic and added unique identifiers for each dislayed row (ID: 5693)
* WebUI: corrected OSPF Routing card values, value positions and names (ID: 4600)
* WebUI: changed Media Directories error on save (ID: 5157)
* WebUI: changed Media Directories field to be required (ID: 5157)
* WebUI: fixed select field to correctly show custom value (ID: 5083)
* WebUI: fixed issue where all data would dissapear on delete (ID: 5419)
* WebUI: fixed global secrets instances not being removed when there are no ipsec instances. (ID: 5968)
* WebUI: fixed uploaded file remove icon not staying in position on hover issue (ID: 4896)
* WebUI: fixed Images section not removing images correctly (ID: 4896)
* WebUI: fixed unnecessary Images table refresh after each image upload or remove (ID: 4896)
* WebUI: fixed card collapse issue where it does not respond correctly after too many clicks (ID: 3982)
* WebUI: removed wan6 interface from Overview page (ID: 3982)
* WebUI: fixed issue where some forms could not be saved (ID: 4907)
* WebUI: fixed Custom 1 and Custom 2 select fields to allow space when creating custom option (ID: 5417)
* WebUI: fixed issue where checkboxes would get selected when clicked on data row (ID: 5496)
* WebUI: fixed an error inside browser console for devices with no modems (ID: 5592)
* WebUI: fixed issue where pagination would ruin whats shown in modal (ID: 5822)
# 2022-05-03 00.07.01.8
* Fix:
* MODBUS: added missing slave name to datababse (ID: 6329)
* M-Bus: fixed data transfer with 300 baud rate (ID: 6343)
# 2022-04-26 00.07.01.7
* New:
* RUTOS: add TRB143 device support (ID: 4513)
* RUTOS: add motorcomm phy support for TRB1 devices (ID: 6173)
* M-Bus Master: added for TRB1430 device (ID: 2482)
* Network: added YT8531 PHY support for TRB1 family devices (ID: 5748)
* Fix:
* FOTA: fixed modem upgrade for secondary modem (ID: 5733)
* System: fixed firmware update vallidation (ID: 6173)
# 2022-04-08 00.07.01.6
* Fix:
* System: fixed USB hang in rare cases for RUT9M RUT2M devices (ID: 5809)
* Mobile: fixed MCC checking for RUT200 device (ID: 6088)
* SMS Utilities: enhanced service security (ID: 5819)
# 2022-03-29 00.07.01.5
* Fix:
* System: fixed USB hang for RUT9M RUT2M devices (ID: 5937)
# 2022-02-25 00.07.01.04
* Fix:
* Mobile: fixed connection to whitelist carriers (ID: 5551)
* Mobile: fixed Passthrough when disable DHCP (ID: 5559)
* Mobile: fixed Denied roaming feature (ID: 5569)
* Mobile: fixed mobile blocking depent on region (ID: 5573)
* Mobile: disabled Ping To DNS functionality if Bridge/Passthrough mode is enabled (ID: 5559)
* WebUI: fixed OpenVPN server configuration with password authentication (ID: 5531)
* WebUI: fixed NTP interval length validation (ID: 5537)
* WebUI: fixed interface enable after Drag & Drop (ID: 5553)
* NTP: updated NTP client interval to 24h (ID 5537)
# 2022-02-15 00.07.01.3
* New:
* RUTOS: added RUT951/RUT952/RUT956 devices support (ID: 4283)
* Mobile: added VoLTE support (ID: 4520)
* Improvements:
* I/O: added '%it' parameter for UTC time in ISO 8601 format in I/O Juggler (ID: 4069)
* WebUI: improved RS232 Port and Timeout validation (ID: 5185)
* WebUI: changed port forward rule max name length (ID: 5186)
* WebUI: removed unnecessary network display for Wireless "Network" option (ID: 5219)
* Fix:
* System: preserve /etc/luci-uploads/ after FW upgrade (ID: 5140)
* LEDS: fixed 3G led animation problem for RUT9 devices (ID: 4808)
* Mobile: dfota: changed file upload to modem logic (ID: 5138)
* Firewall: fixed OpenVPN forwarding rules (ID: 3749)
* I/O: fixed usage of custom headers in HTTP action in I/O Juggler (ID: 4069)
* I/O: fixed 'verify' option parsing in Juggler (ID: 4069)
* MODBUS: fixed missing bracket at the data sending end (ID: 4959)
* WOL: fixed Wake on LAN packet routing (ID: 5197)
* WebUI: fixed Hotspot 2.0 status display RUT9 family devices (ID: 5246)
* WebUI: fixed Hotspot enable button validation (ID: 5195)
* WebUI: fixed IPv4-Gateway column showing empty values in Status > Routes page (ID: 5205)
* WebUI: fixed firewall extra option validation (ID: 5239)
* WebUI: fixed second mobile interface create for RUT2 family devices (ID: 5117)
# 2022-01-04 00.07.01.2
* New:
* Modem: added modem upgrade system for Quectel modems (ID: 4414)
* Improvements:
* L2TP: removed L2TP section title prefixes (ID: 4181)
* Fix:
* STM32 : attempt to flash when chip is in unknown state (ID: 4622)
* Mobile: fixed Bridge mode without multi APN (ID: 4943)
* Mobile: fixed multi interface checking algorithm (ID: 4943)
* Mobile: Fixed error handling when modem is not responding (ID: 5003)
* Mobile: Prolonged autoconnect setting timeout (ID: 5003)
* FOTA: fixed timeout problem when server does not respond (ID: 4918)
* Package Manager: fixed installation of backup packages (ID: 5049)
* WebUI: fixed CPU percentage display in the overview page (ID: 4807)
* WebUI: fixed data limit display after profile change (ID: 4833)
# 2021-11-19 00.07.01.1
* Fix: fixed image signature addition
# 2021-11-15 00.07.01
* New:
* RUTOS: added RUT2 devices support
* RUTOS: added verified boot support for RUT2XX (ID: 3585)
* RUTOS: added EC25-AU support TRB142,TRB145 devices (ID: 4515)
* RUTOS: added RUTX series support without STM32 (ID: 3428)
* Mobile: added UC20 module support (ID: 3644)
* Mobile: added support for SLM750-VJ&VSA modems (ID: 3974)
* Mobile: added support for B18 and B19 LTE bands (ID: 3974)
* Mobile: added SMS Limit hour, week day and month day support (ID: 3185)
* Mobile: added Manual-Auto operator select support (ID: 3855)
* SMS Utilities: added "UCI delete" support (ID: 2213)
* Tinc VPN: added Tinc VPN support (downloadable through package manager) (ID: 3467)
* MODBUS TCP Master: added support for RUT241 routers (ID: 4262)
* Modbus TCP Master : added RUT2, RUT300 alarms I/O action support (ID: 3903)
* SNMP: added I/O support (ID: 2649)
* WebUI: added Wireless "Mesh Network" configuartion support (ID: 2918)
* WebUI: added Multiple Wireless AP configuration support (ID: 2974)
* WebUI: added German language support (downloadable through package manager) (ID: 4248)
* Improvements
* Core: updated base with OpenWrt 21.02 (ID: 3550)
* Kernel: updated kernel to 5.4.147 (ID: 3550)
* mtd-utils: updated to 2.1.2 version (ID: 3550)
* busybox: updated to 1.33.1 version (ID: 3550)
* ubus: updated to 2021-06-30 version (ID: 3550)
* ubox: updated to 2020-10-25 version (ID: 3550)
* rpcd: updated to 2021-03-11 version (ID: 3550)
* opkg: updated to 2021-06-13 version (ID: 3550)
* fstools: updated to 2021-01-04 version (ID: 3550)
* wwan: updated to 2019-04-29 version (ID: 3550)
* ethtool: updated to 5.10 version (ID: 3550)
* uhttpd: updated to 2021-03-21 version (ID: 3550)
* ppp: updated to 2020-10-03 version (ID: 3550)
* odhcpd: updated to 2021-07-18 version (ID: 3550)
* hostapd: updated to 2020-06-08 version (ID: 3550)
* dropbear: updated to 2020.81 version (ID: 3550)
* dnsmasq: updated to 2.85 version (ID: 3550)
* netifd: updated to 2021-07-26 version (ID: 3550)
* firewall3: updated to 2021-03-23 version (ID: 3550)
* libjson-c: updated to 0.15 version (ID: 3550)
* libevent2: updated to 2.1.12 version (ID: 3550)
* mac80211: updated to 5.10.68 version (ID: 3550)
* wireless-regdb: updated to 2021.04.21 version (ID: 3550)
* binutils: updated to 2.35.1 version (ID: 3550)
* gdb: updated to 10.1 version (ID: 3550)
* strace: updated to 5.10 version (ID: 3550)
* trace-cmd: updated to 2.9.1 version (ID: 3550)
* valgrind: updated to 3.16.1 version (ID: 3550)
* ath10k-ct-firmware: updated to 2020-11-08 version (ID: 3550)
* procd: updated to 2021-02-23 version (ID: 3550)
* iw: updated to 5.9.8 version (ID: 3550)
* iproute2: updated to 5.11.0 version (ID: 3550)
* iptables: updated to 1.8.7 version (ID: 3550)
* nettle: updated to 3.6 version (ID: 3550)
* libpcap: updated to 1.9.1 rel3 version (ID: 3550)
* elfutils: updated to 0.180 version (ID: 3550)
* cryptodev-linux: updated to 1.11 version (ID: 3550)
* linux-firmware: updated to 20201118 version (ID: 3550)
* util-linux: updated to 2.36.1 version (ID: 3550)
* openwrt-keyring: updated to 2021-02-20 version (ID: 3550)
* mtd: updated to rel26 version (ID: 3550)
* fwtool: updated to 2019-11-12 version (ID: 3550)
* ca-certificates: updated to 20210119 version (ID: 3550)
* wireguard-tools: updated to 1.0.20210223 version (ID: 3550)
* iwinfo: updated to 2021-04-30 version (ID: 3550)
* ipset: updated to 7.6 version (ID: 3550)
* gre: updated to rel12 version (ID: 3550)
* wolfssl: updated to 4.7.0 version (ID: 3550)
* ustream-ssl: updated to 2020-12-10 version (ID: 3550)
* uclient: updated to 2021-05-14 version (ID: 3550)
* readline: updated to 8.1 version (ID: 3550)
* mbedtls: updated to 2.16.11 version (ID: 3550)
* libusb: updated to 1.0.24 version (ID: 3550)
* libunwind: updated to 1.5.0 version (ID: 3550)
* libubox: updated to 2021-05-16 version (ID: 3550)
* libnl-tiny: updated to 2020-08-05 version (ID: 3550)
* libnftnl: updated to 1.1.8 version (ID: 3550)
* libiconf-full: updated to 1.16 version (ID: 3550)
* libbsd: updated to 0.10.0 version (ID: 3550)
* gmp: updated to 6.2.1 version (ID: 3550)
* ulogd: updated to rel6 version (ID: 3550)
* sqm-scripts: updated to 1.5.0 version (ID: 3550)
* ntpclient: updated to rel14 version (ID: 3550)
* nmap: updated to 7.80 version (ID: 3550)
* curl: updated to 7.77.0 version (ID: 3550)
* zerotier: updated to 1.6.5 version (ID: 3550)
* xtables-addons: updated to 3.13 version (ID: 3550)
* xl2tpd: updated to 1.3.16 version (ID: 3550)
* stunnel: updated to 5.59 version (ID: 3550)
* strongswan: updated to 1.0.13 version (ID: 3550)
* sstp-client: updated to 1.0.13 version (ID: 3550)
* pptpd: updated to rel5 version (ID: 3550)
* openvpn: updated to 2.5.3 rel2 version (ID: 3550)
* ntpd: updated to rel3 version (ID: 3550)
* net-snmp: updated to rel2 version (ID: 3550)
* mosquitto: updated to 2.0.11 version (ID: 3550)
* miniupnpd: updated to 2.2.1 rel 3 version (ID: 3550)
* etherwake: updated to rel5 version (ID: 3550)
* libzip: updated to 1.7.3 version (ID: 3550)
* libgpg-error: updated to 1.39 version (ID: 3550)
* glib2: updated to 2.66.4 version (ID: 3550)
* libnetfilter-conntrack: updated to 1.0.8 version (ID: 3550)
* libnetfilter-log: updated to rel3 version (ID: 3550)
* lzo: updated to rel4 version (ID: 3550)
* nghttp2: updated to 1.43.0 version (ID: 3550)
* openvpn-easy-rsa: updated to 3.0.8 rel3 version (ID: 3550)
* iperf: updated to rel2 version (ID: 3550)
* iperf3: updated to 3.10.1 version (ID: 3550)
* e2fsprogs: updated to 1.45.6 version (ID: 3550)
* fuse: updated to 2.9.9 version (ID: 3550)
* udprelay: updated 2020-02-26 version (ID: 3550)
* qmicli: updated to 1.28.2 version (ID: 3550)
* pcre: updated to 8.45 version (ID: 3550)
* libsmpp34: updated to 1.14.1 version (ID: 3550)
* libiwinfo: updated to 2.1 version (ID: 3550)
* openssl: updated to 1.1.1l version (ID: 3550)
* privoxy: updated to 3.0.32 version. (ID: 3558)
* libgcrypt: update 1.9.3 to fix CVE-2021-33560 (ID: 3556)
* libgcrypt: patched CVE-2021-40528 vulnerability (ID: 4120)
* Kernel: backport fixes to patch CVE-2021-33624 vulnerability (ID: 3659)
* Kernel: backport fixes to patch CVE-2021-29648 vulnerability (ID: 3659)
* Kernel : patched CVE-2021-40490 vulnerability (ID: 4122)
* Kernel: patched CVE-2020-16120 vulnerability (ID: 4113)
* Kernel: added support for PL2303GC serial to usb chip for RUTX, TRB2, RUT9 devices (ID: 4075)
* Network: added netifd library for network interfaces related additional information (ID: 2092)
* Mobile: added Lithuanian and Verizon APNs to Auto APN functionality (ID: 3656)
* Mobile: added ubus sim count method to simd functionality (ID: 1449)
* Wireless: added bgscan feature to wpa_supplicant (ID: 3986)
* IPsec: added pcrypt crypto parallelization driver, to improve IPsec throughtput (ID: 3476)
* PPTP/L2TP: added automatic forwarding rule to WAN when default route is enabled (ID: 1456)
* HotSpot: added the ability to choose whether multiple Hotspot users can log in with the same SMS OTP or not (ID: 3300)
* Ubus: removed list method due to security reasons (ID: 4399)
* Data Sender: added MODBUS "%I, %T, %S, %r, %n" support (ID: 3868)
* Eventslog: added detailed PING reboot logging (ID: 2551)
* Events reporting: added "New WiFi client" support (ID: 3356)
* Events reporting: added "Topology state" support for RUT9, RUT3 and RUT2 devices (ID: 3485)
* CLI: added IPv6 support (ID: 2039)
* MODBUS: added unix timestamp, local ISO time, UTC time support (ID: 2162)
* Mdcollect: added ability to get total data without specifying time interval through ubus (ID: 3503)
* WebUI: added WebUI session timeout after user inactivity (ID: 2131)
* WebUI: added GPS AVL "Don't Contain Connection" adn "Retry on Fail" configuration support (ID: 2279)
* WebUI: removed search engine site crawling (ID: 4465)
* WebUI: improved IPSec "Local/Remote source" validation (ID: 3886)
* WebUI: added Firewall "all" and "custom" protocol options (ID: 3875)
* WebUI: improved redirection from login to overview page (ID: 2304)
* WebUI: converted SNMP "Community name" field to editable (ID: 3576)
* WebUI: improved access-control list reload for sessions (ID: 3426)
* WebUI: added placeholder for dropdown element (ID: 2736)
* WebUI: optimized Wireless device status information requests in all WebUI pages (ID: 3685)
* WebUI: added pagination, search bar, easier device selection in Bluetooth page (ID: 3454)
* WebUI: improved functionality when multiple browser tabs are open (ID: 3431)
* WebUI: improved TLS Clients "Private network" field validation (ID: 3289)
* WebUI: added Send SMS modem selection configuration support (ID: 3323)
* WebUI: improved multi-select design and functionality (ID: 2735)
* WebUI: improved wireless frequency options layout (ID: 3086)
* WebUI: added notification message if selected file cannot be uploaded (ID: 2667)
* WebUI: added IPSec "Compatibility mode" configuration support (ID: 2689)
* WebUI: changed MTU fields validation range (ID: 2014)
* WebUI: added Backup file size limit of 2MB (ID: 3805)
* WebUI: optimized basic/advanced mode changing (ID: 4098)
* WebUI: improved Wireguard "IP Addresses" field validation (ID: 4087)
* WebUI: added external modem support in Status->Mobile page (ID: 2083)
* WebUI: added Passthrough "Leasetime" and "Unit" configuration support (ID: 3854)
* WebUI: added Failover/Load balancing "Policies" and "Rules" configuration support (ID: 2114)
* WebUI: added Call Utilities "Active Timeout" configuration support (ID: 3874)
* WebUI: added Reboot scheduler multiple reboot times in one configuration configuration support (ID: 1513)
* WebUI: added language download support from language selection section (ID: 3627)
* WebUI: added VRRP "Advertisement interval" configuration support (ID: 2374)
* WebUI: added PPTP "Client to client" configuration support (ID: 3726)
* WebUI: added notification in GPS map page when GPS service is disabled (ID: 3028)
* WebUI: added duplicate password validation in HotSpot Landing page form (ID: 3300)
* WebUI: improved Network interfaces edit modal using different protocols (ID: #1565)
* WebUI: removed default login page username value (ID: 3255)
* WebUI: added Traffic Rules table drag and drop functionality (ID: 3596)
* WebUI: added DDNS "username", "password", "host" fields to be as optional (ID: 3865)
* WebUI: added SSTP "default route" configuration support (ID: 3882)
* Fix:
* Ledman : fixed 3G LED being not active in 3G mode (ID: 3767)
* Storage Memory Expansion: fixed issues after upgrading from 6.X with kept settings for RUT9 devices (ID: 3628)
* DNP3 : fixed DNP3 Outstation crash caused by non-void function returning no value (ID: 3633)
* Mobile: fixed mobile daemon crashing after modem restart (ID: 2363)
* Mobile: fixed SIM Switch back to default issue (ID: 3233)
* Mobile: fixed WCDMA band names for MeiG modules (ID: 3380)
* Mobile: fixed network information gathering (ID: 3583)
* Mobile: fixed mobile passthrough mode (ID: 4004)
* Mobile: removed not supported bands for SLM750-VAU modem (ID: 3721)
* Mobile: fixed URCs handle in response of AT commands for MeiG modems (ID: 3586)
* Mobile: fixed Email to SMS failing to accquire and send messages (ID: 3791)
* Mobile: fixed SMS Utilities not working on TRB255 devices (ID: 3795)
* Mobile: fixed manual band selection for EC25-AU and SLM750-VJ & VSA modems (ID: 3863)
* Mobile: fixed order of AT commands for different connection modes (ID: 3974)
* Mobile: fixed changing default SIM after first boot for RUTX14 devices (ID: 4459)
* Bluetooth: fixed Ela temperature errors (ID: 2810)
* PPTP/L2TP: fixed startup after keep settings firmware update on TRB140 and RUT300 devices (ID: 4123)
* Wireguard: fixed package removal (ID: 3867)
* Auto Reboot: fixed reboot scheduler not removing crontab file after disabling rule (ID: 3570)
* Auto Reboot: fixed "Interval", "Timeout" and "Try count" values after keep settings (ID: 4138)
* Mdcollect: fixed database error after upgrading firmware with keep settings (ID: 3491)
* Mdcollect: fixed Data Limit accuracy (ID: 3654)
* QoS: fixed LAN download speed limit on TRB140 devices (ID: 4028)
* HotSpot: fixed escaping '#' symbol from username or password (ID: 3803)
* HotSpot: fixed hotplug script which did not recognize interface changes (ID: 4177)
* MODBUS Serial Master: fixed crash when requesting a 4-byte datatype from a 2-byte data payload (ID: 3349)
* MODBUS TCP Slave: fixed mobile and PIN3 register bad responses (ID: 3818)
* MODBUS TCP Slave: fixed SIM card switching issue (ID: 3818)
* Modbus TCP slave: fixed analog register returning wrong value (ID: 3894)
* MODBUS Serial Master: fixed "Stop bits" option values after keep settings (ID: 3981)
* Events reporting: fixed email user group validation for send test email functionality (ID: 2209)
* CLI: fixed remote CLI not working using HTTPS (ID: 3852)
* Profiles: fixed profile updating when configuration is updated not from WebUI (ID: 3402)
* RMS: fixed Wi-Fi information not displaying after turning OFF an access point (ID: 3807)
* Web Filter: fixed service restart on URL list change. (ID: 3558)
* Recipients: fixed escaping special symbols from username and password (ID: 4013)
* WebUI: fixed validation to refuse firmware lower than 7.0 on RUT9 with Micron flash (ID: 3533)
* WebUI: bring back SMS Utilities "Write to config" configuration support (ID: 3874)
* WebUI: fixed state option in SMS Utilities for "Change I/O" (ID: 3954)
* WebUI: removed password length validation (ID: 4451)
* WebUI: fixed white screen error after logging into webUI on slow internet connection (ID: 2000)
* WebUI: fixed Interfaces "Bridge interfaces" saving (ID: 3924)
* WebUI: fixed Dynamic Routes OSPF interfaces duplicated (ID: 3883)
* WebUI: fixed missing Triple Carrier Aggregation display support (ID: 2288)
* WebUI: fixed Traffic logging network selection list (ID: 2318)
* WebUI: fixed DHCP Options validation (ID: 2603)
* WebUI: fixed Profile date display (ID: 2302)
* WebUI: fixed blank page issue after invalid url in login page (ID: 2110)
* WebUI: fixed TR069 "Accept server request" rule loading according to firewall rules (ID: 2937)
* WebUI: fixed GRE remote subnet netmask validation (ID: 3081)
* WebUI: fixed section toggle(ID: 3148)
* WebUI: fixed package installation modal layout (ID: 3172)
* WebUI: fixed instance creation with a name that is already in use (ID: 3336)
* WebUI: fixed Modbus credential validation (ID: 3381)
* WebUI: fixed MQTT credential validation (ID: 3381)
* WebUI: fixed SMS Gateway loading screen when sending SMS messages (ID: 3418)
* WebUI: fixed file upload (ID: 3473)
* WebUI: fixed modem firmware upgrade for TRB1 family devices (ID: 3473)
* WebUI: fixed SSHFS username and password validation (ID: 3520)
* WebUI: fixed DNS rebind protection field when switch is disabled (ID: 3534)
* WebUI: fixed Setup Wizard "lease time" and "unit" fields saving (ID: 3565)
* WebUI: fixed OpenVPN extra options validation (ID: 3577)
* WebUI: fixed NTP GPS Synchronization swith to enable GPS service (ID: 3675)
* WebUI: fixed uhttpd WEB server issue with filling up with unnecessary connections (ID: 3691)
* WebUI: fixed Firewall "Destination zone" field name (ID: 3717)
* WebUI: fixed RMS copy button functionality (ID: 3769)
* WebUI: fixed Interfaces "LAN to WAN" button display (ID: 3775)
* WebUI: fixed displaying "Memory expansion" and "Printer service" services for devices without USB (ID: 3813)
* WebUI: fixed cheking if DNP3 is installed for 'Serial type' option (ID: 3826)
* WebUI: fixed VLAN section creation for TRB141 devices (ID: 3838)
* WebUI: return Interfaces "Port priority" option for RUTXR1 devices (ID: 3838)
* WebUI: fixed missing Content-Type header to initial WebUI response.(ID: 3889)
* WebUI: fixed RIP information parsing in status page (ID: 3925)
* WebUI: fixed OpenVPN IPv6 netmask validation (ID: 3933)
* WebUI: fixed SNMP Trap Settings Host/IP field validation (ID: 3973)
* WebUI: fixed Wireless network interface metric calculation when joining a Wireless network (ID: 3976)
* WebUI: fixed cumulocity authentication reset (ID: 4352)
* WebUI: Fixed Events Reportingg rule saving (ID: 4566)
# 2021-09-02 00.07.00.1
* Fix:
* Reboot: fixed reboot on MBN configuration reload (ID: 3750)
# 2021-07-14 00.07.00
* New:
* WebUI: added Web UI based on Vue.js 2.6.12 (ID: 1884)
* RUTOS: added support for TCR1 devices (ID: 3184)
* RUTOS: added support for RUT9 devices (ID: 1256)
* RUTOS: updated to OpenWrt 19.07.7 base (ID: 2463)
* RUTOS: added SLM750 modem support (ID: 3126)
* kernel: updated to 4.14.221 version (ID: 2463)
* kernel: added TCP MD5 auth support for BGP (ID: 2658)
* kernel: backport fixes to patch CVE-2019-18198 vulnerability (ID: 3357)
* kernel: backport fixes to patch CVE-2021-20268 vulnerability (ID: 3358)
* uhttpd: updated to 2020-10-01 (ID: 2463)
* firewall: updated to release 3 (ID: 2463)
* xtables-addons : updated to release 9 (ID: 2463)
* mwan: updated to 2.8.14 (ID: 2463)
* pcre: updated to 8.44 version (ID: 2541)
* curl: updated to 7.74 version (ID: 2545)
* sqlite: updated to 3.33 version (ID: 2547)
* ncurses: updated to 6.2 version (ID: 2607)
* OpenSSL: updated to 1.1.1k version (ID: 2836)
* glib2: patch CVE-2019-13012 vulnerability (ID: 2544)
* ntfs-3g: patch CVE-2019-9755 vulnerability (ID: 2546)
* netifd: patch IPv6 routing loop on point-to-point links for CVE-2021-22161 (ID: 2585)
* odhcp6c: fix IPv6 routing loop on point-to-point links for CVE-2021-22161 (ID: 2587)
* WolfSSL: patch CVE-2021-3336 vulnerability
* Busybox : added patch for CVE-2018-1000500 (ID: 3166)
* ATH79: added support for micron authena proprietary mtd ioctls (ID: 2803)
* 8021q: added VLAN support for TRB1 family devices (ID: 3015)
* System: enabled user-space watchdog on TRB1XX devices (ID: 2784)
* Mobile: added modem autostart disable feature (ID: 2682)
* Mobile: added DHCP relay AT command for EC25 and EC21 modules (ID: 2543)
* SMS Utilities: added ability to use 2gonly/3gonly/4gonly arguments for cellular service command alongside current 2g/3g/lte arguments (ID: 2756)
* SMS utilities: added SMS rule "Restore to user defaults" (ID: 2104)
* Data to Server: Added Client ID option for MQTT protocol (ID: 2140)
* I/O: added Post/Get URL parameter t_time changing delay and time to seconds or miliseconds (ID: 1126)
* DNP3: added dnp3 master and oustation services (ID: 2344)
* USB To Serial: added support for multiple usb to serial adapters (ID: 2146)
* IPSec: added XAUTH support (ID: 2637)
* SNMP: added firmware version OID (ID: 2552)
* OpenVPN: added AES-256-GCM encryption support (ID: 2644)
* Hotspot: added option to send warning SMS messages to Hotspot users authenticated with SMS OTP when specified amount of data is used up (ID: 2109)
* WebUI: added IP family option field to SNMP page (ID: 2047)
* WebUI: added SNMPv6 section to SNMP Communities page (ID: 2047)
* WebUI: added peer groups to BGP access list dropdown (ID: 2348)
* WebUI: added "Phone number" and "Message" fields for "SEND SMS" option (ID: 2528)
* WebUI: added "Host to ping from SIM1" and "Host to ping from SIM2" fields (ID: 2525)
* WebUI: added 'System -> System Users' section for users management (ID: 2790)
* WebUI: added send analog input option in tavl settings (ID: 2465)
* Improvements:
* STM32: I2C Communication improvements (ID: 2452)
* ATH079: switch back to ar8216 driver (ID: 2463)
* Backup: Excluded MAC address from backup file. (ID: 3211)
* Modem: turn on modem in preinit for correct power-on sequence (ID: 2682)
* Mobile: added mesage storage management by config value (ID: 2916)
* Mobile: improved qmi error handling and status tracking (ID: 2746)
* Mobile: refactor SIM PIN setting, remove double-negative conditionals (ID: 2021)
* Mobile: added roaming checking on LTE NB (ID: 3364)
* SIM Switch: added option to switch back to primary sim after timeout (ID: 2203)
* SMS Utilities: changed I/O variable naming to sequential numbering according to ubus ioman objects (ID: 2756)
* SMS Utilities: added Post/Get feature to turn mobile data on/off (ID: 986)
* hostapd: fixed wpa_supplicant P2P group information processing vulnerability
* Wireless: add security fixes for the FragAttacks issues (ID: 3137)
* ulogd: added IPv6 logging for RUTOS devices (ID: 2048)
* rpcd: improved access rights for multi users (ID: 2475)
* DMVPN: added missing config options (ID: 2960)
* DMVPN: added PSK conversion to dmvpn and single PSK types (ID: 3212)
* OpenVPN: updown script now writes info about instance in json (ID: 2157)
* OpenVPN: init script now writes info about server instance in json (ID: 2157)
* Package Manager: refactored package installation, deletion and dependencies (ID: 2522)
* FOTA: refactored package manager download process (ID: 2034)
* RMS: added new input/output values (ID: 2676)
* I/O: added ability to disable IO features for RUT9 (ID: 2620)
* MODBUS TCP Master, MODBUS Serial Master: fix float endianness mismatch on some devices (ID: 2782)
* Data to Server: added full MODBUS register address expansion specifier (ID: 2599)
* Data to Server: improved more accurate sleeping (ID: 2697)
* Data to Server: improved username validation, now space is allowed (ID: 2442)
* WebUI: added validation to Walled Garden Address list field (ID: 2153)
* WebUI: added full MODBUS register address legend (ID: 2599)
* WebUI: renamed System -> Users page to System -> System Users (ID: 2790)
* WebUI: moved password changing option to System -> System Users (ID: 2790)
* Webui: 'Network > Failover' and 'Network > Interfaces' pages data is now draggable on multiple browsers (ID: 2612)
* Fix:
* Mobile: ignore ipv6 mobile RA routes valid time (ID: 2091)
* Mobile: added "Transaction timed out" error handling (ID: 2536)
* Mobile: fixed sim position check (ID: 2494)
* Mobile: fixed PPPOE connection loss when wrong session PADT packet arrives (ID: 2711)
* Mobile: fixed memory management fault (ID: 3063)
* Mobile: added gcont object tracking and update info if this service restarted (ID: 2957)
* Mobile: fixed default SMS storage (ID: 3051)
* Mobile: fixed Blacklist/Whitelist attachment after operator list reconfiguration (ID: 3126)
* Data Limit: fixed sms warning sending after data limit change (ID: 2488)
* GPS: fixed time synchronization for DST regions (ID: 3055)
* GPS: fixed parsing TAVL rules and variables (ID: 2465)
* GPS: fixed ADC reading to a 1000 precision value (ID: 3027)
* GPS: fixed AVL I/O backup rule type setting (ID: 3027)
* GPS: fixed AVL custom rule initialization handling (ID: 3027)
* GPS: fixed AVL I/O analog option check (ID: 3027)
* SMS Utilities: fixed not deleting messages after reply on secondary modem (ID: 2289)
* DHCP Relay: fixed DHCP relaying over mobile networks
* OpenVPN: fixed OpenVPN connection when using generated certificates for RUTOS family (ID: 2597)
* IPsec: fixed android clients MTU/MSS size (ID: 2258)
* Ipsec: changed PSK maxlength to 128 symbols (ID: 2372)
* IPsec: fixed wrong DPD value save (ID: 3098)
* SSTP: fixed SSTP being up after package removal (ID: 2881)
* DMPVN: fixed crypto_proposal write to config (ID: 2181)
* I/O juggler: fixed sending sms to correct group (ID: 2537)
* I/O scheduler: fixed relay state issue (ID: 2622)
* I/O Post/Get: added IO direction check while changing IO's (ID: 2993)
* Serial over IP: fixed Client UDP mode issue (ID: 2353)
* MODBUS: fixed a cut MAC data regression (ID: 2592)
* HotSpot: fixed walled garden issues (ID: 2467)
* Traffic loggin: fixed hotspot data logging issues (ID: 2316)
* UPNP: fixed issue where config changes applies only after service restart (ID: 2466)
* DLNA: fixed connections count total in statistics page (ID: 2872)
* VRRP: fixed wrong IP address writing to file for RUTX family devices (ID: 2874)
* Webui: fixed pincode validation maxlengh changed from 12 to 8 symbols (ID: 2583)
* WebUI: fixed WebUI files caching when upgrading firmware (ID: 2798)
* WebUI: fixed Data display format (ID: 2819)
# 2021-02-10 00.02.06.01
* Fix:
* DNSMasq: patch CVE-2020-25681, CVE-2020-25682, CVE-2020-25683, CVE-2020-25684, CVE-2020-25685, CVE-2020-25686, CVE-2020-25687 (ID: 2248)
* GSM: fixed bootloop on TRB14X which might occur when no sim card is inserted (ID: 2478)
* GSM: fixed modem status after failed network scan (ID: 2572)
* GSM: fixed mbncfg function and PIN check logic (ID: 2574)
* PPTP: fixed server interface naming (ID: 2502)
* Firewall: fixed reachable SSH over SIM op in early boot (ID: 2533)
* Package Manager: added package size checking when manually installing a package (ID: 2411)
* WebUI: fixed adding helper to firewall's wan zone when enabling pptp configuration (ID: 2502)
* WebUI: fixed correct client pptp interface name selection for route creation (ID: 2502)
* WebUI: fix 'New Firmware Available' message display after firmware upgrade
# 2020-12-31 00.02.06
* New:
* RUTOS: updated base to OpenWrt 19.07.4 (ID: 2136)
* RUTOS: added initial support for RUT2XX devices (ID: 934)
* RUTOS: added initial support for RUT300 devices (ID: 1965)
* Ledman: add support for RUTX14 (ID: 2253)
* SIMD: add support for RUTX14 (ID: 2268)
* Package Manager: added SSHFS package support to package manager (ID: 1900)
* Mobile: added operator whitelist/blacklist feature (ID: 1412)
* Mobile: add quectel external modem support (ID: 1656)
* Mobile: add Quectel EG12/EG18 modules support (ID: 1691)
* Mobile: added band selection support for EC25, EC21, BG96, EG06, EG12/EG18 series modules (ID: 1724)
* SMS Post/Get: added sms sending to phone groups (ID: 1699)
* SMS Utilities: added action to reset mobile data usage for specified interface (ID: 1717)
* SMS Utilities: added example how to use mobile data usage reset rule (ID: 1717)
* SMS Utilities: added SMS storage limit check after inserting SIM (ID: 1984)
* SMS Utilities: added VPN status support for custom configurations (ID: 2030)
* Wireless: added wpa3 encryption support (ID: 2076)
* Wireless: added acs exclude dfs feature for 5GHz wireless (ID: 2169)
* Bluetooth: added functionality to unpair all paired Bluetooth devices (ID: 1335)
* I2C Bus: added i2c-tools package and enabled i2c bus in J4 pin header for TRB14X family devices (ID: 1623)
* SPI Bus: added spi-tools package and enabled spi bus in J4 pin header for TRB14X family devices (ID: 1623)
* QoS: added QoS support for TRB2 family devices (ID: 1700)
* MQTT Broker/Publisher: added PSK support (ID: 2009)
* Web Filter: added Web Filter for TRB2 and TRB1 family devices (ID: 1702)
* Serial: added partial and full modem control support from RS bus (ID: 997)
* WebUI: added operator list management (ID: 1412)
* WebUI: added a list of all USB devices to USB Tools page with option to safely unmount devices (ID: 1527)
* WebUI: added modems layout image for RUTXR1 devices (ID: 2055)
* WebUI: added modems layout icon for RUTX14 device (ID: 2287)
* WebUI: added triple carrier aggregation show in Status->Network->Mobile page (ID: 2288)
* Improvements:
* ATH79: disabled memory mapped read on m25p80 driver due possible corrupted data read on TRB2XX, RUT3XX devices (ID: 2018)
* Mobile: moved 2-8 PDP contexts to 9-16 the 2-8 are neccessary for SIM card MIB APNs (ID: 1589)
* Mobile: added modem type to modem events (ID: 1827)
* Mobile: changed modem name from primary to internal if device has only one built in modem (ID: 1656)
* Mobile: added reinit modem after sim initialization failure (ID: 1896)
* Mobile: fixed user group phone number SMS sending on I/O event (ID: 1943)
* Mobile: improved SIM count check during init (ID: 2102)
* Mobile: changed default band values for BG96 and EC21-EU modules (ID: 1724)
* Wifi Scanner: Management frames can have rssi not available in these cases 0 is applied for RutOS devices (ID: 2260)
* SMS Utilities: changed to send configured device name instead of default one in 'status' message (ID: 1951)
* SMS utilities: removed non supported sms utilities rules from devices which does not support specific services (ID: 2163)
* SMS Messages: added selected modem saving when viewing SMS messages of multi-modem device (ID: 2273)
* GPS: refactored GPS code (ID: 1666)
* Wireless: removed unsecure "WPA-PSK" and "WPA-EAP" encryption support (ID: 2076)
* Bluetooth: improved Bluetooth device to pair selection (ID: 1335)
* I/O: changed I/O scheduler structure (ID: 1452)
* I/O: removed limitation of one configuration per input (ID: 1923)
* TR609: added multiple modem support (ID: 666)
* OpenVPN: Fixed parsing user uploaded custom configuration files containing carriage returns. (ID: 2030)
* IPsec: added conntrack flush on multiwan hotplug if ipsec is enabled (ID: 2096)
* IPSec: passtrough specific subnet/ip now parses with left dynamic (ID: 2078)
* GRE Tunnel: optimized package responsible for sending/receiving gre tunnel keepalive packets (ID: 2070)
* Package Manager: improved build system (ID: 1719)
* Package Manager: added extra error cheking when downloading packages (ID: 2144)
* RMS JSON: added data usage info of both sim cards (ID: 2017)
* Ping/Wget Reboot: added logging to syslog when "Action" is "None" (ID: 1275)
* VRRPD: now supports multiple vrrpd instances, each with its own ping destination (ID: 1473)
* VRRPD: added traffic rule for WAN (ID: 1473)
* MQTT Publisher: added serial number, lan mac and I/O pin commands support for RUT3 family devices (ID: 1981)
* System: updated EC21-EU available bands (ID: 2352)
* WebUI: added MTU option when mobile protocol is selected for TRB1 devices (ID: 1369)
* WebUI: moved all USB related services to USB Tools (ID: 1527)
* WebUI: improved Hotspot Landing page address validation, now a trailing slash is accepted (ID: 1536)
* WebUI: improved display of configuration tables when a lot of information is shown (ID: 1538)
* WebUI: rename modbus strings to uppercase (ID: 1611)
* WebUI: added redirect to configuration page, after new section is created (ID: 1672)
* WebUI: splitted vlan configuration into 2 separate ones: Port Based and Interface Based configurations (ID: 1803)
* WebUI: added "passive-interface" and "default-information" options to OSPF configuration page (ID: 1853)
* WebUI: added option to create profile from current configuration (ID: 1858)
* WebUI: added validation on profiles scheduler fields (ID: 1862)
* WebUI: removed unnecessary warning message (ID: 1910)
* WebUI: replaced Firewall Helpers page with conntrack helper configuration for each firewall zone (ID: 1944)
* WebUI: renamed mobile service mode "M1+NB only" to "Auto" for TRB255 devices (ID: 1945)
* WebUI: increased dynamic lists maximum amount of values to 50 (ID: 1957)
* WebUI: added NHRP dynamic route status page (ID: 1987)
* WebUI: added ability to save email account without entering email username and password (ID: 1997)
* WebUI: disable Wireless device & interfaces configuration when device is in 'pending' state (ID: 2071)
* WebUI: added serial 1000000 bps baud rate option (ID: 2075)
* WebUI: removed unused option "Expiration time" in HotSpot page (ID: 2118)
* WebUI: unified device access password validations (ID: 2128)
* WebUI: fixed occasions when error messages overlap buttons (ID: 2211)
* WebUI: expanded DDNS validation for domain input to accept emails (ID: 2226)
* WebUI: added missing MTU parameter for MTU value retrieving (ID: 1369)
* WebUI: added server push DNS option and timeout option (ID: 1603)
* WebUI: removed Network->Firewall->Helpers page, but added conntrack helper configuration for each firewall zone (ID: 1944)
* WebUI: updated Wireless transmit power percentage calculation (ID: 2256)
* Fix:
* OpenVPN: updated to 2.5.0 version (ID: 2354)
* Tcpdump: patch CVE-2020-8037 (ID: 2248)
* OpenSSL: updated to 1.1.1i version (ID: 2356)
* uci: updated to 2020-10-06 version (ID: 2357)
* samba36: fixed CVE-2019-3824 and CVE-2019-3880 vulnerabilities (ID: 2358)
* LED: fixed SIM LED blinking when mobile interface down on RUTXR1 (ID: 2272)
* Modbus TCP slave: fixed illegal instruction when gps is off (ID: 2264)
* Modbus TCP slave: fixed mobile data not working after reboot (ID: 2259)
* Mobile: fixed MBNCFG list handler fot EC25 module (ID: 1589)
* Mobile: fixed sms limit checking when message will exceed the set SMS limit (ID: 1671)
* Mobile: changed mobile interface subnet to /32 (ID: 1697)
* Mobile: fixed signal strength event reporting for RUTX12 device (ID: 1827)
* Mobile: fixed modem sim card checking (ID: 2010)
* Mobile: fixed device connectivity to internet issue in passthrough mode for TRB14X family devices (ID: 1962)
* Mobile: fixed multi sms handling on SMS limit (ID: 2102)
* Mobile: fixed single sim sending as last SMS on limit (ID: 2102)
* Mobile: fixed modem response parsing to AT cmd's for TRB2 devices (ID: 2237)
* Mobile: fixed gcont update after plugin external modem (ID: 2313)
* Mobile: fixed default simcount value to external modem (ID: 2313)
* Call Utilities: fixed multiple SMS sent per received call (ID: 1956)
* Call utilities: fixed modem id handling for incoming CLIP unsolicited events for rutOS devices (ID: 2290)
* SMS Utilities: fixed SMS storage limit check on device reboot (ID: 1984)
* SMS Utilities: fixed "IP unblock" rule (ID: 2314)
* Wireless: fixed SSID validation (ID: 1916)
* Hostapd: fixed management frame rssi attribute inclusion after openwrt update for rutOS devices (ID: 2260)
* NetSNMP: removed unnecessary pciutils dependency which decreases used flash space (ID: 2271)
* I/O: fixed saving state after revert back to original state (ID: 1953)
* I/O: fixed enabled value when migrating from old configuration type (ID: 2384)
* Package Manager: optimised script for downloading packages after firmware upgrade (ID: 1993)
* Package Manager: fixed wireguard package (ID: 1719)
* OpenVPN: fixed router availability through USB when TAP is on for TRB1 family devices (ID: 1710)
* IPsec: fixed connection problems after reboot (ID: 923)
* IPsec: added firewall exception for packets originating from device (ID: 2096)
* L2TPv3: fixed bridged interface configuration (ID: 1819)
* PPTP: removed ifname option so multiple instances can be created (ID: 1603)
* BGP: changed init START from 60 to 95 (ID: 1628)
* Serial: fixed serial over ip bidirect mode issues (ID: 1378)
* SNMP: change mSignal, mTemperature and numSatellities datatypes to correspond to devices' MIB files (ID: 1975)
* SNMP: remove trailing newlines in returned strings (ID: 1975)
* Hotspot: Fixed keeping Walled Garden address list after firmware upgrade. (ID: 2090)
* Events reporting: fixed waiting to send email before rebooting (ID: 1911)
* Events reporting: fixed using default modem if no modem was found in config (ID: 2270)
* MQTT MODBUS Gateway: fixed gateway not working when topics have special characters (ID: 1805)
* MQTT Publisher: swapped pin3 and pin4 values. (ID: 2009)
* MODBUS Serial Master: fix memory leak (ID: 2061)
* MODBUS TCP Master: fix MODBUS write alarm action regression (ID: 2174)
* VRRPD: fixed virtual_mac option parsing (ID: 2142)
* Troubleshoot: fixed troubleshoot generation when sshfs is running (ID: 1900)
* Static routes: Fix static routes apply on mobile interfaces (ID: 2182)