gpt4 book ai didi

azure - 如何查找 Azure Function App IP 进行白名单

转载 作者:行者123 更新时间:2023-12-04 21:04:29 25 4
gpt4 key购买 nike

我开发了一个 PowerShell 脚本,每天使用 MX 记录 DNS 向指定用户发送一次邮件。邮件已成功发送,但所有邮件都会进入垃圾邮件文件夹。

Exchange 团队已分析邮件 header 并回复发件人 IP 地址需要列入白名单。

当我为我的函数应用程序使用消耗计划时,如何查找 Azure 函数 IP 或 IP 范围。

问候,K森蒂拉詹

最佳答案

不幸的是,自 Kim 的回答以来,情况发生了变化。现在,您必须通过 Azure 资源管理器进入 JSON 文件以查找可能的出站 IP 地址。根据 current Microsoft documentation :

  1. Sign in to the Azure Resource Explorer.
  2. Select subscriptions > {your subscription} > providers > Microsoft.Web > sites.
  3. In the JSON panel, find the site with an id property that ends in the name of your function app.
  4. See outboundIpAddresses and possibleOutboundIpAddresses.

或者,您也可以通过 Az Powershell 模块执行此操作:

az webapp show --resource-group <group_name> --name <app_name> --query outboundIpAddresses --output tsv

az webapp show --resource-group <group_name> --name <app_name> --querypossibleOutboundIpAddresses --output tsv

关于azure - 如何查找 Azure Function App IP 进行白名单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49998746/

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