Azure Firewall Inbound traffic Logs

RTK 26 Reputation points
2021-06-30T19:38:14.75+00:00

I am unable to view any inbound traffic logs in Azure Firewall. I am trying to view in Log Analytics and can see only the outbound traffic logs which are from Azure. Is there any settings to be enabled to view the traffic?

I even tried running the below query to see any traffic coming from my machine.

AzureDiagnostics
| where ResourceType == "AZUREFIREWALLS"
and msg_s contains "request from 192.168.6.12"
and msg_s contains "Allow"

Azure Firewall
Azure Firewall
An Azure network security service that is used to protect Azure Virtual Network resources.
662 questions
0 comments No comments
{count} votes

Accepted answer
  1. GitaraniSharma-MSFT 49,591 Reputation points Microsoft Employee
    2021-07-01T13:43:32.387+00:00

    Hello @RTK ,

    You can find the query packs in Azure Monitor for any Azure resource/service which allows logging. So Azure Firewall log query pack can be found as below:
    110986-image.png

    The overall Azure Firewall log query would be as below:
    AzureDiagnostics
    | where Category == "AzureFirewallNetworkRule" or Category == "AzureFirewallApplicationRule"

    If you have more than one Azure Firewall in your subscription, do specify the Firewall name:
    AzureDiagnostics
    | where Category == "AzureFirewallNetworkRule" and Resource == "FirewallName"

    Or you can modify the query pack as per your requirement to get specific logs.

    Else, we have "Azure firewall workbook" which can gain insights into Azure Firewall events, learn about your application and network rules, and see statistics for firewall activities across URLs, ports, and addresses. Azure Firewall Workbook allows you to filter your firewalls and resource groups, and dynamically filter per category with easy to read data sets when investigating an issue in your logs.

    Kindly let us know if the above helps or you need further assistance on this issue.

    ----------------------------------------------------------------------------------------------------------------

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.