第 78 章 子网
本章描述了 subnet
命令下的命令。
78.1. 子网创建
创建子网
使用方法:
openstack subnet create [-h] [-f {json,shell,table,value,yaml}] [-c COLUMN] [--noindent] [--prefix PREFIX] [--max-width <integer>] [--fit-width] [--print-empty] [--project <project>] [--project-domain <project-domain>] [--subnet-pool <subnet-pool> | --use-prefix-delegation USE_PREFIX_DELEGATION | --use-default-subnet-pool] [--prefix-length <prefix-length>] [--subnet-range <subnet-range>] [--dhcp | --no-dhcp] [--dns-publish-fixed-ip | --no-dns-publish-fixed-ip] [--gateway <gateway>] [--ip-version {4,6}] [--ipv6-ra-mode {dhcpv6-stateful,dhcpv6-stateless,slaac}] [--ipv6-address-mode {dhcpv6-stateful,dhcpv6-stateless,slaac}] [--network-segment <network-segment>] --network <network> [--description <description>] [--allocation-pool start=<ip-address>,end=<ip-address>] [--dns-nameserver <dns-nameserver>] [--host-route destination=<subnet>,gateway=<ip-address>] [--service-type <service-type>] [--tag <tag> | --no-tag] <name>
值 | 概述 |
---|---|
<name> | 新子网名称 |
值 | 概述 |
---|---|
-h, --help | 显示帮助信息并退出 |
--project <project> | 所有者的项目(名称或 id) |
--project-domain <project-domain> | 项目所属的域(名称或 id)。这可用于在项目名称之间发生冲突。 |
--subnet-pool <subnet-pool> | 此子网将获取 cidr (名称或 ID)的子网池 |
--use-prefix-delegation USE_PREFIX_DELEGATION | 如果 ip 是 ipv6 格式,并且 ip 在外部委派,则使用 prefix-delegation |
--use-default-subnet-pool | 对 --ip-version 使用默认子网池 |
--prefix-length <prefix-length> | 子网池中子网分配的前缀长度 |
--subnet-range <subnet-range> | 子网范围为 cidr 表示法(如果没有指定 --subnet- 池,则为必需),否则是可选的。) |
--dhcp | 启用 dhcp (默认) |
--no-dhcp | 禁用 dhcp |
--dns-publish-fixed-ip | 在 dns 中启用发布固定 ips |
--no-dns-publish-fixed-ip | 在 dns 中禁用发布固定 ips (默认) |
--gateway <gateway> | 为子网指定网关。三个选项为: <ip-address>: Specific IP 地址,用作网关,自动从子网本身中选择,无 : 此子网不使用网关,例如: --gateway 192.168.9.1, --gateway auto, --gateway none (默认是 auto)。 |
--ip-version {4,6} | IP 版本(默认为 4)。请注意,当指定子网池时,IP 版本是从子网池中决定的,这个选项将被忽略。 |
--ipv6-ra-mode {dhcpv6-stateful,dhcpv6-stateless,slaac} | Ipv6 ra (router advertise)模式, 有效模式:[dhcpv6-stateful, dhcpv6-stateless, slaac] |
--ipv6-address-mode {dhcpv6-stateful,dhcpv6-stateless,slaac} | Ipv6 地址模式, 有效模式:[dhcpv6-stateful, dhcpv6-stateless, slaac] |
--network-segment <network-segment> | 与此子网关联的网络段(名称或 ID) |
--network <network> | 此子网属于的网络(名称或 ID) |
--description <description> | 设置子网描述 |
--allocation-pool start=<ip-address>,end=<ip-address> | 此子网的分配池 ip 地址,例如: start=192.168.199.2,end=192.168.199.254 (用于添加多个 IP 地址) |
--dns-nameserver <dns-nameserver> | 此子网的 DNS 服务器(repeat 选项用于设置多个 DNS 服务器) |
--host-route destination=<subnet>,gateway=<ip-address> | 此子网的额外路由,例如: destination=10.10.0.0/16,gateway=192.168.71.254 destination: destination subnet (CIDR 表示法) gateway: nexthop IP address (repeat 选项)来添加多个路由。 |
--service-type <service-type> | 此子网的服务类型,如 network:floatingip_agent_gateway。必须是网络端口的有效设备所有者值(repeat 选项可设置多个服务类型) |
--tag <tag> | 要添加到子网中的标签(repeat 选项用于设置多个标签) |
--no-tag | 没有与子网关联的标签 |
值 | 概述 |
---|---|
-f {json,shell,table,value,yaml}, --format {json,shell,table,value,yaml} | 输出格式,默认为 table |
-c COLUMN, --column COLUMN | 指定要包含的列,可以重复显示多个列 |
值 | 概述 |
---|---|
--noindent | 是否禁用缩进 json |
值 | 概述 |
---|---|
--prefix PREFIX | 在所有变量名称中添加前缀 |
值 | 概述 |
---|---|
--max-width <integer> | 最大显示宽度 <1 要禁用。您还可以使用 CLIFF_MAX_TERM_WIDTH 环境变量,但参数具有优先权。 |
--fit-width | 将表适合显示宽度。如果 --max-width 大于 0,则表示表示。将环境变量 CLIFF_FIT_WIDTH=1 设置为 always 启用 |
--print-empty | 如果没有要显示的数据,打印空表。 |