Commands › Exchange Online
Get-IPAllowListEntry
This cmdlet is available or effective only on Edge Transport servers in on-premises Exchange. Use the Get-IPAllowListEntry cmdlet to view the IP address entries in the IP Allow list that's used by the Connection Filtering agent on Edge Transport servers.
Quick start script
# Get-IPAllowListEntry — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org
# 2. Run and inspect
Get-IPAllowListEntry -IPAddress <IPAddress> | Format-List
# 3. Export for evidence / drift tracking
Get-IPAllowListEntry | Export-Clixml .\IPAllowListEntry-$(Get-Date -Format yyyyMMdd).xml
Syntax — 2 parameter sets
IPAddress
Get-IPAllowListEntry -IPAddress <IPAddress>
[-ResultSize <Unlimited>]
[-Server <ServerIdParameter>]
[<CommonParameters>]
Identity
Get-IPAllowListEntry [[-Identity] <IPListEntryIdentity>]
[-ResultSize <Unlimited>]
[-Server <ServerIdParameter>]
[<CommonParameters>]
Parameters (4)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.