diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-06-01 16:42:53 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-06-02 08:08:49 +0000 |
commit | b8671b56c153055a2906af14f63b5818b189d808 (patch) | |
tree | 416246b95f828be5404f1ed3ebbacf409c5c42ba /data/templates/sla/owamp-override.conf.j2 | |
parent | c4d824d57d696bcf0e2a1e8e0fd87078e6eaadd3 (diff) | |
download | vyos-1x-b8671b56c153055a2906af14f63b5818b189d808.tar.gz vyos-1x-b8671b56c153055a2906af14f63b5818b189d808.zip |
sla: T4222: Add OWAMP and TWAMP for service sla
OWAMP is a command line client application and a policy daemon used
to determine one way latencies between hosts.
OWAMP session control uses traditional client-server communication
between a control-client and a server,
TWAMP (two-way active measurement protocol)
Add configuration and operation modes
set service sla owamp-server
set service sla twamp-server
run force owping 192.0.2.120
run force twping 192.0.2.190
Diffstat (limited to 'data/templates/sla/owamp-override.conf.j2')
-rw-r--r-- | data/templates/sla/owamp-override.conf.j2 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/data/templates/sla/owamp-override.conf.j2 b/data/templates/sla/owamp-override.conf.j2 new file mode 100644 index 000000000..b5ec161d4 --- /dev/null +++ b/data/templates/sla/owamp-override.conf.j2 @@ -0,0 +1,16 @@ +[Unit] +Description==OWAMP server +After=vyos-router.service +# Only start if there is a configuration file +ConditionFileNotEmpty=/etc/owamp-server/owamp-server.conf + +[Service] +KillMode=process +Type=simple +ExecStart=/usr/sbin/owampd -c /etc/owamp-server -R /var/run +ExecReload=/bin/kill -HUP $MAINPID +PIDFile=/run/owamp-server.pid +LimitNOFILE=4096 + +[Install] +WantedBy=multi-user.target |