31 lines
935 B
Plaintext
31 lines
935 B
Plaintext
---
|
|
title: Basic Configuration
|
|
description: Get started with a basic hyperglass configuration
|
|
---
|
|
|
|
import { Callout } from "nextra/components";
|
|
|
|
To get started, hyperglass only needs to know about your devices.
|
|
|
|
<Callout type="info">
|
|
**Devices** are your routers, switches, or whatever else you want to call the endpoints
|
|
hyperglass will query for information.
|
|
</Callout>
|
|
|
|
## Simple Device Configuration
|
|
|
|
```yaml filename="devices.yaml"
|
|
devices:
|
|
- name: NYC Router 1
|
|
address: <IP address hyperglass will use to log into the router>
|
|
credential:
|
|
username: <Username hyperglass will use to log into the router>
|
|
password: <Password hyperglass will use to log into the router>
|
|
platform: cisco_ios
|
|
attrs:
|
|
source4: <IPv4 address from which to source ping & traceroute commands>
|
|
source6: <IPv4 address from which to source ping & traceroute commands>
|
|
```
|
|
|
|
That's it!
|