VIRL 2 Modules and Models
Authentication Module
- class virl2_client.models.authentication.Context(base_url, requests_session=None, client_uuid=None)
Bases:
object
- __init__(base_url, requests_session=None, client_uuid=None)
- property base_url
- property session
- property uuid
- class virl2_client.models.authentication.TokenAuth(client_library)
Bases:
AuthBase
Inspired by: http://docs.python-requests.org/en/v2.9.1/user/authentication/?highlight=AuthBase#new-forms-of-authentication
- __init__(client_library)
- authenticate()
- handle_401_unauthorized(resp, **kwargs)
- logout(clear_all_sessions=False)
pyATS Module
- exception virl2_client.models.cl_pyats.PyatsDeviceNotFound
Bases:
Exception
- exception virl2_client.models.cl_pyats.PyatsNotInstalled
Bases:
Exception
- class virl2_client.models.cl_pyats.ClPyats(lab)
Bases:
object
Creates a pyATS object that can be used to run commands against a device either in exec mode
show version
or in configuration modeinterface gi0/0\\nno shut
.- Parameters:
lab (models.Lab) – The lab which should be used with pyATS
- Raises:
PyatsNotInstalled – when pyATS can not be found
PyatsDeviceNotFound – when the device can not be found
- __init__(lab)
Constructor method
- cleanup()
cleans up the pyATS connections
- run_command(node_label, command)
Run a command on the device in exec mode
- Parameters:
node_label (str) – the label / title of the device
command (str) – the command to be run in exec mode
- Returns:
The output from the device
- Return type:
str
- run_config_command(node_label, command)
Run a command on the device in configure mode. pyATS handles the change into configure mode automatically.
- Parameters:
node_label (str) – the label / title of the device
command (str) – the command to be run in exec mode
- Returns:
The output from the device
- Return type:
str
- sync_testbed(username, password)
Syncs the the testbed from the server. Note that this will always fetch the latest topology data from the server.
- Parameters:
username (str) – the username that will be inserted into the testbed data
password (str) – the password that will be inserted into the testbed data
Interface Model
- class virl2_client.models.interface.Interface(iid, node, label, slot, iface_type='physical')
Bases:
object
A VIRL2 network interface, part of a node.
- Parameters:
iid (str) – interface ID
node (models.Node) – node object
label (str) – the label of the interface
slot (int) – the slot of the interface
iface_type (str, optional) – the type of the interface, defaults to “physical”
- __init__(iid, node, label, slot, iface_type='physical')
Constructor method
- as_dict()
- bring_up()
- degree()
- is_connected()
- links()
- peer_interfaces()
- peer_nodes()
- remove_on_server()
- shutdown()
- property discovered_ipv4
- property discovered_ipv6
- property discovered_mac_address
- property is_physical
- property lab_base_url
- property readbytes
- property readpackets
- property state
- property writebytes
- property writepackets
Lab Model
- class virl2_client.models.lab.Lab(title, lab_id, context, username, password, auto_sync=True, auto_sync_interval=1.0, wait=True)
Bases:
object
A VIRL2 lab network topology. Contains nodes, links and interfaces. Initializes a Lab instance.
- Parameters:
title (str) – Name / title of the lab
lab_id (str) – A lab ID
context (Context) – The context of the ClientLibrary that holds the connection data to the server
username (str) – Username of the user to authenticate
password (str) – Password of the user to authenticate
auto_sync (bool) – Should local changes sync to the server automatically
auto_sync_interval (int) – Interval to auto sync in seconds
wait – Wait for convergence on backend
- __init__(title, lab_id, context, username, password, auto_sync=True, auto_sync_interval=1.0, wait=True)
Constructor method
- add_node_local(node_id, label, node_definition, image_definition, config, x, y, ram=0, cpus=0, cpu_limit=100, data_volume=0, boot_disk_size=0, tags=None)
Helper function to add a node to the client library.
- build_configurations()
Build basic configurations for all nodes in the lab which do not already have a configuration and also do support configuration building.
- cleanup_pyats_connections()
Closes and cleans up connection that pyATS might still hold.
- connect_two_nodes(node1, node2)
Convenience method to connect two nodes within a lab.
- Parameters:
node1 (models.Node) – the first node object
node2 (models.Node) – the second node object
- Returns:
the created link
- Return type:
models.Link
- create_interface(node, slot=None, wait=None)
Create an interface in the specified slot or, if no slot is given, in the next available slot.
- Parameters:
node (models.Node) – The node on which the interface is created
slot (int) – (optional)
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- Returns:
The newly created interface
- Return type:
models.Interface
- create_interface_local(iface_id, label, node, slot, iface_type='physical')
Helper function to create an interface in the client library.
- create_link(i1, i2, wait=None)
Creates a link between two interfaces
- Parameters:
i1 (models.Interface) – the first interface object
i2 (models.Interface) – the second interface object
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- Returns:
the created link
- Return type:
models.Link
- create_link_local(i1, i2, link_id)
Helper function to create a link in the client library.
- create_node(label, node_definition, x=0, y=0, wait=None, populate_interfaces=False)
Creates a node in the lab with the given parameters.
- Parameters:
label (str) – Label
node_definition – Node definition to use
x (int) – x co-ordinate
y (int) – y co-ordinate
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
populate_interfaces – automatically create pre-defined number of interfaces on node creation
- Returns:
a Node object
- Return type:
models.Node
- details()
Returns the lab details (including state) of the lab.
- Returns:
The detailed lab state
- Return type:
dict
- download()
Download the lab from the server in YAML format.
- Returns:
The lab in YAML format
- Return type:
str
- find_nodes_by_tag(tag)
Returns the node identified by the given tag.
- Parameters:
tag (str) –
- Returns:
a list of tags
- Return type:
list
- get_link_by_interfaces(iface1, iface2)
Returns the link identified by two interfaces.
- Parameters:
iface1 (str) – node id of first node
iface2 (str) – node id of second node
- Returns:
A Link object
- Return type:
models.Link
- Raises:
LinkNotFound – if link not found
- get_link_by_nodes(node1, node2)
Returns the link identified by two nodes.
- Parameters:
node1 (str) – node id of first node
node2 (str) – node id of second node
- Returns:
A Link object
- Return type:
models.Link
- Raises:
LinkNotFound – if link not found
- get_node_by_id(node_id)
Returns the node identified by the node_id.
- Parameters:
node_id (str) –
- Returns:
A Node object
- Return type:
models.Node
- Raises:
KeyError – if node not found
- get_node_by_label(label)
Returns the node identified by the label.
- Parameters:
label (str) –
- Returns:
A Node object
- Return type:
models.Node
- Raises:
NodeNotFound – if node not found
- get_pyats_testbed()
Return lab’s pyATS YAML testbed. Example usage:
from pyats.topology import loader lab = client_library.join_existing_lab("lab_1") testbed_yaml = lab.get_pyats_testbed() testbed = loader.load(io.StringIO(testbed_yaml)) # wait for lab to be ready lab.wait_until_lab_converged() aetest.main(testbed=testbed)
- Returns:
The pyATS testbed for the lab in YAML format
- Return type:
str
- has_converged()
- import_lab(topology)
- interfaces()
Returns the list of interfaces in the lab.
- Returns:
A list of Interface objects
- Return type:
list
- is_active()
Returns if the lab is running.
- links()
Returns the list of links in the lab.
- Returns:
A list of Link objects
- Return type:
list
- need_to_wait(local_wait)
- nodes()
Returns the list of nodes in the lab.
- Returns:
A list of Node objects
- Return type:
list
- remove()
Removes the lab from the server. The lab has to be stopped and wiped for this to work.
Use carefully, it removes current lab:
lab.remove()
- remove_interface(iface, wait=None)
Removes an interface from the lab.
- Parameters:
iface (str) – the interface ID
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- remove_link(link, wait=None)
Removes a link from the lab.
- Parameters:
link (str) – the link ID
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- remove_node(node, wait=None)
Removes a node from the lab.
- Parameters:
node (str) – the node id
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- remove_nodes(wait=None)
Remove all nodes from the lab.
- Parameters:
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- start(wait=None)
Start all the nodes and links in the lab.
- Parameters:
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- state()
Returns the state of the lab.
- Returns:
The state as text
- Return type:
str
- stop(wait=None)
Stops all the nodes and links in the lab.
- Parameters:
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- sync(topology_only=True, with_node_configurations=False)
Synchronize current lab applying the changes that were done in UI or in another ClientLibrary session:
lab.sync()
- Parameters:
topology_only (bool) – do not sync statistics and IP addresses
with_node_configurations (bool) – also sync the configuration of the nodes itself
- sync_events()
- sync_l3_addresses_if_outdated()
- sync_layer3_addresses()
Syncs all layer 3 IP addresses from the backend server.
- sync_pyats()
- sync_states()
Sync all the states of the various elements with the back end server.
- sync_states_if_outdated()
- sync_statistics()
Retrieve the simulation statistic data from the back end server.
- sync_statistics_if_outdated()
- sync_topology_if_outdated()
- update_lab(topology, exclude_configurations)
- update_lab_groups(group_list)
Modifies lab / group association
- Parameters:
group_list – list of objects consisting of group id and permission
- Return type:
group_list: List[Dict[str, str]]
- Returns:
updated objects consisting of group id and permission
- Return type:
List[Dict[str, str]]
- wait_until_lab_converged(max_iterations=500)
Wait until all the lab nodes have booted.
- wipe(wait=None)
Wipe all the nodes and links in the lab.
- Parameters:
wait (bool) – Wait for convergence (if left at default, the lab wait property takes precedence)
- property client_uuid
Returns the client UUID This random ID identifies a client session.
- Returns:
A UUID4
- Return type:
str
- property description
Returns the description of the lab.
- Returns:
The lab name
- Return type:
str
- property groups
Returns the groups this lab is associated with.
- Returns:
associated groups
- Return type:
List[Dict[str, str]]
- property id
Returns the ID of the lab (a 6 digit hex string).
- Returns:
The Lab ID
- Return type:
str
- property lab_base_url
- property notes
Returns the notes of the lab.
- Returns:
The lab name
- Return type:
str
- property owner
Returns the owner of the lab.
- Returns:
A username
- Return type:
str
- property session
Returns the Requests session from the given context.
- Returns:
A Session
- Return type:
Requests.Session
- property statistics
Returns some statistics about the lab.
- Returns:
A dictionary with stats of the lab
- Return type:
dict
- property title
Returns the title of the lab.
- Returns:
The lab name
- Return type:
str
Link Model
- class virl2_client.models.link.Link(lab, lid, iface_a, iface_b)
Bases:
object
A VIRL2 network link between two nodes, connecting to two interfaces on these nodes.
- Parameters:
lab (modles.Lab) – the lab object
lid (str) – the lab ID
iface_a (a models.Interface) – the first interface of the link
iface_b (models.Interface) – the second interface of a the link
- __init__(lab, lid, iface_a, iface_b)
Constructor method
- as_dict()
- get_condition()
get_condition retrieves the current condition on this link. If there is no link condition specified, None is returned.
- Returns:
the applied link condition
- Return type:
Optional[dict]
- has_converged()
- remove_condition()
remove_condition removes link conditioning. If there’s no condition applied then this is a no-op.
- remove_on_server()
- set_condition(bandwidth, latency, jitter, loss)
set_condition applies conditioning to this link.
- Parameters:
bandwidth (int) – desired bandwidth, 0-10000000 kbps
latency (int) – desired latency, 0-10000 ms
jitter (int) – desired jitter, 0-10000 ms
loss (float) – desired loss, 0-100%
- set_condition_by_name(name)
set_condition_by_name is a convenience function to provide some commonly used link condition settings for various link types.
Inspired by: https://github.com/tylertreat/comcast
Name
Latency (ms)
Bandwidth
Loss (%)
gprs
500
50 kbps
2.0
edge
300
250 kbps
1.5
3g
250
750 kbps
1.5
dialup
185
40 kbps
2.0
dsl1
70
2 mbps
2.0
dsl2
40
8 mbps
0.5
wifi
10
30 mbps
0.1
wan1
80
256 kbps
0.2
wan2
80
100 mbps
0.2
satellite
1500
1 mbps
0.2
- Parameters:
name (str) – the predefined condition name as outlined in the table above
- Raises:
ValueError – if the given name isn’t known
- start(wait=None)
- stop(wait=None)
- wait_until_converged(max_iterations=500)
- property base_url
- property interfaces
- property lab_base_url
- property node_a
- property node_b
- property nodes
Return nodes this link connects
- property readbytes
- property readpackets
- property state
- property writebytes
- property writepackets
Node Model
- class virl2_client.models.node.Node(lab, nid, label, node_definition, image_definition, config, x, y, ram, cpus, cpu_limit, data_volume, boot_disk_size, tags)
Bases:
object
A VIRL2 Node object. Typically a virtual machine representing a router, switch or server.
- Parameters:
lab (models.Lab) – the Lab this nodes belongs to
nid (str) – the Node ID
node_definition (str) – The node definition of this node
image_definition (str) – The image definition of this node
config (str) – The day0 configuration of this node
x (int) – X coordinate on topology canvas
y (int) – Y coordinate on topology canvas
ram (int) – memory of node in MiB (if applicable)
cpus (int) – Amount of CPUs in this node (if applicable)
cpu_limit (int) – CPU limit (default at 100%)
data_volume (int) – Size in GiB of 2nd HDD (if > 0)
boot_disk_size (int) – Size in GiB of boot disk (will expand to this size)
tags (list) – List of tags List[str, str]
- __init__(lab, nid, label, node_definition, image_definition, config, x, y, ram, cpus, cpu_limit, data_volume, boot_disk_size, tags)
Constructor method
- add_tag(tag)
- console_key()
- console_logs(console_id, lines=None)
- create_interface(slot=None, wait=False)
Create an interface in the specified slot or, if no slot is given, in the next available slot.
- Parameters:
slot (int) – (optional)
wait (bool) – Wait for the creation
- Returns:
The newly created interface
- Return type:
models.Interface
- degree()
- extract_configuration()
- get_interface_by_label(label)
- get_interface_by_slot(slot)
- has_converged()
- interfaces()
- is_active()
- is_booted()
- links()
- map_l3_addresses_to_interfaces(mapping)
- next_available_interface()
Returns the next available physical interface on this node.
Note: On XR 9000v, the first two physical interfaces are marked as “do not use”… Only the third physical interface can be used to connect to other nodes!
- Returns:
an interface or None, if all existing ones are connected
- Return type:
models.interface
- peer_interfaces()
- peer_nodes()
- physical_interfaces()
- remove_on_server()
- remove_tag(tag)
- run_pyats_command(command)
Run a pyATS command in exec mode.
- Parameters:
command (str) – the command (like “show version”)
- Returns:
the output from the device
- Return type:
str
- run_pyats_config_command(command)
Run a pyATS command in config mode.
- Parameters:
command (str) – the command (like “interface gi0”)
- Returns:
the output from the device
- Return type:
str
- start(wait=False)
- stop(wait=False)
- sync_layer3_addresses()
Acquire all L3 addresses from the controller. For this to work, the device has to be attached to the external network in bridge mode and must run DHCP to acquire an IP address.
- tags()
Returns the tags set on this node
- update(node_data, exclude_configurations)
- vnc_key()
- wait_until_converged(max_iterations=500)
- wipe(wait=False)
- property boot_disk_size
- property config
- property cpu_limit
- property cpu_usage
- property cpus
- property data_volume
- property disk_read
- property disk_write
- property image_definition
- property lab_base_url
- property label
- property node_definition
- property ram
- property state
- property x
- property y
- virl2_client.models.node.flatten(iterable, /)
Alternative chain() constructor taking a single iterable argument that evaluates lazily.