pyvyos is a Python library for interacting with VyOS devices via their API. This documentation provides a guide on how to use pyvyos to manage your VyOS devices programmatically.
You can find the complete pyvyos documentation on Read the Docs.
You can install pyvyos using pip https://pypi.org/project/pyvyos/:
pip install pyvyos
Before using pyvyos, it's a good practice to disable urllib3 warnings and import the required modules, IF you use verify=False:
import urllib3
urllib3.disable_warnings()
pyvyos uses a custom ApiResponse data class to handle API responses:
@dataclass
class ApiResponse:
status: int
request: dict
result: dict
error: str
# Retrieve VyOS device connection details from environment variables and configure VyDevice
from dotenv import load_dotenv
load_dotenv()
hostname = os.getenv('VYDEVICE_HOSTNAME')
apikey = os.getenv('VYDEVICE_APIKEY')
port = os.getenv('VYDEVICE_PORT')
protocol = os.getenv('VYDEVICE_PROTOCOL')
verify_ssl = os.getenv('VYDEVICE_VERIFY_SSL')
# Convert the verify_ssl value to a boolean
verify = verify_ssl.lower() == "true" if verify_ssl else True
device = VyDevice(hostname=hostname, apikey=apikey, port=port, protocol=protocol, verify=verify)
The configure_set method sets a VyOS configuration:
# Set a VyOS configuration
response = device.configure_set(path=["interfaces", "ethernet", "eth0", "address", "192.168.1.1/24"])
# Check for errors and print the result
if not response.error:
print(response.result)
# Retrieve VyOS return values for a specific interface
response = device.retrieve_return_values(path=["interfaces", "dummy", "dum1", "address"])
print(response.result)
The retrieve_show_config method retrieves the VyOS configuration:
# Retrieve the VyOS configuration
response = device.retrieve_show_config(path=[])
# Check for errors and print the result
if not response.error:
print(response.result)
# Delete a VyOS interface configuration
response = device.configure_delete(path=["interfaces", "dummy", "dum1"])
# Save VyOS configuration without specifying a file (default location)
response = device.config_file_save()
# Save VyOS configuration to a specific file
response = device.config_file_save(file="/config/test300.config")
# Show VyOS system image information
response = device.show(path=["system", "image"])
print(response.result)
# Generate an SSH key with a random string in the name
randstring = ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(20))
keyrand = f'/tmp/key_{randstring}'
response = device.generate(path=["ssh", "client-key", keyrand])
The reset method allows you to run a reset command:
# Execute the reset command
response = device.reset(path=["conntrack-sync", "internal-cache"])
# Check for errors and print the result
if not response.error:
print(response.result)
# Load VyOS configuration from a specific file
response = device.config_file_load(file="/config/test300.config")