如何在 GCP 中添加 IP 地址范围?

How to add a range of IP addresses in GCP?

我正在尝试添加 Google 云平台中建议的 IP 地址范围:

Examples: 192.168.0.1, 172.16.0.0/12, 2001:db8::1 or 2001:db8::/64

所以我需要一个范围:

123.123.123.0 -> 123.123.123.99

这是我试过的:

123.123.123.0/99

但我得到:

Invalid IP address or range. Use CIDR notation and enter the lowest IP address in the subnet.

我该如何解决这个问题?

123.123.123.0/99 不是为 123.123.123.0 -> 123.123.123.99 范围

创建 CIDR 块的正确方法

CIDR 块的最大值为 32,而您正在传递 99。

覆盖 123.123.123.0 -> 123.123.123.99 CIDR 块的范围将是 123.123.123.0/25

123.123.123.0/25 将覆盖 123.123.123.0 -> 123.123.123.127