Show router details
指定したルーターの詳細を表示します。
URI
/v2.0/routers/{router_id}
URIの説明:
仮想ルータID
HTTPメソッド
GET
レスポンスステータス
ステータスコード | 説明 |
---|---|
200 | Normal response codes |
unauthorized (401) | Error response codes |
forbidden (403) | Error response codes |
itemNotFound (404) | Error response codes |
レスポンスボディ(正常系)
{
"router": {
"status": "ACTIVE",
"external_gateway_info": {
"network_id": "ec3a5b3c-9caa-4638-95f9-d33778fb32a2",
"enable_snat": true,
"external_fixed_ips": [
{
"subnet_id": "41dc310d-52a2-42ab-a193-1564c0cf8cc6",
"ip_address": "133.162.136.103"
}
]
},
"name": "another_router",
"admin_state_up": true,
"tenant_id": "6b96ff0cb17a4b859e1e575d221683d3",
"routes": [
{
"nexthop": "10.1.0.10",
"destination": "40.0.1.0/24"
}
],
"id": "8604a0de-7f6b-409a-a47c-a1cc7bc77b2e",
"availability_zone": "AZ1"
}
}
レスポンスボディ(正常系)の説明
要素名 | 説明 |
---|---|
router | routerオブジェクト |
status | 仮想ルータの状態 |
external_gateway_info | 外部ゲートウェイ情報。仮想ルータが外部ゲートウェイを持つ場合、network_id、enable_snat、external_fixed_ipsを示します。そうでない場合はnullとなります。 |
name | 仮想ルータ名 |
admin_state_up | ルーターの管理状態
ルーターが稼動中(true)か停止している(false)かを示します。 falseの場合、仮想ルータを経由した通信はできません。 |
tenant_id | プロジェクトID |
id | 仮想ルータID |
routes | 静的ルーティングの一覧
書式は以下のとおりです。 静的ルーティング定義:
next_hopは、宛先に到達するために次に転送すべき隣接するIPアドレスです。 destinationは、宛先のCIDRです。 |
availability_zone | アベイラビリティゾーン名 |