使用 IPv6 创建 IIS 绑定到站点?
http://learn.iis.net/page.aspx/327/powershell- script/
CreateIISBindingOntoSite "DAP1Site1" 80 "www.DAP1Site2.com" "http"
但是我想生成并使用 IPv6 IP 地址。我的新 DNS 管理服务允许我使用 IPv6 地址和主机名。
我需要先自动生成 IPv6 IP 地址吗? 如何自动生成 IPv6 IP 地址? (通过代码)
注意:我使用 IIS 7.5
谢谢!
http://learn.iis.net/page.aspx/327/powershell-scripts/
CreateIISBindingOntoSite "DAP1Site1" 80 "www.DAP1Site2.com" "http"
However I want to generate and usa a IPv6 IP address. My new DNS Managment service allows me to use IPv6 addresses and host names.
Do I need to auto-generate IPv6 IP address first?
How do I auto-generate a IPv6 IP address? (by code)
note: I use IIS 7.5
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的建议是扔掉那个旧脚本。如果您使用的是 IIS7.5,那么您将可以使用 WebAdministration PowerShell 模块:
要加载此文件,请执行以下操作:
看一下
New-WebBinding
命令:您可以在此处找到有关这些 CmdLet 的更多信息:
关于 IPv6地址是你无法凭空捏造出来的。您将从池中分配一个公共 IP 地址,或者需要使用唯一的本地 IPv6单播地址(与 RFC1918 私有 IPv4 地址同义)。
My advice would be to throw away that old script. If you're using IIS7.5 then you'll have the WebAdministration PowerShell module available to you:
To load this do:
Have a look at the
New-WebBinding
command:You can find out more about these CmdLet's here:
With regard to IPv6 addresses you can't just magically make one up. You'll either be allocated a public IP address from your pool or you need to use a Unique Local IPv6 Unicast Address (which is synonymous with RFC1918 private IPv4 addresses).