zoukankan      html  css  js  c++  java
  • Routing & Network Knowledge

    This is a technical notes as I read the paper Routing in Delay Tolerant Networks.I should have written these words long before. I hope it is not too late.

    In that paper, K. Fall et al. create a set of abstract knowledge oracles, each able to answer questions we ask of them. These oracles are: 

    • Contact Summary Oracle. This oracle can answer question about aggregate statistics of the contacts. In particular, the contacts summary oracle provides the average waiting time until the next contact for an edge. Thus, the contact summary oracle can only respond with time-invariant or summary characteristics about contacts.
    • Contact Oracle. This oracle can answer any question regarding contacts between two nodes at any point in time. This is equivalent to knowing the time-varying DTN multi-graph. The contacts summary oracle can be constructed using the contacts oracle, but not vice versa.
    • Queuing Oracle. This oracle gives information about instantaneous buffer occupancies(queuing) at any node at any time and can be used to route around congested nodes.(Most difficult oracle to realize in a distributed system)
    • Traffic Demand Oracle. This oracle can answer any question regarding the present or future traffic demand. It is able to provide the set of messages injected into the system at any time.

       Routing algorithms fall into 3 classes:

    • Zero Knowledge.(First Contact)
    • Partial Knowledge.(no traffic demand oracle)
    • Complete Knowledge. 
    Computing Shortest(minimum cost) PathDelay Component:1,queuing delay;2,transmission delay;3,propagation delay.Given that edge capacities and propagation delays vary with time, we also expect route selection to vary with time. If edge cost is time-invariant, we can use Dijkstra's shortest path algorithm. 

  • 相关阅读:
    使用反射获取对象的步骤
    金融IT的算法要求
    Java编译与反编译命令记录
    常用搜索博客/网站
    Java核心-03 谈谈final、finally、 finalize有什么不同?
    Java核心-02 Exception和Error有什么区别?
    PHP函数技巧篇
    IO
    Markdown 简单使用教程
    FZu Problem 2233 ~APTX4869 (并查集 + sort)
  • 原文地址:https://www.cnblogs.com/jcleung/p/2052316.html
Copyright © 2011-2022 走看看