forked from AT0myks/reolink-fw-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirmwares_archives_support.json
2796 lines (2796 loc) · 137 KB
/
firmwares_archives_support.json
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
[
{
"model": "RLC-520",
"version": "20121112",
"hw_ver": "IPC_515B16M5M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect.",
"Optimized network transmission.",
"Solved the problem that the DHCP hostname is eth0 on the router.",
"Solved the problem that there is no email interval in the email setting on the web.",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachments.",
"Solved other known bugs."
],
"archive_url": "https://web.archive.org/web/20210725210604/https://support.reolink.com/hc/en-us/articles/900004067066-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-515B16M5M-",
"sha256_pak": "eef1317f79126b69d67d05f8630e90f45c9e9a3be8c4aa4cdbe7b40c7409e0b2",
"source": "archives_v2"
},
{
"model": "RLC-420-5MP",
"version": "20121101",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect",
"Optimized network transmission protocol to improve network security",
"Solved the problem that the DHCP hostname is eth0 on the router",
"Solved the problem that there is no email interval in the email setting on the web",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803044124/https://support.reolink.com/hc/en-us/articles/900004823943-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "bda696c9cf38c96ee709042772eeafa43ea488d13e8f19ee79d73da4b825783b",
"source": "archives_v2"
},
{
"model": "D500",
"version": "21012815",
"hw_ver": "IPC_515B8M5M",
"display_time": "2021-01-28",
"changelog": [
"Optimize the effect of the day and night switch.",
"Optimize network transmission.",
"Optimize the alert caused by the Day and Night switching.",
"When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"Fixed some known bugs."
],
"archive_url": "https://web.archive.org/web/20210616134733/https://support.reolink.com/hc/en-us/articles/900004952643-28-01-2021-Firmware-for-B400-D400-D420-B500-D500-B800-D800",
"sha256_pak": "88dd481e87d471d91d12a740afdcf0e1a2f26764c0c2c9b535661605c6798746",
"source": "archives_v2"
},
{
"model": "D500",
"version": "21012815",
"hw_ver": "IPC_515B8M5M",
"display_time": "2021-01-28",
"changelog": [
"Optimize the effect of the day and night switch.",
"Optimize network transmission.",
"Optimize the alert caused by the Day and Night switching.",
"When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"Fixed some known bugs."
],
"archive_url": "https://web.archive.org/web/20210616134733/https://support.reolink.com/hc/en-us/articles/900004952643-28-01-2021-Firmware-for-B400-D400-D420-B500-D500-B800-D800",
"sha256_pak": "2c95202efcf55af35e97bab10805189cf864b91514b13ee05c161b5dce188f3f",
"source": "archives_v2"
},
{
"model": "RLN16-410",
"version": "21031206",
"hw_ver": "H3MB18",
"display_time": "2021-03-21",
"changelog": [
"Optimized UI interaction",
"Optimized email test error codes and copywriting",
"Solved HDD SMART display error",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210801111909/https://support.reolink.com/hc/en-us/articles/900006218883-21st-Mar-2021-Firmware-for-Reolink-RLN8-410-H3MB18-or-N2MB02-and-RLN16-410-H3MB18-",
"sha256_pak": "fffe0694922eb5bbdd361f64b2e8ada1dbadb414c950526145ecc2d9641af0b1",
"source": "archives_v2"
},
{
"model": "RLC-410W",
"version": "354_19031112",
"hw_ver": "IPC_51316M",
"display_time": "2019-03-11",
"changelog": [
"Add the 30 FPS under the NTSC Standard.",
"Fix the bugs on the FTP for some servers.",
"Fix the bug on the WiFi connection.",
"Fix other bugs."
],
"archive_url": "https://web.archive.org/web/20190524055802/https://support.reolink.com/hc/en-us/articles/360008850853-03-11-2019-Firmware-for-Reolink-IP-Cameras-IPC-51316M-IPC-51516M-",
"sha256_pak": "c998ff9da4acc6f11627c9ed159cbfaee21fa4080ff07b21a687b992ec36a379",
"source": "archives_v2"
},
{
"model": "RLC-410W",
"version": "448_19061404",
"hw_ver": "IPC_51316M",
"display_time": "2019-06-14",
"changelog": [
"Fixed the issue where the WiFi can't reconnect after rebooting.",
"Fixed the issue where the sound becomes smaller after frequently switching the audio.",
"Add the smart home feature (Google Home).",
"Optimize the breathing effect.",
"Fixed the drop issue where RTSP previewing.",
"Fixed the IR-cut switching failure problem on part of cameras.",
"Add power LED control function to C1 Pro.",
"Add manually trigger and automatic voice alarm function to C1 Pro."
],
"archive_url": "https://web.archive.org/web/20210805171119/https://support.reolink.com/hc/en-us/articles/360025688034-06-14-2019-Firmware-for-Reolink-IP-Cameras-IPC-51316M-",
"sha256_pak": "6940c12324a11ff5b544f040b7e621a41b8dba0b8168cb34a5332544291fb346",
"source": "archives_v2"
},
{
"model": "RLN4-210W",
"version": "N180908",
"hw_ver": null,
"display_time": "2018-08-11",
"changelog": [],
"archive_url": "https://web.archive.org/web/20210724050558/https://support.reolink.com/hc/en-us/articles/360012551153-08-11-2018-Firmware-for-Reolink-NVRs",
"sha256_pak": "7d903f69116a4e64cb4b33ed2d6ea56c4820abe6ef5acad64bcbe62014ddab8e",
"source": "archives_v2"
},
{
"model": "RLC-511",
"version": "20121103",
"hw_ver": "IPC_51516M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect",
"Optimized network transmission protocol to improve network security",
"Solved the problem that the DHCP hostname is eth0 on the router",
"Solved the problem that there is no email interval in the email setting on the web",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20201218101824/https://support.reolink.com/hc/en-us/articles/900004823943-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "4119f53856c197320b0a39880d48a5782fba579f606321f43435219d3aa51ffb",
"source": "archives_v2"
},
{
"model": "RLC-422/RLC-422-5MP",
"version": "1441_19032109",
"hw_ver": "IPC_3816M",
"display_time": "2019-03-21",
"changelog": [
"Fixed security flaws."
],
"archive_url": "https://web.archive.org/web/20210805103139/https://support.reolink.com/hc/en-us/articles/360021715373-03-21-2019-Firmware-for-Reolink-IP-Cameras-IPC-3816M-",
"sha256_pak": "5c60766fd465bc5f3aacd0b5a0b3a8cd8713d975b96274ffc7232b0c1eaf645a",
"source": "archives_v2"
},
{
"model": "B500",
"version": "21012814",
"hw_ver": "IPC_5158M5M",
"display_time": "2021-01-28",
"changelog": [
"Optimize the effect of the day and night switch.",
"Optimize network transmission.",
"Optimize the alert caused by the Day and Night switching.",
"When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"Fixed some known bugs."
],
"archive_url": "https://web.archive.org/web/20210616134733/https://support.reolink.com/hc/en-us/articles/900004952643-28-01-2021-Firmware-for-B400-D400-D420-B500-D500-B800-D800",
"sha256_pak": "dc9878f1a373a8d625ae5d906e27d7247057bf039910db95bf06630d800aa541",
"source": "archives_v2"
},
{
"model": "RLC-422",
"version": "65_20071400",
"hw_ver": "IPC_51516M",
"display_time": "2020-07-10",
"changelog": [
"Fixed the bug that FTP upload file failed.",
"Added the thumbnail function-Reolink APP will display the image of each motion event during playback.",
"Fixed other bugs."
],
"archive_url": "https://web.archive.org/web/20201128230059/https://support.reolink.com/hc/en-us/articles/900001840706-07-10-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "04dbf811786d9a427e5336f113efdd13866b104294c64208a57b41fbd7043d9d",
"source": "archives_v2"
},
{
"model": "RLC-511",
"version": "20121803",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect",
"Optimized network transmission protocol to improve network security",
"Solved the problem that the DHCP hostname is eth0 on the router",
"Solved the problem that there is no email interval in the email setting on the web",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803044124/https://support.reolink.com/hc/en-us/articles/900004823943-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "bc9d39ae4f251995e9c35587f8cead94de1bc8d4aad8f7bf96eba612ac1812c8",
"source": "archives_v2"
},
{
"model": "C2 Pro",
"version": "654_20040908",
"hw_ver": "IPC_51516M",
"display_time": "2020-04-09",
"changelog": [
"Extended the max password length of Email, FTP, and DDNS to 128 digits.",
"Updated the max cruise time to 300 seconds."
],
"archive_url": "https://web.archive.org/web/20210803033747/https://support.reolink.com/hc/en-us/articles/900000854106-04-09-2020-Firmware-for-Reolink-Auto-focus-IP-Cameras-IPC-51516M-",
"sha256_pak": "03fb41ea013233b0f47fba7c0acdd04bff13517acc4b419b839ed0cc627d9a34",
"source": "archives_v2"
},
{
"model": "RLC-420",
"version": "1441_19032100",
"hw_ver": "IPC_3816M",
"display_time": "2019-03-21",
"changelog": [
"Fixed security flaws."
],
"archive_url": "https://web.archive.org/web/20210805103139/https://support.reolink.com/hc/en-us/articles/360021715373-03-21-2019-Firmware-for-Reolink-IP-Cameras-IPC-3816M-",
"sha256_pak": "0388e8f090ecccb27423c3b6c6db31cd87f506e31c3e1dc3df913609ecec019e",
"source": "archives_v2"
},
{
"model": "RLN8-410",
"version": "N180811",
"hw_ver": null,
"display_time": "2018-08-11",
"changelog": [],
"archive_url": "https://web.archive.org/web/20210724050558/https://support.reolink.com/hc/en-us/articles/360012551153-08-11-2018-Firmware-for-Reolink-NVRs",
"sha256_pak": "1f98361c19ef911c6253a7869fc9fc6afa357a2a902897e963f67258d809fedc",
"source": "archives_v2"
},
{
"model": "RLC-420-5MP",
"version": "354_19031101",
"hw_ver": "IPC_51516M",
"display_time": "2019-03-11",
"changelog": [
"Add the 30 FPS under the NTSC Standard.",
"Fix the bugs on the FTP for some servers.",
"Fix the bug on the WiFi connection.",
"Fix other bugs."
],
"archive_url": "https://web.archive.org/web/20190524055802/https://support.reolink.com/hc/en-us/articles/360008850853-03-11-2019-Firmware-for-Reolink-IP-Cameras-IPC-51316M-IPC-51516M-",
"sha256_pak": "e28865fe004e0c682210875477fc1f12cfe062422cd9fb74ffacc273f084c219",
"source": "archives_v2"
},
{
"model": "RLN8-410",
"version": "0823",
"hw_ver": "RLN8-410",
"display_time": "2019-08-23",
"changelog": [
"Add the function of creating subdirectories by date in FTP.",
"Add the function that the DDNS server address can be set.",
"Add the function that IPC can control the IR LED when connecting to the NVR.",
"Move the language settings page forward in the process of Wizard Setup.",
"Remove configuration import function.",
"The username has to consist of 3~31 numbers, letters, and underscores.",
"Add a 7+1 polling mechanism in the LiveView interface.",
"Add Russian and German language options.",
"The password of the admin supports input spaces.",
"Fixed the download timeout failure in web Client.",
"Improved the clip function in web Client.",
"Optimize the NVR interface display."
],
"archive_url": "https://web.archive.org/web/20210726185430/https://support.reolink.com/hc/en-us/articles/360034504874-08-23-2019-Firmware-for-Reolink-RLN8-410-and-RLN16-410-Only-for-NVR-with-UID-95270000XXXXXXXX-",
"sha256_pak": "880f8e3347abf4046a4b2e0188201ce9eb15c49459742695c865d859390fc7c0",
"source": "archives_v2"
},
{
"model": "RLN16-410",
"version": "N180811",
"hw_ver": null,
"display_time": "2018-08-11",
"changelog": [],
"archive_url": "https://web.archive.org/web/20210724050558/https://support.reolink.com/hc/en-us/articles/360012551153-08-11-2018-Firmware-for-Reolink-NVRs",
"sha256_pak": "5f80104189069b4464cd08035a4b9e51dd26e39cfb7758c3d5d0ce7e2d4fbfad",
"source": "archives_v2"
},
{
"model": "RLC-511",
"version": "65_20071003",
"hw_ver": "IPC_51516M",
"display_time": "2020-07-10",
"changelog": [
"Fixed the bug that FTP upload file failed.",
"Added the thumbnail function-Reolink APP will display the image of each motion event during playback.",
"Fixed other bugs."
],
"archive_url": "https://web.archive.org/web/20201128230059/https://support.reolink.com/hc/en-us/articles/900001840706-07-10-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "0594b023fb79cc5105d5cb4c7b6d0f2daaebab54608d9ee7f3c693ba7a2671f4",
"source": "archives_v2"
},
{
"model": "RLC-422",
"version": "477_19071502",
"hw_ver": "IPC_51516M",
"display_time": "2019-07-15",
"changelog": [
"Add the smart home feature (Google Home).",
"Fixed AF learning table compatibility issues.",
"Improved P2P connectivity.",
"Fixed the IR-cut switching failure problem on part of cameras.",
"Modified the AF library and optimize the AF focus.",
"Optimize noise problems of PTZ audio.",
"Add power LED control function to C2 Pro.",
"Add manually trigger and automatic voice alarm function to C2 Pro.",
"Fixed the issue where the WiFi can't reconnect after rebooting."
],
"archive_url": "https://web.archive.org/web/20190905192627/https://support.reolink.com/hc/en-us/articles/360032028313-07-15-2019-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "2cdec668b5bee1d63268b1d71a169f84de90c8a35dc64b921747ae2086337892",
"source": "archives_v2"
},
{
"model": "RLN16-410",
"version": "081248",
"hw_ver": "H3MB18",
"display_time": "2020-08-12",
"changelog": [
"Adopt new UI and new interaction methods",
"Support upgrading automatically online function (via Reolink APP)",
"Optimize system performance"
],
"archive_url": "https://web.archive.org/web/20201011161357/https://support.reolink.com/hc/en-us/articles/900002407106-08-12-2020-Firmware-for-Reolink-RLN8-410-and-RLN16-410-H3MB18-",
"sha256_pak": "48f9918bdd78db0a371ef81f9396c5af357a84f4801aa11116d197b057cb08fb",
"source": "archives_v2"
},
{
"model": "D500",
"version": "20120915",
"hw_ver": "IPC_5158M5M",
"display_time": "2020-12-09",
"changelog": [
"Optimize the effect of the day and night switch.",
"Optimize network transmission.",
"Optimize the alert caused by the Day and Night switching.",
"When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"Fixed some known bugs."
],
"archive_url": "https://web.archive.org/web/20210126120322/https://support.reolink.com/hc/en-us/articles/900004952643-12-09-2020-Firmware-for-B400-D400-B500-D500-B800-D800",
"sha256_pak": "404ec727a712cf6c2842bde136b3911bc16256af1b869d01c3d63a00cdde46ba",
"source": "archives_v2"
},
{
"model": "RLC-423S/RLC-423S-5MP",
"version": "1441_19032112",
"hw_ver": "IPC_3816M",
"display_time": "2019-03-21",
"changelog": [
"Fixed security flaws."
],
"archive_url": "https://web.archive.org/web/20210805103139/https://support.reolink.com/hc/en-us/articles/360021715373-03-21-2019-Firmware-for-Reolink-IP-Cameras-IPC-3816M-",
"sha256_pak": "b8e608a51d5f1fbad1752c08a0dddb3ab8408b2eb70b6b12c9f41d6eaad0b697",
"source": "archives_v2"
},
{
"model": "RLC-520",
"version": "65_20071012",
"hw_ver": "IPC_51516M",
"display_time": "2020-07-10",
"changelog": [
"Fixed the bug that FTP upload file failed.",
"Added the thumbnail function-Reolink APP will display the image of each motion event during playback.",
"Fixed other bugs."
],
"archive_url": "https://web.archive.org/web/20201128230059/https://support.reolink.com/hc/en-us/articles/900001840706-07-10-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "46b606aa74a26668333c190bf6a44b035ed491cac6f65ea8dce8f808c6fd151c",
"source": "archives_v2"
},
{
"model": "RLC-520",
"version": "20103112",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-10-31",
"changelog": [
"Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"Added the SD card 7*24 hours recording function",
"Optimized network transmission protocol to improve network security",
"Optimized P2P connection",
"Solved the problem that FTP recording doesn't have pre-recorded function",
"Solved the problem of email test with an empty password and some mail sending bugs",
"Solved the problem that FTP test failed and unable to upload pictures under Linux system",
"Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when the it's connected to WiFi",
"Solved the false alert issue which is caused when using PTZ function.",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803040404/https://support.reolink.com/hc/en-us/articles/900004398063-10-31-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "83a8a4da2ec1468e2a2d992f869cc416883e1c6d2d8fd650bc1c5bc16173660e",
"source": "archives_v2"
},
{
"model": "RLC-423",
"version": "489_19072600",
"hw_ver": "IPC_51516M",
"display_time": "2019-07-15",
"changelog": [
"Add the smart home feature (Google Home).",
"Fixed AF learning table compatibility issues.",
"Improved P2P connectivity.",
"Fixed the IR-cut switching failure problem on part of cameras.",
"Modified the AF library and optimize the AF focus.",
"Optimize noise problems of PTZ audio.",
"Add power LED control function to C2 Pro.",
"Add manually trigger and automatic voice alarm function to C2 Pro.",
"Fixed the issue where the WiFi can't reconnect after rebooting."
],
"archive_url": "https://web.archive.org/web/20190905192627/https://support.reolink.com/hc/en-us/articles/360032028313-07-15-2019-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "7b267306209ac4375ec6a33fdd49adf2f36c49a4f947237e02ac4029e46c0be2",
"source": "archives_v2"
},
{
"model": "E1 Zoom",
"version": "65_20071008",
"hw_ver": "IPC_515SD6",
"display_time": "2020-07-10",
"changelog": [
"Added multiple languages for the voice prompt when scanning the QR code to set up the camera.",
"Added the thumbnail function-Reolink APP will display the image of each motion event during playback.",
"Fixed the bug when connecting the camera in different Vlan via Reolink app/client.",
"Fixed the bug that FTP upload file failed."
],
"archive_url": "https://web.archive.org/web/20210805182235/https://support.reolink.com/hc/en-us/articles/900001850003-07-10-2020-Firmware-for-E1-Zoom-IPC-515SD6-",
"sha256_pak": "4a8d01fa0af021eadd42ae227b9d11928cc4a44c6c857281235d7b5d8de48f27",
"source": "archives_v2"
},
{
"model": "D400",
"version": "21012801",
"hw_ver": "IPC_5128M",
"display_time": "2021-01-28",
"changelog": [
"Optimize the effect of the day and night switch.",
"Optimize network transmission.",
"Optimize the alert caused by the Day and Night switching.",
"When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"Fixed the bug that IPC failed to reconnect to the NVR after powering off when setting certain time zones.",
"Fixed some known bugs."
],
"archive_url": "https://web.archive.org/web/20210616134733/https://support.reolink.com/hc/en-us/articles/900004952643-28-01-2021-Firmware-for-B400-D400-D420-B500-D500-B800-D800",
"sha256_pak": "d2d4095ebe08c6cb2127e4f2cbbaf94484be2a265800bb1accafd60b5d9c42d6",
"source": "archives_v2"
},
{
"model": "RLC-423",
"version": "20122309",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-12-23",
"changelog": [
"Added the new web terminal that supports the HTML5 player, which mainly solved the Flash expiring problem.",
"Added the SD card 7*24 hours recording function.",
"Optimized network transmission.",
"Optimized P2P connection.",
"Solved the problem that FTP recording doesn't have a pre-recorded function.",
"Solved the problem of an email test with an empty password and some mail sending bugs.",
"Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when it's connected to WiFi.",
"Solved the problem that the DHCP hostname is eth0 on the router.",
"Solved the problem that there is no email interval in the email setting on the web.",
"Solved the problem of copywriting in the received email when only pictures are configured as an email attachment.",
"Solved other known bugs."
],
"archive_url": "https://web.archive.org/web/20210616145748/https://support.reolink.com/hc/en-us/articles/900004031146-12-23-2020-Firmware-for-RLC-423-IPC-51516M5M-",
"sha256_pak": "6cedf7bb418d0195100018bc613bad6845269add789b8c4f45848dd6027b19fa",
"source": "archives_v2"
},
{
"model": "RLC-422W",
"version": "20121106",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect",
"Optimized network transmission protocol to improve network security",
"Solved the problem that the DHCP hostname is eth0 on the router",
"Solved the problem that there is no email interval in the email setting on the web",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803044124/https://support.reolink.com/hc/en-us/articles/900004823943-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "cf9d33025d8c2832df2d023e1e9b2180b7f0afdf4d60a0ef681f7af9eaa0afce",
"source": "archives_v2"
},
{
"model": "RLC-422W",
"version": "654_20040907",
"hw_ver": "IPC_51516M",
"display_time": "2020-04-09",
"changelog": [
"Extended the max password length of Email, FTP, and DDNS to 128 digits.",
"Updated the max cruise time to 300 seconds."
],
"archive_url": "https://web.archive.org/web/20210803033747/https://support.reolink.com/hc/en-us/articles/900000854106-04-09-2020-Firmware-for-Reolink-Auto-focus-IP-Cameras-IPC-51516M-",
"sha256_pak": "b4723711953600d18980054c69a2684bf3d8b5b746851e1821df806947ef100a",
"source": "archives_v2"
},
{
"model": "RLC-520",
"version": "20103103",
"hw_ver": "IPC_51516M",
"display_time": "2020-10-31",
"changelog": [
"Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"Added the SD card 7*24 hours recording function",
"Optimized network transmission protocol to improve network security",
"Optimized P2P connection",
"Solved the problem that FTP recording doesn't have pre-recorded function",
"Solved the problem of email test with an empty password and some mail sending bugs",
"Solved the problem that FTP test failed and unable to upload pictures under Linux system",
"Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when the it's connected to WiFi",
"Solved the problem of MD alerts when switching between day and night modes and also the false caused when using PTZ function.",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20201117103744/https://support.reolink.com/hc/en-us/articles/900004398063-10-31-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M-?utm_source=facebook&utm_medium=fbpost&utm_campaign=post",
"sha256_pak": "83a8a4da2ec1468e2a2d992f869cc416883e1c6d2d8fd650bc1c5bc16173660e",
"source": "archives_v2"
},
{
"model": "RLC-511W",
"version": "477_19071501",
"hw_ver": "IPC_51516M",
"display_time": "2019-07-15",
"changelog": [
"Add the smart home feature (Google Home).",
"Fixed AF learning table compatibility issues.",
"Improved P2P connectivity.",
"Fixed the IR-cut switching failure problem on part of cameras.",
"Modified the AF library and optimize the AF focus.",
"Optimize noise problems of PTZ audio.",
"Add power LED control function to C2 Pro.",
"Add manually trigger and automatic voice alarm function to C2 Pro.",
"Fixed the issue where the WiFi can't reconnect after rebooting."
],
"archive_url": "https://web.archive.org/web/20190905192627/https://support.reolink.com/hc/en-us/articles/360032028313-07-15-2019-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "39b3c40739c80720530a09eba1c7556e7514655ac4cba2c57cf67576370f0a40",
"source": "archives_v2"
},
{
"model": "RLC-422",
"version": "20103105",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-10-31",
"changelog": [
"Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"Added the SD card 7*24 hours recording function",
"Optimized network transmission protocol to improve network security",
"Optimized P2P connection",
"Solved the problem that FTP recording doesn't have pre-recorded function",
"Solved the problem of email test with an empty password and some mail sending bugs",
"Solved the problem that FTP test failed and unable to upload pictures under Linux system",
"Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when the it's connected to WiFi",
"Solved the false alert issue which is caused when using PTZ function.",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803040404/https://support.reolink.com/hc/en-us/articles/900004398063-10-31-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "4719399a6e50d9dcc7a306ec503af87593d68ff1479409c5973aaf0ccfef2f69",
"source": "archives_v2"
},
{
"model": "RLC-411WS/RLC-411WS-5MP",
"version": "1441_19032108",
"hw_ver": "IPC_3816M",
"display_time": "2019-03-21",
"changelog": [
"Fixed security flaws."
],
"archive_url": "https://web.archive.org/web/20210805103139/https://support.reolink.com/hc/en-us/articles/360021715373-03-21-2019-Firmware-for-Reolink-IP-Cameras-IPC-3816M-",
"sha256_pak": "e1c7759957dcf4cdb0bfea76a688d1ed75352c4bb479ba4c05372e4143f45d1f",
"source": "archives_v2"
},
{
"model": "RLC-410-5MP",
"version": "354_19031100",
"hw_ver": "IPC_51516M",
"display_time": "2019-03-11",
"changelog": [
"Add the 30 FPS under the NTSC Standard.",
"Fix the bugs on the FTP for some servers.",
"Fix the bug on the WiFi connection.",
"Fix other bugs."
],
"archive_url": "https://web.archive.org/web/20190524055802/https://support.reolink.com/hc/en-us/articles/360008850853-03-11-2019-Firmware-for-Reolink-IP-Cameras-IPC-51316M-IPC-51516M-",
"sha256_pak": "bb360e1a33376e636af65bb458728325fa8a8ee70832d93a649d9c10696a5e0c",
"source": "archives_v2"
},
{
"model": "D500",
"version": "20120915",
"hw_ver": "IPC_515B8M5M",
"display_time": "2020-12-09",
"changelog": [
"Optimize the effect of the day and night switch.",
"Optimize network transmission.",
"Optimize the alert caused by the Day and Night switching.",
"When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"Fixed some known bugs."
],
"archive_url": "https://web.archive.org/web/20210126120322/https://support.reolink.com/hc/en-us/articles/900004952643-12-09-2020-Firmware-for-B400-D400-B500-D500-B800-D800",
"sha256_pak": "88dd481e87d471d91d12a740afdcf0e1a2f26764c0c2c9b535661605c6798746",
"source": "archives_v2"
},
{
"model": "RLN8-410",
"version": "081247",
"hw_ver": "H3MB18",
"display_time": "2020-08-12",
"changelog": [
"Adopt new UI and new interaction methods",
"Support upgrading automatically online function (via Reolink APP)",
"Optimize system performance"
],
"archive_url": "https://web.archive.org/web/20201011161357/https://support.reolink.com/hc/en-us/articles/900002407106-08-12-2020-Firmware-for-Reolink-RLN8-410-and-RLN16-410-H3MB18-",
"sha256_pak": "73dcc6aa2e613a1add09caf09a6146d06508562f3839693a343fb99b9af8eaeb",
"source": "archives_v2"
},
{
"model": "RLC-422W",
"version": "477_19071503",
"hw_ver": "IPC_51516M",
"display_time": "2019-07-15",
"changelog": [
"Add the smart home feature (Google Home).",
"Fixed AF learning table compatibility issues.",
"Improved P2P connectivity.",
"Fixed the IR-cut switching failure problem on part of cameras.",
"Modified the AF library and optimize the AF focus.",
"Optimize noise problems of PTZ audio.",
"Add power LED control function to C2 Pro.",
"Add manually trigger and automatic voice alarm function to C2 Pro.",
"Fixed the issue where the WiFi can't reconnect after rebooting."
],
"archive_url": "https://web.archive.org/web/20190905192627/https://support.reolink.com/hc/en-us/articles/360032028313-07-15-2019-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "e6a6720def01f625e8303ac8819026fd7a2fddb3803b07d36655e6d8568e1a28",
"source": "archives_v2"
},
{
"model": "RLC-410W",
"version": "20111902",
"hw_ver": "IPC_51316M",
"display_time": "2020-11-19",
"changelog": [
"Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"Added the SD card 7*24 hours recording function",
"Optimized network transmission protocol to improve network security",
"Optimized P2P connection",
"Solved the problem that FTP recording doesn't have pre-recorded function",
"Solved the problem of email test with an empty password and some mail sending bugs",
"Solved the problem that FTP test failed and unable to upload pictures under Linux system",
"Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when the it's connected to WiFi",
"Solved the false alert issue which is caused when using PTZ function.",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20201128103126/https://support.reolink.com/hc/en-us/articles/900004648143-11-19-2020-Firmware-for-Reolink-IP-Cameras-IPC-51316M-",
"sha256_pak": "fd4a778a8cf1589b9f08e13ea7e113407d18e68b86f724814b7fdb079f458794",
"source": "archives_v2"
},
{
"model": "RLC-422W",
"version": "65_20071401",
"hw_ver": "IPC_51516M",
"display_time": "2020-07-10",
"changelog": [
"Fixed the bug that FTP upload file failed.",
"Added the thumbnail function-Reolink APP will display the image of each motion event during playback.",
"Fixed other bugs."
],
"archive_url": "https://web.archive.org/web/20201128230059/https://support.reolink.com/hc/en-us/articles/900001840706-07-10-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "ba8978acd209e13f1fdaa972e7233dde6207b406936ac48ada08a1a8006555d0",
"source": "archives_v2"
},
{
"model": "E1 ZOOM",
"version": "21040708",
"hw_ver": "IPC_515SD6",
"display_time": "2021-04-07",
"changelog": [
"Solved the problem that the camera switches back and forth between day and night mode in some specific scenarios.",
"Solved the problem that the camera cannot connect to WIFI with some specific channels.",
"Fixed other bugs."
],
"archive_url": "https://web.archive.org/web/20210728224903/https://support.reolink.com/hc/en-us/articles/900005622046-7th-April-2021-Firmware-for-E1-Zoom-IPC-515SD6-and-IPC-515BSD6-",
"sha256_pak": "2aa14a20a313dc151798eab8150946c536f7b0a4ed914af162d4622d2ab5e988",
"source": "archives_v2"
},
{
"model": "RLC-422",
"version": "20121105",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect",
"Optimized network transmission protocol to improve network security",
"Solved the problem that the DHCP hostname is eth0 on the router",
"Solved the problem that there is no email interval in the email setting on the web",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803044124/https://support.reolink.com/hc/en-us/articles/900004823943-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "f98c8f5bd16c7d1c95df940c03e4ca6801f52779bfc7c32b526db4a3e13e972d",
"source": "archives_v2"
},
{
"model": "RLC-522",
"version": "20103111",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-10-31",
"changelog": [
"Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"Added the SD card 7*24 hours recording function",
"Optimized network transmission protocol to improve network security",
"Optimized P2P connection",
"Solved the problem that FTP recording doesn't have pre-recorded function",
"Solved the problem of email test with an empty password and some mail sending bugs",
"Solved the problem that FTP test failed and unable to upload pictures under Linux system",
"Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when the it's connected to WiFi",
"Solved the false alert issue which is caused when using PTZ function.",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803040404/https://support.reolink.com/hc/en-us/articles/900004398063-10-31-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "b29236b9bedfd5054a08248d457246ee387e7bdc831eb0f9852e51dc59433e78",
"source": "archives_v2"
},
{
"model": "RLN16-410",
"version": "0823",
"hw_ver": "RLN16-410",
"display_time": "2019-08-23",
"changelog": [
"Add the function of creating subdirectories by date in FTP.",
"Add the function that the DDNS server address can be set.",
"Add the function that IPC can control the IR LED when connecting to the NVR.",
"Move the language settings page forward in the process of Wizard Setup.",
"Remove configuration import function.",
"The username has to consist of 3~31 numbers, letters, and underscores.",
"Add a 7+1 polling mechanism in the LiveView interface.",
"Add Russian and German language options.",
"The password of the admin supports input spaces.",
"Fixed the download timeout failure in web Client.",
"Improved the clip function in web Client.",
"Optimize the NVR interface display."
],
"archive_url": "https://web.archive.org/web/20210726185430/https://support.reolink.com/hc/en-us/articles/360034504874-08-23-2019-Firmware-for-Reolink-RLN8-410-and-RLN16-410-Only-for-NVR-with-UID-95270000XXXXXXXX-",
"sha256_pak": "94486c2a9dae4a3b831971b79f5c9a9df93dbbe1a9b7637c71fc8522cd796d38",
"source": "archives_v2"
},
{
"model": "C1 Pro",
"version": "1441_19032105",
"hw_ver": "IPC_3816MPT",
"display_time": "2019-03-21",
"changelog": [
"Fixed security flaws."
],
"archive_url": "https://web.archive.org/web/20210805103139/https://support.reolink.com/hc/en-us/articles/360021715373-03-21-2019-Firmware-for-Reolink-IP-Cameras-IPC-3816M-",
"sha256_pak": "de1196259007cfb0196b1534b2ee93eca9f7eeb633c907c2913fc989a0c4416e",
"source": "archives_v2"
},
{
"model": "RLC-511W",
"version": "20121804",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect",
"Optimized network transmission protocol to improve network security",
"Solved the problem that the DHCP hostname is eth0 on the router",
"Solved the problem that there is no email interval in the email setting on the web",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803044124/https://support.reolink.com/hc/en-us/articles/900004823943-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "6df6769349d0cffc082e4f23d9f57f79209bbadc81eeda799580e344fd5fd433",
"source": "archives_v2"
},
{
"model": "RLN4-410",
"version": "20092800",
"hw_ver": "H3MB17",
"display_time": "2020-09-28",
"changelog": [
"Improved the overall performance of the network and enhance communication reliability",
"Solved the problem that P2P connection is lost occasionally during long time connection, and the NVR needs to be restarted to restore the connection",
"Optimized system performance and fixed some other bugs"
],
"archive_url": "https://web.archive.org/web/20210805123857/https://support.reolink.com/hc/en-us/articles/900002938243-09-28-2020-Firmware-for-Reolink-RLN8-410-E-RLN4-410-and-RLN16-410",
"sha256_pak": "9bc200e3334b2a50f842408532642df2856a63dbab209aef2c1d7135847058d8",
"source": "archives_v2"
},
{
"model": "RLC-410",
"version": "20121100",
"hw_ver": "IPC_51316M",
"display_time": "2020-12-11",
"changelog": [
"Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"Added the SD card 7*24 hours recording function",
"Optimized network transmission protocol to improve network security",
"Optimized P2P connection",
"Solved the problem that FTP recording doesn't have pre-recorded function",
"Solved the problem of email test with an empty password and some mail sending bugs",
"Solved the problem that FTP test failed and unable to upload pictures under Linux system",
"Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when it's connected to WiFi",
"Solved the false alert issue which is caused when using PTZ function.",
"Optimized day and night switching effect",
"Solved the problem that the DHCP hostname is eth0 on the router",
"Solved the problem that there is no email interval in the email setting on the web",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210805103719/https://support.reolink.com/hc/en-us/articles/900004648143-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-51316M-",
"sha256_pak": "cef97b10c603b0d5c96136d3d3dcebb03de05e687f1fd77071eea182df6f2307",
"source": "archives_v2"
},
{
"model": "RLC-410W-5MP",
"version": "354_19031102",
"hw_ver": "IPC_51516M",
"display_time": "2019-03-11",
"changelog": [
"Add the 30 FPS under the NTSC Standard.",
"Fix the bugs on the FTP for some servers.",
"Fix the bug on the WiFi connection.",
"Fix other bugs."
],
"archive_url": "https://web.archive.org/web/20190524055802/https://support.reolink.com/hc/en-us/articles/360008850853-03-11-2019-Firmware-for-Reolink-IP-Cameras-IPC-51316M-IPC-51516M-",
"sha256_pak": "d782acfd586b7849c33eba751bfebe71560555617dd0f244da61ac3e9f1e3539",
"source": "archives_v2"
},
{
"model": "E1 Pro",
"version": "42_20062904",
"hw_ver": "IPC_513SD5",
"display_time": "2020-06-29",
"changelog": [
"Added multiple languages for the voice prompt when scanning the QR code to set up the camera.",
"Added the thumbnail function-Reolink APP will display the image of each motion event during playback.",
"Fixed the bug when connecting the camera in different Vlan via Reolink app/client."
],
"archive_url": "https://web.archive.org/web/20200926093027/https://support.reolink.com/hc/en-us/articles/900001664643-06-29-2020-Firmware-for-E1-IPC-517SD5-and-E1-Pro-513SD5-",
"sha256_pak": "0e0118a003bd9f3f2b9816c3a7032a6d5fce61ac31af2c103d08d284224e2105",
"source": "archives_v2"
},
{
"model": "D400",
"version": "16_20041561",
"hw_ver": "IPC_5128M/IPC_5174M",
"display_time": "2020-04-15",
"changelog": [
"Fixed the freezing issue under the complex environment of live view and playback.",
"Optimized system performance."
],
"archive_url": "https://web.archive.org/web/20210805173433/https://support.reolink.com/hc/en-us/articles/900000662366-04-15-2020-Firmware-for-B400-D400-D420-IPC-5128M-IPC-5174M-",
"sha256_pak": "ed39b44380204973172512ee8622a6b45b435d7bc33e6fb0752a7572ab8534d8",
"source": "archives_v2"
},
{
"model": "D400",
"version": "16_20041561",
"hw_ver": "IPC_5128M/IPC_5174M",
"display_time": "2020-04-15",
"changelog": [
"Fixed the freezing issue under the complex environment of live view and playback.",
"Optimized system performance."
],
"archive_url": "https://web.archive.org/web/20210805173433/https://support.reolink.com/hc/en-us/articles/900000662366-04-15-2020-Firmware-for-B400-D400-D420-IPC-5128M-IPC-5174M-",
"sha256_pak": "7131a3773ff0257553278f96f0943ce00835be9d6fd82f6ee28da0daf700d0c7",
"source": "archives_v2"
},
{
"model": "RLC-511W",
"version": "65_20071004",
"hw_ver": "IPC_51516M",
"display_time": "2020-07-10",
"changelog": [
"Fixed the bug that FTP upload file failed.",
"Added the thumbnail function-Reolink APP will display the image of each motion event during playback.",
"Fixed other bugs."
],
"archive_url": "https://web.archive.org/web/20201128230059/https://support.reolink.com/hc/en-us/articles/900001840706-07-10-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "48bc717d0ad32ab88f683bd61b765ffd6bd64ff5071ae0a2eac9fab2e07435e3",
"source": "archives_v2"
},
{
"model": "B500",
"version": "20120914",
"hw_ver": "IPC_5158M5M",
"display_time": "2020-12-09",
"changelog": [
"Optimize the effect of the day and night switch.",
"Optimize network transmission.",
"Optimize the alert caused by the Day and Night switching.",
"When obtaining the IP address by DHCP, the hostname will be changed to the device name (OSD name).",
"Fixed some known bugs."
],
"archive_url": "https://web.archive.org/web/20210126120322/https://support.reolink.com/hc/en-us/articles/900004952643-12-09-2020-Firmware-for-B400-D400-B500-D500-B800-D800",
"sha256_pak": "2bdc4d8d01f39241dfe8709bcdff18174420a9197ef2ea5ca7f8ebb678c6ad4d",
"source": "archives_v2"
},
{
"model": "RLN8-410",
"version": "042901",
"hw_ver": "RLN8-410-E",
"display_time": "2020-04-29",
"changelog": [
"Fixed the bug of the HDD showing 0GB or not formatted error.",
"Fixed the bug that the camera frame rate cannot be configured with 25 fps.",
"Added the self-verification mechanism under the new firmware upgrade process to avoid upgraded the wrong firmware version.",
"Fixed the freezing issue under the complex environment of live view and playback.",
"Optimized system performance and fixed some other bugs"
],
"archive_url": "https://web.archive.org/web/20210805123029/https://support.reolink.com/hc/en-us/articles/900000976886-04-29-2020-Firmware-for-Reolink-RLN8-410-RLN8-410-E-and-RLN4",
"sha256_pak": "6bc293f88d2918ed4df416aee8d1e4f64c3fcfb6fc31cc34de9fe7aa01c0c22d",
"source": "archives_v2"
},
{
"model": "RLC-511W",
"version": "20103104",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-10-31",
"changelog": [
"Added the new web terminal that supports HTML5 player, which mainly solved the Flash expiring problem.",
"Added the SD card 7*24 hours recording function",
"Optimized network transmission protocol to improve network security",
"Optimized P2P connection",
"Solved the problem that FTP recording doesn't have pre-recorded function",
"Solved the problem of email test with an empty password and some mail sending bugs",
"Solved the problem that FTP test failed and unable to upload pictures under Linux system",
"Solved the problem of two default routes, mainly to solve the problem that the camera cannot be connected to the VPN network when the it's connected to WiFi",
"Solved the false alert issue which is caused when using PTZ function.",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803040404/https://support.reolink.com/hc/en-us/articles/900004398063-10-31-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "9326e20d322b5f96161deaf315ae81f3821dac4541f914073fb76a4353ed4619",
"source": "archives_v2"
},
{
"model": "RLC-410W-5MP",
"version": "20121102",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect",
"Optimized network transmission protocol to improve network security",
"Solved the problem that the DHCP hostname is eth0 on the router",
"Solved the problem that there is no email interval in the email setting on the web",
"Solved the problem of copywriting in the received email when only pictures are configured as email attachment",
"Solved other known bugs"
],
"archive_url": "https://web.archive.org/web/20210803044124/https://support.reolink.com/hc/en-us/articles/900004823943-12-11-2020-Firmware-for-Reolink-IP-Cameras-IPC-51516M5M-",
"sha256_pak": "201bf2e54112b25b57eea21581fae5c440e8a00771055fe96b44536c1d3a62f1",
"source": "archives_v2"
},
{
"model": "RLC-511",
"version": "477_19071500",
"hw_ver": "IPC_51516M",
"display_time": "2019-07-15",
"changelog": [
"Add the smart home feature (Google Home).",
"Fixed AF learning table compatibility issues.",
"Improved P2P connectivity.",
"Fixed the IR-cut switching failure problem on part of cameras.",
"Modified the AF library and optimize the AF focus.",
"Optimize noise problems of PTZ audio.",
"Add power LED control function to C2 Pro.",
"Add manually trigger and automatic voice alarm function to C2 Pro.",
"Fixed the issue where the WiFi can't reconnect after rebooting."
],
"archive_url": "https://web.archive.org/web/20190905192627/https://support.reolink.com/hc/en-us/articles/360032028313-07-15-2019-Firmware-for-Reolink-IP-Cameras-IPC-51516M-",
"sha256_pak": "6166471fb2e906408b3399a768f5dd6b395df3b7c918730b25354cd6502ca2fa",
"source": "archives_v2"
},
{
"model": "RLN8-410-E",
"version": "20120701",
"hw_ver": "H3MB16",
"display_time": "2020-12-07",
"changelog": [
"Added the new web terminal that supports the HTML5 player, which mainly solved the Flash expiring problem.",
"Solved the problem that Reolink App failed to obtain the PTZ configuration on some IPC.",
"Fixed the wrong subject of the reminder email when the hard disk is full."
],
"archive_url": "https://web.archive.org/web/20210728201554/https://support.reolink.com/hc/en-us/articles/900003949986-12-07-2020-Firmware-for-Reolink-RLN4-RLN8-410-RLN8-410-E-and-RLN16-410-H3MB02-",
"sha256_pak": "c26671fdcac7b7b7f14de8caf16c882db888818279224b4456f717b3785aa288",
"source": "archives_v2"
},
{
"model": "RLC-522",
"version": "20121111",
"hw_ver": "IPC_51516M5M",
"display_time": "2020-12-11",
"changelog": [
"Optimized day and night switching effect",