forked from padavanonly/rt-n56u
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changes.eng.txt
1279 lines (1167 loc) · 62.1 KB
/
changes.eng.txt
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
ASUS RT-N11P/N14U/N56U/N65U/AC51U/AC54U/AC1200/AC1200HP custom firmware by Padavan
Project sources:
git clone https://bitbucket.org/padavan/rt-n56u.git
Mirror Git:
git clone https://github.com/andy-padavan/rt-n56u.git
Git HTTP frontend:
https://bitbucket.org/padavan/rt-n56u/commits/all
ATTENTION:
- After the first upgrade from official firmware, all settings will be erased. Do not load
settings (CFG file) from official firmware!!!
- After upgrade from any official ASUS firmware, WAN MAC address for RT-N14U/N11P is dynamically
changed (not permanent) in last octet. Please check MAC binding from your ISP.
WARNING:
These features are NO LONGER AVAILABLE:
- WPS/WSC (completely disabled due to the serious security hole).
- ASUS Download Master is no longer supported. It was replaced by Transmission.
NOTE:
After upgrade to 3.X.3.8-085 (and higher) from any previous builds, please:
- Clear browser cache to properly render WebUI pages.
- Sync OpenVPN client and server settings with new controls.
- Update region timezone (for Russia only).
- Remember that the manual NVRAM reset is not required.
After manual NVRAM reset:
- Both Wireless AP security is WPA2-Personal with pre-shared key 1234567890 by default.
- HTTP and Telnet/SSH login:passw is admin:admin by default.
LIST OF CHANGES
3.X.3.9-099:
----------------------------------------------------------
[RT-AC1200]
- Added support the MT7628 SoC.
- Initial release (please report any issues).
[Common changes]
- Updated busybox to 1.24.1+.
- Updated OpenSSL to 1.0.1r.
- Updated OpenVPN to 2.3.10.
- Updated OpenSSH to 7.1p2.
- Updated ipset to 6.27.
- Updated miniupnpd to 1.9.20160119.
- Updated usb-modeswitch to 2.3.0, updated usb-modeswitch-data up to 2016-01-12.
- Minidlna: fixed external subtitles on Samsung Series J.
- Scripts: fixed broken Entware-ng script in the -098 build.
- Linux kernel: fixed short UDP reads regression introduced in the -098 build.
- Linux kernel: updated USB unusual_devs quirks.
- Linux kernel: updated USB modem tables.
- Linux kernel: fixed SD card driver issue on MT7621/MT7628.
- Ethernet switch: added support MT762x/MT7530 per-VLAN untag control.
- Ethernet switch: use only broadcast storm rate limit for MT762x/MT7530.
- Ethernet switch: fixed isolation after change WAN bridge mode to disable.
- Control: improved skip pre-DMZ rules logic.
- Control: enabled LAN DHCP client by default for AP Mode.
- Wireless: increase CE SKU TxPower limits for 2.4GHz (up to 100mW).
- WebUI: accept ecdsa and ed25519 to 'authorized_keys' textarea.
- WebUI: add control of Cron daemon and Crontabs.
- WebUI: add support SD card and SATA control.
3.X.3.9-098:
----------------------------------------------------------
[RT-N56U_B1]
- Wireless drivers: updated MT7603E AP driver to 4.0.1.0_rev2.
- Wireless drivers: disabled MT7603E ED-CCA by default.
- Wireless drivers: fixed MT76x2E TxPower control via iwpriv.
- Linux kernel: fixed MT7621 SPI clock calculation.
- Linux kernel: fixed MT7621 xHCI memory leaks.
[Common changes]
- Updated OpenSSL to 1.0.1q.
- Updated OpenVPN to 2.3.9.
- Updated dropbear SSH to 2015.71.
- Updated miniupnpd to 1.9.20151219.
- Updated usb-modeswitch to 2.2.6, updated usb-modeswitch-data up to 2015-11-01.
- Linux kernel: fixed IPv6 fragmentation issue introduced on the 086 build.
- Linux kernel: fixed memory corruption in PPPoE driver introduced on the 095 build.
- Linux kernel: more upstream updates.
- HW_NAT: dynamic select FoE 64/80 on runtime, use FoE 80 only IPv6 offload enabled.
- HW_NAT: removed FoE bind limits on HWNATv2 hardware (MT7620/MT7621).
- Control: fixed L2TP client regression introduced on the 097 build.
- Scripts: migrated to Entware-ng repository (thanks to Alexander Ryzhov).
- WebUI: removed bogus safe login logic for AP mode.
3.X.3.9-097:
----------------------------------------------------------
[RT-N56U_B1]
- Fixed swap WAN and LAN front LEDs.
[RT-N11P]
- Fixed broken Wireless LED on new series.
[RT-N65U]
- Fixed RT-N65U AP-Client 2.4GHz regression in AP mode.
[Common changes]
- Updated kernel-3.4.x to 3.4.110 + upstream fixes.
- Updated arch codebase from MTK APSoC SDK 5.0.0.0.
- Updated OpenSSL to 1.0.1p.
- Updated OpenVPN to 2.3.8.
- Updated OpenSSH to 7.1p1.
- Updated dropbear SSH to 2015.68+.
- Updated dnsmasq to 2.75+.
- Updated miniupnpd to 1.9.20150922.
- Updated INADYN to v1.99.15.
- Updated usb-modeswitch to 2.2.5, updated usb-modeswitch-data up to 2015-06-27.
- Updated minidlna to 1.1.5.
- Updated vsftpd to 3.0.3.
- Linux kernel: IPv4: fixed kernel crash on TCP local path from Wireless interfaces.
- Linux kernel: IPv6: added anti-spoofing checks for 6to4 and 6rd.
- Linux kernel: Netfilter: added SMB fastpath module.
- Linux kernel: Bridge: fixed multicast-to-unicast echoes on STA.
- Linux kernel: Bridge: ability to fast isolation any port w/o ebtables.
- Ethernet switch: added support MT7621/MT7530 EPHY LED control.
- Ethernet switch: fixed MT7620/MT7621/MT7530 issue with HW IGMP snooping.
- HW_NAT: fixed handle FoE AI=HIT_BIND_MULTICAST_TO_CPU on MT7620.
- Wireless drivers: updated MT7610E AP driver to 3.0.0.9.
- Wireless drivers: updated MT7603E AP driver to 4.0.1.0_rev1.
- Wireless drivers: updated MT76x2E AP driver to 3.0.4.0.P1.
- Wireless drivers: fixed MT7620 DynamicVGA issues.
- Wireless drivers: fixed AP-Client reconnect issue on timeout Root-AP beacons.
- Wireless drivers: added DROP_MASK_SUPPORT and MULTI_CLIENT_SUPPORT to RT3883/RT3662 AP.
- Wireless drivers: added APCLI_AUTO_CONNECT_SUPPORT feature to all drivers.
- Wireless drivers: decrease RAM usage by MT7603E and MT76x2E drivers.
- USB storage: allow access to NFS shares from VPN clients.
- USB storage: restored home dir on USB storage surprise removal (with Optware/Entware).
- USB storage: fixed mount > 9 partitions.
- VPN server: added 'Internet only' mode to server security.
- VPN server: fixed broken DNS in 'LAN & Internet' mode.
- Control: added igmpproxy Quick Leave control.
- Control: added support dnsmasq dhcp-hostsfile instead of /etc/ethers.
- Control: avoid obtain the same IP on VLAN interfaces with equal MAC via ZeroConf.
- Control: allow infinity NTP client tries with dynamic interval.
- Control: ability to disable decrement TTL via HW_NAT in Router mode (useful with greedy ISP).
- WebUI: update Highcharts/Highstock framework to 4.1.7/2.1.7.
- WebUI: fetch traffic history for each Ethernet port (exclude RT-N56U A1).
- WebUI: refactor statistics header, improve CPU load calculation.
- WebUI: improved WDS control, allow WDS lazy on bridge mode.
- WebUI: show AP-Client and WDS connection info.
- WebUI: allow to edit last deleted row values.
3.X.3.9-095:
----------------------------------------------------------
[RT-N56U_B1]
- Added support MT7621 SoC.
- Initial release (please report any issues).
[RT-AC54U]
- Initial release (please report any issues).
[RT-AC1200HP]
- Initial release (please report any issues).
[RT-AC51U]
- Fixed broken 5GHz module.
- Fixed reset VHT bandwidth to 40MHz on router startup.
- Updated MT7610E AP driver to 3.0.0.8.
[RT-N14U]
- Fixed MT7620 rev.0203 issues.
[RT-N65U]
- Fixed iNIC guest AP security in AP mode.
[Common changes]
- Updated kernel-3.4.x to 3.4.107, more upstream fixes.
- Updated busybox to 1.23.2+.
- Updated OpenSSL to v1.0.1m.
- Updated dropbear SSH to 2015.67.
- Updated dnsmasq from upcoming 2.73 branch (critical upstream fixes).
- Updated miniupnpd to 1.9.20150430.
- Updated INADYN to v1.99.13+, added support new DDNS services.
- Updated usb-modeswitch to 2.2.1, updated usb-modeswitch-data up to 2015-01-15.
- Wireless: fixed episodic drop Wireless AP to 20MHz bw (now ignore 40MHz intolerant bit from buggy clients).
- PPPoE kernel-mode: immediately close PPPoE socket on PADT received.
- DHCPv4 client: use RFC2132-compliant T2 expired timer (7/8 lease time).
- Networkmap: allow passive scan LAN with any subnet size, active scan is limited to /24 subnet.
- WebUI: ability to direct set DHCP/ZeroConf/Static rule on VLAN CPU (IPTV) path.
- WebUI: ability to set Source IP on Port Forwarding rules.
- WebUI: ability to edit custom DNS servers list (dnsmasq --servers-file).
- WebUI: ability to edit custom script for WPS/Wi-Fi buttons events.
- WebUI: ability to restore Storage from backup file.
- WebUI: ability to sort DHCP excludes list.
- WebUI: added support cross-midnight time on URL filter, MAC filter, LAN-WAN filter.
- WebUI: added source MAC (included/excluded) to URL filter.
- WebUI: LAN-WAN filter changed to Network Services filter, added support block any protocol.
- WebUI: drop redundant VPN passthrough rules (use Network Services filter to block any services).
- WebUI: show Ethernet ports Flow Control and EEE status.
- WebUI: optimized WebUI CPU/MEM/Traffic Highcharts redraw.
- WebUI: fixed issues under Firefox 38.x.x.
- Ethernet switch: allow VLAN ID #2 for tagged WAN traffic.
- Ethernet switch: allow to disable any EPHY ports.
- Ethernet switch: improved HW IGMP/MLD snooping, added IGMP static port control in AP mode.
- Ethernet switch: fixed broken IPTV in AP mode on MT7620-based devices.
- Ethernet driver: fixed TX ring full if HW_NAT Wireless acceleration enabled.
- HW_NAT: fixed corrupted FoE 80b entries if MT7620/MT7621 IPv6 acceleration enabled.
- Linux netfilter: implement RFC 1123 for FTP conntrack module.
- Linux netfilter: xt_time: added support to ignore day transition (--contiguous).
- Linux netfilter: SIP conntrack: added support Cisco 7941/7945 IP phones.
- Fixed restart SMB server issue.
- Fixed httpd server segfault on malformed requests.
- Fixed WPS/Wi-Fi buttons event handler, limiting short-press detection pulse to 500ms.
3.X.3.9-091:
----------------------------------------------------------
[RT-N11P]
- Fixed broken L2TP client/server on nano build (pppd plugin issue).
- Fixed broken OpenVPN client/server on base build (/dev/net/tun issue).
- Added missing power limits to CE SKU for 1,2,12,13 channels@40MHz.
[RT-N56U]
- Added openssl binary for dlna build (and remove NFS client).
[Common changes]
- Added support 802.3az EEE control for MT7620 embedded Ethernet switch, disabled
EEE by default for all PHY.
- Added static ARP binds control from DHCP server excludes.
- Added ability to generate HTTPS and OpenVPN server certificates from WebUI.
- Added ability to export client.ovpn config file from WebUI for any OpenVPN
server's clients.
- Updated OpenSSL to v1.0.1k.
- Updated miniupnpd to 1.9.20141209.
- Improved changing LAN IP address/netmask from WebUI, auto re-generate all NVRAM
LAN IP-related addresses on change LAN IP address/netmask.
- Fixed HW_NATv2 (MT7620/MT7621) FoE entry range check.
- Fixed httpd server segfault on URL length > 127.
- Fixed httpd server security issues, more robust cache-control.
- Fixed igmpproxy General Query issue (IPTV membership expired) when PPP VPN
server has connected clients (w/o allocated VPN subnet).
- Fixed INADYN bug on parsing IP from some checkip responses (e.g. from checkip.dns.he.net).
- Fixed restart SMB server from WebUI on some cases.
- Fixed show VPN server ACL list on WebUI.
3.X.3.8-088:
----------------------------------------------------------
[RT-N11P]
- Initial release.
[RT-AC51U]
- Fixed show VHT (11ac) modes on Wireless stats.
[RT-N56U]
- Added support two independent TX rings to Wired GMAC driver.
[Common changes]
- Added support NAPI to Wired GMAC driver.
- Added support 64 bit interface counters to Wireless drivers.
- Added traffic counters to WebUI Internet stats on WISP mode.
- Added Vendor Class Identifier field to WAN DHCP client.
- Added ability to usage udpxy and xupnpd in AP mode.
- Migrated multicast-to-unicast (M2U) transform from Wireless drivers
to Linux bridge. Improved multi-clients environment.
- Updated APSoC Wireless driver to 2.7.2.0.
- Updated OpenVPN to 2.3.6.
- Updated miniupnpd to 1.9.20141128.
- Updated dropbear SSH to 2013.66.
- Fixed PPPoE driver (ignore incoming wrong PADT packets to protect session).
- Fixed RTL8367 IGMP snooping (ignore snooping for reserved L2 groups).
- Fixed init Ralink EHCI on router startup.
- Fixed direct toggle Wireless bridge modes WISP <-> LAN from WebUI.
3.X.3.8-085:
----------------------------------------------------------
[RT-N14U]
- Migrate to kernel-3.4.x tree.
- Updated kernel-3.4.x to 3.4.104.
- Added support 64 bit MIB counters to embedded switch driver.
- Improved embedded switch control.
- Fixed critical HNATv2 bug (MAC corruption).
- Fixed RADIUS authentication (WPA/WPA2 Enterprise).
- Fixed custom WiFi LED control.
[RT-AC51U]
- Initial release (please report any issues).
- Added support 11ac mode for Ralink/MTK platform.
[RT-N56U]
- Migrate to kernel-3.4.x tree.
- Updated kernel-3.4.x to 3.4.104.
[RT-N65U]
- Backports kernel RCU code from linux 3.2 branch.
- Backports kernel futex code from linux 3.2 branch.
- Backports kernel net subsytem from linux 3.2 branch.
- Backports kernel ext2/3/4 code from linux 3.2 branch.
- Updated RTL8367RB switch code from Realtek SDK 1.2.10.
[Common changes]
- Updated Ralink kernel arch code from to SDK 4.2.1.0.
- Updated NCM, MBIM and usbnet code up to kernel 3.17.
- Updated L2TP kernel driver code, optimisations.
- Updated OpenSSL to v1.0.1j, disable SSLv3 code.
- Updated OpenVPN to 2.3.4.
- Updated pppd to 2.4.7.
- Updated radvd to 1.15.
- Updated dnsmasq to v2.72+.
- Updated miniupnpd to 1.8.20141022.
- Updated dropbear SSH to 2013.65.
- Updated INADYN to v1.99.12, added support SSL mode and new DDNS services.
- Updated usb-modeswitch to 2.2.0, updated usb-modeswitch-data up to 2014-05-29.
- Updated transmission to 2.84+.
- Updated miniDLNA to 1.1.4.
- Updated xUPnPd to rev399.
- Updated exFAT code to 1.2.9.
- Updated timezones for Russia.
- Added 'Detect Internet' feature.
- Added 64 bit stats for ppp and usbnet interfaces.
- Added PHY link force modes w/o autonegotiation to ethernet switch control.
- Added force IGMP version control.
- Added NAT mode to VPN server.
- Added pure routed mode w/o NAT to static VPN client.
- Added user up/down script to OpenVPN client.
- Added route all traffic through static VPN client.
- Added access restriction control for VPN server clients.
- Added DHCP server in AP mode (for static LAN IP only).
- Added domain field in AP mode.
- Added WebUI intranet status page in AP mode.
- Added WebUI session traffic for Modem/PPTP/L2TP, show DHCP lease expires time.
- Added port control for remote syslog server.
- Added root share mode for SMB server.
- Added support WINS server feature.
- Added control LLTD and ASUS discovery services from WebUI.
- Added hub-ctrl utility for control USB ports power/clock.
- Added busybox applets microcom, adduser, addgroup.
- Improved HW_NAT offload for WiFi interfaces.
- Improved networkmap LAN scanner.
- Improved contol for QMI-based USB modems.
- Improved iptables firewall rules.
- Improved WPS/Reset buttons sensitivity, expand front LED's tweak modes.
- Increased up to 64 clients for APSoC WiFi driver.
- Fixed forwarding a few LAN packets w/o NAT to WAN during router startup.
- Fixed missing TCPMSS target for VPN client and server on WAN IPoE connection.
- Fixed broken DNS servers after manual stop OpenVPN client.
- Fixed broken apostrophe and slash chars for pppd username/password.
- Fixed broken OpenSSH DH moduli.
- Fixed background syslog fetching from WebUI float panel.
3.X.3.8-081:
----------------------------------------------------------
- Fixed WAN DHCP6C client IA-ID (now generated from WAN MAC).
- Fixed SSH brute-force protection mode "Max 3 tries/60 min".
- Fixed infinite loop in xUPnPd plugin "xupnpd_ivi".
- Added support Stateful mode for LAN DHCPv6 server.
- Added support 802.1x EAP-TTLS and EAP-PEAP WAN authentication.
- Added support static WAN DNS#3.
- Added support store system time to Internal Storage (/etc/storage).
- Added support custom exports file /etc/storage/exports for NFS server.
- Added NTP client callback, improve relability.
- Added WiFi Guest AP control to WPS button behaviour.
- Updated OpenSSL to v1.0.1g (vulnerability CVE-2014-0160).
- Updated OpenVPN to 2.3.3.
- Updated miniupnpd to 1.8.20140401.
- Updated usb-modeswitch to 2.1.1, updated usb-modeswitch-data up to 2014-03-27.
- Updated miniDLNA from upstream.
- Updated xUPnPd to rev398.
- Updated Entware new URLs.
- Updated Linux kernel code from upstream.
- Updated uClibc inet code from upstream.
- Improved WebUI render under IE11.
- Improved WebUI response.
3.X.3.8-080:
----------------------------------------------------------
- Toolchain: migrate to binutils-2.24.
- Fixed rarely crashes of dnsmasq process (DNS relay and DHCP server missing issue).
- Fixed LAN DHCP client logic after lease renew in AP mode.
- Fixed FireFly WebUI unavailable until first scan is completed.
- Added feature to restrict WebUI access from Wireless clients.
- Added optional force sort to minidlna clients, added force rescan button.
- Updated busybox to 1.22.1+.
- Updated pppd to 2.4.6.
- Updated radvd to 1.10.0.
- Updated dropbear SSH to 2013.63.
- Updated miniupnpd to 1.8.20140313.
- Updated usb-modeswitch to 2.1.0, updated usb-modeswitch-data up to 2014-01-29.
- Updated minidlna to 1.1.2+.
- Updated exFAT code to 1.2.8.
- Updated xUPnPd to rev397.
- Updated p910nd to 0.97.
3.X.3.7-079:
----------------------------------------------------------
[RT-N14U]
- Fixed MT7620 FrameEngine hungs on chip REV 0203 (MT7620 TX checksum offload bug).
- Fixed Ethernet ports link mode control for MT7620 embedded switch.
- Fixed configuring MT7620 embedded switch params at router startup.
- Fixed MT7620 USB hungs on plug USB FullSpeed (USB 1.1) devices.
- Fixed MT7620 unstable CPU_PLL clock (counter and system clock drift).
- Fixed ASUS DDNS update after account registration on ASUS-WRT firmware.
- WebUI Ethernet switch control improvements.
[RT-N56U]
- Migrate to kernel-3.0.x by default (best performance). kernel-3.4.x still supported.
[RT-N65U]
- Fixed stupid reboot system after iNIC firmware boot failed (e.g. iNIC module broken).
- Ability to complete disable iNIC module (nvram set inic_disable=1).
[Common changes]
- Enabled kernel High Resolution Timer support - boost userspace applications
using a TUN/TAP interface, such as gogoc (gw6c) client, OpenVPN and others.
- Added support IPv6 privacy extensions feature for WAN stateless mode.
- Added feature to set fixed Wireless link speed mode for Guest AP.
- Added Transmission Web Control (https://code.google.com/p/transmission-control).
- Added SSH brute-force protection and enabled by default.
- Added IPv6 firewall for FORWARD chain (drop all incoming connections).
- Fixed broken IPSec NAT-T/IKE with HW_NAT UDP offload enabled.
- Fixed PPPoE MAN ZeroConf logic on manual MAN address exist in NVRAM.
- Fixed restart firewall after Aria2 and Transmission stop.
- Updated radvd to 1.9.8.
- Updated dropbear SSH to v2013.62, enable ECDH and ZLIB support.
- Updated miniupnpd to 1.8.20140211, enable Port Control Protocol (PCP) support.
- Improved handling start Optware/Entware packets.
- Improved NTP client reliability.
- Tune LAN DHCPv6 server IRT=1800 for static modes.
- Tune some default Transmission options.
3.X.3.7-075:
----------------------------------------------------------
[RT-N56U]
- Updated kernel-3.4.x to 3.4.76 from www.kernel.org.
[RT-N65U]
- Ability to disable USB3 interface (force USB2 mode).
[Common changes]
- Fixed WebUI bug with symbol '#'.
- Fixed reload resolv.conf under USB modem environment.
- Fixed broken ping from WAN on DMZ enabled.
- Fixed IE11 and Chrome issues, hide float panel for mobile browsers.
- Added support CDMA modem WeTelecom WM-D200/D300.
- Added miniupnpd port range control.
- Added UDPXY access control from WAN.
- Added WiFi HT Auto Block Acknowledgment (AutoBA) control to WebUI.
- Removed unused WiFi Direct Link Setup (DLS) feature.
- Updated exFAT code to 1.2.7.
- Updated xUPnPd to rev395.
- Increased max allowed VPN clients to 50.
3.X.3.7-072:
----------------------------------------------------------
[RT-N56U]
- Updated kernel-3.4.x to 3.4.68 from www.kernel.org.
[RT-N65U]
- Updated kernel-3.0.x to 3.0.101+ from www.kernel.org.
[Common changes]
- Fixed GreenAP bug in 5GHz Wireless driver v2.7.1.6.
- Disabled IPv6 routes offload for RT3883/3662 (1-Tap hardware is buggy).
- Improved performance of wired Ethernet driver (raeth).
- Updated dnsmasq to v2.67+.
- Added DHCP server verbose mode control to WebUI.
- Added hardware watchdog timer control to WebUI.
- Added dropdown menu for fast select DLNA media path,
fixed output national resources from NVRAM to WebUI.
3.X.3.7-071:
----------------------------------------------------------
[RT-N56U]
- Updated kernel-3.4.x to 3.4.66 from www.kernel.org.
- Used ffmpeg-0.11.3 for minidlna (UPnP/DLNA mediaserver).
[RT-N65U]
- Updated kernel-3.0.x to 3.0.100 from www.kernel.org.
- Fixed RADIUS authentication (WPA/WPA2 Enterprise) for AP 2.4GHz.
[Common changes]
- Added support IGMP/MLD snooping on soft-bridge br0 and on giga-switch RTL8367.
- Added support NAT topology for OpenVPN client in TAP mode.
- Added list of allowed SSL ciphers for HTTPS and set high strength by default.
- Added usb_modeswitch rule for new revision of LTE Huawei E3276s-150.
- Updated 5GHz Wireless driver to latest v2.7.1.6.
- Updated RTSP ALG conntrack module to v0.7, fixed ports range issue.
- Updated ufsd 8.6 NTFS driver (with SMB/NFS directories fix). Now allowed
transmission/aria to work on NTFS volumes. HFS+ support is broken.
- Updated exFAT code to 1.2.6.
- Updated dropbear SSH to v2013.60, added SHA2_256_HMAC support.
- Fixed isolation between AP and GuestAP clients.
- Fixed private subnet 172.16.0.0/12 check on "VPN Server" WebUI page.
3.X.3.6-069:
----------------------------------------------------------
[RT-N56U]
- Updated kernel-3.4.x to 3.4.62 from www.kernel.org.
[RT-N65U]
- Updated kernel-3.0.x to 3.0.96 from www.kernel.org.
- Reverted iwpriv scheduler radio control for WiFi 5GHz (from -066).
[Common changes]
- Added support HTTPS protocol.
- Added support NFS export to exFAT driver.
- Added NVRAM integrity check on read NVRAM content from flash memory (in boot time).
- Added NVRAM temp values concept, temp values not stored to flash memory.
- Added check changes NVRAM content before commit to flash memory.
- Added NVRAM commit button to WebUI header (available for NVRAM manual commit mode).
- Added SSH authorized_keys control to WebUI.
- Added binding route to remote LAN subnet for each VPN client of VPN server.
- Added ability to restrict access from VPN server site to static VPN client.
- Added PAP authentication (PPTP/L2TP) for static VPN client.
- Updated tcpdump to v4.4.0 (libpcap to v1.4.0).
- Fixed restore resolv.conf content after manual stop static VPN client.
- Fixed broken 5GHz TxPower adjust w/o clients connected (backport from 2.6.x.x driver).
- Fixed 5GHz clients connect issue after direct changing SSID on AP 5GHz.
- Fixed security hole on Advanced_System_Content.asp WebUI page and on /etc/passwd access.
- Fixed broken WebUI autologout on active Internet status page.
- Fixed minidlna force rescan media content on media_dir changed (buggy feature in v1.1.0).
- Fixed kernel timezone offset for timezones with active summer time (MAC/URL filter time related).
- Fixed overlap days traffic in Main_TrafficMonitor_daily.asp.
3.X.3.6-068:
----------------------------------------------------------
[RT-N56U]
- Updated kernel-3.4.x to 3.4.60 from www.kernel.org.
[RT-N65U]
- Updated kernel-3.0.x to 3.0.94 from www.kernel.org.
[Common changes]
- Updated xt_TCPMSS kernel code from upstream (follow RFC 879).
- Updated exFAT code to 1.2.5, allow use exFAT driver for mount FAT/FAT32.
- Added username/password authentication mode for OpenVPN client.
- Added ability to pull DNS from VPN server, show OpenVPN client state.
- Added bump 3G/LTE traffic to daily report.
- Restored third party -U key for minidlna (append new files).
- Fixed udhcpc undersized DHCP packets (follow RFC 1542).
- Fixed 5GHz region change issue (regression in 3.X.3.6-066 build).
- Fixed NVRAM commit after list content changed (regression in 3.X.3.6-066 build).
- Fixed OpenVPN port control issue (now allow port < 1194).
- Fixed httpd POST buffer overflow for more textarea data.
- Fixed private subnet caption in VPN server ACL list.
- Fixed memory leak in tcpcheck utility.
3.X.3.6-066:
----------------------------------------------------------
[RT-N56U]
- Updated kernel-3.4.x to 3.4.59 from www.kernel.org.
- Tune ARP params to resolve ARP entry timeout issue.
[RT-N65U]
- Updated kernel-3.0.x to 3.0.93 from www.kernel.org.
- Added IPv6 fixes from upstream kernels.
- Added PCIe ASPM L1-sate control for USB3 controller.
- Rolled back USB subsytem to original kernel-3.0.x (regression since 3.0.3.6-064).
- Used iwpriv scheduler radio control for WiFi 5GHz to avoid SoC hungup issue.
- Updated ffmpeg to v0.11.3 (more robust minidlna scan, but swap is needed).
[Common changes]
- Updated busybox to v1.21.1.
- Updated miniupnpd to v1.8.20130730.
- Updated usb-modeswitch to v1.2.7, updated modem database rules.
- Updated xUPnPd to rev387.
- Updated transmission to v2.82.
- Updated minidlna to v1.1.0, removed broken -U key (append new files).
- Updated e2fsprogs to v1.42.8.
- Added static VPN client to allow Site-to-Site VPN.
- Added support MPPE compression for WAN L2TP and static VPN L2TP client.
- Added OpenVPN 2.3.2 for VPN server and static VPN client roles.
- Added support USB modems Quanta 1K3, Haier CE81B/CE682, Celot CT680, Bandrich C339.
- Added manual/auto WAN DNS control for USB modems.
- Added USB 3G/LTE traffic to graphs (browser cache clear is needed).
- Added DDNS IPv4 address source selector (Autodetect, from WAN, from MAN).
- Added extended dnsmasq.conf and hosts to WebUI (LAN -> DHCP Server).
- Added custom user scripts to WebUI (Administration -> Tweaks).
- Added exFAT support (GPL code from Samsung).
- Added "radio2_eeprom_mac" and "radio5_eeprom_mac" commands for set custom wireless MAC.
- Used wireless MBSSID MAC correction only for 4x MBSSID rule. MAC is changed
to EEPROM defaults for new released devices (MAC already assigned for 4x MBSSID rule).
- Moved IGD UPnP to WAN -> Port Forwarding, added extended miniupnpd controls.
- Enabled HFSC scheduling (added kernel module and tc unit).
- Rolled back NDIS offload via PPE due to tx_fixup issues.
- Rolled back libjpeg to v.6b to decrease RAM usage during thumbnails building in WMP.
- Fixed broken multicast routes after LAN IP change.
- Fixed unsafe interprocess iptables-restore call.
- Fixed WebUI USB modem disable action.
- Fixed networkmap: scan subnet C class only.
- Fixed SMB server in full access mode: allow full access for all users.
- Fixed Bucharest daylight time.
3.X.3.6-064:
----------------------------------------------------------
[RT-N56U]
- Migrate to Linux kernel 3.4 (3.4.50 current).
[RT-N65U]
- Updated kernel-3.0.x to 3.0.83 from www.kernel.org.
- Backported USB subsystem (and USB3 xhci driver) from Linux kernel 3.4.
- Fixed 2.4GHz WebUI info on AP disabled state.
[Common changes]
- Updated iptables to v1.4.16.3.
- Updated iproute2 to v3.4.0.
- Updated ipset to v6.19.
- Updated miniupnpd to v1.8.20130607.
- Updated udpxy to v1.0.23-9.
- Updated usb-modeswitch to v1.2.6, update modem database rules.
- Added fast kernel PPPoE passthrough module, remove slow pppoe-relay userspace daemon.
- Added support Sierra NDIS modems (AirCard 3xxU), fixed broken Sierra RAS modems.
- Added kernel RAM pagecache reclaim control for buffered I/O. Enabled pages grouping by
mobility by default.
- Added DDNS verbose level control.
- Improved PPPD MSCHAP-v2 authorization on packets loss, added workaround for negotiated
bad peer addresses (some dumb ISP use anti-router trick).
- Improved xL2TPD - use adaptive retransmission interval for HELLO.
- Fixed daylight time issue for iptables xt_time match rule (URL-filter, MAC-filter).
- Fixed SSH server restart issue after restart Telnet.
- Fixed control USB devices on nested USB Hubs.
- Fixed Minsk timezone (disable daylight time).
3.0.3.6-061:
----------------------------------------------------------
[RT-N56U]
- Improve USB2 storage performance (read SMB up to 23MB/s, FTP up to 26MB/s).
[Common changes]
- Updated kernel-3.0.x to 3.0.80 from www.kernel.org.
- Updated network and MIPS code from upstream kernels.
- Added Japan region code for AP 2.4GHz (use Japan regulatory domain).
- Added Norway, France, Korea region codes for AP 5GHz. Norway region may be
used for RU and UA (channels 36..48, 149..165).
- Added independent MTU/MRU control for each PPPoE/PPTP/L2TP WAN mode.
- Added ability to enter PIN code up to 8 symbols for EVDO modems.
- Added WLE patch for SMB server to improve work with Win7/8.
- Used EXT4 driver for EXT3 and EXT2 partitions.
- Replaced NTFS driver to ufsd v8.5: allow HFS+ R/W support, allow NTFS/HFS+ export
to NFS server, fixed directories content listing under SMB server.
- Restricted Transmission and Aria2 target partitions to EXT2/EXT3/EXT4/XFS only.
- Fixed long time interval after failure DDNS update.
- Fixed disable DDNS from WebUI.
- Fixed changing Router/AP role at manual NVRAM commit mode.
- Project configuration enhancements, added example configs.
3.0.3.5-058:
----------------------------------------------------------
[RT-N56U]
- Updated WiFi driver 2.4GHz to v2.7.1.5.
[RT-N65U]
- Changed SPI clock to 40MHz - firmware boot faster.
- Added iNIC_mii staff daemon for control AP 2.4GHz state.
[Common changes]
- Updated kernel-3.0.x to 3.0.78 from www.kernel.org.
- Updated ipset to v6.18.
- Updated miniupnpd to v1.8.20130503.
- Updated ISP database for UMTS/EVDO/LTE modems.
- Improved WiFi scheduler in conjunction with WPS button action.
- Improved WiFi scheduler for Sun->Mon and Fri->Sat cross-night transition.
- Added NVRAM commit control and internal storage control to WebUI setting page.
- Added command-line applets for WiFi state control (enable/disable and toggle).
- Added CLS_FLOW kernel module and flow support to "tc" utility (iproute2).
- Added ability to correction TTL for IPTV multicast packets. Mangle and raw
iptables always cleared now on internal firewall restarted.
- Added ability to build WebUI LAN/WLAN clients list in AP mode.
- Fixed issue for HDD > 2TB via some USB-SATA bridges (fix from kernel-3.8).
- Fixed WWAN offload issue for NCM/MBIM USB modems in NDIS mode (e.g. Huawei E3276).
- Fixed INADYN DDNS service dnsexit.com. Changed DDNS force update period to 7 days.
3.0.3.5-055:
----------------------------------------------------------
- Updated kernel-3.0.x to 3.0.74 from www.kernel.org.
- Updated dropbear SSH to v2013.58.
- Updated INADYN to v1.99.2, added support new DDNS services www.dnsexit.com and
www.changeip.com. Updated code for freedns.afraid.org. Moved DDNS scheduler role
to INADYN. Set DDNS force update every 5 days.
- Updated dnsmasq to v2.66+.
- Updated xUPnPd to rev383.
- Updated u2ec (USB-over-Ethernet printer daemon) from last ASUS-WRT firmware.
- Added support handling USB devices on any level USB hubs.
- Added support many 3G/LTE modems in NDIS mode (e.g. Huawei E392, E398, E3276)
via QMI, NCM, MBIM kernel drivers.
- Added HW_NAT offload for 3G/LTE modems in NDIS/RNDIS mode.
- Added MTU control for USB modems in RAS and NDIS/RNDIS mode.
- Added manual MTU/MRU control for PPTP/L2TP WAN connection.
- Added authentication method control for PPPoE/PPTP/L2TP WAN connection.
- Added show WAN MAC on WebUI Internet status page.
- Improved UMTS/EVDO connect scripts, fixed PIN-code handling.
- Improved connections tracking list for IPv6 items in WebUI.
- Fixed WAN VLAN filter for case "CPU Internet" tagged but "CPU IPTV" not tagged. Ability
to combine VLAN ID for any bridged ports with "CPU Internet" VLAN ID.
- Fixed miniupnpd retrieve LAN interface netmask.
- Fixed minidnla sendfile bug (now work with new Philips TV).
- Fixed blocking progressbar during firmware upgrade under many anti-Adware software.
- Fixed daylight time for USA, Canada, Brazil.
3.0.3.4-048:
----------------------------------------------------------
[RT-N65U]
- Fixed 2.4GHz AP-Client WebUI info.
[Common changes]
- Rolled back to gcc-4.4.7 cross-toolchain.
- Updated kernel-3.0.x to 3.0.71 from www.kernel.org.
- Updated MIPS code from upstream kernels.
- Updated dropbear SSH to v2013.56.
- Added ipset v6.17 (utility + kernel modules).
- Added FTP shares access control for anonymous user, improve WebUI
storage page.
- Added ability to disable SMB master browser and enable FTP syslog.
- Added ability to change minidlna root container in WebUI.
- Fixed IPv6 6rd logic and improve WebUI IPv6 page.
- Fixed HW_NAT TX handler.
- Fixed unmount bug for FAT/FAT32.
- Fixed LAN network map in WebUI after LAN IP address reconfig.
- Fixed daylight time for Azores, Greenwich. Disabled daylight for
Casablanca/Monrovia.
3.0.3.3-046:
----------------------------------------------------------
- Fixed daylight time for European timezones CET and EET.
- Fixed dnsmasq failure exit on not existing tftp root directory.
- Added IPv6 fixes from upstream kernels.
- Improved stability RTL8367 switch initialization on system startup.
- Improved WebGUI design for PPPoE VPN + MAN connection.
3.0.3.3-045:
----------------------------------------------------------
- Fixed SoC hangup on 5GHz Wireless interface down during data transfer.
- Fixed WAN-LAN spoofing issue on change WAN bridge mode or VLAN isolation.
- Fixed VLAN filter for partial untagged traffic.
- Fixed broken httpd login state after LAN IP address reconfig.
- Fixed 48 hours bug in Main_TrafficMonitor_last24.asp.
- Updated kernel-3.0.x to 3.0.68 from www.kernel.org.
- Updated openssl to v1.0.1e (vulnerability CVE-2013-0166).
- Updated miniupnpd to v1.8.20130207.
- Updated transmission to v2.77.
- Updated xUPnPd to rev382.
- Updated xl2tpd daemon from upstream.
- Increased max allowed Wireless clients up to 64 for each AP.
- Rolled back 5GHz Wireless driver to v2.4.3.6 (with backports and fixes).
- Added user-defined vid:pid slot to option.ko for support any UMTS and EVDO modems.
- Added GreenAP feature for each AP. GreenAP goto 1T1R+20MHz mode if there is no 11n clients.
- Added workaround for partial fix PPE UDP bug (drop UDP packets w/o checksum).
- Added GNU parted utility.
- Added NTP synchronization period control to WebGUI.
- Added DDNS update period control to WebGUI.
- Added PPPoE idle timeout feature.
- Added Ethernet ports info and Connections tracking info to WebGUI.
- Added force NVRAM clear on ASUS-WRT content detected (many params is incompatible).
- Removed bogus Wireless bandwidth mode 40MHz Only (not used by Ralink/MTK WiFi drivers).
- Removed port trigger dead feature.
3.0.3.3-041:
----------------------------------------------------------
[RT-N65U]
- Added backports for xhci-hcd driver (USB3) from upstream.
- Increased usb_storage performance for AsMedia USB3 controller.
- Updated WiFi driver iNIC_mii (AP 2.4GHz) from ASUS firmware .334 (whole blob).
[Common changes]
- Added ip route multipath to kernel config.
- Updated kernel-3.0.x to 3.0.61 from www.kernel.org.
- Fixed random SoC hangup on start ra0 interface (AP 5GHz).
3.0.3.3-040:
----------------------------------------------------------
[RT-N65U]
- Added ability to use VLAN VID 4 from WAN.
- Added support traffic measurement for AP 2.4GHz.
[RT-N56U]
- Fixed VLAN VID > 13 for tagged IPTV filtering to CPU.
[Common changes]
- Added WDS support to 5GHz WiFi driver v2.6.0.x.
- Added support WAN traffic measurement with HW NAT usage.
- Added ability to enable external udpxy for xupnpd (udpxy support RTP sources).
- Updated kernel-3.0.x to 3.0.60 from www.kernel.org.
- Fixed WAN traffic history, save history to /etc/storage.
- Fixed double instanced interface ra1 on hw_nat.ko.
3.0.3.3-038:
----------------------------------------------------------
[RT-N65U]
- Added ability to ISP VLAN filtering.
- Updated WiFi driver iNIC_mii (AP 2.4GHz) from ASUS firmware .260 (whole blob).
- Fixed IPv6 routes offload (via Ralink PPE).
- Fixed board name in WebGUI resources.
- Fixed PHY mode status for AP 2.4 GHz.
[Common changes]
- Added support scatter/gather DMA to Ralink Ethernet driver (raeth). S/G DMA allow
boost local TX traffic up to 2x times. Read speed now up to ~21MB/s (from USB2),
up to ~34MB/s (from USB3). Drop ASUS binary raeth_asus.obj.
- Added support HW VLAN TX to Ralink Ethernet driver (raeth). Offload VLAN tag
incapsulation, actually for 1xRGMII mode for N65U.
- Added IMQ device for support software shapers.
- Added support RAW table to iptables.
- Added WiFi Reverse Direction Grant (RDG) control.
- Added output RSSI field to WiFi AP clients status.
- Added PPP session duration info, MAN info, IPv6 info to WAN status.
- Added ALG RTSP for support many IPTV applications from ISP.
- Added ability to select Ethernet port for attached WAN cable (for WAN bridge mode).
- Added ability to route VLAN tagged IPTV source via igmpproxy and udpxy.
- Added support IPv6 for URL-filtering.
- Added ability to disable ALG FTP.
- Added support IGMPv3 and multiple origins to igmpproxy.
- Added package xupnpd (translate IPTV via UPnP/DLNA) v1.02, rev372.
- Updated kernel-3.0.x to 3.0.59 from www.kernel.org.
- Updated WiFi driver to v2.6.0.x for AP 5GHz (WDS not supported yet, only AP-Client).
- Updated udpxy to v1.0.23-7.
- Updated dnsmasq to v2.65.
- Updated Transmission to v2.76.
- Updated Ralink HW_NAT to 2.50.x, improved IPv6 routes offload, fixed support HW VLAN TX,
forward all mcast and bcast traffic to CPU, move FoE PPE table to raeth for avoid memory
fragmentation on reload hw_nat module.
- Fixed very old issue with race packets from PPE. 2xRGMII mode on N56U now worked perfectly.
No reason for use 1xRGMII mode now, PPE can route summary traffic ~1.3 Gbit/s between 2 GMAC.
- Fixed IPv6 DAD issue on MacOS and Android WiFi clients (no solution for RT3352 AP on N65U).
- Fixed httpd deadlock issue (WebGUI freeze).
- Fixed IPv6 neighbour table overflow (manual run script reset_ss.sh needed).
- Fixed disabled FTP/SMB access controls in WebGUI on shares with LABEL.
- Fixed Astana timezone label.
3.0.3.1-027:
----------------------------------------------------------
[RT-N65U]
- Fixed minidlna build with shared ffmpeg libs (scan deadlock issue).
- Fixed usb_modeswitch issue with USB3 xhci.
- Fixed small space (64KB) for /etc/storage content. Allow total space 256KB (compressed in bz2).
[Common changes]
- Updated kernel-3.0.x to 3.0.53 from www.kernel.org.
- Added WiFi spatial streams control (1T1R/1T2R/2T2R/2T3R/3T3R).
- Added WiFi long/short preamble control.
- Changed USB mountpoint rule to volume LABEL (if exist). Volumes will be mounted as /media/{LABEL}.
Please use latin characters for set volume label (national characters not supported for SMB shares).
- Updated e2fsprogs to v1.42.6, included e4defrag and tune2fs.
- Updated usb_modeswitch and 3G modems database. All database moved from "rc" to /etc_ro/usb_modeswitch.d.
Added ability to read custom db vid:pid files from /etc/storage. Manual modem selection is deprecated, all
3G modems handled automatically by vid/pid. Added ZeroCD method selection - via usb_modeswitch or via eject.
- Fixed empty params set regression in NVRAM driver and fixed all bugs related whith this issue (e.g. 3G modems).
- Fixed firmware update code in httpd, added whole image CRC32 check and image size check before flashing.
- Fixed system crash on add many static routes (> ~40), shrink nvram space for handle static routes.
- Fixed unstable NTP time update issue.
- Improved minidlna scan speed. Fixed minidlna crash on scan many nested directories.
- Added On/Off front LEDs rule to WPS button action.
- Added applet /sbin/restart_wan.
3.0.3.0-026:
----------------------------------------------------------
[RT-N65U]
- Fixed kernel panic on WiFi client connect to 2.4GHz guest AP.
- Added HW_NAT offload for 2.4GHz guest AP WAN-WiFi traffic.
- Fixed saving settings to CFG file.
[Common changes]
- Added ability to select L2TP client (xl2tpd/rp-l2tp) from WebGUI.
- Added ability to manual set DNS1/DNS2 for LAN IP configuration in AP mode.
- Rolled back package ffmpeg to v0.6.6. All new ffmpeg branches > 0.6.x raise
Page Allocation Failure during Minidlna scan ton mediafiles.
- Fixed DHCP client renew issue after EAPoL-MD5 authentication.
3.0.3.0-025:
----------------------------------------------------------
- Added Entware repo support (http://code.google.com/p/wl500g-repo/).
- Added Aria2-1.15.2 package to project tree. Only for N65U (16MB flash).
- Added iTunes media server (Firefly) to project tree. Only for N65U (16MB flash).
- Added control SSDP notify interval and extended paths for Minidlna media server.
- Updated rp-pppoe pppd plugin and pppoe-relay daemon to v3.11.
- Updated nvram driver, used ioctl instead of mmap for prevent kernel memory corruption.
- Fixed switch WAN/LAN isolation on STB port selected in 1xRGMII scheme (VLAN 1/2).
- Temporarily disabled IGMP snooping feature for Realtek RTL8367B series giga-switch (N65U).
3.0.3.0-022:
----------------------------------------------------------
[Firmware 3.0.x.x]
- Added full support Asus RT-N65U board.
- Updated kernel-3.0.x to 3.0.50 from www.kernel.org.
- Updated raeth driver to v3.0 from Ralink SDK 4.1.0.0 (used in 2xRGMII scheme).
- Updated raeth driver from N65U firmware with Asus hack. Hacked raeth allow speed-up
local TX traffic in 1xRGMII scheme (USB3 read speed-up from 17 to 35 MB/s on N65U).
[Common changes]
- Fixed random hangup SoC RT3883/3662 under AP 5GHz (backport from Ralink driver 2.6.0.x).
- Enabled 2T3R mode (TX=300Mbps/RX=450Mbs) for AP 5GHz on N56U.
- Updated package ffmpeg to v0.11.2 for resolve minidnla scan deadlock issues.
- Added build target for Samsung CY-SWR1100 board.
3.0.2.8-021:
----------------------------------------------------------
- Enabled rp-l2tp client by default for L2TP WAN (issues with xl2tpd HELLO for ISP Beeline).
3.0.2.7-020:
----------------------------------------------------------
[Firmware 3.0.x.x]
- Updated kernel-3.0.x to 3.0.46 from www.kernel.org.
- Speed-up L2TP and PPTP connection up to 50% (L2TP up to 155Mbps, PPTP up to 200Mbps).
- Fixed issue with 3G modem flows (avoid routing to PPE).
- Fixed issue with mcast/bcast packets (avoid routing to PPE).
[Common changes]
- Added ability to isolate WiFi guest clients from LAN resources.
- Added control for second NTP server.
- Added support Realtek RTL8367B series giga-switch.
- Fixed memleaks in miniupnpd.
- Updated Transmission to v2.73+.
3.0.2.7-019:
----------------------------------------------------------
- Added manual control for UDP flows offload via PPE (HW_NAT).
Work only for UDP packets with checksum.
- Fixed and added manual control IPv6 routes offload via PPE.
- Added pure routing offload up to 930 Mbps via PPE w/o NAT.
- Added ability to enable/disable NAT w/o reboot.
- Added user script for handle connect/disconnect peers to VPN server.
- Allowed 11n HT Mode for TKIP and WEP (on both AP 2.4/5GHz).
- Disabled noisy syslog message w/o IPv6 global address.
- Prevented re-notify radvd w/o dhcp6c changes on short IRT.
- Increased gateway lifetime to 30 min in Router Advertisement.
- Used router self LAN IPv6 address as RDNSS in Router Advertisement.
- Fixed WebGUI menu and sitemap in AP mode.
3.0.2.6-018:
----------------------------------------------------------
[Firmware 3.0.x.x]
- Complete fixed HW_NAT drop IPv4 bindings issue.
[Common changes]
- Disabled forward offload via PPE for native IPv6 (temporarily).
- Moved Router Advertisement role from "dnsmasq" to "radvd" daemon.
- Fixed 6to4 and 6rd default routes issue.
- Fixed conntrack bug for IPv6.
- Fixed tunnelbroker.net URL for auto-update 6in4 tunnels IP via DDNS.
- Fixed SMB server issues.
- Fixed Advanced_IPv6_Content.asp issue for DHCPv6.
- Fixed Advanced_FirmwareUpgrade_Content.asp issue.
- Added custom FTP port from WAN access.
- Updated Transmission to v2.71.
- Updated OpenSSL to v1.0.1c with MIPS32 asm for many cyphers.
3.0.2.5-015:
----------------------------------------------------------
[Firmware 3.0.x.x]
- Used new Linux kernel 3.0.43 LTS.
- Used new NTFS driver ufsd 8.6 from Asus N65U firmware (support volumes > 2TB).
- Used uClibc-0.9.33.2 with upstream updates. Used NPTL threads + TLS.
- Added full IPv6 support (Static/DHCPv6/Tunnels 6in4,6to4,6rd).
- Added support ext4 filesystem with posix_fallocate (fast alloc huge files).
- Added WIDE-dhcp6c port to new busybox v1.20.2. Special thanks to Leonid Lisovskiy (lly.dev).
- Added package radvd-1.8.5 with upstream updates.
- Added package iptables-1.4.15.
- Updated iproute2 to v3.1.0.
- Fixed tunnelbroker.net URL for auto-update 6in4 tunnel IP via DDNS.
[Common changes]
- Migrate to gcc-4.5.4, binutils-2.21.1 cross-toolchain.
- Fixed FCONE/RCONE NAT model for UDP traffic.
- Fixed SMB server issues.
- Fixed Advanced_BasicFirewall_Content.asp issue.
- Fixed Advanced_FirmwareUpgrade_Content.asp issue.
- Fixed Advanced_GWStaticRoute_Content.asp issue and metric bug.
- Fixed lld2d daemon (Windows LLTD proto for network map).
- Added custom FTP port from WAN access.
- Added custom HTTP port for Web access from LAN.
- Added support 3G modem Huawei-E367. Thanks to Leandr.
- Updated busybox to v1.20.2.
- Updated Transmission to v2.71.
- Updated OpenSSL to v1.0.1c with MIPS32 asm (speed-up many cyphers).
- Updated dnsmasq from upstream.
- Updated miniupnpd to v1.7.20120824.
1.1.2.3-010:
----------------------------------------------------------
- Fixed bug in javascript on Web pages Wireless - Wireless MAC Filter.
- Fixed bug in NTFS driver (missing kernel library TEXTSEARCH in kernel config). Regression in
ver. 1.1.2.3-009.
1.1.2.3-009:
----------------------------------------------------------
- Increased available NVRAM space from 32 to 60 kb. To avoid losing of user settings it is necessary
to save them before the upgrade and restore them from the saved .CFG file after.
- Increased table data's input limit up to 64 items.
- Disabled NAPI (RX-polling) of wired network kernel driver (raeth) in 2xRGMII mode.
- Added UVC kernel modules (webcam support).
- Added discrimination between work-days and weekends in Wi-Fi AP and guest AP scheduler.
- Added ability to enter description of each Wi-Fi MAC address in Wireless MAC filter.
- Extended Firewall's MAC Address Filter function to a full-fledged Parental Control function. Each
MAC Address Filter entry may now be associated with particular time and day of the week.
- Updated tunnelbroker.net DDNS service link in "inadyn".
- Added 3 retry count limit for DDNS refresh (inadyn).
- AsusDDNS client was moved to "inadyn". Deprecated "ez-ipupdate" package was removed.
- Corrected some design shortcomings on DDNS web page when using AsusDDNS.
- Added ability to disable STP protocol in LAN bridge when the device is in "Router" mode.
- Added DNS3 field in DHCP server settings.
- Disabled forcing of router's LAN IP as DHCP's DNS if at least one DHCP's DNS address is entered manually.
- Added drop-down listing of clients with auto-substitution in MAC and IP addresses fields on the majority
of the web pages (NewGUI).
- Increased the limit of "Maximum simultaneously connected users" setting up to 50 (SMB/FTP).
- Added ability to hide partitions on a storage for FTP protocol. Create a file named .hidden in the root
directory of the partition to hide it.
- Corrected logic of table data entries removal. Now those entries will be properly removed from NVRAM.
- Fixed UNIX password (telnet/ssh access) issue for login or password that contain characters "$".
- Added an ability to control the LEDs on the front panel of the router.
- WPS button settings, Ethernet LED and Front LED settings were moved to a separate page named "Tweaks".
- Altered the default order of some pages in WebGUI.
- Added separate page "Advanced_Netfilter_Content.asp". Removed "NAT Passthrough" page.
- Added "show/hide password" buttons (NewGUI).
- Added icons for Storage/Printer/Modem (NewGUI). Thanks to the ixbt-forum user "AK47".
- Added button "Clear" to syslog floating panel.
- Ability to change LAN parameters without reboot.
- Updated Russian localized strings.
- Fixed issues in Transmission WebGUI (2.61+).
- Fixed "Wi-Fi scheduler time-zone changes won't take effect without reboot" issue.
- Updated dnsmasq to ver. 2.63.
1.1.2.2-006: