Learning Academy

The Cure of Ignorance is to Question. MUHAMMAD (PBUH)

IPv6

How to configure IPv6 in Windows XP?

Enable IPv6

1
1.

1
ipv6 install

Configure IP

If you are not using Stateful or Stateless IPv6 address Autoconfiguration you can manually configure your settings using the following commands :

1
1.

1
netsh interface ipv6 add address "Local Area Connection 2" [ipv6 address]

1
2.

1
netsh interface ipv6 add route ::/0 "Local Area Connection 2" [default gateway ipv6 address]

1
3.

1
netsh interface ipv6 add dns "Local Area Connection 2"  [ipv6 address]

1
4.

1
netsh interface ipv6 add dns "Local Area Connection 2" [ipv6 address] index=2

Additonal Commands

You can use the following commands to show all IPv6 routes and the Neighbor Discovery table. The Neighbor Discovery table is the equivialnt to the arp cache but with IPv6 addresses instead of IPv4. It is also worth noting that Neighbor Discovery is part of ICMP6.

1
1.

1
netsh interface ipv6 show neighbors

1
2.

1
netsh interface ipv6 show routes

DNS

Instead of using A records for DNS like IPv4, IPv6 uses AAAA records for domain to IP name resolution. Below shows a brief example,

1
01.

1
C:\Documents and Settings\admin>nslookup

1
02.

1
Default Server:  dns1.isp.net.uk

1
03.

1
Address:  x.x.x.x

1
04.

1
> set type=AAAA

1
05.

1
> ipv6.google.com

1
06.

1
Server:  dns1.isp.net.uk

1
07.

1
Address:  x.x.x.x

1
08.

1
09.

1
DNS request timed out.

1
10.

1
timeout was 2 seconds.

1
11.

1
Non-authoritative answer:

1
12.

1
ipv6.google.com canonical name = ipv6.l.google.com

1
13.

1
ipv6.l.google.com       AAAA IPv6 address = 2a00:1450:8006::63

1
14.

1
ipv6.l.google.com       AAAA IPv6 address = 2a00:1450:8006::93

1
15.

1
ipv6.l.google.com       AAAA IPv6 address = 2a00:1450:8006::68

Ping

You can use the standard ping command to ping a IPv6 IP. But you will need to use the “-6” ping switch to ping a IPv6 name.

1
01.

1
C:\Documents and Settings\admin>ping -6 ipv6.google.com

1
02.

1
03.

1
Pinging ipv6.l.google.com [2a00:1450:8006::93] with 32 bytes of data:

1
04.

1
05.

1
Reply from 2a00:1450:8006::93: time=35ms

1
06.

1
Reply from 2a00:1450:8006::93: time=39ms

1
07.

1
Reply from 2a00:1450:8006::93: time=34ms

1
08.

1
Reply from 2a00:1450:8006::93: time=34ms

1
09.

1
10.

1
Ping statistics for 2a00:1450:8006::93:

1
11.

1
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

1
12.

1
Approximate round trip times in milli-seconds:

1
13.

1
Minimum = 34ms, Maximum = 39ms, Average = 35ms

1
01.

1
C:\Documents and Settings\admin>ping 2a00:1450:8006::93

1
02.

1
03.

1
Pinging 2a00:1450:8006::93 with 32 bytes of data:

1
04.

1
05.

1
Reply from 2a00:1450:8006::93: time=34ms

1
06.

1
Reply from 2a00:1450:8006::93: time=33ms

1
07.

1
Reply from 2a00:1450:8006::93: time=35ms

1
08.

1
Reply from 2a00:1450:8006::93: time=34ms

1
09.

1
10.

1
Ping statistics for 2a00:1450:8006::93:

1
11.

1
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

1
12.

1
Approximate round trip times in milli-seconds:

1
13.

1
Minimum = 33ms, Maximum = 35ms, Average = 34ms

Muhammad Shaukat

Content Developer at LearnAcad.com

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Pin It on Pinterest