Merge "NSX|v3: disable port security on dhcp ports"

This commit is contained in:
Jenkins 2017-08-02 14:53:22 +00:00 committed by Gerrit Code Review
commit 3d89d25667

View File

@ -1070,7 +1070,8 @@ class NsxV3Plugin(agentschedulers_db.AZDhcpAgentSchedulerDbMixin,
"network_id": network['id'],
"tenant_id": network["tenant_id"],
"mac_address": const.ATTR_NOT_SPECIFIED,
"fixed_ips": [{"subnet_id": subnet['id']}]
"fixed_ips": [{"subnet_id": subnet['id']}],
psec.PORTSECURITY: False
}
neutron_port = super(NsxV3Plugin, self).create_port(
context, {'port': port_data})