Showing posts with label IP number. Show all posts
Showing posts with label IP number. Show all posts

Thursday, January 15, 2015

What is my IP using JavaScript

<!DOCTYPE HTML>
<html>
<head>
<title>What is my IP?</title>
</head>

<body>

<script>
  var clientIP;
</script>

<script src="http://l2.io/ip.js?var=clientIP"></script>

<script> 
  document.write("Your IP is: ", clientIP);
</script>

</body>

</html>

Tuesday, January 13, 2015

Checking current IP from the command line in Linux

wget -q -O - checkip.dyndns.org | sed -e 's/[^0-9.]//g'