2d44b2b36d
The new sphinx version introduces some changes that break build: * Warns if code cannot be parsed for highlighting. Fix the code so that it can be parsed, this includes uncommenting "..." lines. Note that not every config file is an ini-file. Also, the parser seems to have bugs and cannot parse all files. Fix mysql ini file and enable the parameter, see http://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_file_per_table * :option: works only with declared options, replace useage with simple ``. This change only handles a few files, more to come later. Change-Id: I7c7335e514581622dd562ee355f62d6ae1beaa18
22 lines
1.0 KiB
ReStructuredText
22 lines
1.0 KiB
ReStructuredText
=======================================
|
|
Search for an instance using IP address
|
|
=======================================
|
|
|
|
You can search for an instance using the IP address parameter, ``--ip``,
|
|
with the :command:`openstack server list` command.
|
|
|
|
.. code-block:: console
|
|
|
|
$ openstack server list --ip IP_ADDRESS
|
|
|
|
The following example shows the results of a search on ``10.0.0.4``.
|
|
|
|
.. code-block:: console
|
|
|
|
$ openstack server list --ip 10.0.0.4
|
|
+------------------+----------------------+--------+------------+-------------+------------------+------------+
|
|
| ID | Name | Status | Task State | Power State | Networks | Image Name |
|
|
+------------------+----------------------+--------+------------+-------------+------------------+------------+
|
|
| 8a99547e-7385... | myInstanceFromVolume | ACTIVE | None | Running | private=10.0.0.4 | cirros |
|
|
+------------------+----------------------+--------+------------+-------------+------------------+------------+
|