2014-02-13 08:07:51 -07:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
"""Network action implementations"""
|
|
|
|
|
2016-05-13 17:27:12 -05:00
|
|
|
from osc_lib.command import command
|
2016-05-13 16:14:09 -05:00
|
|
|
from osc_lib import utils
|
|
|
|
|
2016-04-16 10:59:37 +08:00
|
|
|
from openstackclient.i18n import _
|
2015-02-16 23:21:00 -08:00
|
|
|
from openstackclient.identity import common as identity_common
|
2016-02-10 01:41:45 +08:00
|
|
|
from openstackclient.network import common
|
2016-12-05 22:54:49 -06:00
|
|
|
from openstackclient.network import sdk_utils
|
2014-02-13 08:07:51 -07:00
|
|
|
|
|
|
|
|
2015-12-01 16:00:28 +08:00
|
|
|
def _format_admin_state(item):
|
|
|
|
return 'UP' if item else 'DOWN'
|
|
|
|
|
|
|
|
|
|
|
|
def _format_router_external(item):
|
|
|
|
return 'External' if item else 'Internal'
|
|
|
|
|
|
|
|
|
|
|
|
_formatters = {
|
|
|
|
'subnets': utils.format_list,
|
2016-12-05 22:54:49 -06:00
|
|
|
'subnet_ids': utils.format_list,
|
2015-12-01 16:00:28 +08:00
|
|
|
'admin_state_up': _format_admin_state,
|
2016-12-05 22:54:49 -06:00
|
|
|
'is_admin_state_up': _format_admin_state,
|
2016-04-19 14:42:01 -05:00
|
|
|
'router:external': _format_router_external,
|
2016-12-05 22:54:49 -06:00
|
|
|
'is_router_external': _format_router_external,
|
2016-01-27 20:50:22 -06:00
|
|
|
'availability_zones': utils.format_list,
|
|
|
|
'availability_zone_hints': utils.format_list,
|
2015-12-01 16:00:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-05 22:54:49 -06:00
|
|
|
def _get_network_columns(item):
|
|
|
|
column_map = {
|
|
|
|
'subnet_ids': 'subnets',
|
|
|
|
'is_admin_state_up': 'admin_state_up',
|
|
|
|
'is_router_external': 'router:external',
|
|
|
|
'is_port_security_enabled': 'port_security_enabled',
|
|
|
|
'provider_network_type': 'provider:network_type',
|
|
|
|
'provider_physical_network': 'provider:physical_network',
|
|
|
|
'provider_segmentation_id': 'provider:segmentation_id',
|
|
|
|
'is_shared': 'shared',
|
|
|
|
'ipv4_address_scope_id': 'ipv4_address_scope',
|
|
|
|
'ipv6_address_scope_id': 'ipv6_address_scope',
|
|
|
|
'tenant_id': 'project_id',
|
|
|
|
}
|
|
|
|
return sdk_utils.get_osc_show_columns_for_sdk_resource(item, column_map)
|
|
|
|
|
|
|
|
|
2015-12-10 14:58:16 -07:00
|
|
|
def _get_columns(item):
|
2016-03-12 10:58:28 +08:00
|
|
|
columns = list(item.keys())
|
2015-12-10 14:58:16 -07:00
|
|
|
if 'tenant_id' in columns:
|
|
|
|
columns.remove('tenant_id')
|
2016-10-24 17:16:48 +08:00
|
|
|
if 'project_id' not in columns:
|
2015-12-10 14:58:16 -07:00
|
|
|
columns.append('project_id')
|
|
|
|
return tuple(sorted(columns))
|
|
|
|
|
|
|
|
|
2015-12-15 11:40:23 +08:00
|
|
|
def _get_attrs(client_manager, parsed_args):
|
|
|
|
attrs = {}
|
|
|
|
if parsed_args.name is not None:
|
|
|
|
attrs['name'] = str(parsed_args.name)
|
2016-03-23 13:02:25 +09:00
|
|
|
if parsed_args.enable:
|
|
|
|
attrs['admin_state_up'] = True
|
|
|
|
if parsed_args.disable:
|
|
|
|
attrs['admin_state_up'] = False
|
|
|
|
if parsed_args.share:
|
|
|
|
attrs['shared'] = True
|
|
|
|
if parsed_args.no_share:
|
|
|
|
attrs['shared'] = False
|
2016-06-29 09:48:04 -05:00
|
|
|
if parsed_args.enable_port_security:
|
|
|
|
attrs['port_security_enabled'] = True
|
|
|
|
if parsed_args.disable_port_security:
|
|
|
|
attrs['port_security_enabled'] = False
|
2015-12-15 11:40:23 +08:00
|
|
|
|
|
|
|
# "network set" command doesn't support setting project.
|
|
|
|
if 'project' in parsed_args and parsed_args.project is not None:
|
|
|
|
identity_client = client_manager.identity
|
|
|
|
project_id = identity_common.find_project(
|
|
|
|
identity_client,
|
|
|
|
parsed_args.project,
|
|
|
|
parsed_args.project_domain,
|
|
|
|
).id
|
|
|
|
attrs['tenant_id'] = project_id
|
|
|
|
|
|
|
|
# "network set" command doesn't support setting availability zone hints.
|
|
|
|
if 'availability_zone_hints' in parsed_args and \
|
|
|
|
parsed_args.availability_zone_hints is not None:
|
|
|
|
attrs['availability_zone_hints'] = parsed_args.availability_zone_hints
|
|
|
|
|
2016-09-19 16:43:28 -05:00
|
|
|
# set description
|
|
|
|
if parsed_args.description:
|
|
|
|
attrs['description'] = parsed_args.description
|
|
|
|
|
2016-04-08 14:24:30 +09:00
|
|
|
# update_external_network_options
|
|
|
|
if parsed_args.internal:
|
|
|
|
attrs['router:external'] = False
|
|
|
|
if parsed_args.external:
|
|
|
|
attrs['router:external'] = True
|
|
|
|
if parsed_args.no_default:
|
|
|
|
attrs['is_default'] = False
|
|
|
|
if parsed_args.default:
|
|
|
|
attrs['is_default'] = True
|
2016-04-08 14:47:04 +09:00
|
|
|
# Update Provider network options
|
|
|
|
if parsed_args.provider_network_type:
|
|
|
|
attrs['provider:network_type'] = parsed_args.provider_network_type
|
|
|
|
if parsed_args.physical_network:
|
|
|
|
attrs['provider:physical_network'] = parsed_args.physical_network
|
|
|
|
if parsed_args.segmentation_id:
|
|
|
|
attrs['provider:segmentation_id'] = parsed_args.segmentation_id
|
2016-09-26 11:12:07 +01:00
|
|
|
if parsed_args.qos_policy is not None:
|
|
|
|
network_client = client_manager.network
|
|
|
|
_qos_policy = network_client.find_qos_policy(parsed_args.qos_policy,
|
|
|
|
ignore_missing=False)
|
|
|
|
attrs['qos_policy_id'] = _qos_policy.id
|
|
|
|
if 'no_qos_policy' in parsed_args and parsed_args.no_qos_policy:
|
|
|
|
attrs['qos_policy_id'] = None
|
2016-04-19 13:46:15 +09:00
|
|
|
# Update VLAN Transparency for networks
|
|
|
|
if parsed_args.transparent_vlan:
|
|
|
|
attrs['vlan_transparent'] = True
|
|
|
|
if parsed_args.no_transparent_vlan:
|
|
|
|
attrs['vlan_transparent'] = False
|
2015-12-15 11:40:23 +08:00
|
|
|
return attrs
|
|
|
|
|
|
|
|
|
2016-04-19 13:46:15 +09:00
|
|
|
def _add_additional_network_options(parser):
|
|
|
|
# Add additional network options
|
|
|
|
|
2016-04-08 14:47:04 +09:00
|
|
|
parser.add_argument(
|
|
|
|
'--provider-network-type',
|
|
|
|
metavar='<provider-network-type>',
|
|
|
|
help=_("The physical mechanism by which the virtual network "
|
2017-01-18 09:36:55 +09:00
|
|
|
"is implemented. For example: "
|
2016-06-21 16:30:55 +07:00
|
|
|
"flat, geneve, gre, local, vlan, vxlan."))
|
2016-04-08 14:47:04 +09:00
|
|
|
parser.add_argument(
|
|
|
|
'--provider-physical-network',
|
|
|
|
metavar='<provider-physical-network>',
|
|
|
|
dest='physical_network',
|
|
|
|
help=_("Name of the physical network over which the virtual "
|
|
|
|
"network is implemented"))
|
|
|
|
parser.add_argument(
|
|
|
|
'--provider-segment',
|
|
|
|
metavar='<provider-segment>',
|
|
|
|
dest='segmentation_id',
|
2016-06-10 14:44:50 -05:00
|
|
|
help=_("VLAN ID for VLAN networks or Tunnel ID for "
|
|
|
|
"GENEVE/GRE/VXLAN networks"))
|
2016-04-08 14:47:04 +09:00
|
|
|
|
2016-04-19 13:46:15 +09:00
|
|
|
vlan_transparent_grp = parser.add_mutually_exclusive_group()
|
|
|
|
vlan_transparent_grp.add_argument(
|
|
|
|
'--transparent-vlan',
|
|
|
|
action='store_true',
|
|
|
|
help=_("Make the network VLAN transparent"))
|
|
|
|
vlan_transparent_grp.add_argument(
|
|
|
|
'--no-transparent-vlan',
|
|
|
|
action='store_true',
|
|
|
|
help=_("Do not make the network VLAN transparent"))
|
|
|
|
|
2016-04-08 14:47:04 +09:00
|
|
|
|
2016-02-25 16:35:57 +08:00
|
|
|
def _get_attrs_compute(client_manager, parsed_args):
|
|
|
|
attrs = {}
|
|
|
|
if parsed_args.name is not None:
|
|
|
|
attrs['label'] = str(parsed_args.name)
|
2016-03-23 13:02:25 +09:00
|
|
|
if parsed_args.share:
|
|
|
|
attrs['share_address'] = True
|
|
|
|
if parsed_args.no_share:
|
|
|
|
attrs['share_address'] = False
|
2016-02-25 16:35:57 +08:00
|
|
|
if parsed_args.subnet is not None:
|
|
|
|
attrs['cidr'] = parsed_args.subnet
|
|
|
|
return attrs
|
|
|
|
|
|
|
|
|
2016-12-05 22:54:49 -06:00
|
|
|
# TODO(sindhu): Use the SDK resource mapped attribute names once the
|
|
|
|
# OSC minimum requirements include SDK 1.0.
|
2016-02-25 16:35:57 +08:00
|
|
|
class CreateNetwork(common.NetworkAndComputeShowOne):
|
2016-11-13 09:42:09 -05:00
|
|
|
_description = _("Create new network")
|
2014-02-13 08:07:51 -07:00
|
|
|
|
2016-02-25 16:35:57 +08:00
|
|
|
def update_parser_common(self, parser):
|
2014-02-13 08:07:51 -07:00
|
|
|
parser.add_argument(
|
2015-01-20 16:44:50 -06:00
|
|
|
'name',
|
|
|
|
metavar='<name>',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("New network name")
|
2015-01-20 16:44:50 -06:00
|
|
|
)
|
2014-02-13 08:07:51 -07:00
|
|
|
share_group = parser.add_mutually_exclusive_group()
|
|
|
|
share_group.add_argument(
|
|
|
|
'--share',
|
2015-01-20 16:44:50 -06:00
|
|
|
action='store_true',
|
2014-02-13 08:07:51 -07:00
|
|
|
default=None,
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Share the network between projects")
|
2015-01-20 16:44:50 -06:00
|
|
|
)
|
2014-02-13 08:07:51 -07:00
|
|
|
share_group.add_argument(
|
|
|
|
'--no-share',
|
2016-03-23 13:02:25 +09:00
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Do not share the network between projects")
|
2015-01-20 16:44:50 -06:00
|
|
|
)
|
2016-02-25 16:35:57 +08:00
|
|
|
return parser
|
|
|
|
|
|
|
|
def update_parser_network(self, parser):
|
|
|
|
admin_group = parser.add_mutually_exclusive_group()
|
|
|
|
admin_group.add_argument(
|
|
|
|
'--enable',
|
|
|
|
action='store_true',
|
|
|
|
default=True,
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Enable network (default)")
|
2016-02-25 16:35:57 +08:00
|
|
|
)
|
|
|
|
admin_group.add_argument(
|
|
|
|
'--disable',
|
2016-03-23 13:02:25 +09:00
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Disable network")
|
2016-02-25 16:35:57 +08:00
|
|
|
)
|
2015-02-16 23:21:00 -08:00
|
|
|
parser.add_argument(
|
|
|
|
'--project',
|
|
|
|
metavar='<project>',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Owner's project (name or ID)")
|
2016-01-27 20:50:22 -06:00
|
|
|
)
|
2016-09-19 16:43:28 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--description',
|
|
|
|
metavar='<description>',
|
|
|
|
help=_("Set network description")
|
|
|
|
)
|
2015-06-26 12:07:58 +08:00
|
|
|
identity_common.add_project_domain_option_to_parser(parser)
|
2016-01-27 20:50:22 -06:00
|
|
|
parser.add_argument(
|
|
|
|
'--availability-zone-hint',
|
|
|
|
action='append',
|
|
|
|
dest='availability_zone_hints',
|
|
|
|
metavar='<availability-zone>',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Availability Zone in which to create this network "
|
|
|
|
"(Network Availability Zone extension required, "
|
|
|
|
"repeat option to set multiple availability zones)")
|
2016-01-27 20:50:22 -06:00
|
|
|
)
|
2016-06-29 09:48:04 -05:00
|
|
|
port_security_group = parser.add_mutually_exclusive_group()
|
|
|
|
port_security_group.add_argument(
|
|
|
|
'--enable-port-security',
|
|
|
|
action='store_true',
|
|
|
|
help=_("Enable port security by default for ports created on "
|
|
|
|
"this network (default)")
|
|
|
|
)
|
|
|
|
port_security_group.add_argument(
|
|
|
|
'--disable-port-security',
|
|
|
|
action='store_true',
|
|
|
|
help=_("Disable port security by default for ports created on "
|
|
|
|
"this network")
|
|
|
|
)
|
2016-03-14 15:35:46 +09:00
|
|
|
external_router_grp = parser.add_mutually_exclusive_group()
|
|
|
|
external_router_grp.add_argument(
|
|
|
|
'--external',
|
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Set this network as an external network "
|
|
|
|
"(external-net extension required)")
|
|
|
|
)
|
2016-03-14 15:35:46 +09:00
|
|
|
external_router_grp.add_argument(
|
|
|
|
'--internal',
|
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Set this network as an internal network (default)")
|
|
|
|
)
|
2016-03-14 15:35:46 +09:00
|
|
|
default_router_grp = parser.add_mutually_exclusive_group()
|
|
|
|
default_router_grp.add_argument(
|
|
|
|
'--default',
|
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Specify if this network should be used as "
|
|
|
|
"the default external network")
|
|
|
|
)
|
2016-03-14 15:35:46 +09:00
|
|
|
default_router_grp.add_argument(
|
|
|
|
'--no-default',
|
|
|
|
action='store_true',
|
2016-05-14 12:52:36 +08:00
|
|
|
help=_("Do not use the network as the default external network "
|
2016-04-16 10:59:37 +08:00
|
|
|
"(default)")
|
|
|
|
)
|
2016-09-26 11:12:07 +01:00
|
|
|
parser.add_argument(
|
|
|
|
'--qos-policy',
|
|
|
|
metavar='<qos-policy>',
|
|
|
|
help=_("QoS policy to attach to this network (name or ID)")
|
|
|
|
)
|
2016-04-19 13:46:15 +09:00
|
|
|
_add_additional_network_options(parser)
|
2014-02-13 08:07:51 -07:00
|
|
|
return parser
|
|
|
|
|
2016-02-25 16:35:57 +08:00
|
|
|
def update_parser_compute(self, parser):
|
|
|
|
parser.add_argument(
|
|
|
|
'--subnet',
|
|
|
|
metavar='<subnet>',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("IPv4 subnet for fixed IPs (in CIDR notation)")
|
2016-02-25 16:35:57 +08:00
|
|
|
)
|
|
|
|
return parser
|
2015-12-15 11:40:23 +08:00
|
|
|
|
2016-02-25 16:35:57 +08:00
|
|
|
def take_action_network(self, client, parsed_args):
|
2015-12-15 11:40:23 +08:00
|
|
|
attrs = _get_attrs(self.app.client_manager, parsed_args)
|
|
|
|
obj = client.create_network(**attrs)
|
2016-12-05 22:54:49 -06:00
|
|
|
display_columns, columns = _get_network_columns(obj)
|
2015-12-04 19:48:22 +08:00
|
|
|
data = utils.get_item_properties(obj, columns, formatters=_formatters)
|
2016-12-05 22:54:49 -06:00
|
|
|
return (display_columns, data)
|
2014-02-13 08:07:51 -07:00
|
|
|
|
2016-02-25 16:35:57 +08:00
|
|
|
def take_action_compute(self, client, parsed_args):
|
|
|
|
attrs = _get_attrs_compute(self.app.client_manager, parsed_args)
|
|
|
|
obj = client.networks.create(**attrs)
|
2016-03-06 09:01:42 +08:00
|
|
|
columns = _get_columns(obj._info)
|
2016-02-25 16:35:57 +08:00
|
|
|
data = utils.get_dict_properties(obj._info, columns)
|
|
|
|
return (columns, data)
|
|
|
|
|
2014-02-13 08:07:51 -07:00
|
|
|
|
2016-03-14 14:03:04 +08:00
|
|
|
class DeleteNetwork(common.NetworkAndComputeDelete):
|
2016-11-13 09:42:09 -05:00
|
|
|
_description = _("Delete network(s)")
|
2014-02-13 08:07:51 -07:00
|
|
|
|
2016-03-14 14:03:04 +08:00
|
|
|
# Used by base class to find resources in parsed_args.
|
|
|
|
resource = 'network'
|
|
|
|
r = None
|
|
|
|
|
2016-02-10 01:41:45 +08:00
|
|
|
def update_parser_common(self, parser):
|
2014-02-13 08:07:51 -07:00
|
|
|
parser.add_argument(
|
2015-12-05 10:40:09 +08:00
|
|
|
'network',
|
2014-02-13 08:07:51 -07:00
|
|
|
metavar="<network>",
|
2014-12-10 11:47:54 +08:00
|
|
|
nargs="+",
|
2016-05-14 12:52:36 +08:00
|
|
|
help=_("Network(s) to delete (name or ID)")
|
2014-02-13 08:07:51 -07:00
|
|
|
)
|
2016-03-14 14:03:04 +08:00
|
|
|
|
2014-02-13 08:07:51 -07:00
|
|
|
return parser
|
|
|
|
|
2016-02-10 01:41:45 +08:00
|
|
|
def take_action_network(self, client, parsed_args):
|
2016-03-14 14:03:04 +08:00
|
|
|
obj = client.find_network(self.r, ignore_missing=False)
|
|
|
|
client.delete_network(obj)
|
2014-02-13 08:07:51 -07:00
|
|
|
|
2016-02-10 01:41:45 +08:00
|
|
|
def take_action_compute(self, client, parsed_args):
|
2016-03-14 14:03:04 +08:00
|
|
|
network = utils.find_resource(client.networks, self.r)
|
|
|
|
client.networks.delete(network.id)
|
2016-02-10 01:41:45 +08:00
|
|
|
|
2014-02-13 08:07:51 -07:00
|
|
|
|
2016-12-05 22:54:49 -06:00
|
|
|
# TODO(sindhu): Use the SDK resource mapped attribute names once the
|
|
|
|
# OSC minimum requirements include SDK 1.0.
|
2016-02-10 11:49:15 +08:00
|
|
|
class ListNetwork(common.NetworkAndComputeLister):
|
2016-11-13 09:42:09 -05:00
|
|
|
_description = _("List networks")
|
2014-02-13 08:07:51 -07:00
|
|
|
|
2016-10-20 20:56:32 -07:00
|
|
|
def update_parser_network(self, parser):
|
2016-08-18 15:07:47 +07:00
|
|
|
router_ext_group = parser.add_mutually_exclusive_group()
|
|
|
|
router_ext_group.add_argument(
|
2014-02-13 08:07:51 -07:00
|
|
|
'--external',
|
|
|
|
action='store_true',
|
2016-05-14 12:52:36 +08:00
|
|
|
help=_("List external networks")
|
2014-02-13 08:07:51 -07:00
|
|
|
)
|
2016-08-18 15:07:47 +07:00
|
|
|
router_ext_group.add_argument(
|
|
|
|
'--internal',
|
|
|
|
action='store_true',
|
|
|
|
help=_("List internal networks")
|
|
|
|
)
|
2014-02-13 08:07:51 -07:00
|
|
|
parser.add_argument(
|
|
|
|
'--long',
|
|
|
|
action='store_true',
|
2016-05-14 12:52:36 +08:00
|
|
|
help=_("List additional fields in output")
|
2014-02-13 08:07:51 -07:00
|
|
|
)
|
2016-08-18 15:07:47 +07:00
|
|
|
parser.add_argument(
|
|
|
|
'--name',
|
|
|
|
metavar='<name>',
|
|
|
|
help=_("List networks according to their name")
|
|
|
|
)
|
|
|
|
admin_state_group = parser.add_mutually_exclusive_group()
|
|
|
|
admin_state_group.add_argument(
|
|
|
|
'--enable',
|
|
|
|
action='store_true',
|
|
|
|
help=_("List enabled networks")
|
|
|
|
)
|
|
|
|
admin_state_group.add_argument(
|
|
|
|
'--disable',
|
|
|
|
action='store_true',
|
|
|
|
help=_("List disabled networks")
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--project',
|
|
|
|
metavar='<project>',
|
|
|
|
help=_("List networks according to their project (name or ID)")
|
|
|
|
)
|
|
|
|
identity_common.add_project_domain_option_to_parser(parser)
|
|
|
|
shared_group = parser.add_mutually_exclusive_group()
|
|
|
|
shared_group.add_argument(
|
|
|
|
'--share',
|
|
|
|
action='store_true',
|
|
|
|
help=_("List networks shared between projects")
|
|
|
|
)
|
|
|
|
shared_group.add_argument(
|
|
|
|
'--no-share',
|
|
|
|
action='store_true',
|
|
|
|
help=_("List networks not shared between projects")
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--status',
|
|
|
|
metavar='<status>',
|
|
|
|
choices=['ACTIVE', 'BUILD', 'DOWN', 'ERROR'],
|
|
|
|
help=_("List networks according to their status "
|
|
|
|
"('ACTIVE', 'BUILD', 'DOWN', 'ERROR')")
|
|
|
|
)
|
2016-10-20 20:56:32 -07:00
|
|
|
parser.add_argument(
|
|
|
|
'--provider-network-type',
|
|
|
|
metavar='<provider-network-type>',
|
|
|
|
choices=['flat', 'geneve', 'gre', 'local',
|
|
|
|
'vlan', 'vxlan'],
|
|
|
|
help=_("List networks according to their physical mechanisms. "
|
|
|
|
"The supported options are: flat, geneve, gre, local, "
|
|
|
|
"vlan, vxlan.")
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--provider-physical-network',
|
|
|
|
metavar='<provider-physical-network>',
|
|
|
|
dest='physical_network',
|
|
|
|
help=_("List networks according to name of the physical network")
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--provider-segment',
|
|
|
|
metavar='<provider-segment>',
|
|
|
|
dest='segmentation_id',
|
|
|
|
help=_("List networks according to VLAN ID for VLAN networks "
|
|
|
|
"or Tunnel ID for GENEVE/GRE/VXLAN networks")
|
|
|
|
)
|
|
|
|
|
2014-02-13 08:07:51 -07:00
|
|
|
return parser
|
|
|
|
|
2016-02-10 11:49:15 +08:00
|
|
|
def take_action_network(self, client, parsed_args):
|
2016-08-18 15:07:47 +07:00
|
|
|
identity_client = self.app.client_manager.identity
|
2015-07-08 11:21:41 -06:00
|
|
|
if parsed_args.long:
|
|
|
|
columns = (
|
2015-12-01 15:40:52 +08:00
|
|
|
'id',
|
|
|
|
'name',
|
|
|
|
'status',
|
2016-12-05 22:54:49 -06:00
|
|
|
'project_id',
|
|
|
|
'is_admin_state_up',
|
|
|
|
'is_shared',
|
|
|
|
'subnet_ids',
|
2015-12-01 15:40:52 +08:00
|
|
|
'provider_network_type',
|
2016-12-05 22:54:49 -06:00
|
|
|
'is_router_external',
|
2016-01-27 20:50:22 -06:00
|
|
|
'availability_zones',
|
2015-07-08 11:21:41 -06:00
|
|
|
)
|
|
|
|
column_headers = (
|
|
|
|
'ID',
|
|
|
|
'Name',
|
|
|
|
'Status',
|
|
|
|
'Project',
|
|
|
|
'State',
|
|
|
|
'Shared',
|
|
|
|
'Subnets',
|
|
|
|
'Network Type',
|
|
|
|
'Router Type',
|
2016-01-27 20:50:22 -06:00
|
|
|
'Availability Zones',
|
2015-07-08 11:21:41 -06:00
|
|
|
)
|
2014-02-13 08:07:51 -07:00
|
|
|
else:
|
2015-12-01 15:40:52 +08:00
|
|
|
columns = (
|
|
|
|
'id',
|
|
|
|
'name',
|
2016-12-05 22:54:49 -06:00
|
|
|
'subnet_ids'
|
2015-12-01 15:40:52 +08:00
|
|
|
)
|
|
|
|
column_headers = (
|
|
|
|
'ID',
|
|
|
|
'Name',
|
|
|
|
'Subnets',
|
|
|
|
)
|
2014-09-18 10:35:15 -05:00
|
|
|
|
2016-08-18 15:07:47 +07:00
|
|
|
args = {}
|
|
|
|
|
2015-12-01 15:40:52 +08:00
|
|
|
if parsed_args.external:
|
2016-08-18 15:07:47 +07:00
|
|
|
args['router:external'] = True
|
2016-12-05 22:54:49 -06:00
|
|
|
args['is_router_external'] = True
|
2016-08-18 15:07:47 +07:00
|
|
|
elif parsed_args.internal:
|
|
|
|
args['router:external'] = False
|
2016-12-05 22:54:49 -06:00
|
|
|
args['is_router_external'] = False
|
2016-08-18 15:07:47 +07:00
|
|
|
|
|
|
|
if parsed_args.name is not None:
|
|
|
|
args['name'] = parsed_args.name
|
|
|
|
|
|
|
|
if parsed_args.enable:
|
|
|
|
args['admin_state_up'] = True
|
2016-12-05 22:54:49 -06:00
|
|
|
args['is_admin_state_up'] = True
|
2016-08-18 15:07:47 +07:00
|
|
|
elif parsed_args.disable:
|
|
|
|
args['admin_state_up'] = False
|
2016-12-05 22:54:49 -06:00
|
|
|
args['is_admin_state_up'] = False
|
2016-08-18 15:07:47 +07:00
|
|
|
|
|
|
|
if parsed_args.project:
|
|
|
|
project = identity_common.find_project(
|
|
|
|
identity_client,
|
|
|
|
parsed_args.project,
|
|
|
|
parsed_args.project_domain,
|
|
|
|
)
|
|
|
|
args['tenant_id'] = project.id
|
2016-12-05 22:54:49 -06:00
|
|
|
args['project_id'] = project.id
|
2016-08-18 15:07:47 +07:00
|
|
|
|
|
|
|
if parsed_args.share:
|
|
|
|
args['shared'] = True
|
2016-12-05 22:54:49 -06:00
|
|
|
args['is_shared'] = True
|
2016-08-18 15:07:47 +07:00
|
|
|
elif parsed_args.no_share:
|
|
|
|
args['shared'] = False
|
2016-12-05 22:54:49 -06:00
|
|
|
args['is_shared'] = False
|
2016-08-18 15:07:47 +07:00
|
|
|
|
|
|
|
if parsed_args.status:
|
|
|
|
args['status'] = parsed_args.status
|
2016-02-10 11:49:15 +08:00
|
|
|
|
2016-10-20 20:56:32 -07:00
|
|
|
if parsed_args.provider_network_type:
|
|
|
|
args['provider:network_type'] = parsed_args.provider_network_type
|
2016-12-05 22:54:49 -06:00
|
|
|
args['provider_network_type'] = parsed_args.provider_network_type
|
2016-10-20 20:56:32 -07:00
|
|
|
if parsed_args.physical_network:
|
|
|
|
args['provider:physical_network'] = parsed_args.physical_network
|
2016-12-05 22:54:49 -06:00
|
|
|
args['provider_physical_network'] = parsed_args.physical_network
|
2016-10-20 20:56:32 -07:00
|
|
|
if parsed_args.segmentation_id:
|
|
|
|
args['provider:segmentation_id'] = parsed_args.segmentation_id
|
2016-12-05 22:54:49 -06:00
|
|
|
args['provider_segmentation_id'] = parsed_args.segmentation_id
|
2016-10-20 20:56:32 -07:00
|
|
|
|
2015-12-01 15:40:52 +08:00
|
|
|
data = client.networks(**args)
|
2016-02-10 11:49:15 +08:00
|
|
|
|
|
|
|
return (column_headers,
|
|
|
|
(utils.get_item_properties(
|
|
|
|
s, columns,
|
|
|
|
formatters=_formatters,
|
|
|
|
) for s in data))
|
|
|
|
|
|
|
|
def take_action_compute(self, client, parsed_args):
|
|
|
|
columns = (
|
|
|
|
'id',
|
|
|
|
'label',
|
|
|
|
'cidr',
|
|
|
|
)
|
|
|
|
column_headers = (
|
|
|
|
'ID',
|
|
|
|
'Name',
|
|
|
|
'Subnet',
|
|
|
|
)
|
|
|
|
|
|
|
|
data = client.networks.list()
|
|
|
|
|
2014-09-18 10:35:15 -05:00
|
|
|
return (column_headers,
|
2015-12-01 15:40:52 +08:00
|
|
|
(utils.get_item_properties(
|
2014-09-18 10:35:15 -05:00
|
|
|
s, columns,
|
2015-12-01 15:40:52 +08:00
|
|
|
formatters=_formatters,
|
2014-09-18 10:35:15 -05:00
|
|
|
) for s in data))
|
2014-02-13 08:07:51 -07:00
|
|
|
|
|
|
|
|
2016-12-05 22:54:49 -06:00
|
|
|
# TODO(sindhu): Use the SDK resource mapped attribute names once the
|
|
|
|
# OSC minimum requirements include SDK 1.0.
|
2014-02-13 08:07:51 -07:00
|
|
|
class SetNetwork(command.Command):
|
2016-11-13 09:42:09 -05:00
|
|
|
_description = _("Set network properties")
|
2014-02-13 08:07:51 -07:00
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
|
|
|
parser = super(SetNetwork, self).get_parser(prog_name)
|
|
|
|
parser.add_argument(
|
2016-02-14 18:57:34 +08:00
|
|
|
'network',
|
2014-02-13 08:07:51 -07:00
|
|
|
metavar="<network>",
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Network to modify (name or ID)")
|
2015-01-20 16:44:50 -06:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--name',
|
|
|
|
metavar='<name>',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Set network name")
|
2014-02-13 08:07:51 -07:00
|
|
|
)
|
|
|
|
admin_group = parser.add_mutually_exclusive_group()
|
|
|
|
admin_group.add_argument(
|
2014-08-18 05:41:58 -06:00
|
|
|
'--enable',
|
|
|
|
action='store_true',
|
2015-01-20 16:44:50 -06:00
|
|
|
default=None,
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Enable network")
|
2015-01-20 16:44:50 -06:00
|
|
|
)
|
2014-02-13 08:07:51 -07:00
|
|
|
admin_group.add_argument(
|
2014-08-18 05:41:58 -06:00
|
|
|
'--disable',
|
2016-03-23 13:02:25 +09:00
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Disable network")
|
2015-01-20 16:44:50 -06:00
|
|
|
)
|
2014-02-13 08:07:51 -07:00
|
|
|
share_group = parser.add_mutually_exclusive_group()
|
|
|
|
share_group.add_argument(
|
|
|
|
'--share',
|
2015-01-20 16:44:50 -06:00
|
|
|
action='store_true',
|
2014-02-13 08:07:51 -07:00
|
|
|
default=None,
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Share the network between projects")
|
2015-01-20 16:44:50 -06:00
|
|
|
)
|
2014-02-13 08:07:51 -07:00
|
|
|
share_group.add_argument(
|
|
|
|
'--no-share',
|
2016-03-23 13:02:25 +09:00
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Do not share the network between projects")
|
2015-01-20 16:44:50 -06:00
|
|
|
)
|
2016-09-19 16:43:28 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--description',
|
|
|
|
metavar="<description",
|
|
|
|
help=_("Set network description")
|
|
|
|
)
|
2016-06-29 09:48:04 -05:00
|
|
|
port_security_group = parser.add_mutually_exclusive_group()
|
|
|
|
port_security_group.add_argument(
|
|
|
|
'--enable-port-security',
|
|
|
|
action='store_true',
|
|
|
|
help=_("Enable port security by default for ports created on "
|
|
|
|
"this network")
|
|
|
|
)
|
|
|
|
port_security_group.add_argument(
|
|
|
|
'--disable-port-security',
|
|
|
|
action='store_true',
|
|
|
|
help=_("Disable port security by default for ports created on "
|
|
|
|
"this network")
|
|
|
|
)
|
2016-04-08 14:24:30 +09:00
|
|
|
external_router_grp = parser.add_mutually_exclusive_group()
|
|
|
|
external_router_grp.add_argument(
|
|
|
|
'--external',
|
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Set this network as an external network "
|
|
|
|
"(external-net extension required)")
|
|
|
|
)
|
2016-04-08 14:24:30 +09:00
|
|
|
external_router_grp.add_argument(
|
|
|
|
'--internal',
|
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Set this network as an internal network")
|
|
|
|
)
|
2016-04-08 14:24:30 +09:00
|
|
|
default_router_grp = parser.add_mutually_exclusive_group()
|
|
|
|
default_router_grp.add_argument(
|
|
|
|
'--default',
|
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Set the network as the default external network")
|
|
|
|
)
|
2016-04-08 14:24:30 +09:00
|
|
|
default_router_grp.add_argument(
|
|
|
|
'--no-default',
|
|
|
|
action='store_true',
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Do not use the network as the default external network")
|
|
|
|
)
|
2016-09-26 11:12:07 +01:00
|
|
|
qos_group = parser.add_mutually_exclusive_group()
|
|
|
|
qos_group.add_argument(
|
|
|
|
'--qos-policy',
|
|
|
|
metavar='<qos-policy>',
|
|
|
|
help=_("QoS policy to attach to this network (name or ID)")
|
|
|
|
)
|
|
|
|
qos_group.add_argument(
|
|
|
|
'--no-qos-policy',
|
|
|
|
action='store_true',
|
|
|
|
help=_("Remove the QoS policy attached to this network")
|
|
|
|
)
|
2016-04-19 13:46:15 +09:00
|
|
|
_add_additional_network_options(parser)
|
2014-02-13 08:07:51 -07:00
|
|
|
return parser
|
|
|
|
|
|
|
|
def take_action(self, parsed_args):
|
|
|
|
client = self.app.client_manager.network
|
2016-02-14 18:57:34 +08:00
|
|
|
obj = client.find_network(parsed_args.network, ignore_missing=False)
|
2015-12-05 11:16:44 +08:00
|
|
|
|
2015-12-15 11:40:23 +08:00
|
|
|
attrs = _get_attrs(self.app.client_manager, parsed_args)
|
|
|
|
client.update_network(obj, **attrs)
|
2014-02-13 08:07:51 -07:00
|
|
|
|
|
|
|
|
2016-02-11 19:09:43 +08:00
|
|
|
class ShowNetwork(common.NetworkAndComputeShowOne):
|
2016-11-13 09:42:09 -05:00
|
|
|
_description = _("Show network details")
|
2014-02-13 08:07:51 -07:00
|
|
|
|
2016-02-23 19:00:14 +08:00
|
|
|
def update_parser_common(self, parser):
|
2014-02-13 08:07:51 -07:00
|
|
|
parser.add_argument(
|
2016-02-14 18:57:34 +08:00
|
|
|
'network',
|
2014-02-13 08:07:51 -07:00
|
|
|
metavar="<network>",
|
2016-04-16 10:59:37 +08:00
|
|
|
help=_("Network to display (name or ID)")
|
2014-02-13 08:07:51 -07:00
|
|
|
)
|
|
|
|
return parser
|
|
|
|
|
2016-02-11 19:09:43 +08:00
|
|
|
def take_action_network(self, client, parsed_args):
|
2016-02-14 18:57:34 +08:00
|
|
|
obj = client.find_network(parsed_args.network, ignore_missing=False)
|
2016-12-05 22:54:49 -06:00
|
|
|
display_columns, columns = _get_network_columns(obj)
|
2015-12-05 12:34:54 +08:00
|
|
|
data = utils.get_item_properties(obj, columns, formatters=_formatters)
|
2016-12-05 22:54:49 -06:00
|
|
|
return (display_columns, data)
|
2016-02-11 19:09:43 +08:00
|
|
|
|
|
|
|
def take_action_compute(self, client, parsed_args):
|
2016-03-06 09:01:42 +08:00
|
|
|
obj = utils.find_resource(
|
2016-02-11 19:09:43 +08:00
|
|
|
client.networks,
|
|
|
|
parsed_args.network,
|
|
|
|
)
|
2016-03-06 09:01:42 +08:00
|
|
|
columns = _get_columns(obj._info)
|
|
|
|
data = utils.get_dict_properties(obj._info, columns)
|
2016-02-11 19:09:43 +08:00
|
|
|
return (columns, data)
|