New build --- 26081 --- 01/29/2015

Post new topic   Reply to topic    DD-WRT Forum Index -> Ralink SoC based Hardware
Author Message
KrypteX
DD-WRT Guru


Joined: 18 Jan 2014
Posts: 2411

PostPosted: Thu Jan 29, 2015 12:14    Post subject: New build --- 26081 --- 01/29/2015 Reply with quote
New build 26081 - 01/29/2015 available: ftp://ftp.dd-wrt.com/betas/2015/01-29-2015-r26081/

Selected changelog (since 25974) from http://www.dd-wrt.com/phpBB2/viewtopic.php?t=279468 :

Your reports for Ralink routers are highly appreciated !!
Router Model:
Status:
Reset:
Errors:

_________________
THERE ARE NO STRANGERS HERE; ONLY FRIENDS YOU HAVEN'T YET MET.
________________________________________________________________________________________________________
DD-WRT CHANGELOG | DEVICES | DD-WRT BUILDS | KONG BUILDS | UNOFFICIAL BUILDS | DD-WRT in VIRTUALBOX


Last edited by KrypteX on Sun Apr 26, 2015 5:46; edited 6 times in total
Sponsor
KrypteX
DD-WRT Guru


Joined: 18 Jan 2014
Posts: 2411

PostPosted: Thu Jan 29, 2015 12:21    Post subject: Reply with quote
Router Model: D-Link DIR-615 D2
Firmware: DD-WRT v24-sp2 (01/29/15) std - build 26081
Kernel: Linux 3.2.66 #13449 Thu Jan 29 04:31:59 CET 2015 mips
Status: OK
Reset: 30/30/30 reset before and after flash
Errors: NO

Still a small bug in displayed HT40 channels for 5+Upper...9+Upper (ticket 3951). Fixed for Ralink in 26085-26086, so final fix will be included in next official build.

_________________
THERE ARE NO STRANGERS HERE; ONLY FRIENDS YOU HAVEN'T YET MET.
________________________________________________________________________________________________________
DD-WRT CHANGELOG | DEVICES | DD-WRT BUILDS | KONG BUILDS | UNOFFICIAL BUILDS | DD-WRT in VIRTUALBOX


Last edited by KrypteX on Fri Jan 30, 2015 8:18; edited 2 times in total
ervau
DD-WRT User


Joined: 28 Sep 2013
Posts: 313

PostPosted: Thu Jan 29, 2015 12:47    Post subject: Reply with quote
Router Model: D-Link DIR-615 H1
Firmware: upgrade from r25974 to r26081
Status: OK
Reset: no 30/30/30 reset
restored setting from r25974
Errors: none
HT-40 channel issue not checked yet.
frtorres
DD-WRT Novice


Joined: 15 Nov 2014
Posts: 11

PostPosted: Thu Jan 29, 2015 17:14    Post subject: Build 26081-Results on Dlink DIR600b Reply with quote
Router Model: Dlink-DIR600 rev b
Firmware Version: DD-WRT v24-sp2 (01/29/15) - build 26081
Kernel Version: Linux 3.2.66 #13445 Thu Jan 29 04:30:42 CET 2015 mips

Status: OK.
liverpoolatnight
DD-WRT User


Joined: 29 May 2008
Posts: 243
Location: United Kingdom

PostPosted: Thu Jan 29, 2015 19:18    Post subject: D-Link DIR-615 D2 Reply with quote
Router Model: D-Link DIR-615 D2
Firmware: DD-WRT v24-sp2 (01/29/15) std - build 26081
Kernel: Linux 3.2.66 #13449 Thu Jan 29 04:31:59 CET 2015 mips
Status: OK
Reset: Just did a upgrade from r25974 build using dir615d-ddwrt-webflash.bin then the router reset then i did a power off and on giving 30 secs eatch.

Errors: QoS Gui dont work probably on Services but Netmask/MAC is ok. When giving 30720 kbps downlink % 12288 Kbps uplink if i start my HTTP downloads 1st the bitorrent over powers it by 20Mb



I have set the Wireless channel to Auto but seems to get stuck whenever it gos to 12, Maybe as Europeanss cant use Channel 12?


TEMP FIX!

30Mb Downlink
12Mb Uplink
Add in Administration > Commands > Save Firewall


Code:
#--------------------------------------------
#WRT54 Script Generator v1.02
#(C) 2006-2007 Robert "Robson" Mytkowski
#--------------------------------------------
TCA="tc class add dev br0"
TFA="tc filter add dev br0"
TQA="tc qdisc add dev br0"
SFQ="sfq perturb 10"
tc qdisc del dev br0 root
tc qdisc add dev br0 root handle 1: htb
tc class add dev br0 parent 1: classid 1:1 htb rate 20480kbit
$TCA parent 1:1 classid 1:10 htb rate 10240kbit ceil 20480kbit prio 0
$TCA parent 1:1 classid 1:11 htb rate 8192kbit ceil 20480kbit prio 2
$TCA parent 1:1 classid 1:12 htb rate 2048kbit ceil 18432kbit prio 4
$TQA parent 1:10 handle 10: $SFQ
$TQA parent 1:11 handle 11: $SFQ
$TQA parent 1:12 handle 12: $SFQ
$TFA parent 1:0 prio 0 protocol ip handle 10 fw flowid 1:10
$TFA parent 1:0 prio 2 protocol ip handle 11 fw flowid 1:11
$TFA parent 1:0 prio 4 protocol ip handle 12 fw flowid 1:12
iptables -t mangle -A POSTROUTING -p tcp --sport 80 -j MARK --set-mark 10
iptables -t mangle -A POSTROUTING -p tcp --sport 443 -j MARK --set-mark 11
iptables -t mangle -A POSTROUTING -p tcp --sport 1024:65535 -j MARK --set-mark 12
TCAU="tc class add dev imq0"
TFAU="tc filter add dev imq0"
TQAU="tc qdisc add dev imq0"
modprobe imq
modprobe ipt_IMQ
ip link set imq0 up
tc qdisc del dev imq0 root
tc qdisc add dev imq0 root handle 1: htb
tc class add dev imq0 parent 1: classid 1:1 htb rate 12288kbit
$TCAU parent 1:1 classid 1:10 htb rate 6144kbit ceil 12288kbit prio 0
$TCAU parent 1:1 classid 1:11 htb rate 5120kbit ceil 12288kbit prio 2
$TCAU parent 1:1 classid 1:12 htb rate 1024kbit ceil 10240kbit prio 4
$TQAU parent 1:10 handle 10: $SFQ
$TQAU parent 1:11 handle 11: $SFQ
$TQAU parent 1:12 handle 12: $SFQ
$TFAU parent 1:0 prio 0 protocol ip handle 10 fw flowid 1:10
$TFAU parent 1:0 prio 2 protocol ip handle 11 fw flowid 1:11
$TFAU parent 1:0 prio 4 protocol ip handle 12 fw flowid 1:12
iptables -t mangle -A PREROUTING -p tcp --dport 80 -j MARK --set-mark 10
iptables -t mangle -A PREROUTING -p tcp --dport 443 -j MARK --set-mark 11
iptables -t mangle -A PREROUTING -p tcp --dport 1024:65535 -j MARK --set-mark 12
iptables -t mangle -A PREROUTING -j IMQ --todev 0

_________________
TP-Link TL-WDR3600 v1 [EU]: r36330 (07/16/18 )
D-Link DIR-615 D2 [EU]: r36330 (07/16/18 )
Mikrotik RB750r2 (OpenWrt 17.01.4)
EE BrightBox 1 aka A4001N (OpenWrt 17.01.4)
Sagemcom FAST@5364 (VDSL2,FTTC (Fibre to the Cabinet) Synced 65/17

Twitter: @francisuk1989
---------------------------------
Found a bug? Report it http://svn.dd-wrt.com
DD-WRT Official FB Group: https://www.facebook.com/groups/493762527744455


Last edited by liverpoolatnight on Sun Feb 01, 2015 15:12; edited 4 times in total
javanse
DD-WRT Novice


Joined: 27 May 2014
Posts: 34
Location: Germany

PostPosted: Sat Jan 31, 2015 14:04    Post subject: Reply with quote
Router Model: D-Link DIR-615 H2
Firmware: upgrade from r25948 to r26081
Status: OK
Reset: no 30/30/30 reset
retained setting from old build
Errors: none

_________________
Asus RT-AC87U
DD-WRT v3.0-r36596 std
mofongo
DD-WRT Novice


Joined: 29 Oct 2014
Posts: 19

PostPosted: Sun Feb 01, 2015 9:05    Post subject: Reply with quote
Router Model: WHR-300HP2
Status: Not OK
Reset: 30-30-30 & MTD Wipe
Errors: No WAN IP

Been like this for a pretty long time with any build past June's. At least it flashed right this time. Confused
Display posts from previous:    Page 1 of 1
Post new topic   Reply to topic    DD-WRT Forum Index -> Ralink SoC based Hardware All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum