forked from mirrors/thatmattlove-hyperglass
This commit is contained in:
parent
3681f0c109
commit
1d36e7a0cb
2 changed files with 13 additions and 4 deletions
|
|
@ -22,13 +22,22 @@ On the Linux server running [FRRouting](https://frrouting.org/) or [BIRD](https:
|
|||
<Tabs
|
||||
defaultValue="debian"
|
||||
values={[
|
||||
{ label: 'Debian/Ubuntu', value: 'debian' },
|
||||
{ label: 'Ubuntu', value: 'ubuntu' },
|
||||
{ label: 'Debian', value: 'debian' },
|
||||
{ label: 'RHEL/CentOS', value: 'rhel' }]}>
|
||||
|
||||
<TabItem value="ubuntu">
|
||||
|
||||
```shell-session
|
||||
$ sudo apt install -y python3.6-dev python3-pip
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
|
||||
<TabItem value="debian">
|
||||
|
||||
```shell-session
|
||||
$ sudo apt install -y python3.6-dev python3-pip
|
||||
$ sudo apt install -y python3 python3-pip
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
|
|
@ -56,7 +65,7 @@ Python 3.6.9
|
|||
Now that Python 3.6+ is installed, you can install the hyperglass agent:
|
||||
|
||||
```shell-session
|
||||
$ pip3 install --user hyperglass-agent
|
||||
$ pip3 install hyperglass-agent
|
||||
```
|
||||
|
||||
:::important More coming soon
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ description: Configure hyperglass-agent
|
|||
---
|
||||
|
||||
:::caution Time & NTP
|
||||
Before you get to far, check to make sure your hyperglass server and hyperglass-agent system are both properly synchronized with an NTP server. During the setup process and on every interaction, hyperglass and hyperglass agent exchange [JWT](https://jwt.io/) tokens with a relatively short window (60 seconds, by default) in which to validate the payload. If the system clock on either system is askew by too much, this exchange can fail.
|
||||
Before you get too far, check to make sure your hyperglass server and hyperglass-agent system are both properly synchronized with an NTP server. During the setup process and on every interaction, hyperglass and hyperglass agent exchange [JWT](https://jwt.io/) tokens with a relatively short window (60 seconds, by default) in which to validate the payload. If the system clock on either system is askew by too much, this exchange can fail.
|
||||
:::
|
||||
|
||||
## Setup
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue