VoIP protocols - RTP, QOS & RSVP

Internet data transmissions are composed of several layers. The network layer consists of the Internet Protocol (IP) which establishes a connection between two computers. The transport layer provides the rules for sending the data -- for example, whether the data

needs to arrive intact or whether data can be missed. The application layer determines how the data will be processed once it arrives at its destination.

Most data travelling over the Internet uses the Transmission Control Protocol (TCP) for the transport layer because it guarantees data delivery and integrity. VoIP does not need the kind of delivery guarantee which TCP provides, so most VoIP transmissions use the faster User Datagram Protocol (UDP) as the transport layer.

Once VoIP data arrives at its destination, the application layer interprets it and presents it to the user. The most commonly used application layers for VoIP are SIP (see part 1) and RTP.

RTP

Real-time Transport Protocol (RTP) was originally designed for delivering multimedia content over the Internet. It is often used for streaming (delivering in real-time) audio and video content such as music and movies.

RTP always uses UDP (User Datagram Protocol) as the transport layer. It can be used in conjunction with both SIP and H.323 for delivering voice data in a consistent and reliable manner. It provides services for identifying the type of data, its sequence, and whether or not each packet has been delivered.

QOS

Quality of Service (QOS) in VoIP refers to the likelihood that voice data will be delivered quickly and up to a certain standard -- clear and without background noise. It is used for VoIP, multimedia streaming, and applications which require a high degree of reliability.

Essentially, QOS is provided by ensuring that enough bandwidth has been reserved for a particular application. There are two ways to do this -- providing more than enough bandwidth to meet all needs at all times, or reserve bandwidth when it is needed. The second option is more practical because there is no way to foresee exactly what network demands will be at any given time.

VoIP most often uses RSVP (Resource ReSerVation Protocol) to reserve bandwidth, although other solutions including VLAN (Virtual Local Area Network) and VPN (Virtual Private Network) are being used by some VoIP service providers.

RSVP

Resource ReSerVation Protocol (RSVP) is used to manage Quality of Service (QOS). RSVP is used to request a minimum bandwidth and latency from every Internet router between two endpoints. Those that comply will reserve resources for the data stream.

The Internet has mechanisms in place to monitor the signal path between any two points. When a reservation request is received, the routers along the path examine the state of the signal paths and decide whether they can accommodate it. Once the reservation is accepted, the routers have to carry that data as specified. To do this they reserve the resources necessary to guarantee bandwidth. After receiving an RSVP the data path is monitored to make sure the data travels along the path as expected. If not, the reserve request will timeout after a certain period of time so that resources are not unnecessarily used up.

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。
经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 经导师精心指导并认可、获 98 分的毕业设计项目!【项目资源】:微信小程序。【项目说明】:聚焦计算机相关专业毕设及实战操练,可作课程设计与期末大作业,含全部源码,能直用于毕设,经严格调试,运行有保障!【项目服务】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。
根据您提供的引用内容,配置`dubbo.protocols.dubbo.port=-1`可以开启Dubbo端口的随机分配功能。这样配置后,Dubbo将自动选择一个可用的端口进行通信。 另外,要查看Dubbo进程的端口,可以使用`lsof -i | grep dubbo进程ID | grep LISTEN`命令。该命令会列出所有使用Dubbo协议的进程的信息,包括监听的端口。 关于Dubbo管理平台,您可以下载dubbo-admin.2.5.6.war包并部署自己的服务器上。您提到有一些免积分下载的方法,但是目前最低要求是2个积分。 最后,针对您提到的问题描述`Failed to bind properties under 'spring.dubbo.application' to com.alibaba.dubbo.config.ApplicationConfig: Property: spring.dubbo.application.logger Value: Slf4j Origin: class path resource [application.properties]:17:33 Reason: No such extension com.alibaba.dubbo.common.logger.LoggerAdapter by name Slf4j`,根据这个描述,看起来是在应用配置中使用了`spring.dubbo.application.logger`这个属性,但是`com.alibaba.dubbo.common.logger.LoggerAdapter`扩展中没有名为`Slf4j`的实现[3]。这可能是由于配置文件中的错误或者版本不匹配导致的。您可以检查配置文件中的属性是否正确,或者尝试更新Dubbo的版本来解决该问题。 总结起来,配置`dubbo.protocols.dubbo.port=-1`可以开启Dubbo端口的随机分配功能。您可以使用命令`lsof -i | grep dubbo进程ID | grep LISTEN`来查看Dubbo进程的端口。另外,您可以下载dubbo-admin.2.5.6.war包并部署自己的服务器上来使用Dubbo管理平台。对于问题描述中的错误,建议检查配置文件中的属性是否正确或者尝试更新Dubbo的版本。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值