Trucs:Déterminer son adresse IP derrière un routeur ou firewall
Aller à la navigation
Aller à la recherche
Ozh<ozh@planetquake.com>
En LAN, connecté à internet derrière un routeur ou un firewall, le truc habituel avec ifconfig ([?aff_item=127 script]) ne fonctionne pas, puisqu'il ne vous permet que de voir votre adresse IP interne.
Pour y remédier, j'utilise ce petit script très simple :
#!/bin/bash
lynx --source http://frenchfragfactory.net/cgi/ip.cgi
lynx --source http://frenchfragfactory.net/cgi/ip.cgi
Ce script ip.cgi est lui-même simplissime :
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print $ENV{'REMOTE_ADDR'};
print "Content-type: text/html\n\n";
print $ENV{'REMOTE_ADDR'};