首页 > 其他分享 >IP SLA

IP SLA

时间:2023-02-07 11:03:36浏览次数:46  
标签:IP sla ip threshold operation SLA

我们再配置IP SLA的时候,有些参数可能会有所混淆。

思科默认的这些参数值如下:

  frequency    Frequency of an operation (60s)
  timeout      Timeout of an operation(5000ms)
  threshold    Operation threshold in milliseconds (5000ms)

Threshold sets the rising threshold that generates a reaction event and stores history information for an IP SLAs operation.

Threshold is used to activate a response to IP SLA violation, e.g. send SNMP trap or start seconday SLA operation.

Timeout is the maximum time required for SLA operation to complete

Timeout sets the amount of time an IP SLAs operation waits for a response from its request packet.

Timeout 超时是SLA操作完成所需的最长时间-例如等待探测响应的超时。
Threshold 阈值是在操作RESULT期间测得的边界值(例如RTT或在操作期间收集的抖动值)。 越过阈值通常意味着违反SLA约定。
请注意,这两个值适用于不同对象。

设置这3个值的常用方法是:(frequency 频率)>(timeout超时)>(threshold 阈值)。 对于诸如UDP jitter之类的网络密集型SLA,建议最小“frequency ”为60秒,这是因为它们给网络带来了负载和开销。

不必将“threshold ”设置为任何特定的值,这完全取决于您以及您对网络服务和质量水平的看法/计划。 尽管必须将其设置为小于为“timeout”设置的值。

换句话说 “timeout” =没有服务\无法到达\已死。 其中,“threshold”是一个值,它定义了服务完全失效之前的警告级别。 当达到上限阈值时,您的设备将执行您已配置为执行的任务,例如 发送系统日志消息或触发SNMP trap等。

ip sla 1
..icmp-echo 155.1.23.2 source-interface Serial0/3/0
..timeout 1000
..threshold 1000
..frequency 30
ip sla schedule 1 life forever start-time now
!
track 1 ip sla 1 reachabiity

IP SLA Delay Feature:(90 seconds)

track 1 ip sla 1 reachability
..delay down 90 up 90

这里有一篇看起来很舒服的博客文档,可以作为IP SLA的配置示例:

https://www.practicalnetworking.net/stand-alone/cisco-ip-sla-using-a-cisco-router-to-generate-traffic/

For Cisco.com
Q. What does the term threshold and timeout in IP SLA operation mean?

A. Threshold sets the rising threshold that generates a reaction event and stores history information for an IP SLAs operation.
    Timeout sets the amount of time an IP SLAs operation waits for a response from its request packet.

show命令:

show ip sla configration
show track
show ip sla stat

标签:IP,sla,ip,threshold,operation,SLA
From: https://www.cnblogs.com/zhaoyong631/p/17097646.html

相关文章

  • ECMAScript 是什么?
    ECMAScript是什么简介Ecma标准定义了ECMAScript语言ECMAScript基于多种原始技术,最著名的是JavaScript(Netscape)和JScript(Microsoft)ECMAScript以嵌入We......
  • 使用 pycharm pip install 问题
    1. 出现trusted_host问题,说明没有配置信任证书,需要在pip.ini里面配置trusted_host;2.设置代理:settings>HTTPProxy>ManualSet127.0.0.1>ConnectionTest......
  • QML教程(七) JavaScript
    目录一、对属性值使用JavaScript表达式二、在QML中添加JavaScript函数三、使用JavaScript文件四、属性绑定中的JavaScript五、信号处理程序中的JavaScript......
  • QML概念及框架--继承JavaScript
    QML推荐使用属性绑定和现有的QML元素来创建界面。为了允许执行更高级的行为,QML紧密集成了必要的JavaScript代码。QML中提供的JavaScript环境比在网页浏览器中的更严格。在Q......
  • 产品力狂飙|Coremail荣登第五版《CCSIP2022中国网络安全行业全景册》
    2023年2月1日,FreeBuf咨询正式发布 《CCSIP(ChinaCyberSecurityPanorama)2022中国网络安全行业全景册(第五版)》。第五版全景图仍将以PDR网络安全模型为基础,并参考IPDRR安全......
  • pip
    【pipinstall】ERROR:Cannotuninstall‘xx‘.Itisadistutilsinstalledproject的解决办法今天在安装audtorch使用pipinstallaudtorch进行安装时,报错:ERROR:C......
  • Jmeter 解决 NoHttpResponseException: ip:80 failed to respond
      在 /Users/chenjun/jmeter/apache-jmeter-5.5/bin/jmeter.properties:修改一下httpclient4.retrycount=100httpclient4.request_sent_retry_enabled=trueht......
  • java GZIPOutputStream,GZIPInputStream 用法
    GZIP常常用在linxu环境下,是一种非常简单的压缩算法。在Java实现API中,它仅仅包含两个实现类:GZIPInputStream和GZIPOutputStream。GZIPOutputStream类......
  • 用java实现zip压缩
    本来是写到spaceslive上的,可是代码的显示效果确实不怎么好看。在javaeye上试了试代码显示的顺眼多了。今天写了个用java压缩的功能,可以实现对文件......
  • Javascript打包后移除console语句
    NodeJS项目安装包npminstallbabel-plugin-transform-remove-console--save-dev配置Babelconstplugins=[]//如果不是开发环境则启用if(process.env.NODE_ENV!......