cloudify-cosmo / cloudify-openstack-plugin

Cloudify OpenStack Plugin
20 stars 66 forks source link

How to disable network security ? #158

Closed thomnico closed 7 years ago

thomnico commented 7 years ago

In NfV realm many of the VMs will be routers, hence the arp filtering must be disabled.

How can I get a nonfiltered port in Cloudify to give to my VMs ??

idanmo commented 7 years ago

Is this an operating system setting or Neutron?

michalskalski commented 7 years ago
  VNF_port:
    type: cloudify.openstack.nodes.Port
    properties:
    interfaces:
      cloudify.interfaces.lifecycle:
        create:
          inputs:
            args:
              port_security_enabled: false
thomnico commented 7 years ago

Thanks