admin

unix.. unix.. unix.. Beside my eternal love for the kernel, I spent my time wondering in old cities, places, and enjoy very much archeology, history, old castle, sociology, theology and psychology. Beside my passion for Linux, I spend my free time, providing support and writing code for the Open Source Community... I have developed a few apps, API codes and wrote few articles... Beside all, I am also a book worm, a wannabee photograph (well i try :p), a random imaginative cook and a very intuitive, sociable person :) and oh yes! I play the drums :)

Homepage: http://alouche.net

Jabber/GTalk: admin


Posts by admin

quaggOS 0.1a1 released – OSPF/BGP routing solution

March 4, 2010 - 2:53 pm

Tags: , , ,
Posted in BGP, Networking, OSPF | No comments

Hi,
I am pleased to announce that quaggOS in alpha version has been released.
quaggOS is a live linux distribution I created which turns a server/pc into a full BGP/OSPF router. This is achieved by using the Quagga routing solution application.
For more information, visit http://quaggOS.org
To download and test the alpha release, click here

QinQ Vlan tagging and S-Vlans

January 20, 2010 - 1:30 pm

Tags: , ,
Posted in Networking, Switching & Routing, TCP/IP, WAN | No comments

Pre-requiste: Understanding of the 802.1Q Protocol
The purpose of this post is to shed a light on how QinQ Vlan takes place in a bridged network environment.
Before continuing, it is important to keep in mind that 802.1QinQ or 802.1ad isn’t a defined protocol in itself but a mere ammendment of the already existing 802.1Q protocol.
Having said [...]

Ideone – compiler pastebin

November 24, 2009 - 2:14 pm

Tags: ,
Posted in Programming | 2 comments

A friend of mine, just tossed me this link.. http://ideone.com/
What makes Ideone different from any other pastebin is its compiler feature; Supporting about 20 programing language, you will be able to live compile (of course with some limitations) your code.
Let’s find out the perl version running on that server

print $];

and result?

result: success
time: 0s    memory: 3248 [...]

Denial of Service in PHP

November 24, 2009 - 6:58 am

Tags: ,
Posted in PHP | No comments

It was about time, that the PHP team finally included a max_file_uploads directive to limit the number of file upload per request (default is of 20). (cf. http://www.php.net/ChangeLog-5.php#5.3.1)
Until PHP 5.3.1, it was possible to send an X number of file upload request thus creating an X amount of temporary file on the targeted system.. which [...]

The Nagle’s algorithm and TCP throughput

October 29, 2009 - 3:57 pm

Posted in Networking, TCP/IP | No comments

Who talks about about TCP throughput unfortunately can’t step away from the congestion problem that often occurs in TCP session connections.
There are many TCP Congestion Algorithms, from Window Sliding to Fast Recovery; In this post I will only focus on the Nagle’s algorithm and how applications can be tweaked to either make use of the [...]