reedip 8ecdc57ea6 Add "router remove port" to osc
This patch proposes the migration of port
deletion of Neutron's "router-interface-delete"
to OSC's "router remove port".

Change-Id: Ifceabce080aacac9f6410c809fcc097760e0c5ee
Partial-Bug: #1546849
Implements: blueprint neutron-client-advanced-router
2016-03-21 02:08:16 +00:00

3.2 KiB

router

Network v2

router add port

Add a port to a router

router add port

os router add port
    <router>
    <port>

<router>

Router to which port will be added (name or ID)

<port>

Port to be added (name or ID)

router create

Create new router

router create

os router create
    [--project <project> [--project-domain <project-domain>]]
    [--enable | --disable]
    [--distributed]
    [--availability-zone-hint <availability-zone>]
    <name>

--project <project>

Owner's project (name or ID)

--project-domain <project-domain>

Domain the project belongs to (name or ID). This can be used in case collisions between project names exist.

--enable

Enable router (default)

--disable

Disable router

--distributed

Create a distributed router

--availability-zone-hint <availability-zone>

Availability Zone in which to create this router (requires the Router Availability Zone extension, this option can be repeated).

New router name

router delete

Delete router(s)

router delete

os router delete
    <router> [<router> ...]




Router(s) to delete (name or ID)

router list

List routers

router list

os router list
    [--long]

--long

List additional fields in output

router remove port

Remove a port from a router

router remove port

os router remove port
    <router>
    <port>

<router>

Router from which port will be removed (name or ID)

<port>

Port to be removed (name or ID)

router set

Set router properties

router set

os router set
    [--name <name>]
    [--enable | --disable]
    [--distributed | --centralized]
    [--route destination=<subnet>,gateway=<ip-address> | --clear-routes]
    <router>

--name <name>

Set router name

--enable

Enable router

--disable

Disable router

--distributed

Set router to distributed mode (disabled router only)

--centralized

Set router to centralized mode (disabled router only)

--route destination=<subnet>,gateway=<ip-address>

Routes associated with the router. Repeat this option to set multiple routes. destination: destination subnet (in CIDR notation). gateway: nexthop IP address.

--clear-routes

Clear routes associated with the router

Router to modify (name or ID)

router show

Display router details

router show

os router show
    <router>




Router to display (name or ID)