hi guys.
this:
-> $ podman network create 11-1-1 --macvlan ens11 --subnet 
11.1.1.0/24 --ip-range 11.1.1.24/31
should do more than just:
-> $ podman network inspect 11-1-1
[
     {
         "cniVersion": "0.4.0",
         "name": "11-1-1",
         "plugins": [
             {
                 "ipam": {
                     "type": "dhcp"
                 },
                 "master": "ens11",
                 "type": "macvlan"
             }
         ]
     }
]
if I remember correctly - right?
many thanks, L.