gpt4 book ai didi

windows - Azure 云服务 阻止所有公共(public)访问(有异常(exception))

转载 作者:行者123 更新时间:2023-12-03 03:18:23 24 4
gpt4 key购买 nike

在 Azure 云服务中,如何通过异常(exception)列表阻止所有公共(public)访问?

我正在使用 Windows 2008 R2 实例运行 Azure 云服务。

最佳答案

您可以在端点上设置访问控制列表,指定允许或阻止的 IP 地址范围。目前这仅通过 PowerShell 公开。你会做这样的事情:

$acl = New-AzureAclConfig

Set-AzureAclConfig -AddRule Permit -RemoteSubnet "1.2.3.0/24" -Order 1
-ACL $acl -Description "my company IP range"

Set-AzureAclConfig -AddRule Deny -RemoteSubnet "5.6.7.0/24" -Order 2
-ACL $acl -Description "that evil hacker"

Get-AzureVM -ServiceName myservice -Name myvm |
Set-AzureEndpoint -Name http -Protocol tcp -PublicPort 80 -LocalPort 80 -ACL $acl |
Update-AzureVM

关于windows - Azure 云服务 阻止所有公共(public)访问(有异常(exception)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18620794/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com