Monday, August 3, 2009

Configuring Static ipv6 address and default route on Windows 2003 Server

My environment: Windows 2003 Server Enterprise Edition

There is no GUI for ipv6 static address configuration, you can configure it through the netsh CLI:

netsh interface ipv6 set privacy disabled


netsh interface ipv6 add address interface="Local Area Connection" address=2001:1:1::200 store=persistent


netsh interface ipv6 add route ::/0 interface="Local Area Connection" 2001:1:1::1 store=persistent

To verify:


ipconfig /all


ping 2001:1:1::1


netstat -rn

No comments: