If you are trying to run a web server over this connection you're better off using a service like
dynamic dns. Serach on Google. To capture the ip address of the client that requested a web page depends on your server side technology. In ASP you could try
Code:
Request.ServerVariables (REMOTE_ADDR)
--
Joe