Openstack 端口配额,是什么影响了这个?
Openstack Port Quota, What is effecting this?
上周我在 Openstack Kilo 中超出了我的端口限制,这让我很痛苦。我了解如何查询、更改,并且将来会设置我的服务以在接近此配额时发出通知...但是此配额实际上有什么限制?
来自 documentation:“(IntOpt) 每个租户允许的端口数。负值表示无限制。”
是否有数量限制的虚拟 iSCSI 端口?如果是这样,我的硬件是否有物理限制,如果这变成无限,我可能会超过?
或者这是可以从一个范围内分配的多个IP? (如果是,为什么它被称为端口)
以我为例:
[root@_regionOne_ ~]# neutron quota-show --tenant-id _projectUUID_ -c port
+-------+-------+
| Field | Value |
+-------+-------+
| port | 150 |
+-------+-------+
更改为:
[root@_regionOne_ ~]# neutron quota-show --tenant-id _projectUUID_ --port <new quota limit>
解决问题。但提高我的理解会是一个更好的解决方案!
这个问题终于有了答案,我也很感兴趣。
Port: A port in Neutron represents a virtual switch port on a logical
virtual switch. Virtual machine interfaces are mapped to Neutron
ports, and the ports define both the MAC address and the IP address
to be assigned to the interface plugged into them. Neutron port
definitions are stored in the Neutron database, which is then used by
the receptive plugin agent to build and connect the virtual switching
infrastructure.
摘自《学习 OpenStack 网络》一书。
更新命令应该是;
neutron quota-update --tenant-id projectUUID --port
上周我在 Openstack Kilo 中超出了我的端口限制,这让我很痛苦。我了解如何查询、更改,并且将来会设置我的服务以在接近此配额时发出通知...但是此配额实际上有什么限制?
来自 documentation:“(IntOpt) 每个租户允许的端口数。负值表示无限制。”
是否有数量限制的虚拟 iSCSI 端口?如果是这样,我的硬件是否有物理限制,如果这变成无限,我可能会超过?
或者这是可以从一个范围内分配的多个IP? (如果是,为什么它被称为端口)
以我为例:
[root@_regionOne_ ~]# neutron quota-show --tenant-id _projectUUID_ -c port
+-------+-------+
| Field | Value |
+-------+-------+
| port | 150 |
+-------+-------+
更改为:
[root@_regionOne_ ~]# neutron quota-show --tenant-id _projectUUID_ --port <new quota limit>
解决问题。但提高我的理解会是一个更好的解决方案!
这个问题终于有了答案,我也很感兴趣。
Port: A port in Neutron represents a virtual switch port on a logical virtual switch. Virtual machine interfaces are mapped to Neutron ports, and the ports define both the MAC address and the IP address to be assigned to the interface plugged into them. Neutron port definitions are stored in the Neutron database, which is then used by the receptive plugin agent to build and connect the virtual switching infrastructure.
摘自《学习 OpenStack 网络》一书。
更新命令应该是;
neutron quota-update --tenant-id projectUUID --port