1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

44 lines
819 B
TOML
Raw Normal View History

2019-06-16 17:13:02 -07:00
# Routers
[router.'test-r1']
address = "127.0.1.1"
asn = "65001"
src_addr_ipv4 = "127.0.0.1"
src_addr_ipv6 = "::1"
credential = "default"
location = "pop1"
name = "test-r1.pop1"
display_name = "Test Router 1"
port = "22"
type = "cisco_ios"
proxy = "proxy1"
[router.'test-r2']
address = "127.0.1.2"
asn = "65001"
src_addr_ipv4 = "127.0.0.2"
src_addr_ipv6 = "::1"
credential = "default"
location = "pop2"
name = "test-r2.pop2"
display_name = "Test Router 2"
port = "22"
type = "cisco_xr"
proxy = ""
# Router Credentials
[credential.'default']
username = "username"
password = "password"
[credential.'other']
username = "otheradmin"
password = "otherpass"
# SSH Proxy Servers
[proxy.'proxy1']
address = "10.0.1.1"
username = "username"
password = "password"
type = "linux_ssh"
ssh_command = "ssh -l {username} {host}"