What does an IPv6 address look like? Can you give an example of IPv6 address? How do I view an IPv6 address under Linux or UNIX operating systems?
Internet Protocol Version 6 (IPv6) is a version of the Internet Protocol which is designed to succeed Internet Protocol version 4 (IPv4). IPv6 addresses are 128 bits long and are written groups of four hexadecimal digits separated by colons, for example, IPv6 address for www.cyberciti.biz look like as follows:
2607:f0d0:1002:51::4
OR
2607:f0d0:1002:0051:0000:0000:0000:0004
In short IPv6 addresses are divided into two parts: a 64-bit network prefix, and a 64-bit interface identifier. Further IPv6 classified as follows:
- Unicast addresses - used to identify each network interface.
- Anycast addresses - used to identify a group of interfaces at different locations.
- Multicast addresses - used to deliver one packet to many interfaces.
IPv6 does not support the broadcast method. Some IPv6 addresses are used for special purposes, such as the address for loopback which look like as follows:
::1/128
How Do I View LoopBack IPv6 Address under Linux?
Type the following command:
$ ifconfig lo
Sample outputs:
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:354575118 errors:0 dropped:0 overruns:0 frame:0
TX packets:354575118 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:179276910234 (166.9 GiB) TX bytes:179276910234 (166.9 GiB)To see an IPv6 address assinged to Linux eth0 interface enter:
# ip -f inet6 addr show eth0
Sample outputs:
6: eth0:mtu 9000 inet6 2607:f0d0:1002:51::4/64 scope global valid_lft forever preferred_lft forever inet6 fe80::230:48ff:fe33:bc33/64 scope link valid_lft forever preferred_lft forever
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 1 comment… read it below or add one }
thanks for posting simple ipv6 how is look like,