Created
March 23, 2020 20:56
-
-
Save JayDoubleu/039194541d1376319b06aea872ea04fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: localhost | |
connection: local | |
vars: | |
exabgp_conf: | |
- section: neighbor | |
name: 127.0.0.15 | |
config: |- | |
local-as 64512; | |
local-address 127.0.0.1; | |
description "Example neighbor"; | |
peer-as 64514; | |
hold-time 5; | |
static { | |
route 127.0.0.2 { | |
next-hop 127.0.0.3; | |
} | |
} | |
family { | |
inet unicast; | |
} | |
roles: | |
- { role: sfromm.exabgp } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment