In earlier versions such as XP and 2003, ipv6 addresses cannot be manually configured in the "Network Connection" attribute configuration. They can only be configured using netsh. The configuration method is as follows:
First, install IPV6
Step 2: view the currently used local connection information:
For example, if my name is "local connection 3", execute the following commands in sequence:
C: \ Documents ents and Settings \ Administrator> netsh
Netsh> interface ipv6
Netsh interface ipv6> show int
Querying activity status...
Index Met MTU status name
------------------------------
1500 connected to VMware Network Adapter VMnet8
6 0 1500 connected to VMware Network Adapter VMnet1
5 0 1500 connected to local connection 3
4 2 1280 Teredo Tunneling Pseudo-Interface disconnected
3 1 1280 connected to 6to4 Pseudo-Interface
2 1 1280 connected to Automatic Tunneling Pseudo-Interface
1 0 1500 connected Loopback Pseudo-Interface
We can see that my online index is 5 and the IPV6 address to be added is 2001: 2001: 2001: 2001: 2001: 157. Therefore, run
Add address 5 2001: 2001: 2001: 2001: 2001: 157
Netsh interface ipv6> add address 5 2001: 2001: 2001: 2001: 2001: 157
OK.
Netsh interface ipv6>
Step 3: Check whether the settings are successful:
Run the ipconfig command
For example, if IPV6 is successfully added, restart resin or tomcat and run http: // [2001: 2001: 2001: 2001: 2001: 157]: 8080, if the page is successfully accessed, the configuration is successful.
Note that IPV6 Access is in the format of http: // [IPV6]: port. IPV6 is separated by brackets [] and ports.