Share via


Azure Firewalls - Packet Capture

Runs a packet capture on AzureFirewall.

POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/azureFirewalls/{azureFirewallName}/packetCapture?api-version=2024-05-01

URI Parameters

Name In Required Type Description
azureFirewallName
path True

string

minLength: 1
maxLength: 56
pattern: ^[a-zA-Z0-9]

The name of the Azure Firewall.

resourceGroupName
path True

string

The name of the resource group.

subscriptionId
path True

string

The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

api-version
query True

string

Client API version.

Request Body

Name Type Description
durationInSeconds

integer (int32)

minimum: 30
maximum: 1800
exclusiveMinimum: False
exclusiveMaximum: False

Duration of packet capture in seconds.

fileName

string

Name of file to be uploaded to sasURL

filters

AzureFirewallPacketCaptureRule[]

Rules to filter packet captures.

flags

AzureFirewallPacketCaptureFlags[]

The tcp-flag type to be captured. Used with protocol TCP

numberOfPacketsToCapture

integer (int32)

minimum: 100
maximum: 90000
exclusiveMinimum: False
exclusiveMaximum: False

Number of packets to be captured.

protocol

AzureFirewallNetworkRuleProtocol

The protocol of packets to capture

sasUrl

string

Upload capture location

Responses

Name Type Description
202 Accepted

Accepted and the operation will complete asynchronously.

Headers

Location: string

Other Status Codes

CloudError

Error response describing why the operation failed.

Security

azure_auth

Azure Active Directory OAuth2 Flow.

Type: oauth2
Flow: implicit
Authorization URL: https://login.microsoftonline.com/common/oauth2/authorize

Scopes

Name Description
user_impersonation impersonate your user account

Examples

AzureFirewallPacketCapture

Sample request

POST https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/azureFirewalls/azureFirewall1/packetCapture?api-version=2024-05-01

{
  "durationInSeconds": 300,
  "numberOfPacketsToCapture": 5000,
  "sasUrl": "someSASURL",
  "fileName": "azureFirewallPacketCapture",
  "protocol": "Any",
  "flags": [
    {
      "type": "syn"
    },
    {
      "type": "fin"
    }
  ],
  "filters": [
    {
      "sources": [
        "20.1.1.0"
      ],
      "destinations": [
        "20.1.2.0"
      ],
      "destinationPorts": [
        "4500"
      ]
    },
    {
      "sources": [
        "10.1.1.0",
        "10.1.1.1"
      ],
      "destinations": [
        "10.1.2.0"
      ],
      "destinationPorts": [
        "123",
        "80"
      ]
    }
  ]
}

Sample response

Location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2024-05-01
Azure-AsyncOperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2024-05-01

Definitions

Name Description
AzureFirewallNetworkRuleProtocol

The protocol of a Network Rule resource.

AzureFirewallPacketCaptureFlags

Properties of the AzureFirewallRCAction.

AzureFirewallPacketCaptureFlagsType

The flags type to be captured.

AzureFirewallPacketCaptureRule

Group of src/dest ips and ports to be captured.

CloudError

An error response from the service.

CloudErrorBody

An error response from the service.

FirewallPacketCaptureParameters

Azure Firewall Packet Capture Parameters.

AzureFirewallNetworkRuleProtocol

The protocol of a Network Rule resource.

Value Description
TCP
UDP
Any
ICMP

AzureFirewallPacketCaptureFlags

Properties of the AzureFirewallRCAction.

Name Type Description
type

AzureFirewallPacketCaptureFlagsType

Flags to capture

AzureFirewallPacketCaptureFlagsType

The flags type to be captured.

Value Description
fin
syn
rst
push
ack
urg

AzureFirewallPacketCaptureRule

Group of src/dest ips and ports to be captured.

Name Type Description
destinationPorts

string[]

List of ports to be captured.

destinations

string[]

List of destination IP addresses/subnets to be captured.

sources

string[]

List of source IP addresses/subnets to be captured.

CloudError

An error response from the service.

Name Type Description
error

CloudErrorBody

Cloud error body.

CloudErrorBody

An error response from the service.

Name Type Description
code

string

An identifier for the error. Codes are invariant and are intended to be consumed programmatically.

details

CloudErrorBody[]

A list of additional details about the error.

message

string

A message describing the error, intended to be suitable for display in a user interface.

target

string

The target of the particular error. For example, the name of the property in error.

FirewallPacketCaptureParameters

Azure Firewall Packet Capture Parameters.

Name Type Description
durationInSeconds

integer (int32)

minimum: 30
maximum: 1800
exclusiveMinimum: False
exclusiveMaximum: False

Duration of packet capture in seconds.

fileName

string

Name of file to be uploaded to sasURL

filters

AzureFirewallPacketCaptureRule[]

Rules to filter packet captures.

flags

AzureFirewallPacketCaptureFlags[]

The tcp-flag type to be captured. Used with protocol TCP

numberOfPacketsToCapture

integer (int32)

minimum: 100
maximum: 90000
exclusiveMinimum: False
exclusiveMaximum: False

Number of packets to be captured.

protocol

AzureFirewallNetworkRuleProtocol

The protocol of packets to capture

sasUrl

string

Upload capture location