1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/docs/pages/basic-configuration.mdx

29 lines
796 B
Text

---
title: Basic Configuration
description: Get started with a basic hyperglass configuration
---
import { Callout } from 'nextra-theme-docs';
To get started, hyperglass only needs to know about your devices.
<Callout>
**Devices** are your routers, switches, or whatever else you want to call the endpoints hyperglass
will query for information.
</Callout>
## Simple Device Configuration
Create a file called `devices.yaml` in the directory `/etc/hyperglass`.
```yaml title="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
```
That's it!