Microsoft PowerPoint - NS-2無線網路模擬

Size: px
Start display at page:

Download "Microsoft PowerPoint - NS-2無線網路模擬"

Transcription

1 NS-2 無線網路模擬 Speaker : Rung Shiang Cheng ( 程榮祥 ) Department of Computer and Communication Kun Shan University 1

2 Outline 2

3 Linux 下的 NS-2 安裝與設定 3

4 NS-2 是什麼? Network Simulator, version 2 物件導向網路模擬器 Router, Link, End point, TCP/IP protocols C++, OTCL NS-2 的執行流程 4

5 NS-2 的下載與安裝 下載 NS-2 NS-2 網址 Download and Build ns Getting everything at once Ns-allinone 安裝 NS-2 解壓縮 安裝 5

6 NS-2 的下載與安裝 6

7 NS-2 的下載與安裝 安裝完成訊息 7

8 NS-2 的下載與安裝 修改使用者環境設定 將 NS-2 要求設定的路徑, 加入 PATH 參數中 8

9 個別套件的安裝 以 NAM 為例 Download and Build ns Getting the Pieces 將下載的檔案移至 NS-allinone 的目錄下 9

10 個別套件的安裝 以 NAM 為例 使用 tar 指令將下載的檔案解壓縮 開始進行安裝 10

11 個別套件的安裝 以 NAM 為例 指定使用新的 NAM 版本來取代舊的版本 11

12 Getting Older Versions of Ns 12

13 TCL 簡介 13

14 TCL 語法簡介 Hello world! 設定變數 ( 例 1) 數學運算設定變數 ( 例 2) 14

15 流程控制 if 條件敘述 for 迴圈 ( 例 1) for 迴圈 ( 例 2) 15

16 流程控制 while 迴圈 16

17 程序 程式範例 執行結果 說明 程序基本的語法為 : proc name {params} {body}, 其中 name 為程序的名稱,params 是參數列表,body 則是程序的主體 定義完程序後就可以像其它任何的 tcl 指令一樣執行 17

18 陣列 程式範例 執行結果 說明 陣列的內容可以是數字或者是字串, 存放的位置不一定要用 這樣的編號 18

19 輸出 程式範例 執行結果 說明 一般來說,puts 若是沒有指定輸出裝置的話, 內定的輸出裝置是螢幕, 但此範例中有指定輸出的裝置為檔案, 因此會將字串寫入檔案中 19

20 TCP 與 UDP 模擬實驗 20

21 模擬程式 (TCL Script) 的基本架構 21

22 網路架構圖 22

23 TCL Script # 產生模擬物件 # 定義執行程序 # 設定網路拓樸 撰寫模擬劇本 23

24 TCL Script TCP 封包長度預設為 1 Kbytes UDP Agent 在 NS-2 中,UDP Agents 的程式碼是放在 "ns-allinone-2.31/ns- 2.31/apps/udp.{cc, h}" 這兩個 C++ 原檔中 Application Layer 的應用程式, 可透過 sendmsg() 這個 C++ function 來取存 UDP Agent UDP 的 maximum segment size (MSS) 預設值為 1000 byte Agent/UDP set packetsize_

25 TCL Script CBR 在 0.1 秒開始傳送,4.5 秒結束 ; FTP 在 1.0 秒開始傳送,4.0 秒結束 25

26 模擬過程記錄檔的內容與格式 Trace record 的格式 部份記錄檔的內容 26

27 AWK 資料處理語言 AWK 簡介 以 Aho Weinberger Kernighan 三位設計者的字者命名 Pattern scanning and processing language Linux 大多取名為 gawk AWK 命令格式 可以直接指定要處理的動作, 或將欲處理的動作寫在一個命令稿中 27

28 AWK Script: 計算 End-to-End Delay 的範例

29 AWK Script: 計算 End-to-End Delay 的範例

30 AWK Script: 計算 End-to-End Delay 的範例 執行方法 ($ 為 shell 提示符號 ) $awk -f measure-delay.awk out.tr 執行結果

31 AWK Script: 統計傳送以及遺失封包的個數

32 AWK Script: 統計傳送以及遺失封包的個數

33 亂數產生器 Random Number Generator 33

34 亂數產生器 設定種子 (seed) 設定分佈 (distribution) E.g. Pareto Constant Uniform Exponential HyperExponentail 設定種子的範例 這個例子在 NS2 中產生一個亂數產生器, 並把種子的值設定為 1( 若種子的值為 0 的話, 則亂數產生器會在每次程式被執行時使用不同的種子 ) 34

35 Pareto Distribution 參數 expectation (avg_) shaper parameter (shape_) 範例 執行結果 35

36 Uniform distribution 參數 最小值 (min_) 最大值 (max_) 範例 執行結果 36

37 Exponential distribution 參數 平均值 (avg_) 範例 執行結果 37

38 亂數產生器使用範例 - 設定應用程式的啟動時間 模擬網路架構圖 38

39 亂數產生器使用範例 - 設定應用程式的啟動時間 FTP 的起始時間由亂數產 ( 時間介於 0 到 1 秒之間 ) 39

40 亂數產生器使用範例 - 設定應用程式的啟動時間 執行結果 40

41 分析 Throughput 的 awk 程式碼 統計在 1 秒到 5 秒之間, 由 R2 流向 D1,D2,D3 的資料量 41 R: receive (at to_node)

42 分析 Throughput 的 awk 程式碼 執行結果 42

43 亂數產生器使用範例 - 設定節點的初始位置 43

44 亂數產生器使用範例 - 設定節點的初始位置 (TCL 程式碼 ) ;# TCL 程式碼的撰寫流程 ;# 設定無線節點的個數 ;# 設定 X 軸座標的範圍 ;# 設定 Y 軸座標的範圍 ;# 設定 simulation 時間 44

45 亂數產生器使用範例 - 設定節點的初始位置 (TCL 程式碼 ) ;# 開啟資料記錄檔 ;# 產生拓撲物 ;# 設定 Node 的屬性 45

46 亂數產生器使用範例 - 設定節點的初始位置 (TCL 程式碼 ) ;# 設定亂數的範圍 46

47 亂數產生器使用範例 - 設定節點的初始位置 (TCL 程式碼 ) 47

48 亂數產生器使用範例 - 設定節點的初始位置 執行結果 48

49 乙太網路模擬 49

50 TCL 程式碼 指令格式 : Simulator instproc make-lan {nodes bw delay lltype ifqtype mactype chantype} 50

51 TCL 程式碼 51

52 模擬結果 BEB: Binary Exponential Backoff 52

53 NS-2 下的 IEEE Ad Hoc 無線網路模擬

54 IEEE 的網路架構 Infrastructure Ad Hoc MAC DCF (contention-based Distributed Coordination Function Basic access Virtual carrier sensing (RTS/CTS) PCF (contention-free Point Coordination Function) 54

55 Media Access Mechanisms in IEEE DCF 55

56 The Frame Ns-2 中的 implement 56 mac-802_11.h

57 RTS CTS and ACK Frame 57

58 MAC 層和實體層使用的預設參數 ns-2.xx/tcl/lib/ns-default.tcl 58

59 TCP 在 網路上的預估效能 59

60 Ad Hoc 網路架構圖 60

61 TCL 程式碼 在這個例子中, 無線節點的傳送頻率被設為 2.4 GHz, 傳送距離是 40 公尺 (RXThresh_ = e-08), 接收距離是 90 公尺 61

62 無線節點的傳送範圍設定 計算結果 P r = PG G t t r 2 2 t hr 4 h d = ( ) ( ) / (250 4 ) = 3.652e-10 62

63 TCL 程式碼 63

64 TCL 程式碼 Parameters for MAC and PHY Layer 在 Ns-2 中,RTS CTS 以及 ACK 的大小分為別 byte ( 不含 PHYhdr,PHYhdr = PLCP preamble + PLCP header) 64

65 TCL 程式碼 設定 Node 的參數 產生 Node 並設定 Node 的位置 無線網路不需要去設定 Node 與 Node 之間的 Link 連線 65

66 TCL 程式碼 使用 FTP 來產生資料 ( 在第 0 秒時開始傳送 ) 66

67 TCL 程式碼 在指定的時間 "$end" 執行 stop 這個副程式並結束資料傳送 67

68 模擬結果 68

69 Multi-hop Ad Hoc 網路模擬 1. 撰寫 Unix shell script ( 假設儲存檔案名稱為 : runtcp) 2. 執行 script Hop-count 數對 TCP 效能的影響 69

70 記錄檔的部份內容 70

71 Mobile Node 的設定參數 在設定 Mobile-node 時, 可視需要設定相關的參數, 包括像 MAC 層所使用的傳輸協定 (-mactype) 信號傳遞時所使用的衰減模型 (-proptype) Queue 的種類 (-ifqtype) Queue 的長度 (-ifqlen) 以及是否考慮能源的限制 (-energymodel) 等 71

72 Movement Mobie-node 的移動設定 $node 會在時間 $time 時, 以指定的速度 <speed> (m/s) 由 <x1, y1> 向 <x2, y2> 移動 Example 72

73 Energy Extension Energy model 的設定 Energy model 是 Node 可以設定的屬性之一, 設定方法如下 : 設定傳送 / 接收所消耗的能源, 以及一開始所擁有的能源 Energy-aware node 的設定範例 73 ns-2.31/mobile/energy-model[.cc and.h]

74 Energy Model 的參考設定值 Wireless transceiver power consumption [1] Lucent IEEE WaveLan PC card characteristics [2] [1] B. Bougard, S. Pollin, G. Lenoir, L. Van der Perre, F. Catthoor, W. Dehaene, "Energy-aware radio link control for OFDM-based WLAN", IEEE SIPS [2] L. M. Feeney and M. Nilsson, "Investigating the Energy Consumption of a Wireless Network Interface in an Ad-hoc Networking Environment", IEEE INFOCOM

75 有關 Mobile-node 的原始程式碼以及實作細節, 請參考 mobilenode.{cc.h} 這兩個檔案 下面列出在 ns-allinone- 2.31/ns-2.31/mobile/ 目錄下的相關檔案 : 75

76 NS-2 下的 TCP over IEEE WLAN 模擬 76

77 模擬架構圖 TCP Source (W0) 和 TCP Sink (Ni) 之間有一個 TCP 的 Connection, 其中 W0 和 W1 代表網路上的 Wired Node,AP 代表 Access Point,Ni (i = 1~ n) 則是 WLAN 裡面的 Wireless Station WLAN 模擬架構圖 77

78 TCL 程式碼 78

79 79

80 80

81 81

82 82

83 83

84 84

85 85

86 86

87 87

88 88

89 Unix Shell Script 假設儲存的檔案名稱為 : run_tcp 89

90 Unix Shell Script 的執行結果 90

91 計算 Goodput 的 AWK 程式 假設儲存的檔案名稱為 : goodput.sh 91

92 執行結果 92

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

WLAN 2

WLAN 2 1 WLAN 2 IEEE 802.11 HomeRF GSM/ GPRS CDMA 3 ( ) (Infrared) (Laser) (Microwave) (DSSS) (FHSS) (HomeRF) (Bluetooth) 4 ( ) IrDA (Direct-Beam IR, DB/ IR) (Diffuse IR, DF/ IR) (Ominidirectional IR, Omini/

More information

中文朗科AirTrackTM T600 迷你无线路由器用户手册.doc

中文朗科AirTrackTM T600 迷你无线路由器用户手册.doc AirTrack T600 http://www.netac.com.cn Netac Netac AirTrack OnlyDisk Netac Netac Netac http://www.netac.com.cn Netac 800-830-3662 FCC 15 B 1 2 3 4 / FCC 20cm 1 2 3 / / ...1 1.1...1 1.2...1 1.3...1 1.4...3...4

More information

Microsoft PowerPoint - 数据通信-ch1.ppt

Microsoft PowerPoint - 数据通信-ch1.ppt 主 要 内 容 与 基 本 要 求 主 要 内 容 数 据 通 信 与 计 算 机 网 络 计 算 机 网 络 的 发 展 过 程 分 类 以 及 主 要 性 能 指 标 ; 分 组 交 换 的 基 本 原 理 及 其 与 电 路 交 换 报 文 交 换 的 联 系 与 区 别 ; 计 算 机 网 络 的 协 议 与 体 系 结 构 第 1 章 概 述 基 本 要 求 掌 握 分 组 交 换 电 路

More information

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot OSI OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Protocol OSI OSI OSI OSI OSI O S I 2-1 Application

More information

MAN- Metropolitan Area Network Resilient Packet Ring a : 5GHz 54Mbps b : 2.4GHz 11Mbps c : MAC Bridge 802.1D 80

MAN- Metropolitan Area Network Resilient Packet Ring a : 5GHz 54Mbps b : 2.4GHz 11Mbps c : MAC Bridge 802.1D 80 IEEE 802.11a s0323516@ncnu.edu.tw 1 (WLAN) [1] 1963 IEEE Institute Of Electrical and Electronics Engineers LAN MAN-Metropolitan Area Network IEEE 802 IEEE 802 Working Group 802.11 IEEE 802 802.1 LAN MAN

More information

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP TCP/IP : TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP 1. ASCII EBCDIC Extended Binary-Coded Decimal Interchange Code 2. / (1) (2) Single System Image SSI) (3) I/O (4) 3.OSI OSI Open System Interconnection

More information

工程师培训

工程师培训 .1 TCP/IP TCP/IP 1 .2.2.1 Host 1960 S 1970 S Host Low Speed Lines 1970 S 1980 S pc Server Local Interneting 1980 S 1990 S Branch. pc Branch. WAN Branch. pc pc IBM SNA IBM X.25 2 .2.2 OSI OSI Application

More information

投影片 1

投影片 1 2011-03-30 蕭惠陽 1 Environment set up Virtual Box NS2 TCL awk Simulation 2 3 VirtualBox is a general-purpose full virtualizer for x86 hardware, targeted at server, desktop and embedded use. Presently, VirtualBox

More information

第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特 网 的 标 准 化 工 作 1.2.4 计 算 机 网 络 在

第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特 网 的 标 准 化 工 作 1.2.4 计 算 机 网 络 在 计 算 机 网 络 ( 第 4 版 ) 课 件 第 1 章 计 算 机 网 络 概 述 郭 庆 北 Ise_guoqb@ujn.edu.cn 2009-02-25 第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特

More information

Microsoft PowerPoint - Review12

Microsoft PowerPoint - Review12 WLAN (Wireless Local Area Network) Everywhere Inssider: : Copyright 2007-2008 2008 MetaGeek Infrastructure WLAN AP 1 AP 2 BSS (Basic Service Set) DS (Distribution System) ESS (Extended Service Set) AP

More information

Master Thesis_專門用來製作目錄.doc

Master Thesis_專門用來製作目錄.doc Introduction All-IP [1-4] All-IP packet switching long delay time, jitter packet loss All-IP Budget-Based QoS End-to-End QoS (real time on demand) 1 1.1 Circuit Switching Packet Switching DWDM IP VoIP

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

9 Internet 10 Internet

9 Internet 10 Internet 1 2 3 4 5 6 Internet 7 8 9 Internet 10 Internet 11 12 1 1.1 1.2 1.3 1.4 1.5 1.6 1.1 1.1.1 20 50 20 60 ARPANET ARPANET Internet 20 70 ISO International Organization for Standardization TCP/IP 20 90 Internet

More information

SAPIDO GR-1733 無線寬頻分享器

SAPIDO GR-1733 無線寬頻分享器 1 版 權 聲 明... 4 產 品 保 固 說 明... 4 保 固 期 限... 4 維 修 辦 法... 5 服 務 條 款... 5 注 意 事 項... 6 低 功 率 電 波 輻 射 性 電 機 管 理 辦 法... 6 CE 標 誌 聲 明... 6 無 線 功 能 注 意 事 項... 6 1 產 品 特 點 介 紹... 7 1.1 LED 指 示 燈 功 能 說 明... 8 1.2

More information

计算机网络

计算机网络 (delay latency) = + + LEC. A B A 0 0 0 B .6. = 0ms, 0Mb/s, 0x0 - x0x0 =x0 bit RTT RTT (Round-Trip Time) .7 OSI/RM OSI/RM OSI/RM TCP/IP (application layer) (transport layer) (network layer)

More information

中文模板

中文模板 ISSN 1-9825 CODEN RUXUEW E-mail: jos@iscasaccn Journal of Software Vol18 No6 June 27 pp138 1318 http://wwwjosorgcn DOI: 1136/jos18138 Tel/Fax: +86-1-62562563 27 by Journal of Software All rights reserved

More information

解 除 身 份 验 证 机 密 性 Wep 等 一 些 加 密 机 制 MSDU 传 递 (MAC Service Data Unit) 负 责 将 数 据 传 送 给 实 际 的 接 收 端 传 输 功 率 控 制 (Transmit Power Control 简 称 TPC) 欧 洲 标 准

解 除 身 份 验 证 机 密 性 Wep 等 一 些 加 密 机 制 MSDU 传 递 (MAC Service Data Unit) 负 责 将 数 据 传 送 给 实 际 的 接 收 端 传 输 功 率 控 制 (Transmit Power Control 简 称 TPC) 欧 洲 标 准 一 网 络 服 务 802.11 总 共 提 供 9 种 服 务 : 分 布 式 (distribution) 接 入 点 收 到 帧, 就 会 使 用 分 布 式 服 务 将 真 传 送 至 目 的 地 整 合 (integration) 该 服 务 由 分 布 式 系 统 提 供, 它 让 分 布 式 系 统 得 以 链 接 至 非 IEEE802.11 网 络 关 联 (association)

More information

一、

一、 路 利 料 1 例 略 Adjusting the Bandwidth Ratio of Control and Data Channels to Maximizing Performance in Multiple Channels Ad Hoc Networks 2 良 路 (Wireless Ad Hoc Network) (MAC Layer) 料 率 立 (Throughput) 量 (Multiple

More information

第3章 计算机网络体系结构

第3章  计算机网络体系结构 第 3 章 计 算 机 网 络 体 系 结 构 本 章 内 容 计 算 机 的 网 络 体 系 结 构 网 络 参 考 模 型 五 层 网 络 参 考 模 型 1 3.1 计 算 机 网 络 体 系 结 构 发 展 历 程 分 层 原 理 基 本 概 念 2 发 展 历 程 网 络 体 系 结 构 提 出 的 背 景 计 算 机 网 络 的 复 杂 性 异 质 性 不 同 的 通 信 介 质 有 线

More information

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx ENSC 427 Communication Networks Spring 2016 Group #2 Project URL: http://www.sfu.ca/~rkieu/ensc427_project.html Amer, Zargham 301149920 Kieu, Ritchie 301149668 Xiao, Lei 301133381 1 Roadmap Introduction

More information

经华名家讲堂

经华名家讲堂 5.1 5.1.1 5.1.2 5.2 5.2.1 5.2.2 5.2.3 5.2.4 5.2.5 5.3 5.3.1 5.3.2 5.3.3 / 5.3.4 / 5.3.5 / 5.4 Internet 5.4.1 Internet 5.4.2 Intranet 1. 2. 1 31 5 5.1 5.1.1 Internet 1 Host 20 60 IBM 2000 2 20 60 20 60

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

ebook48-8

ebook48-8 C i s c o 8SRB/RSRB S R B S R S R B S R B S R BR S R BS R B I B M S R B C i s c o S R BR S R B D L S wd L S w 9 D L S w + 8.1 SRB C i s c os R B C i s c o WA N IBM SNAN e t B I O S S R B / R S R B C i

More information

计算机网络

计算机网络 gongwhboy@tom.com Internet 3 James F.Kurose Keith W.Ross 4 Andrew S.Tanenbaum 3 Larry L.Peterson, Bruce S.Davie 3 1. ISO OSI/RM( ) TCP/IP ( TELNET, FTP, SMTP ) (TCP UDP) IP 2. Internet : Internet 5 (1)

More information

雲端計算與網路 - Final Project

雲端計算與網路 - Final Project 雲端計算與網路 - Final Project Reporter: Green Advisor: Hsueh-Wen Tseng Outline What is NS2 How to use NS2 NS2 安裝 NS2 程式語法 NS2 的 Tracefile 解析 How to do a final project Example: localclfs.tcl What is NS2 3 What

More information

untitled

untitled 數 路 2003 Symposium on Digital Life and Internet Technologies UMTS 料流類 路 行 Behavior Study of UMTS QoS Classes on DiffServ Networks 李 瑩 李 連 立 北 路 64 s8842, s8839, lien@cs.nccu.edu.tw UMTSUniversal Mobile

More information

Microsoft Word - Mail2000_SecurityPatch_

Microsoft Word - Mail2000_SecurityPatch_ Mail2000 安全性加強程式 網擎資訊軟體股份有限公司謹呈 1 Mail2000 安全性加強程式 Introduction Mail2000 安全性加強程式, 是針對 Mail2000 V4.0 以上版本, 包括 V4.0 及 V4.5 版本所提供, 以加強系統的安全性, 減少因惡意信件而引起的安全性問題 版本名稱 Mail2000 版本作業系統檔案名稱 V4.0 單一網域版本 V4.0 SDSS

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

Chap6.ppt

Chap6.ppt Computer Networks v4 cs.sjtu 12/21/12 6 Internet ftp://ftp.cs.sjtu.edu.cn/ybzhang 61 / 110 Computer Networks v4 cs.sjtu 12/21/12 ftp://ftp.cs.sjtu.edu.cn/ybzhang 62 / 110 Computer Networks v4 cs.sjtu 12/21/12

More information

Session Dan Gill 2 IP WAN WAN? Networker NSC-114 RST-271 NSC-211 : MTBF: MTTR: MTBF MTTR : MTBF? MTTR? MTTR MTTR MTTR MTBF MTTR Mom-and-apple-pie MTBF MTBF (UPS, ) Mom-and-apple-pie Increase MTBF MTBF?

More information

UDP 8.2 TCP/IP OSI OSI 3 OSI TCP/IP IP TCP/IP TCP/IP Transport Control Protocol TCP User Datagram Protocol UDP TCP TCP/IP IP TCP TCP/IP TC

UDP 8.2 TCP/IP OSI OSI 3 OSI TCP/IP IP TCP/IP TCP/IP Transport Control Protocol TCP User Datagram Protocol UDP TCP TCP/IP IP TCP TCP/IP TC 8 TCP/IP TCP/IP TCP OSI 8.1 OSI 4 end to end A B FTP OSI Connection Management handshake Flow Control Error Detection IP Response to User s Request TCP/IP TCP 181 UDP 8.2 TCP/IP OSI OSI 3 OSI 3 8.1 TCP/IP

More information

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG --------------------------------------------TABLE OF CONTENTS------------------------------------------

More information

BYOD IP+Optical (IP NGN) API 4. End-to-End (Service Aware) 5. IP NGN (IP Next Generation Network) ( ) Prime Carrier Management Access Edge Co

BYOD IP+Optical (IP NGN) API 4. End-to-End (Service Aware) 5. IP NGN (IP Next Generation Network) ( ) Prime Carrier Management Access Edge Co BYOD 228 2015 IT open source DIY ( ) Up/Down HP NNMi WhatsUp Gold Nagios HP SiteScope WhatsUp Gold HP NNMi WhatsUp Gold Cacti MRTG HP ispi Performance for Metrics WhatsUp Gold ( ) Open source Agent End-to-End

More information

Introduction

Introduction 路 Outline LAN Introduction IEEE 802.3 CSMA/CD Ethernet IEEE 802.11 CSMA/CA Wireless LAN IEEE 802.11f IAPP Wireless Protection Access (WPA) vs. IEEE 802.11i Enhanced Security 11e QoS 11n Next Generation

More information

第 11 章 互聯網技術 11.1 互聯 網 和 萬 維 網 的 發 展 歷 史 A. 互聯網的發展 互聯網是由 ARPANET 開 始發展的 1969 年 美國國防部高級研究計劃署 (ARPA) 把部分軍事研究所和大 的電腦連接起來 建造了㆒個實驗性的電腦網絡 稱為 ARPANET 並 列 的功能

第 11 章 互聯網技術 11.1 互聯 網 和 萬 維 網 的 發 展 歷 史 A. 互聯網的發展 互聯網是由 ARPANET 開 始發展的 1969 年 美國國防部高級研究計劃署 (ARPA) 把部分軍事研究所和大 的電腦連接起來 建造了㆒個實驗性的電腦網絡 稱為 ARPANET 並 列 的功能 互 聯 網 技 術 在 完 成 這 章 後, 你 將 能 夠 描 述 互 聯 網 的 發 展 歷 史 描 述 萬 維 網 的 發 展 歷 史 了 解 連 接 互 聯 網 的 基 本 概 念 能 夠 連 接 到 互 聯 網 知 道 互 聯 網 如 何 運 作 互 聯 網 是 全 球 網 絡 的 集 合 互 聯 網 (Internet) 是 ㆒ 個 集 合 全 球 許 多 網 絡 ㆒ 起 的 大 型 網

More information

1 Visual Studio.NET Linux C++ JBuilder 4 RJ45 RS3 Modem 6 MAC IP TCP Socket UDP FTP ; Windows 000 Serve : 8 Windows 000 Serve DNS DHCP Web FTP E

1 Visual Studio.NET Linux C++ JBuilder 4 RJ45 RS3 Modem 6 MAC IP TCP Socket UDP FTP ; Windows 000 Serve : 8 Windows 000 Serve DNS DHCP Web FTP E Experiment of Computer Networks 1 / 1 / 003.6 Youlu Zheng Shakil Akhtar Networks for Computer Scientists and Engineer 004.5 Visual Studio.NET Linux C++ JBuilder RS3 Modem IP TCP Socket FTP ; Windows 000

More information

Learning Java

Learning Java Java Introduction to Java Programming (Third Edition) Prentice-Hall,Inc. Y.Daniel Liang 2001 Java 2002.2 Java2 2001.10 Java2 Philip Heller & Simon Roberts 1999.4 Java2 2001.3 Java2 21 2002.4 Java UML 2002.10

More information

lan03_yen

lan03_yen IEEE 8. LLC Logical Link Control ll rights reserved. No part of this publication and file may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical,

More information

...1 What?...2 Why?...3 How? ( ) IEEE / 23

...1 What?...2 Why?...3 How? ( ) IEEE / 23 .... IEEE 1588 2010 7 8 ( ) IEEE 1588 2010 7 8 1 / 23 ...1 What?...2 Why?...3 How? ( ) IEEE 1588 2010 7 8 2 / 23 ...1 What?...2 Why?...3 How? ( ) IEEE 1588 2010 7 8 3 / 23 IEEE 1588 ( ) IEEE 1588 2010

More information

Microsoft Word - 39.doc

Microsoft Word - 39.doc 摘 基 于 ARM 的 嵌 入 式 无 线 AP 的 设 计 杨 健 陈 永 泰 ( 武 汉 理 工 大 学 信 息 工 程 学 院, 武 汉 430070) 要 : 本 文 首 先 介 绍 了 无 线 AP 的 基 本 原 理, 然 后 重 点 描 述 基 于 AT76C510 的 无 线 AP 的 硬 件 设 计 及 嵌 入 式 系 统 uclinux 最 后 对 IEEE802.11b 的 安

More information

TCP/IP LAN : : IPv4 NGI, NGN, GENI, AGN, Veno II 2

TCP/IP LAN : : IPv4 NGI, NGN, GENI, AGN, Veno II 2 Asst Professor Nanyang Technological University 1 TCP/IP LAN : : IPv4 NGI, NGN, GENI, AGN, Veno II 2 TCP/IP : TCP 3 Cont d 1974 Vinton Cerf, Robert Kahn A Protocol for Packet Network Intercommunication

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

ebook67-1

ebook67-1 1 1.1 T C P / I P T C P / I P 60 9 ( I n t e r n e t ) WA N 100 T C P / I P T C P / I P [ Lynch 1993] 1.2 Telnet FTP e-mail T C P / I P TCP UDP T C P / I P 1-1 1) 1-1 TCP/IP 2) T C P / I P I I C M P I

More information

<4D6963726F736F667420576F7264202D20D6D02D30312D31203036CFC2C8EDBCFEC9E8BCC6CAA6C9CFCEE7CCE2>

<4D6963726F736F667420576F7264202D20D6D02D30312D31203036CFC2C8EDBCFEC9E8BCC6CAA6C9CFCEE7CCE2> 全 国 计 算 机 技 术 与 软 件 专 业 技 术 资 格 ( 水 平 ) 考 试 006 年 下 半 年 软 件 设 计 师 上 午 试 卷 ( 考 试 时 间 9 : 00~11 : 30 共 150 分 钟 ) 请 按 下 述 要 求 正 确 填 写 答 题 卡 1. 在 答 题 卡 的 指 定 位 置 上 正 确 写 入 你 的 姓 名 和 准 考 证 号, 并 用 正 规 B 铅 笔

More information

Microsoft Word - 100118002.htm

Microsoft Word - 100118002.htm 100 年 度 11800 電 腦 軟 體 應 用 乙 級 技 術 士 技 能 檢 定 學 科 測 試 試 題 本 試 卷 有 選 擇 題 80 題, 每 題 1.25 分, 皆 為 單 選 選 擇 題, 測 試 時 間 為 100 分 鐘, 請 在 答 案 卡 上 作 答, 答 錯 不 倒 扣 ; 未 作 答 者, 不 予 計 分 准 考 證 號 碼 : 姓 名 : 選 擇 題 : 1. (3)

More information

財金資訊-80期.indd

財金資訊-80期.indd IPv6 / LINE YouTube TCP/IP TCP (Transmission Control Protocol) IP (Internet Protocol) (node) (address) IPv4 168.95.1.1 IPv4 1981 RFC 791 --IP IPv4 32 2 32 42 IP (Internet Service Provider ISP) IP IP IPv4

More information

RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming Media, Transaction, Bulk dat

RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming Media, Transaction, Bulk dat Realtime Application QOS Monitoring (RAQMON) Dan Romascanu dromasca@avaya.com 1 RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

Microsoft Word - 4-100 期交所簡章 _110805_

Microsoft Word - 4-100 期交所簡章 _110805_ 100 年 臺 灣 期 貨 交 易 所 新 進 人 員 召 募 測 驗 報 名 時 間 延 長 公 告 主 旨 : 修 訂 100 年 臺 灣 期 貨 交 易 所 新 進 人 員 召 募 測 驗 報 名 時 程 公 告 說 明 : 為 加 強 服 務 考 生, 修 訂 原 筆 測 驗 報 名 時 程 如 下 : 別 第 一 : 筆 第 二 : 口 要 項 修 正 前 時 間 修 正 後 時 間 備

More information

Microsoft Word - 第3章.doc

Microsoft Word - 第3章.doc 第 3 章 计 算 机 网 络 从 历 年 的 考 试 试 题 来 看, 本 章 的 考 点 在 综 合 知 识 考 试 中 的 平 均 分 数 为 5.71 分, 约 为 总 分 的 7.61% 主 要 分 数 集 中 在 计 算 机 网 络 基 础 知 识 综 合 布 线 和 机 房 工 程 这 三 个 知 识 点 上 3.1 考 点 提 炼 根 据 系 统 集 成 项 目 管 理 工 程 师

More information

untitled

untitled ISSN 1000-9825, CODEN RUXUEW E-mail: jos@iscas.ac.cn Journal of Software, Vol.21, No.12, December 2010, pp.3138 3150 http://www.jos.org.cn doi: 10.3724/SP.J.1001.2010.03773 Tel/Fax: +86-10-62562563 by

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

84

84 83 84 EKI-1526 EKI-1528 EKI-1524 EKI-1522 EKI-1521 2 2 2 2 2 16 8 4 2 1 10/100 Mbps 10/100 Mbps 10/100 Mbps 10/100 Mbps 10/100 Mbps RS-232/422/485 RS-232/422/485 RS-232/422/485 RS-232/422/485 RS-232/422/485

More information

92 (When) (Where) (What) (Productivity) (Efficiency) () (2) (3) (4) (5) (6) (7) em-plant( SiMPLE++) Scheduling When Where Productivity Efficiency [5]

92 (When) (Where) (What) (Productivity) (Efficiency) () (2) (3) (4) (5) (6) (7) em-plant( SiMPLE++) Scheduling When Where Productivity Efficiency [5] DYNAMIC SCHEDULING IN TWO-MACHINE FLOW-SHOP WITH RECIRCULATION em-plant( SiMPLE++) Jen-Shiang Chen, Jar-Her Kao, Chun-Chieh Chen, Po-Cheng Liu, and Wen-Pin Lin Department of Industrial Engineering and

More information

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流 第 20 卷 第 3 期 2014 年 6 月 ( 自 然 科 学 版 ) JOURNAL OF SHANGHAI UNIVERSITY (NATURAL SCIENCE) Vol. 20 No. 3 June 2014 DOI: 10.3969/j.issn.1007-2861.2013.07.031 基 于 FLUENT 测 轨 道 交 通 隧 道 中 电 波 折 射 率 结 构 常 数 张 永

More information

AMP NETCONNECT

AMP NETCONNECT Quantum AMP NETCONNECT 1 2 ATM TSB 95 TIA/EIA 568-A-5 TIA/EIA 568-B Cat 5e / Cat 6 50 / 125m m 3 TSB95 100Ω Cat5 TIA/EIA 568A-5 100Ω Cat5e TIA/EIA 568B 100 Ω Cat6 ISO/IEC 11801 PDAM-3 PDAM-3 Class D (Cat

More information

11N 无线宽带路由器

11N 无线宽带路由器 http://www.tenda.com.cn 1... 1 1.1... 1 1.2... 1 2... 3 2.1... 3 2.2... 3 2.3... 5 2.4... 6 2.5... 7 2.6... 9 2.6.1 无线基本设置... 9 2.6.2 无线加密设置... 9 2.7... 10 3... 18 3.1... 18 3.2... 19 3.2.1 ADSL 拨号上网设置...

More information

Chapter #

Chapter # 第三章 TCP/IP 协议栈 本章目标 通过本章的学习, 您应该掌握以下内容 : 掌握 TCP/IP 分层模型 掌握 IP 协议原理 理解 OSI 和 TCP/IP 模型的区别和联系 TCP/IP 介绍 主机 主机 Internet TCP/IP 早期的协议族 全球范围 TCP/IP 协议栈 7 6 5 4 3 应用层表示层会话层传输层网络层 应用层 主机到主机层 Internet 层 2 1 数据链路层

More information

目 录

目    录 目 录 学 院 概 况... 1 计 算 机 与 信 息 学 院 ( 常 州 )... 2 物 联 网 工 程 专 业 介 绍... 3 物 联 网 工 程 专 业 介 绍... 4 专 业 人 才 培 养 方 案... 3 物 联 网 工 程 专 业 本 科 人 才 培 养 方 案... 6 课 程 教 学 大 纲... 15 第 一 部 分 基 础 课...16 电 路 教 学 大 纲... 16

More information

目 彔 1. 准 备 工 作... 1 2. 登 彔 设 置... 2 3. 功 能 说 明... 4 3.1 实 时 监 控... 4 3.1.1 基 本 控 制... 4 4.1.2 功 能 设 置... 4 3.1.3 画 质 调 节... 6 3.1.4 彔 像 与 抓 拍... 6 3.1

目 彔 1. 准 备 工 作... 1 2. 登 彔 设 置... 2 3. 功 能 说 明... 4 3.1 实 时 监 控... 4 3.1.1 基 本 控 制... 4 4.1.2 功 能 设 置... 4 3.1.3 画 质 调 节... 6 3.1.4 彔 像 与 抓 拍... 6 3.1 嵌 入 式 Web Server 用 户 手 册 V2.0 感 谢 您 选 用 本 公 司 的 产 品, 请 您 在 使 用 本 产 品 前 仔 细 阅 读 用 户 手 册, 本 用 户 手 册 将 为 您 提 供 正 确 的 使 用 说 明 版 权 声 明 : 本 用 户 手 册 版 权 归 天 津 市 亚 安 科 技 股 仹 有 限 公 司 所 有, 未 经 本 公 司 许 可, 仸 何 机 构

More information

2002 7 2 Session Number E-Business PSTN PSTN Remote Site Frame Relay X.25 Leased Line : & Self Replicating Code Password Guessing 1980 Exploiting Known Vulnerabilities Password Cracking Back Doors

More information

附件4

附件4 附 件 2 2015 年 省 级 精 品 资 源 共 享 课 申 报 书 ( 本 科 ) 申 报 学 校 西 华 师 范 大 学 课 程 名 称 数 值 方 法 与 计 算 机 技 术 课 程 类 型 公 共 基 础 课 专 业 基 础 课 专 业 课 其 它 所 属 学 科 门 类 理 学 ( 数 学 ) 所 属 专 业 类 名 称 课 程 负 责 人 数 学 与 应 用 数 学 信 息 与 计

More information

F5

F5 DOI:10.3969/j.issn.1009-6868.2016.03.007 网 络 出 版 地 址 :http://www.cnki.net/kcms/detail/34.1228.tn.20160426.1630.004.html Full-Duplex WiFi Design and Implementation Based on GRT platform 吴 浩 洋 /WU Haoyang

More information

Fuzzy GP

Fuzzy GP : 林 理論 數 論 1 率 2 類,, 金流量 金 利 數 益,, 3 不 異 (Multi- Valued) (Single-Valued) 數 數 數 (Local Optimum) (Global Optimum) 4 (Multi-valued) (Non-linear) (Self-learning) 5 (Genetic Programming, GP) GP 1. 亂數 2. (individuals)

More information

C3_ppt.PDF

C3_ppt.PDF C03-101 1 , 2 (Packet-filtering Firewall) (stateful Inspection Firewall) (Proxy) (Circuit Level gateway) (application-level gateway) (Hybrid Firewall) 2 IP TCP 10.0.0.x TCP Any High Any 80 80 10.0.0.x

More information

热设计网

热设计网 例 例 Agenda Popular Simulation software in PC industry * CFD software -- Flotherm * Advantage of Flotherm Flotherm apply to Cooler design * How to build up the model * Optimal parameter in cooler design

More information

<4D6963726F736F667420576F7264202D20B8DFB5C8D1A7D0A3B1BEBFC6CEEFC1AACDF8B9A4B3CCD7A8D2B5D3A6D3C3D0CDC8CBB2C5C5E0D1F8D6B8B5BCD2E2BCFBA3A832303136B0E6A3A92E646F6378>

<4D6963726F736F667420576F7264202D20B8DFB5C8D1A7D0A3B1BEBFC6CEEFC1AACDF8B9A4B3CCD7A8D2B5D3A6D3C3D0CDC8CBB2C5C5E0D1F8D6B8B5BCD2E2BCFBA3A832303136B0E6A3A92E646F6378> 高 等 校 本 科 物 联 网 工 程 专 业 应 用 型 人 才 培 养 指 导 意 见 (2016 版 ) 高 等 校 本 科 计 算 机 类 专 业 应 用 型 人 才 培 养 研 究 项 目 物 联 网 工 程 专 业 工 作 组 序 随 着 信 息 化 社 会 的 发 展, 计 算 机 技 术 越 来 越 重 要, 信 息 产 业 成 为 世 界 第 一 大 产 业 信 息 技 术 的

More information

课题研究报告

课题研究报告 showersky@sina.com An Adaptive Distributed Load Scheduling Schema Bin Cheng Hai Jin Ke Shi showersky@hust.edu.cn (Compute Science and TechnologySchool of HUST, Wuhan, 430074) AbstractA distributed Load

More information

[ ] OSI/RM IP 8.1 8.1.1 面 試 例 題 1 A. 1 B. 2 C. 3 D. 4 E. 5 1 2 3 4 Internet Web 2.0 5 C 8-2

[ ] OSI/RM IP 8.1 8.1.1 面 試 例 題 1 A. 1 B. 2 C. 3 D. 4 E. 5 1 2 3 4 Internet Web 2.0 5 C 8-2 chapter 08 8.1 8.2 8.3 [ ] OSI/RM IP 8.1 8.1.1 面 試 例 題 1 A. 1 B. 2 C. 3 D. 4 E. 5 1 2 3 4 Internet Web 2.0 5 C 8-2 08 面 試 例 題 2 4 4 星 形, 環 形, 匯 流 排, 混 合 型, 星 形 面 試 例 題 3 Token-Ring A. B. C. D. A Token-Bus

More information

<4D6963726F736F667420506F776572506F696E74202D2030325FC2B2B3F85FA44AAB49B0BBB4FABB50B977A8BEA874B2CEC2B2A4B6BB50C0B3A5CE2E707074>

<4D6963726F736F667420506F776572506F696E74202D2030325FC2B2B3F85FA44AAB49B0BBB4FABB50B977A8BEA874B2CEC2B2A4B6BB50C0B3A5CE2E707074> 入 侵 偵 測 與 預 防 系 統 簡 介 與 應 用 蕭 翔 之 講 師 BS 7799 LA 課 程 大 綱 第 一 章 認 識 入 侵 偵 測 與 預 防 系 統 第 二 章 入 侵 偵 測 與 預 防 系 統 的 功 能 分 類 偵 測 技 術 第 三 章 入 侵 偵 測 與 預 防 系 統 部 署 架 構 第 四 章 入 侵 偵 測 與 預 防 系 統 的 應 用 效 益 第 五 章 結

More information

SERVERIRON ADX

SERVERIRON ADX www.brocade.com BROCADE VDX 6720 Brocade Virtual Cluster Switching VCSBrocade 600 Inter-Switch Link (ISL) Trunking multihomed ( Ethernet Fabric ) Fibre Channel over Ethernet (FCoE) iscsi NAS IP LAN Automatic

More information

声 明 本 公 司 及 全 体 董 事 监 事 高 级 管 理 人 员 承 诺 公 开 转 让 说 明 书 不 存 在 虚 假 记 载 误 导 性 陈 述 和 重 大 遗 漏, 并 对 其 真 实 性 准 确 性 完 整 性 承 担 个 别 和 连 带 的 法 律 责 任 本 公 司 负 责 人 和

声 明 本 公 司 及 全 体 董 事 监 事 高 级 管 理 人 员 承 诺 公 开 转 让 说 明 书 不 存 在 虚 假 记 载 误 导 性 陈 述 和 重 大 遗 漏, 并 对 其 真 实 性 准 确 性 完 整 性 承 担 个 别 和 连 带 的 法 律 责 任 本 公 司 负 责 人 和 中 电 科 微 波 通 信 ( 上 海 ) 股 份 有 限 公 司 公 开 转 让 说 明 书 主 办 券 商 二 零 一 六 年 三 月 声 明 本 公 司 及 全 体 董 事 监 事 高 级 管 理 人 员 承 诺 公 开 转 让 说 明 书 不 存 在 虚 假 记 载 误 导 性 陈 述 和 重 大 遗 漏, 并 对 其 真 实 性 准 确 性 完 整 性 承 担 个 别 和 连 带 的 法

More information

98 21 Keywords underwater vehicles formation cruising network communication acoustic communication MAC protocol 0 MAC medium access 1-2 control

98 21 Keywords underwater vehicles formation cruising network communication acoustic communication MAC protocol 0 MAC medium access 1-2 control 21 5 2017 5 Electri c Machines and Control Vol. 21 No. 5 May 2017 150001 AUV AUV AUV MAC AUV AUV AUV AUV AUV AUV MAC AUV MAC DOI 10. 15938 /j. emc. 2017. 05. 013 TP 24 A 1007-449X 2017 05-0097- 08 Network

More information

EE Lecture 11 (Wireless Communications Systems)

EE Lecture 11 (Wireless Communications Systems) EE110300 Lecture 11 (Wireless Communications Systems) Contents ( ) (RF) (Antenna) m(t) m(t) 90 50 40 30 20 10 0 ( ) 10 300 330 0 30 60 270 90 240 210 180 150 120 (LAN) (VSAT ) (Pager) (Cellular Phone)

More information

500013安瑞证券投资基金2004年半年度报告(正文)

500013安瑞证券投资基金2004年半年度报告(正文) 2004 1 2004...3...3 1...3 2...3 3...4 4...4 5...4 6...4...5 1...5 2...5...6 1...6 2...6 3...6...8...8 ()...8 ()...9 ()...10 ()...10 ()...10 1....11 2....11 3....11 4....13 5....15...15 ()...15 ()...15

More information

景德镇陶瓷学院科技艺术学院

景德镇陶瓷学院科技艺术学院 景 德 镇 陶 瓷 学 院 科 技 艺 术 学 院 质 量 报 告 (2014) 目 录 第 一 部 分 : 我 院 毕 业 生 就 业 创 业 基 本 情 况...4 一 毕 业 生 规 模 与 总 体 结 构...4 1 毕 业 生 人 数...4 2 毕 业 生 男 女 比 例...4 3 毕 业 生 生 源 地 ( 省 内 省 外 )...4 4 毕 业 生 专 业 分 类...4 二 毕

More information

资产管理年度报告内容与格式

资产管理年度报告内容与格式 中 金 消 费 指 数 集 合 资 产 管 理 计 划 2015 年 第 1 季 度 资 产 管 理 报 告 2015 年 3 月 31 日 集 合 计 划 管 理 人 : 中 国 国 际 金 融 有 限 公 司 集 合 计 划 托 管 人 : 中 信 银 行 股 份 有 限 公 司 报 告 送 出 日 期 : 2015 年 4 月 22 日 1 1 重 要 提 示 本 报 告 由 中 金 消 费

More information

附錄四 中國企業H 股公司名單 (主板)

附錄四      中國企業H 股公司名單 (主板) 附 錄 四 中 國 企 業 H 股 公 司 名 單 ( 主 板 ) 更 新 日 期 : 2006 年 3 月 31 日 2005/10/27 0939 中 國 建 設 銀 行 股 份 有 限 公 司 814,498 2000/4/7 0857 中 國 石 油 天 然 氣 股 份 有 限 公 司 170,901 2005/6/23 3328 交 通 銀 行 股 份 有 限 公 司 112,439 2000/10/19

More information

Microsoft Word - 16号-(企业处 40份)关于公布2015年成都市中小企业成长工程培育企业名单暨网上填报信息的通知

Microsoft Word - 16号-(企业处 40份)关于公布2015年成都市中小企业成长工程培育企业名单暨网上填报信息的通知 成 都 市 经 济 和 信 息 化 委 员 会 文 件 成 经 信 办 2015 16 号 成 都 市 经 济 和 信 息 化 委 员 会 关 于 公 布 2015 年 成 都 市 中 小 企 业 成 长 工 程 培 育 企 业 名 单 暨 网 上 填 报 信 息 的 通 知 各 区 ( 市 ) 县 工 业 和 信 息 化 主 管 部 门, 成 都 高 新 区 经 发 局, 天 府 新 区 成 都

More information

bnb.PDF

bnb.PDF 3 3 5 5 6 8 9 39 2 3 2003 6 30 2002 12 31 % 531,203,945.45 285,867,414.14 85.82 618,274,762.66 403,386,784.50 53.27 844,261,239.00 586,304,271.96 44 139,421,190.75 122,977,968.25 13.37 1.47 1.30 13.08

More information

ch09.PDF

ch09.PDF 9-1 / (TCP/IP) TCP/IP TCP/IP ( ) ICMP ARP RARP 9.1 TCP/IP 9.1.1 TCP/IP OSI TCP/IP (DARPA) DARPA TCP/IP UNIX Berkeley Software DistributionTCP/IP TCP/IP TCP/IP TCP/IP TCP/IP TCP/IP OSI - TCP/IP ( ) ( )

More information

VIDEOJET connect 7000 VJC-7000-90 zh- CHS Operation Manual VIDEOJET connect 7000 zh-chs 3 目 录 1 浏 览 器 连 接 7 1.1 系 统 要 求 7 1.2 建 立 连 接 7 1.2.1 摄 像 机 中 的 密 码 保 护 7 1.3 受 保 护 的 网 络 7 2 系 统 概 述 8 2.1 实 况

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

沒有投影片標題

沒有投影片標題 EE110300 Lecture 11 (Wireless Communications Systems) Dr. Tsai Contents Dr. Tsai 2 Dr. Tsai ( ) (RF) (Antenna) m(t) m(t) Dr. Tsai 4 90 50 40 30 20 10 0 ( ) 10 Dr. Tsai 5 300 330 0 30 60 270 90 240 210

More information

untitled

untitled Chapter 01 1.0... 1-2 1.1... 1-2 1.1.1...1-2 1.1.2...1-4 1.1.2.1... 1-6 1.1.2.2... 1-7 1.1.2.3... 1-7 1.1.2.4... 1-7 1.1.2.5... 1-8 1.1.2.6... 1-8 1.1.3??...1-8 1.1.4...1-9 1.2...1-12 1.3...1-14 1.4...1-17

More information

Microsoft PowerPoint - ch0.ppt

Microsoft PowerPoint - ch0.ppt Chapter 0: Overview Wireless Network Architecture & Potential Research Directions Yu-Chee Tseng Dept of Computer Science National Chiao-Tung University Ch0:1 國 立 交 通 大 國 學 立 資 交 訊 通 工 大 程 學 系 資 曾 訊 煜 工

More information

Microsoft Word - A200811-1988.doc

Microsoft Word - A200811-1988.doc RTS 游 戏 的 流 量 特 性 分 析 李 程 北 京 邮 电 大 学 宽 带 网 络 监 控 教 研 中 心, 北 京 (8) E-mail:quickiecheng@gmail.com 摘 要 : 随 着 网 络 游 戏 日 益 流 行, 网 络 游 戏 的 流 量 在 网 络 中 的 分 量 越 来 越 多, 所 以 对 网 络 游 戏 的 流 量 特 性 分 析 就 很 有 意 义 本

More information

1377_SNAP_Selection_Guide.fm

1377_SNAP_Selection_Guide.fm I/O? PC OptoTerminal Form 377-040325 www.opto-tech.com.cn support@opto-tech.com.cn 2 www.opto-tech.com.cn support@opto-tech.com.cn Form 377-040325 4 3 2 ÎÒ 5 ioproject FactoryFloor ioproject FactoryFloor

More information

100Mbps 100Mbps 1000Mbps 100Mbps 1000Mbps 100Mbps 100Mbps PD LXT Mbps 100Mbps 100Mbps 1

100Mbps 100Mbps 1000Mbps 100Mbps 1000Mbps 100Mbps 100Mbps PD LXT Mbps 100Mbps 100Mbps 1 1 3 6 6 7 100BASE-FX 10 100Mbps 13 13 21143-PD 14 LXT970 20 Serial ROM 24 Boot ROM 24 Agilent 25 100Mbps 27 27 37 100Mbps 45 50 54 55 100Mbps 100Mbps 1000Mbps 100Mbps 1000Mbps 100Mbps 100Mbps 21143-PD

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

<4D6963726F736F667420506F776572506F696E74202D20A1B6CFEEC4BFD2BB20B3F5CAB6BCC6CBE3BBFACDF8C2E7A1B7C8CECEF1C8FD20CAECCFA4544350A1A24950D0ADD2E9BACD4950B5D8D6B72E707074>

<4D6963726F736F667420506F776572506F696E74202D20A1B6CFEEC4BFD2BB20B3F5CAB6BCC6CBE3BBFACDF8C2E7A1B7C8CECEF1C8FD20CAECCFA4544350A1A24950D0ADD2E9BACD4950B5D8D6B72E707074> 项 目 一 : 初 识 计 算 机 网 络 任 务 三 熟 悉 TCP/IP 协 议 和 IP 地 址 一. 学 习 要 求 : 学 习 要 求 及 难 点 1. 了 解 IP 协 议 TCP 协 议 和 UDP 协 议 2. 熟 悉 IP 地 址 的 划 分 和 分 类 3. 了 解 IPV6 的 地 址 结 构 二. 难 点 : 1. IP 地 址 三. 学 时 : 1. 理 论 教 学 :6

More information

http://www.digiark.com/tian Email: tian@dr.com UTP STP (NIC-Network Interface Card) RAM OSI LAN ( ) OSI/RM OSI/RM (1) Router SwitchHub NIC CPURAMHard Driver (2) (CPURAM Hard Driver) Local Area Network)

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

UNIX Shell Shell UNIX, 21 UN IX, UNIX UNIX UNIX vi UNIX UNIX Shell, UNIX Shell Shell UNIX Shell, Shell Shell Shell Shell Shell UNIX, (CIP) UNIX Shell

UNIX Shell Shell UNIX, 21 UN IX, UNIX UNIX UNIX vi UNIX UNIX Shell, UNIX Shell Shell UNIX Shell, Shell Shell Shell Shell Shell UNIX, (CIP) UNIX Shell UNIX Shell UNIX Shell Shell UNIX, 21 UN IX, UNIX UNIX UNIX vi UNIX UNIX Shell, UNIX Shell Shell UNIX Shell, Shell Shell Shell Shell Shell UNIX, (CIP) UNIX Shell /,. :,2003.12 ISBN 7 5612 1721 8. U.. U

More information

NSC-161

NSC-161 IP Session IP? IP Cisco IP IP IP IP IP? LAN Software Bluetooth,, 802.11 IP IP IP QoS IP Trust Domain (TD 1 ) TD 2 AR AR AP AP (MN) (MN) IP IP ( ) (MR) IP LAN MR (AP) IP 802.11 (AL) LAN/PAN 802.11, 802.15,

More information

大同大學數位論文

大同大學數位論文 ZIGBEE SIMULATION AND IMPLEMENTION OF AUTOMATIC POWER LEVEL CONTROL FOR ZIGBEE (Jun-Hong Yang) (Prof. Ching-Kuen Lee) Thesis for Master of Science Graduate Institute of Communication Engineering Tatung

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

10 IBM Louis V. Gerstner, Jr. 15 Moore's Law EPC PC 2-2

10 IBM Louis V. Gerstner, Jr. 15 Moore's Law EPC PC 2-2 Chapter02 2.1 2.2 2.3 2.4 EPC 2.5 10 IBM Louis V. Gerstner, Jr. 15 Moore's Law 1950 1965 1980 1995 1995 2010 15 2.1 2.2 2.3 2.4 EPC 2.5 2.1 PC 2-2 CHAPTER 02 Human to Human, H2H Facebook Plurk Human to

More information

This page left blank intentionally

This page left blank intentionally Network Guide Guide Réseau Netzwerkbetrieb Guía de red Guida alla rete Netwerkhandleiding Guia de Rede Nätverksguide Руководство по работе в сети Regulatory models: W60, W61 010-0756-00 DISPERINDAG No.

More information