mirror of
https://github.com/napalm-automation-community/napalm-vyos.git
synced 2026-09-23 20:51:15 +00:00
add vm port, don't expect established bgp session
This commit is contained in:
8
setup.py
8
setup.py
@@ -5,17 +5,17 @@ import uuid
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
from pip.req import parse_requirements
|
from pip.req import parse_requirements
|
||||||
|
|
||||||
__author__ = 'Shota Muto <dos9954@gmail.com>'
|
__author__ = 'Piotr Pieprzycki <piotr.pieprzycki@dreamlab.pl>'
|
||||||
|
|
||||||
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
|
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
|
||||||
reqs = [str(ir.req) for ir in install_reqs]
|
reqs = [str(ir.req) for ir in install_reqs]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="napalm-vyos",
|
name="napalm-vyos",
|
||||||
version="0.1.1",
|
version="0.1.2",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
author="Shota Muto",
|
author="Piotr Pieprzycki, Shota Muto",
|
||||||
author_email="dos9954@gmail.com",
|
author_email="piotr.pieprzycki@dreamlab.pl, dos9954@gmail.com",
|
||||||
description="Network Automation and Programmability Abstraction Layer with Multivendor support",
|
description="Network Automation and Programmability Abstraction Layer with Multivendor support",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ class PatchedVyOSDriver(vyos.VyOSDriver):
|
|||||||
"""Patched VyOS Driver."""
|
"""Patched VyOS Driver."""
|
||||||
|
|
||||||
def __init__(self, hostname, username, password, timeout=60, optional_args=None):
|
def __init__(self, hostname, username, password, timeout=60, optional_args=None):
|
||||||
|
optional_args = {'port': '12206'}
|
||||||
super().__init__(hostname, username, password, timeout, optional_args)
|
super().__init__(hostname, username, password, timeout, optional_args)
|
||||||
|
|
||||||
self.patched_attrs = ['device']
|
self.patched_attrs = ['device']
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{"global": {"router_id": "...", "peers": {"10.0.1.100": {"is_enabled": true, "uptime": "...", "remote_as": 65001, "description": "", "remote_id": "...", "local_as": 65002, "is_up": true, "address_family": {"ipv4": {"sent_prefixes": -1, "accepted_prefixes": "...", "received_prefixes": "..."}}}}}}
|
{"global": {"router_id": "...", "peers": {"10.0.1.100": {"is_enabled": true, "uptime": "...", "remote_as": 65001, "description": "", "remote_id": "...", "local_as": 65002, "is_up": "...", "address_family": {"ipv4": {"sent_prefixes": -1, "accepted_prefixes": "...", "received_prefixes": "..."}}}}}}
|
||||||
|
|||||||
Reference in New Issue
Block a user