<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: AX200 - Passive BLE scan - linux in Wireless</title>
    <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1704239#M60769</link>
    <description>Ok finally got passive scanning going. Besides the normal scanning commands i needed send the reset command first (0x03 0x0003 0) and after sending the scan configs i have to set the event mask (0x03 0x0001 0x3dbff807fffbffff) and then and only then does passive scans for advertising packets work. Bluez 5.72 kernel 6.15 and 6.12 AX210. firmware version 200-48.24. Ubuntu 24.04.2 and debian trixie. Only strangeness is the eventmask is auto sent on my one machine running kernel 6.12. All machines are same make and model, all same libs/firmwares etc. But only this one box with one kernel just sends it automatically. A link to my app for sending/receiving advertising data is github.com/bm16ton/bltool</description>
    <pubDate>Fri, 18 Jul 2025 22:05:21 GMT</pubDate>
    <dc:creator>bm16ton</dc:creator>
    <dc:date>2025-07-18T22:05:21Z</dc:date>
    <item>
      <title>AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1227456#M31836</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I'm using Asus X570-E gaming, with built in intel ax200 - bluetooth 5.0. &lt;BR /&gt;&lt;BR /&gt;I can issue BLE connections, normal BLE scans and it works OK. Wifi also works OK. &lt;BR /&gt;However there seems to be no way to issue a passive scan. &lt;BR /&gt;&lt;BR /&gt;I'm mostly using bluepy, but i tried with pure bluez tools. &lt;BR /&gt;Same SW stack is working OK on cheap BLE 4.0 dongle, or Centino N-6235 (on my older laptop)&lt;BR /&gt;&lt;BR /&gt;HW: Intel AX 200 (on Asus X570E gaming)&lt;BR /&gt;SW: Linux kernel 5.9.3 (Manjaro)&lt;BR /&gt;&lt;BR /&gt;Steps to reproduce: &lt;BR /&gt;&amp;nbsp;- using python3 in a temporary directory&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;python3 -m venv .venv &amp;amp;&amp;amp; source .venv/bin/activate # create clean venv
pip install --upgrade pip  # update pip just in case
pip install bluepy # install bluepy and it's dependencies (bluez)

# next line work OK
sudo blescan # sudo needed for BLE scan permissions...

# next line fails, sine it uses passive scan 
sudo python .venv/lib/python3.8/site-packages/bluepy/scanner.py &lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This is an example (using btmon to sniff hci traffic) when passive scan is issued. &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;@ MGMT Open: bluetoothd (privileged) version 1.18                                                                                  {0x0001} 0.280194
@ MGMT Open: bluepy-helper (privileged) version 1.18                                                                              {0x0002} 22.739867
@ MGMT Command: Read Management Version Information (0x0001) plen 0                                                               {0x0002} 22.739920
@ MGMT Event: Command Complete (0x0001) plen 6                                                                                    {0x0002} 22.739924
      Read Management Version Information (0x0001) plen 3
        Status: Success (0x00)
        Version: 1.18
@ MGMT Command: Set Low Energy (0x000d) plen 1                                                                             {0x0002} [hci0] 22.739965
        Low Energy: Enabled (0x01)
@ MGMT Event: Command Complete (0x0001) plen 7                                                                             {0x0002} [hci0] 22.739968
      Set Low Energy (0x000d) plen 4
        Status: Success (0x00)
        Current settings: 0x00000ad1
          Powered
          Bondable
          Secure Simple Pairing
          BR/EDR
          Low Energy
          Secure Connections
@ RAW Open: bluepy-helper (privileged) version 2.22                                                                        {0x0003} [hci0] 22.740140
&amp;lt; HCI Command: LE Set Scan Enable (0x08|0x000c) plen 2                                                                           #1 [hci0] 22.740165
        Scanning: Disabled (0x00)
        Filter duplicates: Disabled (0x00)
&amp;gt; HCI Event: Command Complete (0x0e) plen 4                                                                                      #2 [hci0] 22.858377
      LE Set Scan Enable (0x08|0x000c) ncmd 1
        Status: Command Disallowed (0x0c)
&amp;lt; HCI Command: LE Set Scan Parameters (0x08|0x000b) plen 7                                                                       #3 [hci0] 22.858447
        Type: Passive (0x00)
        Interval: 10.000 msec (0x0010)
        Window: 10.000 msec (0x0010)
        Own address type: Public (0x00)
        Filter policy: Accept all advertisement (0x00)
&amp;gt; HCI Event: Command Complete (0x0e) plen 4                                                                                      #4 [hci0] 22.862378
      LE Set Scan Parameters (0x08|0x000b) ncmd 1
        Status: Command Disallowed (0x0c)
@ RAW Open: bluepy-helper (privileged) version 2.22                                                                        {0x0004} [hci0] 24.864574
&amp;lt; HCI Command: LE Set Scan Enable (0x08|0x000c) plen 2                                                                           #5 [hci0] 24.864596
        Scanning: Disabled (0x00)
        Filter duplicates: Disabled (0x00)
&amp;gt; HCI Event: Command Complete (0x0e) plen 4                                                                                      #6 [hci0] 24.867373
      LE Set Scan Enable (0x08|0x000c) ncmd 1
        Status: Command Disallowed (0x0c)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;If i do &lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;sudo hcitool cmd 0x03 0x0003&lt;/LI-CODE&gt;
&lt;P&gt;before that, btmon returns Status as ""Success" everywhere, however no devices are scanned. And afterwards passive scan fails... &lt;BR /&gt;&lt;BR /&gt;Is this linux driver issue, does HW not support passive scan, or am i missing something obvious?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 11 Nov 2020 14:35:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1227456#M31836</guid>
      <dc:creator>mm8803123</dc:creator>
      <dc:date>2020-11-11T14:35:47Z</dc:date>
    </item>
    <item>
      <title>Re:AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1228041#M31883</link>
      <description>&lt;P&gt;Hello mm8803123, &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for posting on the Intel* Community. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am currently checking the information you provided internally, please expect a response soon. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Maria R.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Nov 2020 08:53:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1228041#M31883</guid>
      <dc:creator>Maria_R_Intel</dc:creator>
      <dc:date>2020-11-13T08:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1236585#M32548</link>
      <description>&lt;P&gt;Hello mm8803123,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for patiently waiting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The engineering team has reviewed the information and it seems to be incomplete, you only provided the &lt;SPAN&gt;btmon trace,&amp;nbsp;&lt;/SPAN&gt;and we would like to know if you can provide the entire btmon logs for further analysis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We will need this information to continue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maria R.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Intel Customer Support Technician&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Dec 2020 05:12:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1236585#M32548</guid>
      <dc:creator>Maria_R_Intel</dc:creator>
      <dc:date>2020-12-12T05:12:50Z</dc:date>
    </item>
    <item>
      <title>Re:AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1238115#M32637</link>
      <description>&lt;P&gt;Hello mm8803123,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Were you able to check the previous post?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need more assistance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maria R.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Dec 2020 02:33:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1238115#M32637</guid>
      <dc:creator>Maria_R_Intel</dc:creator>
      <dc:date>2020-12-17T02:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Re:AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1238813#M32683</link>
      <description>&lt;P&gt;Hi, &lt;BR /&gt;I'll try to produce logs this weekend. &lt;BR /&gt;&lt;BR /&gt;Just to confirm, &lt;BR /&gt;&lt;BR /&gt;I'm going to use command for ble trace:&amp;nbsp; &lt;BR /&gt;&lt;STRONG&gt;btmon -w &amp;lt;trace_file&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;And provide &lt;BR /&gt;&lt;STRONG&gt;dbus.log&lt;/STRONG&gt; file for dbus communication log&lt;BR /&gt;and &lt;BR /&gt;&lt;STRONG&gt;syslog&lt;/STRONG&gt; file&amp;nbsp; for bluetoothd &lt;BR /&gt;&lt;BR /&gt;Is there anything else i can provide or any other file you need? &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 20:25:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1238813#M32683</guid>
      <dc:creator>mm8803123</dc:creator>
      <dc:date>2020-12-18T20:25:17Z</dc:date>
    </item>
    <item>
      <title>Re:AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1239403#M32705</link>
      <description>&lt;P&gt;Hello mm8803123, &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;That is the only information we need at the moment; we will let you know if the team requests more info after checking the information you will provide. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maria R.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Dec 2020 15:08:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1239403#M32705</guid>
      <dc:creator>Maria_R_Intel</dc:creator>
      <dc:date>2020-12-21T15:08:57Z</dc:date>
    </item>
    <item>
      <title>Re:AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1240679#M32797</link>
      <description>&lt;P&gt;Hello mm8803123,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Were you able to check the previous post? &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if you need more assistance. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maria R.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Dec 2020 22:45:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1240679#M32797</guid>
      <dc:creator>Maria_R_Intel</dc:creator>
      <dc:date>2020-12-24T22:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1241877#M32892</link>
      <description>&lt;P&gt;Hello mm8803123,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have not heard back from you, please let us know if you still need assistance.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maria R.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Intel Customer Support Technician&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Jan 2021 01:31:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1241877#M32892</guid>
      <dc:creator>Maria_R_Intel</dc:creator>
      <dc:date>2021-01-09T01:31:05Z</dc:date>
    </item>
    <item>
      <title>Re:AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1244740#M33116</link>
      <description>&lt;P&gt;Hello mm8803123,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Happy New Year!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We thought that as per the Holidays you might not gather the information so we are following up on your thread, please let us know if you need more time. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Maria R.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 09 Jan 2021 01:42:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1244740#M33116</guid>
      <dc:creator>Maria_R_Intel</dc:creator>
      <dc:date>2021-01-09T01:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Re:AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1447049#M44890</link>
      <description>&lt;P&gt;&lt;!-- directives: [] --&gt;&lt;/P&gt;
&lt;DIV id="content"&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;we have same problem with &lt;STRONG&gt;AX 200&lt;/STRONG&gt; on:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;HW: &lt;A href="https://www.compulab.com/products/iot-gateways/iot-gate-imx8-industrial-arm-iot-gateway/" target="_blank"&gt;imx8&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;SW: balenaOS 2.108.1&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Normal BLE scan works fine, h&lt;/SPAN&gt;&lt;SPAN class="sub_section_element_selectors"&gt;owever there seems to be no way to process a passive scan.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Passive scan is working fine on same SW stack with BLE 4.0 dongle (Gembird BTD-MINI5 - it shout have Qualcomm CSR8510 A10).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We try passive scan with hcitool:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;hcitool -i hci0 cmd 0x08 0x000b 00 00 10 00 10 00 00&lt;/LI-CODE&gt;
&lt;P&gt;and also with bluepy-helper:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;# bluepy-helper.c version 1.3.0 built at 11:21:29 on Dec 20 2022
pasv
rsp=$mgmtcode=$badstate&lt;/LI-CODE&gt;
&lt;P&gt;and both returned (see btmon_debug.zip file) this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Bluetooth monitor ver 5.64
= Note: Linux version 5.10.72-iot-gate-imx8-3.0 (aarch64)                                                                                                                                            0.839105
= Note: Bluetooth subsystem version 2.22                                                                                                                                                             0.839115
= New Index: E0:D4:E8:73:99:2E (Primary,USB,hci0)                                                                                                                                             [hci0] 0.839118
= Open Index: E0:D4:E8:73:99:2E                                                                                                                                                               [hci0] 0.839120
= Index Info: E0:D4:E8:73:99:2E (Intel Corp.)                                                                                                                                                 [hci0] 0.839122
@ RAW Open: bluepy-helper (privileged) version 2.22                                                                                                                                  {0x0003} [hci0] 0.839124
@ MGMT Open: bluepy-helper (privileged) version 1.18                                                                                                                                        {0x0002} 0.839126
@ MGMT Open: bluetoothd (privileged) version 1.18                                                                                                                                           {0x0001} 0.839128
@ RAW Open: bluepy-helper (privileged) version 2.22                                                                                                                                  {0x0004} [hci0] 8.131642
&amp;lt; HCI Command: LE Set Scan Enable (0x08|0x000c) plen 2                                                                                                                                     #1 [hci0] 8.131714
        Scanning: Disabled (0x00)
        Filter duplicates: Disabled (0x00)
&amp;gt; HCI Event: Command Complete (0x0e) plen 4                                                                                                                                                #2 [hci0] 8.133771
      LE Set Scan Enable (0x08|0x000c) ncmd 1
        Status: Command Disallowed (0x0c)
&amp;lt; HCI Command: LE Set Scan Parameters (0x08|0x000b) plen 7                                                                                                                                 #3 [hci0] 8.133887
        Type: Passive (0x00)
        Interval: 10.000 msec (0x0010)
        Window: 10.000 msec (0x0010)
        Own address type: Public (0x00)
        Filter policy: Accept all advertisement (0x00)
&amp;gt; HCI Event: Command Complete (0x0e) plen 4                                                                                                                                                #4 [hci0] 8.135768
      LE Set Scan Parameters (0x08|0x000b) ncmd 1
        Status: Command Disallowed (0x0c)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, we would like to know what is the problem and possibly how it could be fixed.&amp;nbsp;&lt;/P&gt;
&lt;DIV id="bodyDisplay" class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation section_selectors question_selectors first_st_section" data-section_field_id="9401-e83f-beb6"&gt;
&lt;DIV class="lia-message-body-content sub_section_element_selectors"&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 16 Jan 2023 11:07:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1447049#M44890</guid>
      <dc:creator>mknapik</dc:creator>
      <dc:date>2023-01-16T11:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1598778#M54109</link>
      <description>&lt;P&gt;What is the status of this bug?&amp;nbsp; I have 2 brand new systems unable to detect BLE clients.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ref.&amp;nbsp;&lt;A href="https://wiki.archlinux.org/title/bluetooth#No_BLE_device_can_be_discovered_with_Intel_Corp._AX200_Bluetooth" target="_blank"&gt;https://wiki.archlinux.org/title/bluetooth#No_BLE_device_can_be_discovered_with_Intel_Corp._AX200_Bluetooth&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Previous posters have already reported the necessary background information, so I am not repeating this here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is concerning to see Intel sitting on this issue for so long.&amp;nbsp;&amp;nbsp;This was first reported over 3 years ago!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a formal bug report system I can use to track this issue?&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2024 19:54:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1598778#M54109</guid>
      <dc:creator>mmmmmmmmm</dc:creator>
      <dc:date>2024-05-18T19:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1605308#M54670</link>
      <description>&lt;P&gt;bump,&lt;BR /&gt;I'm already regretting upgrading my mediatek WiFi card to intel&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 11:20:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1605308#M54670</guid>
      <dc:creator>alexop</dc:creator>
      <dc:date>2024-06-10T11:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: AX200 - Passive BLE scan - linux</title>
      <link>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1704239#M60769</link>
      <description>Ok finally got passive scanning going. Besides the normal scanning commands i needed send the reset command first (0x03 0x0003 0) and after sending the scan configs i have to set the event mask (0x03 0x0001 0x3dbff807fffbffff) and then and only then does passive scans for advertising packets work. Bluez 5.72 kernel 6.15 and 6.12 AX210. firmware version 200-48.24. Ubuntu 24.04.2 and debian trixie. Only strangeness is the eventmask is auto sent on my one machine running kernel 6.12. All machines are same make and model, all same libs/firmwares etc. But only this one box with one kernel just sends it automatically. A link to my app for sending/receiving advertising data is github.com/bm16ton/bltool</description>
      <pubDate>Fri, 18 Jul 2025 22:05:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Wireless/AX200-Passive-BLE-scan-linux/m-p/1704239#M60769</guid>
      <dc:creator>bm16ton</dc:creator>
      <dc:date>2025-07-18T22:05:21Z</dc:date>
    </item>
  </channel>
</rss>

