安装和升级 > 安装和配置指南 > 高级配置 > 配置 HTTP Server 和 Embedded Servlet Engine 其他选项 > 为 IPv6 配置 HTTP Server
  
为 IPv6 配置 HTTP Server
在 Windchill shell 中的 <apache_home> 中运行:
ant -f config.xml configureForIPv6 -
DIPv6_Interface=<IPv6_Address> -DIPv4_Interface=<IPv4_Address>
IPv6 地址必须用括号括起来。
例如:
ant -f config.xml configureForIPv6 -
DIPv6_Interface=[11:22:33:44:55:66:77:88] -
DIPv4_Interface=12.34.56.78
如果没有以参数形式具体指定,则 IPv6 地址将默认为 [::1] (localhost),IPv4 地址将默认为 0.0.0.0 (所有可用的监听接口)。
运行该目标将导致 HTTP Server 监听通过 HTTP 和 HTTPS 的 IPv6 和 IPv4 请求。所用的监听端口将是当前使用的端口。
有关其他详细信息,可在运行以下命令后在 config.xml 中审阅 configureForIPv6 目标:
ant -f config.xml -projecthelp.