nebukazar

ref: http://ask.cloudbase.it/question/1783/v-magine-installa

Dec 15th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 6.94 KB | None | 0 0
  1. # neutron subnet-list
  2. +--------------------------------------+----------------+-----------------+--------------------------------------------------+
  3. | id                                   | name           | cidr            | allocation_pools                                 |
  4. +--------------------------------------+----------------+-----------------+--------------------------------------------------+
  5. | c7f07206-a4c4-42cd-bcab-a255f74a7dfd | private_subnet | 10.0.0.0/24     | {"start": "10.0.0.2", "end": "10.0.0.254"}       |
  6. | 7043c4ae-a7d7-40e1-8672-b0594e1f5e21 | public_subnet  | 198.xxx.xxx.32/27 | {"start": "198.xxx.xxx.36", "end": "198.xxx.xxx.45"} |
  7. +--------------------------------------+----------------+-----------------+--------------------------------------------------+
  8.  
  9.  
  10. # neutron subnet-show private_subnet
  11. +-------------------+--------------------------------------------+
  12. | Field             | Value                                      |
  13. +-------------------+--------------------------------------------+
  14. | allocation_pools  | {"start": "10.0.0.2", "end": "10.0.0.254"} |
  15. | cidr              | 10.0.0.0/24                                |
  16. | created_at        | 2016-12-09T17:35:33                        |
  17. | description       |                                            |
  18. | dns_nameservers   | 8.8.8.8                                    |
  19. | enable_dhcp       | True                                       |
  20. | gateway_ip        | 10.0.0.1                                   |
  21. | host_routes       |                                            |
  22. | id                | c7f07206-a4c4-42cd-bcab-a255f74a7dfd       |
  23. | ip_version        | 4                                          |
  24. | ipv6_address_mode |                                            |
  25. | ipv6_ra_mode      |                                            |
  26. | name              | private_subnet                             |
  27. | network_id        | 30a39632-cc57-445e-a752-0b8503b7b08d       |
  28. | subnetpool_id     |                                            |
  29. | tenant_id         | 52977a62b18e44f0955a2c7d0ef1ea6e           |
  30. | updated_at        | 2016-12-09T17:37:02                        |
  31. +-------------------+--------------------------------------------+
  32.  
  33. # neutron subnet-show public_subnet
  34. +-------------------+--------------------------------------------------+
  35. | Field             | Value                                            |
  36. +-------------------+--------------------------------------------------+
  37. | allocation_pools  | {"start": "198.xxx.xxx.36", "end": "198.xxx.xxx.45"} |
  38. | cidr              | 198.xxx.xxx.32/27                                  |
  39. | created_at        | 2016-12-09T17:35:19                              |
  40. | description       |                                                  |
  41. | dns_nameservers   | 8.8.8.8                                     |
  42. | enable_dhcp       | True                                             |
  43. | gateway_ip        | 198.xxx.xxx.62                                     |
  44. | host_routes       |                                                  |
  45. | id                | 7043c4ae-a7d7-40e1-8672-b0594e1f5e21             |
  46. | ip_version        | 4                                                |
  47. | ipv6_address_mode |                                                  |
  48. | ipv6_ra_mode      |                                                  |
  49. | name              | public_subnet                                    |
  50. | network_id        | 612ebe38-47bd-454b-84d4-61de3db8638d             |
  51. | subnetpool_id     |                                                  |
  52. | tenant_id         | 3b512d5359764ea1b018e413b580f728                 |
  53. | updated_at        | 2016-12-14T14:25:34                              |
  54. +-------------------+--------------------------------------------------+
  55.  
  56.  
  57. data: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  58.         inet6 fe80::f816:3eff:fef1:49ce  prefixlen 64  scopeid 0x20<link>
  59.         ether fa:16:3e:f1:49:ce  txqueuelen 1000  (Ethernet)
  60.         RX packets 521959  bytes 21944197 (20.9 MiB)
  61.         RX errors 0  dropped 0  overruns 0  frame 0
  62.         TX packets 269  bytes 32055 (31.3 KiB)
  63.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
  64.  
  65. enp0s10f0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  66.         ether fa:16:3e:57:2b:46  txqueuelen 1000  (Ethernet)
  67.         RX packets 1  bytes 42 (42.0 B)
  68.         RX errors 0  dropped 2836  overruns 0  frame 0
  69.         TX packets 0  bytes 0 (0.0 B)
  70.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
  71.  
  72. ext: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  73.         inet6 fe80::f816:3eff:fe27:d2b  prefixlen 64  scopeid 0x20<link>
  74.         ether fa:16:3e:27:0d:2b  txqueuelen 1000  (Ethernet)
  75.         RX packets 3229361  bytes 203620854 (194.1 MiB)
  76.         RX errors 0  dropped 0  overruns 0  frame 0
  77.         TX packets 160481  bytes 7745999 (7.3 MiB)
  78.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
  79.  
  80. lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
  81.         inet 127.0.0.1  netmask 255.0.0.0
  82.         inet6 ::1  prefixlen 128  scopeid 0x10<host>
  83.         loop  txqueuelen 0  (Local Loopback)
  84.         RX packets 102495630  bytes 14025557191 (13.0 GiB)
  85.         RX errors 0  dropped 0  overruns 0  frame 0
  86.         TX packets 102495630  bytes 14025557191 (13.0 GiB)
  87.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
  88.  
  89. mgmt-ext: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  90.         inet 198.xxx.xxx.46  netmask 255.255.255.224  broadcast 198.xxx.xxx.63
  91.         inet6 fe80::f816:3eff:fe20:453d  prefixlen 64  scopeid 0x20<link>
  92.         ether fa:16:3e:20:45:3d  txqueuelen 1000  (Ethernet)
  93.         RX packets 6515845  bytes 4727960459 (4.4 GiB)
  94.         RX errors 0  dropped 0  overruns 0  frame 0
  95.         TX packets 929858  bytes 72461970 (69.1 MiB)
  96.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
  97.  
  98. mgmt-int: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
  99.         inet 10.236.245.3  netmask 255.255.255.0  broadcast 10.236.245.255
  100.         inet6 fe80::f816:3eff:fea5:3d34  prefixlen 64  scopeid 0x20<link>
  101.         ether fa:16:3e:a5:3d:34  txqueuelen 1000  (Ethernet)
  102.         RX packets 2091880  bytes 462366330 (440.9 MiB)
  103.         RX errors 0  dropped 0  overruns 0  frame 0
  104.         TX packets 1753001  bytes 387258849 (369.3 MiB)
  105.         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
  106.  
  107. # route -n
  108. Kernel IP routing table
  109. Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
  110. 0.0.0.0         198.xxx.xxx.62    0.0.0.0         UG    100    0        0 mgmt-ext
  111. 10.236.245.0    0.0.0.0         255.255.255.0   U     0      0        0 mgmt-int
  112. 169.254.0.0     0.0.0.0         255.255.0.0     U     1003   0        0 mgmt-int
  113. 169.254.0.0     0.0.0.0         255.255.0.0     U     1004   0        0 data
  114. 169.254.0.0     0.0.0.0         255.255.0.0     U     1006   0        0 ext
  115. 198.xxx.xxx.32    0.0.0.0         255.255.255.224 U     100    0        0 mgmt-ext
Add Comment
Please, Sign In to add comment