Login:
https://launchpad.37signals.com/signin
Account:
leic.zheng@tcl.com
http://en.wikipedia.org/wiki/Multipath_TCP
http://multipath-tcp.org/data/MultipathTCP-netsys.pdf
http://nrg.cs.ucl.ac.uk/mptcp/implementation.html
http://appleinsider.com/articles/13/09/20/apple-found-to-be-using-advanced-multipath-tcp-networking-in-ios-7
http://lwn.net/Articles/544399/
https://www.usenix.org/conference/nsdi12/technical-sessions/presentation/raiciu
http://www.cyberciti.biz/faq/install-nginx-centos-rhel-6-server-rpm-using-yum-command/
# cd /tmp
# wget http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpmnginx-release-centos-6-0.el6.ngx.noarch.rpm
# rpm -ivh
# yum install nginx
# chkconfig nginx on
# service nginx start
# service nginx stop
# service nginx restart
# service nginx status
# service nginx reload
To edit the nginx configuration file, enter:
# nano /etc/nginx/nginx.conf
Set or update worker_processes as follows (this must be set to CPU(s) in your system. Use the lscpu | grep ‘^CPU(s)’ command to list the number of CPUs in the server)
worker_processes 2;
Turn on gzip support:
gzip on;
Edit the file /etc/nginx/conf.d/default.conf, enter:
# nano /etc/nginx/conf.d/default.conf
Set IP address and TCP port number:
listen 199.241.137.179:80;
Set server name:
server_name vps.zhenglei.net;
Start the server:
# service nginx start
Verify that everything is working:
# netstat -tulpn | grep :80
# ps aux | grep nginx
Edit the file /etc/sysconfig/iptables, enter:
# nano /etc/sysconfig/iptables
Add the following lines, ensuring that they appear before the final LOG and DROP lines for the INPUT chain to open port 80:
-A INPUT -m state --state NEW -p tcp --dport 80 -j ACCEPT
Save and close the file. Finally, restart the firewall:
# service iptables restart
刷DDWRT 精简版:
*****************************************************************
ignore r24118 , seem’s dosen’t work on WNR2000V3
ignore r24461, as it have downgrade bug
sudo apt-get install subversion sudo apt-get install scons sudo apt-get install libfuse-dev svn co http://exfat.googlecode.com/svn/trunk/ exfat-read-only cd exfat-read-only/ scons sudo scons install Installed tool: /sbin/dumpexfat /sbin/exfatfsck /sbin/exfatlabel /sbin/fsck.exfat -> exfatfsck /sbin/mkexfatfs /sbin/mkfs.exfat -> mkexfatfs /sbin/mount.exfat -> mount.exfat-fuse /sbin/mount.exfat-fuse Usage example: /sbin/fsck.exfat /dev/sdc1 /sbin/dumpexfat /dev/sdc1 mkdir /tmp/exfat sudo /sbin/mount.exfat /dev/sdc1 /tmp/exfat mount | grep exfat df -a /tmp/exfat sudo umount /tmp/exfat