Is WOL usable with Intel X710 10GbE SFP+ ports in bond?

Hi,

I have an MS-01 machine, and would like to enable WOL on the two bonded Intel X710 10G NICs.
The ethtool -s command do not work with an error, and the wol commands do not work either to boot the machine.

Code:
# lspci
...
03:00.0 Ethernet controller: Intel Corporation Ethernet Controller X710 for 10GbE SFP+ (rev 02)
03:00.1 Ethernet controller: Intel Corporation Ethernet Controller X710 for 10GbE SFP+ (rev 02)
...

Code:
# ip a
...
4: enp3s0f0np0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
    link/ether 58:47:ca:77:d7:6a brd ff:ff:ff:ff:ff:ff
5: enp3s0f1np1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
    link/ether 58:47:ca:77:d7:6a brd ff:ff:ff:ff:ff:ff permaddr 58:47:ca:77:d7:6b
6: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
    link/ether 58:47:ca:77:d7:6a brd ff:ff:ff:ff:ff:ff
...

Code:
# ethtool enp3s0f0np0 | grep Wake
        Supports Wake-on: g
        Wake-on: g
# ethtool enp3s0f0np0 | grep Wake
        Supports Wake-on: g
        Wake-on: g
# ethtool bond0 | grep Wake

Code:
auto lo
iface lo inet loopback

iface enp88s0 inet manual

iface enp89s0 inet manual

auto enp3s0f0np0
iface enp3s0f0np0 inet manual

auto enp3s0f1np1
iface enp3s0f1np1 inet manual

auto bond0
iface bond0 inet manual
        bond-slaves enp3s0f0np0 enp3s0f1np1
        bond-miimon 100
        bond-mode 802.3ad
        bond-xmit-hash-policy layer3+4
        wake-on-lan true

auto vmbr0
iface vmbr0 inet manual
        bridge-ports bond0
        bridge-stp off
        bridge-fd 0
        bridge-vlan-aware yes
        bridge-vids 20 30 40 50 100
        offload-rx-vlan-filter off

iface wlp90s0 inet manual

auto vmbr0.100
iface vmbr0.100 inet static
        address 10.0.100.11/24
        gateway 10.0.100.1

auto vmbr0.20
iface vmbr0.20 inet static
        address 10.0.20.11/24
...

Is there comething I can try to enable WOL on the bond0 interface?

Thank you.