1 / 15

Final Project-Routing

Final Project-Routing. 698430033 張宜鴦. 3 type routing policy. Static Routing Session Routing Dynamic Routing. 利用記錄檔寫程式分析 throughput 、 packet delay 、 jitter 、 packet loss rate ,並比較三種 routing policy 的值. Want to do. Scenario. At 0.1s 0->4 At 0.3s 1->4 At 0.5s 0->4 down At 0.9s 0->1 down

Download Presentation

Final Project-Routing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Final Project-Routing 698430033 張宜鴦

  2. 3 type routing policy • Static Routing • Session Routing • Dynamic Routing

  3. 利用記錄檔寫程式分析throughput、packet delay、jitter、packet loss rate,並比較三種routing policy的值 Want to do

  4. Scenario • At 0.1s 0->4 • At 0.3s 1->4 • At 0.5s 0->4 down • At 0.9s 0->1 down • At 1s 0->4 up

  5. Awk程式(End-to-End delay) • 記錄封包的傳送時間->記錄flow_id的接收時間-> 當資料列全部讀取完後,開始計算有效封包的點到端點延遲時間 • start = start_time[packet_id]; • end = end_time[packet_id]; • packet_duration = end - start

  6. Awk程式(jitter) • Packet_duration的部份與 End-to-end delay相同 • ->只把接收時間大於傳送時間的記錄列出來 得到了delay值(packet_duration)後計算jitter seqno_diff = pkt_seqno[packet_id] - last_seqno; delay_diff = packet_duration - last_delay; if (seqno_diff == 0) { jitter =0; } else { jitter = delay_diff/seqno_diff; }

  7. Awk程式(throughput) • if(action=="r" && to==4 && flow_id==0) { pkt_byte_sum[i+1]=pkt_byte_sum[i]+ pktsize; … … . . .} th = pkt_byte_sum[j] / (end_time[j]-start_time)*8/1000; printf("%.2f\t%.2f\n", end_time[j], th);

  8. 實驗數據-Delay(DV)

  9. 實驗數據-Delay(Session)

  10. 實驗數據-Delay(Static)

  11. 實驗數據-Delay(comparison)

  12. 實驗數據-jitter

  13. 實驗數據-throughput(flow 0’s comparison)

  14. 實驗數據-throughput(flow 1’s comparison)

  15. 實驗數據-packet loss rate

More Related