
netdev
social web, ip networks and stuff
Netdev is my personal server that I use to practice with different scripts and network tests, mostly around IPv6 support with modern OS's and browsers. It's also the basecamp hosting for some of my familly members.
This server is housed in my basement in Brussels and serves my home network needs
Too bad, you're are still using IPv4 to access this server. Your IPv4 address is 38.107.179.230
What's up in there ?
-
This place is intended to stay a simple landing page that provides you some information about my online activities and the one of some relatives. Below I insert some scripts that I'm using at different places as well as a collection of links you might want to have a look at.
-
I'm an active supporter of Worl IPv6 launch, June 6th 2012.
101 scripting for home
-
User-Agent details
php
Simple script to diplay visitor's OS and browser
- print("User-Agent: $_SERVER[HTTP_USER_AGENT]");
Gives you:
User-Agent: CCBot/1.0 (+http://www.commoncrawl.org/bot.html) -
Server HTTP headers
php
Display the HTTP headers of a given server
- $url = 'http://wsl.netdev.be';
- print_r("get_headers($url)");
- print_r("get_headers($url, 1)");
-
IPv6 check
php
test if you're connecting using IPv4 or IPv6
- if (strstr($_SERVER['REMOTE_ADDR'],":")) {
- print("Your IPv6 address is $_SERVER[REMOTE_ADDR]") ;
- } else {
- print("Your IPv4 address is $_SERVER[REMOTE_ADDR]") ;
- }
Gives you:
Your IPv4 address is 38.107.179.230
