python-openstackclient/doc/source/command-objects/router.rst

2.8 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 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)