quic webserver and client

You don´t know what is quic?

 

Please read these excellent post

Google’s QUIC protocol: moving the web from TCP to UDP

You are using Chrome ? Open a new Tab and type  chrome://net-internals/#quic

Please Check your Firewall Port UDP/443 so that Traffic is Outgoing.

No time for read the blog post?

Podcast about quic and some other things

http://podcast.sysca.st/podcast/4-curl-libcurl-future-web-daniel-stenberg/

More Details for Chrome or Iron User

https://www.chromium.org/quic

You want run on your own Server?

the only webserver that can do that

https://github.com/mholt/caddy/wiki/QUIC

http://devsisters.github.io/goquic/

thx to Mattias Geniar 

 

 

Apache Logs meisten Zugriffe

Gute Frage, eine Zeile Code und schon kann es los gehen.

/var/log/apache(httpd) je nach System

tail -10000 access_log | awk ‘{print $1}’ | sort | uniq -c | sort -n | tail

gefunden bei

http://www.commandlinefu.com/commands/view/6/analyse-an-apache-access-log-for-the-most-common-ip-addresses

schauen wie viele Verbindungen der Apache aufgebaut hat

http://wiki.ubuntuusers.de/lsof

http://www.commandlinefu.com/ immer was passendes Dabei