Difference between revisions of "DD-WRT OpenWRT"

From Hack Sphere Labs Wiki
Jump to: navigation, search
(WRT54GL)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
=WRT54GL=
 
=WRT54GL=
 +
 +
==DDWRT WRT54GL==
 +
 +
*Previously Used:  ftp://ftp.dd-wrt.com/others/eko/V24_TNG/svn12548/dd-wrt.v24-12548_NEWD_mini.bin
 +
*Peacock: http://www.dd-wrt.com/phpBB2/viewtopic.php?t=51486
 +
*Firmware: http://www.dd-wrt.com/phpBB2/viewtopic.php?t=52043
 +
*Reccomended Firmware: ftp://dd-wrt.com/others/eko/BrainSlayer-V24-preSP2/2010/08-12-10-r14929/broadcom/
 +
 +
 +
 +
==Notes==
 +
 
*http://www.dd-wrt.com/wiki/index.php/Linksys_WRT54GL
 
*http://www.dd-wrt.com/wiki/index.php/Linksys_WRT54GL
 
*OpenWRT to DDWRT:  http://www.dd-wrt.com/phpBB2/viewtopic.php?t=24358
 
*OpenWRT to DDWRT:  http://www.dd-wrt.com/phpBB2/viewtopic.php?t=24358
Line 8: Line 20:
  
 
Flash with different browser if it does not work.
 
Flash with different browser if it does not work.
 +
 +
 +
==Rate Limiting/QOS==
 +
*http://blogs.walkerart.org/newmedia/2009/06/22/build-a-bridging-firewall-cheap/
 +
*http://www.blackcatstudios.org/content/dd-wrt-rate-limiting-and-other-hacks
 +
*http://lartc.org/howto/lartc.cookbook.ultimate-tc.html
 +
 +
===Simple Test===
 +
<pre>
 +
tc qdisc del dev vlan1 root
 +
tc qdisc del dev vlan1 ingress
 +
 +
 +
 +
tc qdisc add dev vlan1 root handle 1: htb default 20
 +
tc class add dev vlan1 parent 1: classid 1:1 htb rate 68kbit burst 10000k
 +
tc qdisc add dev vlan1 handle ffff: ingress
 +
tc filter add dev vlan1 parent ffff: protocol ip prio 50 u32 match ip src 0.0.0.0/0 police rate 68kbit burst 10000k drop flowid :1
 +
</pre>

Latest revision as of 08:21, 26 March 2015

WRT54GL

DDWRT WRT54GL


Notes

Flash with different browser if it does not work.


Rate Limiting/QOS

Simple Test

tc qdisc del dev vlan1 root
tc qdisc del dev vlan1 ingress



tc qdisc add dev vlan1 root handle 1: htb default 20
tc class add dev vlan1 parent 1: classid 1:1 htb rate 68kbit burst 10000k
tc qdisc add dev vlan1 handle ffff: ingress
tc filter add dev vlan1 parent ffff: protocol ip prio 50 u32 match ip src 0.0.0.0/0 police rate 68kbit burst 10000k drop flowid :1