Advertisement
gregmark

OpenStack or Bust, Part 9: project_one after subnet-create

Mar 15th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.55 KB | None | 0 0
  1. ##################################################
  2. ###            Tenant "project_one"            ###
  3. ### After subnet-create (tink-stack-tenant.sh) ###
  4. ##################################################
  5.  
  6. ---------------------------
  7. 192.168.241.100 kcon-sn-01i (controller node)
  8. ---------------------------
  9.  
  10. $ keystone tenant-get $(stack_id -t project_one)
  11. +-------------+----------------------------------+
  12. |   Property  |              Value               |
  13. +-------------+----------------------------------+
  14. | description |                                  |
  15. |   enabled   |               True               |
  16. |      id     | c2cdb8d4d2484cf8bc8bf95dd759df12 |
  17. |     name    |           project_one            |
  18. +-------------+----------------------------------+
  19.  
  20. $ keystone user-get $(stack_id -u user_one)
  21. +----------+----------------------------------+
  22. | Property |              Value               |
  23. +----------+----------------------------------+
  24. |  email   |       user_one@domain.com        |
  25. | enabled  |               True               |
  26. |    id    | b157401ac19d4cfcb33d929524c477dc |
  27. |   name   |             user_one             |
  28. | tenantId | c2cdb8d4d2484cf8bc8bf95dd759df12 |
  29. +----------+----------------------------------+
  30.  
  31. $ quantum net-show $(stack_id -n net_proj_one)
  32. +---------------------------+--------------------------------------+
  33. | Field                     | Value                                |
  34. +---------------------------+--------------------------------------+
  35. | admin_state_up            | True                                 |
  36. | id                        | 1b30ff1b-b197-4845-996e-088ee18a1b24 |
  37. | name                      | net_proj_one                         |
  38. | provider:network_type     | vlan                                 |
  39. | provider:physical_network | physnet1                             |
  40. | provider:segmentation_id  | 1024                                 |
  41. | router:external           | False                                |
  42. | shared                    | False                                |
  43. | status                    | ACTIVE                               |
  44. | subnets                   | 1112f706-6ec1-4ece-aad1-a6a8f5aaead1 |
  45. | tenant_id                 | c2cdb8d4d2484cf8bc8bf95dd759df12     |
  46. +---------------------------+--------------------------------------+
  47.  
  48. $ quantum subnet-show $(stack_id -b 50.50.1.0/24)
  49. +------------------+----------------------------------------------+
  50. | Field            | Value                                        |
  51. +------------------+----------------------------------------------+
  52. | allocation_pools | {"start": "50.50.1.2", "end": "50.50.1.254"} |
  53. | cidr             | 50.50.1.0/24                                 |
  54. | dns_nameservers  |                                              |
  55. | enable_dhcp      | True                                         |
  56. | gateway_ip       | 50.50.1.1                                    |
  57. | host_routes      |                                              |
  58. | id               | 1112f706-6ec1-4ece-aad1-a6a8f5aaead1         |
  59. | ip_version       | 4                                            |
  60. | name             |                                              |
  61. | network_id       | 1b30ff1b-b197-4845-996e-088ee18a1b24         |
  62. | tenant_id        | c2cdb8d4d2484cf8bc8bf95dd759df12             |
  63. +------------------+----------------------------------------------+
  64.  
  65. $ quantum router-show $(stack_id -o router_proj_one)
  66.  
  67. $ quantum port-list -- --device_id $(stack_id -o router_proj_one)
  68.  
  69.  
  70. $ quantum floatingip-list
  71.  
  72.  
  73. $ $nova list
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement