Cannot start Suricata DPDK using real device or vdev

Hello,

can you either try to define EAL params as:

eal-params:
    proc-type: primary
    allow: 0000:0b:00.0
    n: 1

or

eal-params:
    proc-type: primary
    allow: [ "0000:0b:00.0" ]
    n: 1

or just omit the additional allow and n EAL params for the start.

With vdev device I believe it should be more described as:

allow: [ "net_pcap_iface_1,rx_iface=dummy_if1,tx_iface=dummy_if1" ]

or try to define it without the array so:

allow: net_pcap_iface_1
vdev: net_pcap_iface_1,rx_iface=dummy_if1,tx_iface=dummy_if1