Reputation: 733
I would like to open firewall rules for Microsoft LUIS and BotFramework. They both use TCP port 443, however I need the IP address ranges to unblock the business's firewall.
EDIT: Our Bot is written in NodeJS and hosted on-premises
Upvotes: 1
Views: 1680
Reputation: 71
The IP addresses can change over time, so I recommend using the Get-AzNetworkServiceTag
PowerShell command. Details found here: https://learn.microsoft.com/en-us/powershell/module/az.network/get-aznetworkservicetag?view=azps-6.2.0
Bot Service IPs:
$botService = $serviceTags.Values | Where Name -eq "AzureBotService"
$botService.Properties.AddressPrefixes
LUIS IPs are contained within Cognitive Services Management IPs:
$cognitive = $serviceTags.Values | Where Name -eq "CognitiveServicesManagement"
$cognitive.Properties.AddressPrefixes
FYI, the link to download the JSON list of IPs has also changed: https://www.microsoft.com/en-us/download/details.aspx?id=56519
Upvotes: 2
Reputation: 733
A solutions architect at Microsoft has shared a link with me.
https://www.microsoft.com/en-gb/download/details.aspx?id=41653
There are two options:
Upvotes: 2