<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; internet protocol</title> <atom:link href="http://www.ghacks.net/tag/internet-protocol/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sat, 11 Feb 2012 08:24:54 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>An Introduction to IPv6</title><link>http://www.ghacks.net/2011/06/06/an-introduction-to-ipv6/</link> <comments>http://www.ghacks.net/2011/06/06/an-introduction-to-ipv6/#comments</comments> <pubDate>Mon, 06 Jun 2011 13:52:07 +0000</pubDate> <dc:creator>Ryan D. Lang</dc:creator> <category><![CDATA[The Web]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[internet protocol]]></category> <category><![CDATA[IP address]]></category> <category><![CDATA[IPv4]]></category> <category><![CDATA[ipv5]]></category> <category><![CDATA[ipv6]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=46100</guid> <description><![CDATA[Right now, most of the world is using IPv4 (Internet Protocol version 4). The problem is that it does not allow for enough addresses. The world is just too big of a place. Enter IPv6. It provides vastly more addresses (2^128) and is the future of the web. Most users will not notice a difference, [...]]]></description> <content:encoded><![CDATA[<p>Right now, most of the world is using IPv4 (Internet Protocol version 4).  The problem is that it does not allow for enough addresses.  The world is just too big of a place.  Enter IPv6.  It provides vastly more addresses (2^128) and is the future of the web.  Most users will not notice a difference, but networking personnel will (you can <a
href="http://www.ghacks.net/2011/01/14/test-your-ipv6-connectivity/">test your IPv6 connectivity</a> here)</p><p>An IPv6 address has a few differences from IPv4.  The first is that it is in hexadecimal instead of decimal.  The second is that it is split up into larger segments and more of them.  The third is that it uses colons (:) rather than periods (.) to divide these segments.  In the end, one does not resemble the other.  This is good because it prevents confusing the two.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/06/ipv6-address.png" alt="ipv6 address" title="ipv6 address" width="600" height="348" class="alignnone size-full wp-image-46101" /></p><p>Hexadecimal is better than decimal for a few reasons.  For one, it takes up less space.  The number &#8220;255&#8243; is &#8220;FF&#8221; in hex; that is %50 smaller.  Hexadecimal also relates more closely to binary.  The number &#8220;1111&#8243; is &#8220;15&#8243; in decimal but &#8220;F&#8221; in hex.  So &#8220;11111111&#8243; is &#8220;FF&#8221; in hex, which is a much cleaner conversion than &#8220;255&#8243; is.  The downside is that humans typically think in decimal, so working with hex takes some getting used to.</p><p>IPv6 has a much larger address size.  It has eight sections to it.  IPv4 had half of that.  The sections themselves are larger too: each one has four digits.  IPv4 could only have three, and that only went to 255 tops.  It should be obvious why this new address can afford all the room we have come to need.  Hopeful it will for a long time.  Here is a sample address.</p><p>FF00:00FF:0000:0000:0000:02f3:0000:0001</p><p>At this point, you may begin to see the down side to IPv6: it is long and hard to remember.  To make them more human readable, there are a few conventions to short address when you have a lot of zeros present.  First of all, you can skip leading zeros, so &#8220;0001&#8243; becomes &#8220;1&#8243; and &#8220;02f3&#8243; becomes &#8220;2f3&#8243; (IPv4 did this too).  Second, groups of all zeros can be abbreviated to &#8220;::&#8221; (a double colon) once; you put nothing there.  That makes &#8220;:0000:0000:0000:&#8221; reduce to &#8220;::&#8221; but &#8220;:0000:&#8221; cannot as it would be ambiguous.  You can apply the first rule, making it &#8220;:0:&#8221; now.  Putting all these rules into place gives us the following address.</p><p>FF00:FF::2f3:0:1</p><p>This address is about as long as an IPv4 number.  Notice how the &#8220;00FF&#8221; shrank to &#8220;FF&#8221; and the &#8220;FF00&#8243; did not.  That was done intentionally to show the difference between leading and trailing zeros.</p><p>There is one more thing you really need to know if you are working with IPv6.  The loop-back address, which was 127.0.0.1 in IPv4, is ::1 now.  It works exactly the same way.  You will have to use the ping6 command in Windows or Linux, so ping6 ::1 is what you would type into the command line.  This will give many XP users an error as IPv6 may not be enabled on your computer.  We have guides on <a
href="http://www.ghacks.net/2011/02/06/how-to-enable-ipv6-on-windows-xp/">how to enable IPv6 in XP</a>, and <a
href="http://www.ghacks.net/2009/07/08/assign-ipv6-addresses-in-linux/">how to assign IPv6 addresses in Linux</a>.</p><p>Some other factoids about IPv6 are that it has is easier to route, more secure, and works better with mobile technology.  There are changes to the way the packets of information are sent that makes it more efficient (e.g. better headers).  It is more secure because it requires the use of IPSec, which is only optional in IPv4.  IPv6 has an address recovery system, so when you change locations, it tries to keep the same address.  These are are some of the that  US government is switching over to it.</p><p>I should note that IPv6 has been found to have vulnerabilities.  Malware tunneling is described in an <a
href="http://www.us-cert.gov/reading_room/IPv6Malware-Tunneling.pdf">article</a> (note: a .pdf file) from the us-cert.gov site.  It often has to do with how firewalls are configured.  Different sources may give different opinions on how secure IPv6 is.</p><p>Wondering what happend to IPv5?  It did exist.  It was developed in the 1970&#8242;s to be used in audio and video streaming.  It was called the Internet Stream Protocol.  It did not get far past the experimental stage and was never adopted.  Ideas from it helped to form IPv6.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/06/06/an-introduction-to-ipv6/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>How Do I Find My IP Address</title><link>http://www.ghacks.net/2010/04/19/how-do-i-find-my-ip-address/</link> <comments>http://www.ghacks.net/2010/04/19/how-do-i-find-my-ip-address/#comments</comments> <pubDate>Mon, 19 Apr 2010 14:54:19 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[display ip]]></category> <category><![CDATA[display private ip]]></category> <category><![CDATA[display public ip]]></category> <category><![CDATA[internet protocol]]></category> <category><![CDATA[IP address]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=24707</guid> <description><![CDATA[If you ware working in tech support you keep hearing questions very often. One of these questions is &#8220;How do I find my IP address&#8221;. The IP, or Internet Protocol, address is assigned to devices in a computer network for identification and addressing purposes. The current version of the Internet Protocol, IPv4, knows public and [...]]]></description> <content:encoded><![CDATA[<p>If you ware working in tech support you keep hearing questions very often. One of these questions is &#8220;How do I find my IP address&#8221;. The IP, or Internet Protocol, address is assigned to devices in a computer network for identification and addressing purposes. The current version of the Internet Protocol, IPv4, knows public and private addresses. Public IP addresses are unique while private ones do not need to be. The main reason for this is to conserve public IPs as IPv4 reaches exhaustion.</p><p><span
id="more-24707"></span><strong>How to look up the private IP address</strong></p><p>The easiest option to look up the private IP address on PCs running the Microsoft Windows operating system is to press Win-R, type cmd and hit enter. This opens a command line prompt. Entering the command ipconfig will display the private IP address of every network adapter of the computer.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/04/how_do_i_find_my_ip_address-500x251.png" alt="how do i find my ip address" title="how do i find my ip address" width="500" height="251" class="alignnone size-medium wp-image-24708" /></p><p><strong>How to look up your public IP address</strong></p><p>The public IP address is usually assigned to the computer by an Internet Service Provider (ISP). They can be divided into static and dynamic IPs with dynamic IPs assigned to home owners usually.</p><p>The easiest way to lookup the public IP address is to use a script on a website that displays it. You can for instance point your web browser to <a
href="http://www.ghacks.net/ip/">http://ghacks.net/ip/</a> to look it up.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/04/how_do_i_find_my_public_ip_address-500x207.png" alt="how do i find my public ip address" title="how do i find my public ip address" width="500" height="207" class="alignnone size-medium wp-image-24709" /></p><p>Computer users without a router, e.g. those on a dialup connection, can issue a command to find out their public IP address much like they can find out their private IP.</p><p>They need to enter the command line again in Windows (press Win-R, type cmd and hit enter). The command netstat -n will display the active connections. The IP address is shown in the left column of the output.</p><p>Users with a router can find out the public IP address by loading the router&#8217;s administration interface. Most routers display the public IP address in that interface.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/04/public_wan_ip.png" alt="public wan ip" title="public wan ip" width="266" height="114" class="alignnone size-full wp-image-24710" /></p><p>Do you have another tip to display the public or private IP address easily? Let us know in the comments.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/04/19/how-do-i-find-my-ip-address/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>IP Spotting</title><link>http://www.ghacks.net/2008/06/27/ip-spotting/</link> <comments>http://www.ghacks.net/2008/06/27/ip-spotting/#comments</comments> <pubDate>Fri, 27 Jun 2008 06:10:10 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Entertainment]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[internet protocol]]></category> <category><![CDATA[ip]]></category> <category><![CDATA[ip spotting]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=5123</guid> <description><![CDATA[Please be warned that there is no serious use for IP Spotting (via Donation Coder). It does provide a level of entertainment though for a while and is definitely a nice idea. IP Spotting is a website that analyzes the IP addresses of its visitors and scores it using an out of this world chart [...]]]></description> <content:encoded><![CDATA[<p>Please be warned that there is no serious use for <a
href="http://www.ipspotting.com/">IP Spotting</a> (via <a
href="http://www.donationcoder.com/forum/index.php?topic=13814.msg118288">Donation Coder</a>). It does provide a level of entertainment though for a while and is definitely a nice idea. IP Spotting is a website that analyzes the IP addresses of its visitors and scores it using an out of this world chart that includes the IP as a poker hand, a bitmap of the IP and if the IP matches a barcode in real life.</p><p>As I said it&#8217;s pure entertainment. The website seems to be highly popular because it already analyzed more than 380K IPs over the course of several years. My current IP scored a whopping 10 which is bad if you consider that the leading IP received 86 points but not so bad again if you consider that there are negative scores as well with the lowest being -4 currently.</p><p>The only two tests that my IP scored was the poker hand where it qualified for a pair (+5) and that it got only even numbers (+5). Users can take a ride with the random IP script and enter an IP manually to see how other IPs are doing on that website or take a look at the leading or last IPs. As I said pure fun for a little while, nothing more.</p><p><span
id="more-5123"></span></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/06/27/ip-spotting/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>The IP: The housenumber of your Computer</title><link>http://www.ghacks.net/2005/10/28/the-ip-the-housenumber-of-your-computer/</link> <comments>http://www.ghacks.net/2005/10/28/the-ip-the-housenumber-of-your-computer/#comments</comments> <pubDate>Fri, 28 Oct 2005 06:48:24 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Browsing]]></category> <category><![CDATA[computer]]></category> <category><![CDATA[internet protocol]]></category> <category><![CDATA[ip]]></category> <category><![CDATA[ip explained]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=69</guid> <description><![CDATA[Everything you do on the net transmitts your Ip Address. If you chat with someone he could easily find it out, if you write an email the information will be transmitted with the email.
The article describes what the IP reveals about the user behind.]]></description> <content:encoded><![CDATA[<p>Before I start I would like to tell you that there are ways to hide the real Ip behind others. (for example by using a proxy server). This is slightly more secure than browsing with your real IP, but its definitely not 100% anonymous.</p><p>Whenever you connect to a website, start a ftp session, write an email or use a chat client your IP address is transmitted. Ip stands for Internet Protocol and is a 32 bit number that is assigned to every computer connected to the internet. 64.202.163.79 would be an IP address.</p><p>You can see that it consists of four 8bit octets each separated by &#8220;.&#8221; ranging from 0 to 255.</p><p>The most important question is of course: What does the Ip address tell others about the user behind the IP ?</p><p><span
id="more-69"></span>Most people are not good remembering numbers, that&#8217;s one of the reasons why the DNS system, Domain Name System, exists. The DNS turns the IP numbers into textform, there are online tools that do that for you, for example <a
href="http://www.dnswatch.info/" target="_blank">dnswatch.info</a></p><p>If you go to the site and enter the Ip 64.202.163.79 you see that the look up reveals www.ghacks.net, the website you are surfing atm. You could easily exchange www.ghacks.net with the IP and still surf the site, try it if you like.</p><p>There are static and dynamic Ip addresses. Static means, the Ip is not changing, most websites have static IPs. Dynamic means it is changing, mostly dialups have these kind of IP addresses.</p><p>Now, you probably want to find out about your own ip I suppose ? There are numerous services that display your IP address when you visit their websites, there are scripts e.g in forum signatures that do the same. One website that offers the service: 1. <a
href="http://whatismyipaddress.com/" target="_blank">whatismyipaddress.com</a></p><p>If you want to try others simply use Google and search for &#8220;what is my ip&#8221;</p><p>The DNS you find gives you detailed information about the internet provider you use. It sometimes also gives more information, for example a country code clearly shows where the internet provider is located. (for example .de mean Germany, .fr is France aso.)</p><p>You can find a comprehensive list of country codes <a
href="http://userpage.chemie.fu-berlin.de/diverse/doc/ISO_3166.html" target="_blank">here</a></p><p>Let us look at an specific example. Most of you receive spam mails every day. You normally only see a basic header of the email, giving you basic information like from, to, date and subject for instance. Most mail tools have an option to also display extended header information, that&#8217;s where the senders IP address is located.</p><p>Here is a typical extended header</p><p><code><br
/> Received: from friko7.onet.pl (c-24-20-255-46.hsd1.or.comcast.net [24.20.255.46])<br
/> by server6.xlhost.de (Postfix) with ESMTP id D885256215<br
/> for [block]3[/block]<br
/> To: admin@ghacks.net<br
/> Message-ID: <mpldjgnmmkadppoapdepdfmimdab
.lonmartinhq@mail2Jasmine.com><br
/> Subject: Account has been created<br
/> ...<br
/> </mpldjgnmmkadppoapdepdfmimdab></lonmartinhq></admin></code></p><p>This line &#8220;Received: from friko7.onet.pl (c-24-20-255-46.hsd1.or.comcast.net [24.20.255.46])&#8221; is the important one. The Ip of the sender is clearly shown 24.20.255.46, so is the DNS c-24-20-255-46.hsd1.or.comcast.net</p><p>There are numerous mail tutorials that describe this procedure in greater detail, for now this is all you need to know for our article.</p><p>Lets take a look at another example. Maybe you are using an instant messenger and would like to know the ip address of the people you are chatting with. On Windows XP, select START, then run. Enter &#8220;cmd&#8221; and then &#8220;netstat -n&#8221; to see a list of all your active connections.</p><p>To receive a IP address you need to have a session open with someone, private chat, file transfer etc.. If you do the netstat command without a session you only see the IP of the server that you are connected to, you simply do not need to know the Ip addresses of the other users who are connected until you communicate with them directly.</p><p>This have been two examples, I could give you more (for websites, IRC, Bittorent) but that&#8217;s not part of this tutorial.</p><p>What have we learned so far ? Everything you do on the internet also transmits your IP Address.</p><p>Your next question probably is the following: If someone has my IP how can he find out more about me ?</p><p>As we have seen the DNS lookup gives you information about the provider. They could easily file a complaint at your provider that your IP did the following at a specific day and time.</p><p>Or, they could hire a lawyer in your country and file a complaint against the user that used the IP at a specific day and time. They normally don´t know your name until a law enforcement agency asked the provider for all the details they have about this IP at the given time. I can´t speak for every country but for the moment most providers only give out specifics about their users when a law enforcement agency asks for the information.</p><p>To clear things up a little bit. Your provider has logs for x days. These logs show at least every IP  address assigned to users with information how long the user was online. If someone complained against you the provider simply would search for the specified Ip address in their logs and get all the information about the user behind the IP.</p><p>I suggest you ask your provider for how long the logs are stored. Mine for example stores them only for a maximum of 24 hours, but I heard of some that save them for up to six months.</p><p>That means, for as long as your internet provider has your connection information in their logs someone could find out about you.</p><p>I hope you found the information provided useful, I will write an anonymity tutorial soon.</p><p><span
class="technoratitag">Technorati Tags: <a
href="http://technorati.com/tag/ip" rel="tag">Ip</a>, <a
href="http://technorati.com/tag/address" rel="tag">Address</a>, <a
href="http://technorati.com/tag/anonymous" rel="tag">Anonymous</a>, <a
href="http://technorati.com/tag/email" rel="tag">Email</a>, <a
href="http://technorati.com/tag/header" rel="tag">Header</a>, <a
href="http://technorati.com/tag/dns" rel="tag">DNS</a></span></p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2005/10/28/the-ip-the-housenumber-of-your-computer/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
