Ya ... pero como se hace :
Lo intento con esto y nada de nada ...
Código:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@ page import="java.net.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
java.net.InetAddress laip=null;
String eldns = "", elhostname="";
try{laip.getAllByName(request.getRemoteAddr());
eldns = laip.getCanonicalHostName();
elhostname = laip.getHostName();
}
catch(Exception e){}
%>
<p style="margin-top: 0; margin-bottom: 0">--%><font color="#FFFFFF"><span style="background-color: #800080"><html><body bgcolor="#CCCCCC">
<b><%=request.getRemoteAddr()%></b><br><%=eldns%><br><%=elhostname%></span></font></p>
</body>
</html>