Repository URL to install this package:
Version:
3.3.42 ▾
|
ó ±EYc @ s d d l m Z d Z e j d d d d d Z e j d d e d d Z e j d d e d d d d Z e j d d d d d Z e j d d d d d Z e j d d d d d Z e j d d d d d Z e e e e e e g Z d Z d Z d Z d S( iÿÿÿÿ( t cfgs 10000:20000t serial_consolet titles The serial console featuret helpsÇ The serial console feature allows you to connect to a guest in case a graphical console like VNC, RDP or SPICE is not available. This is only currently supported for the libvirt and hyper-v drivers.t enabledt defaultsY Enable the serial console feature. In order to use this feature, the service ``nova-serialproxy`` needs to run. This service is typically executed on the controller node. Possible values: * True: Enables the feature * False: Disables the feature Services which consume this: * ``nova-compute`` Interdependencies to other options: * None t port_ranget regexs \d+:\d+só A range of TCP ports a guest can use for its backend. Each instance which gets created will use one port out of this range. If the range is not big enough to provide another port for an new instance, this instance won't get launched. Possible values: Each string which passes the regex ``\d+:\d+`` For example ``10000:20000``. Be sure that the first port number is lower than the second port number. Services which consume this: * ``nova-compute`` Interdependencies to other options: * None t base_urls ws://127.0.0.1:6083/s0 The URL an end user would use to connect to the ``nova-serialproxy`` service. The ``nova-serialproxy`` service is called with this token enriched URL and establishes the connection to the proper instance. Possible values: * <scheme><IP-address><port-number> Services which consume this: * ``nova-compute`` Interdependencies to other options: * The IP address must be identical to the address to which the ``nova-serialproxy`` service is listening (see option ``serialproxy_host`` in this section). * The port must be the same as in the option ``serialproxy_port`` of this section. * If you choose to use a secured websocket connection, then start this option with ``wss://`` instead of the unsecured ``ws://``. The options ``cert`` and ``key`` in the ``[DEFAULT]`` section have to be set for that. t proxyclient_addresss 127.0.0.1sK The IP address to which proxy clients (like ``nova-serialproxy``) should connect to get the serial console of an instance. This is typically the IP address of the host of a ``nova-compute`` service. Possible values: * An IP address Services which consume this: * ``nova-compute`` Interdependencies to other options: * None t serialproxy_hosts 0.0.0.0s The IP address which is used by the ``nova-serialproxy`` service to listen for incoming requests. The ``nova-serialproxy`` service listens on this IP address for incoming connection requests to instances which expose serial console. Possible values: * An IP address Services which consume this: * ``nova-serialproxy`` Interdependencies to other options: * Ensure that this is the same IP address which is defined in the option ``base_url`` of this section or use ``0.0.0.0`` to listen on all addresses. t serialproxy_portià sÖ The port number which is used by the ``nova-serialproxy`` service to listen for incoming requests. The ``nova-serialproxy`` service listens on this port number for incoming connection requests to instances which expose serial console. Possible values: * A port number Services which consume this: * ``nova-serialproxy`` Interdependencies to other options: * Ensure that this is the same port number which is defined in the option ``base_url`` of this section. c C s | j t d t d S( Nt group( t register_optst ALL_OPTSt serial_opt_group( t conf( ( sM /home/tvault/.virtenv/lib/python2.7/site-packages/nova/conf/serial_console.pyR · s c C s$ | j t d | j t d d S( NR ( t register_cli_optt serialproxy_host_optt serialproxy_port_opt( R ( ( sM /home/tvault/.virtenv/lib/python2.7/site-packages/nova/conf/serial_console.pyt register_cli_opts» s c C s i t t 6S( N( R R ( ( ( sM /home/tvault/.virtenv/lib/python2.7/site-packages/nova/conf/serial_console.pyt list_optsÀ s N( t oslo_configR t DEFAULT_PORT_RANGEt OptGroupR t BoolOptt Falset enabled_optt StrOptt port_range_optt base_url_optt proxyclient_address_optR t PortOptR R R R R ( ( ( sM /home/tvault/.virtenv/lib/python2.7/site-packages/nova/conf/serial_console.pyt <module> s@