netavark icon indicating copy to clipboard operation
netavark copied to clipboard

Feature Request: enable netavark to simply connect containers without any other network action

Open karampok opened this issue 2 years ago • 3 comments

I am using podman with CNI and specifically I am using that file

cat /etc/cni/net.d/access.conflist
{
   "cniVersion": "0.4.0",
   "name": "access",
   "plugins": [
      {
         "type": "bridge",
         "bridge": "access",
         "isGateway": false,
         "ipMasq": false,
         "hairpinMode": true,
         "ipam": {
            "type": ""
         }
      }
   ]
}

where the bridge have been created externally and manually. I would like to be able to the same.

Thanks

karampok avatar Nov 10 '23 13:11 karampok

is this something you want to work on?

baude avatar Nov 15 '23 20:11 baude

Is this different from an internal network (no external route) which we support already?

mheon avatar Nov 15 '23 20:11 mheon

Internal blocks routing from the bridge interface via sysctl that may be different from CNI. As for no ip addresses there is --ipam-driver=none option which should come close.

Luap99 avatar Nov 16 '23 09:11 Luap99