Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Enter the following commands to configure computer A (these are Windows XP specific):

Code Block
# configure IPv4 address on Ethernet interface
netsh interface ip add address "IEEE802.3" 10.1.0.1 255.255.0.0
 
# configure IPv6 address on Ethernet interface
netsh interface ipv6 add address "IEEE802.3" aaaa::1

Enter the following commands to configure computer B (these are Windows Vista specific):

Code Block
# configure IPv4 address on Ethernet interface
netsh interface ip add address "IEEE802.3" 10.1.0.2 255.255.0.0

# configure IPv6 address on Ethernet interface
netsh interface ipv6 add address "IEEE802.3" aaaa::2

Verify connectivity by pinging in both directions, using both IPv4 and IPv6:

From the computer A:

Code Block
# using IPv4
ping 10.1.0.2

# using IPv6
ping aaaa::2

From the computer computer B:

Code Block
# using IPv4
ping 10.1.0.1
 
# using IPv6
ping aaaa::1