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

31 lines
580 B
Plaintext
Raw Normal View History

2019-05-07 23:21:41 -07:00
# Routers
[router.'router1']
address = "192.0.2.1"
2019-05-07 23:21:41 -07:00
asn = "65000"
src_addr_ipv4 = "192.0.2.1"
src_addr_ipv6 = "2001:db8::1"
credential = "default"
location = "pop1"
name = "router1.pop1"
display_name = "Router"
port = "222"
2019-05-07 23:21:41 -07:00
type = "cisco_ios"
proxy = "proxy1"
2019-05-07 23:21:41 -07:00
# Router Credentials
[credential.'default']
username = "username"
password = "password"
[credential.'other']
username = "otheradmin"
2019-05-07 23:21:41 -07:00
password = "otherpass"
# SSH Proxy Servers
[proxy.'proxy1']
2019-05-07 23:21:41 -07:00
address = "10.0.1.1"
username = "username"
password = "password"
type = "linux_ssh"
ssh_command = "ssh -l {username} {host}"