无法建立任何连接,因为目标计算机在连接到Azure IP时主动拒绝了该连接
本文关键字:连接 IP Azure 拒绝 任何 建立 因为 目标计算机 | 更新日期: 2023-09-27 18:26:12
当连接到Azure active directory服务时(请参阅下面的代码),我立即收到错误:
No connection could be made because the target machine actively refused it 191.235.135.139:443
在谷歌上搜索了IP后,它将其解析为位于爱尔兰的Azure数据中心。尽管真正奇怪的是随着IP的不时变化,昨天191.235.195.38:443的Azure IP工作时没有任何问题?
public partial class Startup
{
public void ConfigureAuth(IAppBuilder app, HttpConfiguration config)
{
app.UseWindowsAzureActiveDirectoryBearerAuthentication(
new WindowsAzureActiveDirectoryBearerAuthenticationOptions
{
Audience = CloudConfigurationManager.GetSetting("AzureActiveDirectoryInstance"),
Tenant = CloudConfigurationManager.GetSetting("Tenant"),
Provider = new QueryStringOAuthBearerProvider("AUTHORIZATION")
});
app.UseWebApi(config);
}
}
我搜索了很多答案,尝试了一系列建议,比如检查端口443是否未使用任何内容(它告诉我目标机器主动拒绝了连接,这让我相信它能够到达机器)。
我以为这可能与Azure防火墙有关,但我有其他同事能够连接到同一公共IP地址上的服务。
以前有人在尝试连接到Azure服务时遇到过这种情况吗?
在花更多时间研究这个问题后,问题似乎是因为我们的内部网络防火墙阻止了访问。