Update docs

This commit is contained in:
Pieprzycki Piotr 2018-04-08 18:09:21 +02:00
parent b8ec1396f7
commit 23fe045167
1 changed files with 22 additions and 30 deletions

View File

@ -9,44 +9,36 @@ General support matrix
---------------------- ----------------------
> +---------------------+---------------+ | | VyOS |
> | \_ | VyOS | |--------------------|--------------|
> +=====================+===============+ |**Module Name** | napalm-vyos |
> | **Module Name** | > napalm-vyos | |**Driver Name** | vyos |
> +---------------------+---------------+ |**Structured data** | Yes |
> | **Driver Name** | > vyos | |**Minimum version** | 1.1.6 |
> +---------------------+---------------+ |**Backend library** | netmiko |
> | **Structured data** | > Yes |
> +---------------------+---------------+
> | **Minimum version** | > 1.1.6 |
> +---------------------+---------------+
> | **Backend library** | > [netmiko] |
> +---------------------+---------------+
>
Configuration support matrix Configuration support matrix
---------------------------- ----------------------------
\_ VyOS | | VyOS |
--------------------- ------ | ------------------- | ----- |
**Config. replace** Yes | **Config. replace** | Yes |
**Config. merge** Yes | **Config. merge** | Yes |
**Compare config** Yes |**Compare config** | Yes |
**Atomic Changes** Yes | **Atomic Changes** | Yes |
**Rollback** Yes | **Rollback** | Yes |
Other methods Other methods
------------- -------------
| VyOS |
\_ VyOS | ---------------- |
-------------------- ------ |**load_template** |
**load\_template** |**ping** |
**ping** |**traceroute** |
**traceroute**
Optional arguments Optional arguments
------------------ ------------------
@ -55,9 +47,9 @@ NAPALM supports passing certain optional arguments to some drivers. To do that y
:code:`optional_args` parameter when creating the object:: :code:`optional_args` parameter when creating the object::
>>> from napalm import get_network_driver >>> from napalm import get_network_driver
>>> driver = get_network_driver('eos') >>> driver = get_network_driver('vyos')
>>> optional_args = {'my_optional_arg1': 'my_value1', 'my_optional_arg2': 'my_value2'} >>> optional_args = {'my_optional_arg1': 'my_value1', 'my_optional_arg2': 'my_value2'}
>>> device = driver('192.168.76.10', 'dbarroso', 'this_is_not_a_secure_password', optional_args=optional_args) >>> device = driver('192.168.76.10', 'vagrant', 'this_is_not_a_secure_password', optional_args=optional_args)
>>> device.open() >>> device.open()
List of supported optional arguments List of supported optional arguments