NS-2下的TCP over IEEE 802

Size: px
Start display at page:

Download "NS-2下的TCP over IEEE 802"

Transcription

1 NS-2 下的 TCP over IEEE WLAN 模擬 程榮祥 網際網路所提供的傳輸服務 目前網際網路所提供的傳輸服務, 就服務的性質而言可分成兩種, 一種是 (1) 連接導向的可靠性傳輸服務 (Connection oriented reliable service), 這個服務主要由 TCP (Transmission Control Protocol [1]) 來提供, 另一種則是 (2) 非連接的不可靠性傳輸服務 (Connection-less, unreliable data transfer), 這部份則是由 UDP (User Datagram Protocol ) 來提供 TCP 提供的服務 1. 可靠的資料傳送 (Reliable data transfer) 服務 :TCP 藉由回應 (Acknowledge) 和重送的機制提供可靠性的服務 可靠的資料傳送意味著應用程式可依賴此服務, 該服務可確保資料能依照順序地被傳送接收, 不會有錯誤發生 2. 流量控制 (Flow control): 確保連線的兩端不會因為太快傳送過量的封包而淹沒了另一端 3. 擁塞控制 (Congestion control): 當路由器發生擁塞時, 封包容易因為緩衝區溢滿而被丟棄, 擁塞控制可以避免傳送端傳送太多資料到網路上造成網路擁塞 UDP 提供的服務 TCP 與 UDP 都是透過 IP 封包來傳輸資料, 在開始傳送資料之前,TCP 的 Client 行程會與 Server 行程執行建立連線的動作, 而 UDP 則不需進行此一動作 就如前面所述, 目前網際網路提供給應用程式的服務只有連接導向的可靠性服務與非連接的不可靠性服務, 而不管是 TCP 或 UDP, 基本上都沒有提供對與頻寛與時間延遲的最低保證 網路協定和分層的概念 在瞭解了網路可能提供的服務後, 接著我們就來看看目前網路所使用的分層方式, 一般稱之為 網路通訊協定分層堆疊 (Internet protocol stack) 目前網際網路所使用的分層架構由上而下分別是 : 應用層 傳輸層 網路層 連結層以及實體層, 每一層都有其各自使用的通訊協定 Figure 1 通訊協定堆疊與各層封包所使用的單位名稱 在習慣上, 一般我們都以 Figure 1 的方式來表示, 並且為了方便區別使用, 各層的資料單位 ( 封包 ) 也給予不同的名稱表示 以下我們簡單地瀏覽一下各層所使用的通訊協定以及通訊協定所使用的封包格式 傳輸層的主要功能 對於應用層而言, 傳輸層主要的功能就是在應用程式之間提供邏輯的連線 所謂的邏輯連線是指在應用程式的傳送端與接收端之間其實並沒有一條實際的連線, 但是透過傳輸層所提供的功能, 應用程式可以假設傳送端與接收端之

2 間有一條連線存在, 應用程式可以透過傳輸層協定將資料送出 目前傳輸層所使用的協定主要有兩種 -TCP 和 UDP, 應用程式的通訊過程可用下面簡單的圖例來表示 : Figure 2:End-to-End 的服務模型 目前傳輸層所使用的協定主要有兩種 -TCP 和 UDP, 以下簡單地介紹 TCP 和 UDP 的封包格式 TCP 的應用範圍很廣泛, 如同我們在前一個章節所提到的, 許多我們在日常生活中經常使用網路應用程式, 底層所使用的傳輸協定都是使用 TCP, 例如網頁瀏覽 (Web) 電子郵件 ( POP3,SMTP) 遠端終端機存取 (Telnet) 檔案傳輸 (FTP) 等 相較於 TCP,UDP 的訊息格式較為簡單, 相對地可提供的使用的功能就較少 UDP 的存在是為了滿足一些需要快速處理與反應的應用程式, 因此較適合用在多媒體等對時間較為敏感或不需要擁塞控制的服務上 Ns-2 的參數預設值存放在 ns-default.tcl 這個檔案中 這個檔案的存放位置是在 ns-allinone-2.xx/ns-2.xx/tcl/lib/ 這個目錄下, 欲知 Ns-2 的預設值設定, 可以將這個檔案叫出來看看 : $ cd ns-allinone-2.31/ns-2.31/tcl/lib/ $ cat ns-default.tcl more 模擬參數設定 在 Ns-2 中,Node 可以用來表示一個主機 (Host) 路由器 (Router) 或交換器 (Switch) Node 產生的方法如下 ($ns 為 Ns-2 產生的模擬物件 ): set router [$ns node] Node 產生後, 接下來就可以開始產生網路的拓撲, 有關 Node 之間的 Link Bandwidth Propagation Delay 以及 Queue-Type 設定方法, 指令格式如下 : $ns duplex-link <node1> <node2> <bandwidth> <delay> <queue-type> 網路的拓撲建好後, 接下來就是指定要使用的 Agent, 並告訴這個 Agent 在產生 Traffic 的時候, 要使用那一種 Traffic generator, 指令格式如下 :: set Agent_name [new Agent/<Agent-type>] 接下來我們用一個簡單的例子來介紹如何在 Node 與 Node 之間建一個 TCP Connection ( 如 Figure 3 所示 ) Figure 3: 簡單的網路架構圖 (2 個 Node 之間有一個 TCP Connection) 以下的 TCL Script 是根據 Figure 3 的設定所撰寫的 : Example 1: set ns [new Simulator] ;#Create a simulator object set nf [open out.nam w] ;#Open the Nam trace file $ns namtrace-all $nf #Define a 'finish' procedure proc finish { {

3 global ns nf $ns flush-trace close $nf ;#Close the trace file exec nam out.nam & exit 0 set node1 [$ns node] ;#Create two nodes, then create a duplex link between the nodes set node2 [$ns node] $ns duplex-link $node1 $node2 10Mb 2ms DropTail #Connect the TCP source with the TCP sink set tcp [$ns create-connection TCP $node1 TCPSink $node2 1] $tcp set window_ 128 ;# Configure the TCP agent set ftp [new Application/FTP] $ftp attach-agent $tcp $ns at 0.5 "$ftp start" $ns at 4.5 "$ftp stop" $ns at 5.0 "finish" ;# Schedule events for the FTP agent #Run the simulation $ns run Ns-2 是個很成熟的模擬環境, 對 TCP/IP 網路通訊協定的支援也相當地豐富, 幾乎所有的 TCP 實作版本 Ns-2 都有支援, 底下我們列出一些 Ns-2 有支援的 TCP Agent 供參考 ( 僅列出比較常見的版本 ): Agent Type TCP TCP/Reno TCP/Newreno TCP/Vegas TCP/SACK1 TCPSink TCPSink/DelAck TCPSink/Sack1 TCPSink/Sack1/DelAck Table 1:TCP agent types in Ns-2 [1] Description A TCP Tahoe sender A TCP Reno sender A TCP New Reno sender A TCP Vegas sender A TCP sender with selective acknowledgments A TCP receiver that sends one ACK per packet A TCP receiver with a configurable delay for ever ACK A TCP receiver with selective ACKs A TCP receiver with Sack1 and DelAck TCP Agent 產生後, 就可以針對這個 TCP Agent 作一些進一步的設定, 底下我們列出在做 TCP 的模擬實驗時, 比較常見的一些相關參數 : Table 2:TCP 傳送端 (Source) 的設定參數 參數 說明 fid_ TCP 連線的號碼 (Flow ID) window_ Advertised window 的上限值 (upper bond) Advertised window 有時也稱為 receive window, 其實指的 就是接收端的緩衝區可以容納的封包個數 因此當 Congestion window 的值超過 Advertised window 時,TCP 的傳送端會執行流量控制以避免送的太快而導致接收端的緩衝區溢滿 (overflow) maxcwnd_ Congestion window 的最大值 windowinit Congestion window 的初始值 ecn_ True 表示使用 ECN packetsize_ 傳送封包的資料大小 tcptick_ TCP 的 timeout 時間 ( 預設值為 0.01 秒 ) maxburst_ 每收到一個 ACK 觸發傳送端最多能送出的封包個數 0 表示關閉此選項功能 參數 packetsize_ Table 3:TCP 接收端 (Sink) 的設定參數說明 ACK 封包的資料大小

4 模擬架構圖 下面我們用個 TCP over Wireless LAN (WLAN) 例子來介紹如何在 Ns-2 中進行 TCP 的模擬實驗 如 Figure 3 所示, 在 TCP Source (W 0 ) 和 TCP Sink (W 1 ) 之間有一個 TCP 的 Connection, 其中 W 0 和 W 1 代表網路上的 Wired Node, AP 代表 Access Point,N i (i = 1~ n) 則是 WLAN 裡面的 Wireless Station 由於 Goodput 的值直接反映 Application Layer 實際上得到的傳輸效能, 所以在接下來的例子裡, 我們選擇以 Goodput 作為評估 TCP 效能的一個參考依據 模擬劇本 (TCL Script) Figure 3. WLAN 模擬架構圖 以下的 TCL Script 是根據 Figure 3 的設定所撰寫的 : Example 2: # ====================================================================== # Define options # ====================================================================== set opt(chan) [new Channel/WirelessChannel] ;# Channel type set opt(prop) Propagation/TwoRayGround ;# Radio-propagation model set opt(netif) Phy/WirelessPhy ;# Network interface type set opt(mac) Mac/802_11 ;# MAC type set opt(ifq) Queue/DropTail/PriQueue ;# Interface queue type set opt(ll) LL ;# Link layer type set opt(ant) Antenna/OmniAntenna ;# Antenna model set opt(ifqlen) 50 ;# Max packet in ifq set opt(nn) 1 ;# Number of mobilenodes set opt(adhocrouting) DSDV ;# Routing protocol set opt(x) 500 ;# x coordinate of topology set opt(y) 500 ;# y coordinate of topology set opt(seed) 0 ;# Seed for random number gen. set opt(stop) 60 ;# 設定結束時間 set opt(ftp0-start) 0.0 ;# 設定 FTP 的開始時間 set num_wired_nodes 2 ;# 設定 Wireless node 的個數 set num_ap_nodes 1 ;# 設定 AP (Access Point) 的個數 #Suggestion by Phy/WirelessPhy set freq_ 2.4e+9 Phy/WirelessPhy set Pt_ e-2 Phy/WirelessPhy set RXThresh_ e-09 Phy/WirelessPhy set CSThresh_ e-10 Mac/802_11 set RTSThreshold_ 3000 ;# frequency is 2.4 GHz ;# transmit power ;# Receive sensitivity, 40 meters. ;# 90 meters ;# < 256 bytes, no RTS/CTS set datarate 11 if {$datarate == "2" { puts "FHSS (IEEE802.11)" Mac/802_11 set SlotTime_ ;# 50 us Mac/802_11 set SIFS_ ;# 28 us Mac/802_11 set PreambleLength_ 0 ;# no preamble Mac/802_11 set PLCPHeaderLength_ 128 ;# 128 bits Mac/802_11 set PLCPDataRate_ 1.0e6 ;# 1 Mbps Mac/802_11 set datarate_ 2.0e6 ;# 2 Mbps Mac/802_11 set basicrate_ 1.0e6 ;# 1 Mbps elseif {$datarate == "11" { puts "DSSS (IEEE802.11b)" Mac/802_11 set SlotTime_ ;# 20 us Mac/802_11 set SIFS_ ;# 10 us Mac/802_11 set PreambleLength_ 144 ;# 144 bit

5 Mac/802_11 set PLCPHeaderLength_ 48 ;# 48 bits Mac/802_11 set PLCPDataRate_ 1.0e6 ;# 1 Mbps Mac/802_11 set datarate_ 11.0e6 ;# 11 Mbps Mac/802_11 set basicrate_ 1.0e6 ;# 1 Mbps elseif {$datarate == "54" { puts "DSSS (IEEE802.11g)" Mac/802_11 set SlotTime_ ;# 9 us Mac/802_11 set SIFS_ ;# 16 us Mac/802_11 set PreambleLength_ 96 ;# 96 bit Mac/802_11 set PLCPHeaderLength_ 40 ;# 40 bits Mac/802_11 set PLCPDataRate_ 6.0e6 ;# 6 Mbps Mac/802_11 set datarate_ 54.0e6 ;# 54 Mbps Mac/802_11 set basicrate_ 1.0e6 ;# 1 Mbps else { puts "Error datarate configuration." # ============================================================================ # 副程式 proc finish { { global ns_ tracefd namtrace tcp0 datarate set now [$ns_ now] set goodput [expr [$tcp0 set ack_]*[$tcp0 set packetsize_]*8/$now/ ] #; 計算 TCP 的 Goodput puts [format "goodput = %.2f Mbps (%.2f %s)" $goodput [expr $goodput/$datarate*100] %] puts "" close $tracefd close $namtrace # 讀入外部參數 proc getopt {argc argv { global opt lappend optlist nn for {set i 0 {$i < $argc {incr i { set opt($i) [lindex $argv $i] getopt $argc $argv #Example: ns tcp80211-wlan.tcl 54 set datarate $opt(0) # ============================================================================ # 產生模擬物件 set ns_ [new Simulator] puts "Seeding Random number generator with $opt(seed), Random [ns-random 0]" # 使用 Hierarchial addressing 的方式定址 (2 個 domain, 第 1 個 domain 有 2 個 cluster, 第 2 個 domain 有 1 個 # cluster 每個 cluster 中的 node 個數分別為 1 1 $num_ap_nodes +$opt(nn)) $ns_ node-config -addresstype hierarchical AddrParams set domain_num_ 2 ;# number of domains lappend cluster_num 2 1 ;# number of clusters in each domain AddrParams set cluster_num_ $cluster_num lappend eilastlevel 1 1 [expr $num_ap_nodes +$opt(nn)] ;# number of nodes in each cluster AddrParams set nodes_num_ $eilastlevel ;# of each domain set tracefd [open wireless-out.tr w] set namtrace [open wireless-out.nam w] $ns_ trace-all $tracefd $ns_ namtrace-all-wireless $namtrace $opt(x) $opt(y) # Create topography object set topo [new Topography]

6 # Define topology $topo load_flatgrid $opt(x) $opt(y) # Create God create-god [expr $opt(nn) + $num_ap_nodes] # 建立 Wired node ( 先設定 Wired node, 接著再設定 Wireless node, 一定要依此步驟進行 ) set temp { ;# hierarchical addresses for wired domain for {set i 0 {$i < $num_wired_nodes {incr i { set W($i) [$ns_ node [lindex $temp $i]] # Configure for base-station node $ns_ node-config -adhocrouting $opt(adhocrouting) \ -lltype $opt(ll) \ -mactype $opt(mac) \ -ifqtype $opt(ifq) \ -ifqlen $opt(ifqlen) \ -anttype $opt(ant) \ -proptype $opt(prop) \ -phytype $opt(netif) \ -channel $opt(chan) \ -topoinstance $topo \ -wiredrouting ON \ -agenttrace ON \ -mobileip ON \ -routertrace OFF \ -mactrace OFF # 設定 AP set temp { set AP(0) [$ns_ node [lindex $temp 0]] $AP(0) random-motion 0 ;# hier address to be used for wireless domain ;# disable random motion # 設定 AP 的位置 $AP(0) set X_ 0.0 $AP(0) set Y_ 0.0 $AP(0) set Z_ 0.0 # 設定 mobile node $ns_ node-config -wiredrouting OFF for {set j 0 {$j < $opt(nn) {incr j { set node_($j) [ $ns_ node [lindex $temp [expr $j+1]] ] $node_($j) base-station [AddrParams addr2id [$AP(0) node-addr]] # 設定 Mobile node 的位置 $node_($j) set X_ [expr $j * 30.0] $node_($j) set Y_ 0.0 $node_($j) set Z_ 0.0 # 設定 Wired node 和 AP 之間的連線 $ns_ duplex-link $W(0) $W(1) 100Mb 2ms DropTail $ns_ duplex-link $W(1) $AP(0) 45Mb 10ms DropTail $ns_ queue-limit $W(0) $W(1) 64 $ns_ queue-limit $W(1) $AP(0) 64 # 設定 TCP 連線 set tcp0 [new Agent/TCP/Reno] set sink0 [new Agent/TCPSink] $ns_ attach-agent $W(0) $tcp0 ;# 指定 TCP 版本為 TCP Reno

7 $ns_ attach-agent $node_(0) $sink0 $ns_ connect $tcp0 $sink0 $tcp0 set window_ 128 $tcp0 set packetsize_ 1400 $tcp0 set maxburst_ 2 set ftp0 [new Application/FTP] $ftp0 attach-agent $tcp0 $ns_ at $opt(ftp0-start) "$ftp0 start" ;# 建立 End-to-End 的連線 ;# Initial window size 為 128 packets ;# Packet size 為 1400 bytes ;# 指定收到 1 個 ACK 最多能連續送出的封包個數是 2 個 packet ;# 指定 application layer traffic generator ;# 排定產生 FTP traffic 的開始時間 # Define initial node position in nam for {set i 0 {$i < $opt(nn) {incr i { # 20 defines the node size in nam, must adjust it according to your scenario # The function must be called after mobility model is defined $ns_ initial_node_pos $node_($i) 20 # 排定執行的時間 # Tell all nodes when the simulation ends for {set i {$i < $opt(nn) {incr i { $ns_ at $opt(stop).0 "$node_($i) reset"; $ns_ at $opt(stop).0 "$AP(0) reset"; $ns_ at $opt(stop).0 "finish" $ns_ at $opt(stop).0002 "puts \"NS EXITING...\" ; $ns_ halt" puts "Starting Simulation..." $ns_ run 一般而言, 評估 TCP 效能的方法就是去觀察 FTP 的 Goodput( 應用層實際接收到的資料傳輸速率 ) Sequence number, 或者是觀察 TCP Congestion window 的變化 在這個例子中, 我們使用 Goodput 作為評估 TCP 的效能的依據 在這個例子中, 每次模擬結束時,NS-2 會執行 finish { 這個自訂程序並將 TCP 的 Goodput 列印在螢幕上, 如下所示 : proc finish { { set goodput [expr [$tcp0 set ack_]*[$tcp0 set packetsize_]*8/$now/ ] #; 計算 TCP 的 Goodput puts [format "goodput = %.2f Mbps (%.2f %s)" $goodput [expr $goodput/$datarate*100] %] [chengrs@nsda wlan]$ ns wireless2.tcl DSSS (IEEE802.11b) Seeding Random number generator with 0, Random num_nodes is set 2 INITIALIZE THE LIST xlisthead Starting Simulation... channel.cc:sendup - Calc highestantennaz_ and distcst_ highestantennaz_ = 1.5, distcst_ = SORTING LISTS...DONE! goodput = 3.83 Mbps / % NS EXITING... 底下列出幾個常見的 TCP 狀態參數供參考 : 參數 window_ Maxcwnd_ packetsize_ Table 5:TCP 傳送端的狀態參數說明 The upper bound on the advertised window for the TCP connection. The upper bound on the congestion window for the TCP connection. Set to zero to ignore. (This is the default) The size in bytes to use for all packets from this source.

8 t_seqno_ ssthresh_ cwnd_ ack_ maxseq_ 目前傳送的封包序號 Slow-start threshold 的值 Congestion window 的值 傳送端最後收到的 ACK 序號 傳送端最後送出的封包序號 如果說要重複進行這個模擬程序, 在 Linux 的環境中, 我們可以將想要重複執行的工作寫在一個 Script 檔中, 接著將這個 Script 檔交給 Linux 去執行 ( 科技始終來自於人性 ^_^); 底下是我們撰寫的一個 Script 檔的範例 (example2.tcl 是 TCL Script 的檔案名稱 ): rm -f out* rm -f rawdata* # 設定 for 迴圈的執行次數 for jth in do echo -run $jthns wireless2.tcl >> rawdata done # 將 simulation 得到的結果交由 awk 分析 ( 計算平均的 goodput) awk 'BEGIN {goodput_ = 0; achieved_ = 0; ig = 0; ia = 0; { if ($1 == "goodput" && $3 > 0) { goodput_ += $3; ig++; achieved_ += $6 END { m_goodput_ = goodput_/ig; m_achieved_ = achieved_/ig; printf("average(%d): good = %.2f Mbps, achieve %.2f \n", ig, m_goodput_, m_achieved_); printf "";' rawdata 根據我們的設定, 這個 Script 每次會執行 TCL script 程式 5 次, 隨後將平均的 Goodput (Mbps) 計算出來, 執行結果如下 : [chengrs@nsda wlan]$./run_tcp -run 1- -run 2- warning: Route to base_stn not known: dropping pkt -run 3- -run 4- -run 5- warning: Route to base_stn not known: dropping pkt Average(5): good = Mbps, achieve % [chengrs@nsda wlan]$ 在 NS-2 中,Wireless Node 的傳輸距離可藉由調整 Pt_ 與 RXThresh_ 的值來估算, 若想變更這兩個參數的設定, 在 NS-2 中已經有現成的範例, 只要將範例程式編譯過後就可以直接使用了, 請依下面介紹的方法進行 :(1) 請開啟終端機視窗 ( 命令列文字模式 ), 將工作目錄切換至 ~ns/indep-utils/propagation/ 目錄下, 接著執行下列指令 ($ 為 linux 提示符號 ): $ cd ns/indep-utils/propagation/ $ g++ -lm threshold.cc -o threshold 假設我們想將 Wireless node 的有效傳輸距離設為 40 公尺, 若無線網路卡的傳送頻率為 2.4 GHz,Transmit Power 為 ,(2) 下面的例子示範如何取得 Receiving threshold (RXThresh_) 的設定值 ($ 為 linux 提示符號 ): $ threshold -m TwoRayGround -Pt e-2 -fr 2.4e+9 40 distance = 40 propagation model: TwoRayGround Selected parameters: transmit power: frequency: 2.4e+09 transmit antenna gain: 1

9 receive antenna gain: 1 system loss: 1 transmit antenna height: 1.5 receive antenna height: 1.5 Receiving threshold RXThresh_ is: e-09 接下來只要在 TCL Script 檔的開頭, 也就是在主程式開始之前, 將 RXThresh_ 的值設定好就行了, 例如 : Phy/WirelessPhy set RXThresh_ e-09 ;# Receive sensitivity, 40 meters. Table 6 列出 的相關參數及其設定供參考 : Table 6. Parameters for MAC and PHY Layer b g SLOT 50 μsec 20 μsec 9 μsec SIFS 28 μsec 10 μsec 10 μsec DIFS 128 μsec 50 μsec 28 μsec PHY hdr 128 bits 192 bits 192 bits CW min CW max RTS 160 bits 160 bits 160 bits CTS 112 bits 112 bits 112 bits ACK 112 bits 112 bits 112 bits 在 Ns-2 中,RTS CTS 以及 ACK 的大小分為別 byte ( 不含 PHYhdr,PHYhdr = PLCP preamble + PLCP header); DIFS = 2 SLOT time + SIFS 最後,Table 7 則是有關 Trace 檔的欄位格式說明 Table 7:Tracing format in NS-2 欄位說明 1 Type of operation performed on the packet: enqueue (+), dequeue (-), drop (d), receive (r) 2 Time of the operation 3 Source node of the trace 4 Destination node of the trace 5 Packet type 6 IP packet size 7 Flags 8 IP flow identifier 9 Source IP address 10 Destination IP address 11 Sequence number 12 Unique packet identifier [1] High Performance TCP/IP Networking M. Hassan, R. Jain

穨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

Microsoft PowerPoint - 数据通信-ch1.ppt

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

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 - 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

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

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

ARP ICMP

ARP ICMP ARP ICMP 2 9-1 ARP 9-2 ARP 9-3 ARP 9-4 ICMP 9-5 ICMP 9-6 ICMP 9-7 ICMP 3 ARP ICMP TCP / IP, IP ARP ICMP 3 IP, ARP ICMP IP ARP ICMP 2, 4 9-1 ARP, MAC, IP IP, MAC ARP Address Resolution Protocol, OSI ARP,,

More information

SL2511 SR Plus 操作手冊_單面.doc

SL2511 SR Plus 操作手冊_單面.doc IEEE 802.11b SL-2511 SR Plus SENAO INTERNATIONAL CO., LTD www.senao.com - 1 - - 2 - .5 1-1...5 1-2...6 1-3...6 1-4...7.9 2-1...9 2-2 IE...11 SL-2511 SR Plus....13 3-1...13 3-2...14 3-3...15 3-4...16-3

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

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

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

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

工程师培训

工程师培训 .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

NS2教學

NS2教學 NS2 教學 1 2 執行目錄底下 setup.exe 安裝 Cygwin Cygwin 是許多自由軟體的集合, 最初由 Cygnus Solutions 開發, 用於各種版本的 Microsoft Windows 上, 運行 UNIX 類系統 Cygwin 的主要目的是通過重新編譯, 將 POSIX 系統 ( 例如 Linux BSD, 以及其他 Unix 系統 ) 上的軟體移植到 Windows

More information

R3105+ ADSL

R3105+ ADSL ... 1 1 1... 1 1 2... 1... 3 2 1... 3 2 2... 3 2 3... 5 2 4... 5 2 4 1... 5... 7 3 1... 7 3 2... 8 3 2 1... 8 3 2 2... 9 3 3... 12 3 3 1... 13 3 3 2 WAN... 16 3 3 3 LAN... 21 3 3 4 NAT... 22 3 3 5... 24

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

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

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

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

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

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

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

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

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

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

...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

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

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

財金資訊-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

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

ch08.PDF

ch08.PDF 8-1 CCNA 8.1 CLI 8.1.1 8-2 8-3 8.1.21600 2500 1600 2500 / IOS 8-4 8.2 8.2.1 A 5 IP CLI 1600 2500 8-5 8.1.2-15 Windows 9598NT 2000 HyperTerminal Hilgraeve Microsoft Cisco HyperTerminal Private Edition (PE)

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

经华名家讲堂

经华名家讲堂 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

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南 Symantec Sygate Enterprise Protection 防 护 代 理 安 装 使 用 指 南 5.1 版 版 权 信 息 Copyright 2005 Symantec Corporation. 2005 年 Symantec Corporation 版 权 所 有 All rights reserved. 保 留 所 有 权 利 Symantec Symantec 徽 标 Sygate

More information

KL DSC DEMO 使用说明

KL DSC DEMO 使用说明 :0755-82556825 83239613 : (0755)83239613 : http://www.kingbirdnet.com EMAIL Good989@163.com 1 1 KB3000 DTU... 3 1.1... 3 1.2... 3 1.3... 3 1.4... 3 2... 4 2.1 GSM/GPRS... 4 2.2... 4 2.3... 5 2.4... 6 2.5...

More information

<4D6963726F736F667420506F776572506F696E74202D20A1B6CFEEC4BFD2BB20B3F5CAB6BCC6CBE3BBFACDF8C2E7A1B7C8CECEF1C8FD20CAECCFA4544350A1A24950D0ADD2E9BACD4950B5D8D6B72E707074>

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

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

计算机网络

计算机网络 (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

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

Microsoft PowerPoint - W.lan.3.ppt

Microsoft PowerPoint - W.lan.3.ppt Wireless LAN: 802.11MAC Module W.lan.3 Dr.M.Y.Wu@CSE Shanghai Jiaotong University Shanghai, China Dr.W.Shu@ECE University of New Mexico Albuquerque, NM, USA 1 W.lan.3-2 Wireless LANs: 802.11 MAC 802.11

More information

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

Microsoft PowerPoint - NS-2無線網路模擬 NS-2 無線網路模擬 Speaker : Rung Shiang Cheng ( 程榮祥 ) Department of Computer and Communication Kun Shan University http://teachers.ksu.edu.tw/ 1 Outline 2 Linux 下的 NS-2 安裝與設定 3 NS-2 是什麼? Network Simulator, version

More information

¶C¶L§§¬_™¨ A.PDF

¶C¶L§§¬_™¨ A.PDF 1 9 3 1 9 4 / 7.1 / 1 9 5 7.2 % netstat -rn Routing tables Destination Gateway Flags Refcnt Use Interface 127.0.0.1 127.0.0.1 UH 1 132 lo0 172.16.12.0 172.16.12.2 U 26 49041 le0 1 9 6 / % ping -s almond

More information

IP Access Lists IP Access Lists IP Access Lists

IP Access Lists IP Access Lists IP Access Lists Chapter 10 Access Lists IP Access Lists IP Access Lists IP Access Lists Security) IP Access Lists Access Lists (Network router For example, RouterA can use an access list to deny access from Network 4

More information

Microsoft Word - 100118002.htm

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

More information

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli BYOD 204 2015 GoogleHicloud (Load Balance) Server Load Balance Link Load Balance Server Redirect 1. URL Redirect redirector URL redirect Real Server Client HTTP Real Server Web Client 2 (1) URL Redirect

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

版权声明

版权声明 SG3124 http://www.utt.com.cn 2000-2008 URL Internet Web EULA EULA UTT HiPER PN 0901-0003-001 DN PR-PMMU-1180.03-PPR-CN-1.0A ...1 1...2 1.1...2 1.2...2 1.3...3 1.4...3 2 1.4.1...3 1.4.2...4...5 2.1...5

More information

untitled

untitled 年度 路 IVI 劉 隆 年 597 598 IVI 錄... 601 行... 601... 601 1.... 601 2. 路... 602 3.... 603... 604 1.IPv4 to IPv6... 604 2.IPv6 to IPv4... 605 -... 606 ( )IVI Server... 606 ( )IVI Server... 610 ( )IVI DNS Server...

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

飞鱼星多WAN防火墙路由器用户手册

飞鱼星多WAN防火墙路由器用户手册 WAN VER: 20110218 Copyright 2002-2011 VOLANS WAN VR4600 VR4900 VR7200 VR7500 VR7600 1.1 1.2 IP 1.3 2.1 2.2 2.2.1 2.2.2 3.1 3.2 3.2.1 3.2.2 3.2.3 4.1 4.2 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.3 4.3.1 4.3.2

More information

<4D6963726F736F667420506F776572506F696E74202D2030325FC2B2B3F85FA44AAB49B0BBB4FABB50B977A8BEA874B2CEC2B2A4B6BB50C0B3A5CE2E707074>

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

More information

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

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

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

<55342D323637CBB5C3F7CAE92E786C73>

<55342D323637CBB5C3F7CAE92E786C73> U4-267 / 1 U4-267 / : CF PowerPoint, TCP/IP Internet Explorer 2 ..2..3..4..5..5..5..9 PC...10 11 12 14 14....15....15....16....16....17....17....18....18....20 23....27 27 PC...27....28 3 CF SanDisk CompactFlash)

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

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

计算机网络

计算机网络 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

GPRS IP MODEM快速安装说明

GPRS IP MODEM快速安装说明 GF-3026D CDMA 无 线 路 由 器 用 户 手 册 北 京 嘉 复 欣 科 技 有 限 公 司 地 址 : 北 京 市 海 淀 区 阜 成 路 115 号 北 京 印 象 2 号 楼 213 室 电 话 :86-10-88122130 88153193 88153197 传 真 :86-10-88122129 网 站 :http://www.garefowl.com/ 目 录 一 产 品

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL c00hkl00@nchc.gov.tw, steven@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Dec, 2002 1 Outline 1. 2. DRBL 3. 4. Service DHCP, TFTP, NFS,

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

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

1

1 DOCUMENTATION FOR FAW-VW Auto Co., Ltd. Sales & Service Architecture Concept () () Version 1.0.0.1 Documentation FAW-VW 1 61 1...4 1.1...4 2...4 3...4 3.1...4 3.2...5 3.3...5 4...5 4.1 IP...5 4.2 DNSDNS...6

More information

ebook71-13

ebook71-13 13 I S P Internet 13. 2. 1 k p p p P P P 13. 2. 2 1 3. 2. 3 k p p p 1 3. 2. 4 l i n u x c o n f P P P 13. 2. 5 p p p s e t u p 13. 2. 6 p p p s e t u p P P P 13. 2. 7 1 3. 2. 8 C a l d e r a G U I 13.

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

Data Server_new_.doc

Data Server_new_.doc 0i B/C Data Server Windows 2000 Window XP Windows XP FTP FANUC Data Server FTP liwei@beijing-fanuc 1 06-10-8 Content 1. /...3 1.1...3 1.2...3 1.3 CNC...3 2....5 2.1 STORAGE...5 2.2 FTP...6 2.3 BUFFER...7

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

C6_ppt.PDF

C6_ppt.PDF C01-202 1 2 - (Masquerade) (Replay) (Message Modification) (Denial of Service) - ( ) (Eavesdropping) (Traffic Analysis) 8 1 2 7 3 6 5 4 3 - TCP SYN (SYN flood) Smurf Ping of Death LAND Attack Teardrop

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force Steven Shiau steven@nchc.gov.tw National Center for High-Performance Computing Sep 10, 2002 1 Outline 1. 2. 3. Service DHCP, TFTP, NFS, NIS 4. 5. 2 DRBL (diskless remote boot

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

PS PS GMM SM.zte.com.

PS PS GMM SM.zte.com. WBUB-010-1 ZXWN PS V0411.zte.com. PS PS GMM SM.zte.com. PS TMSI Packet-Temporary mobile subscriber identification number P-TMSI) GPRS MS P- TMSI 4 BCD 3G TS 23.003 MSC SGSN SGSN P-TMSI 11 MSC TMSI 00 01

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内

A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内 A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内 容 分 发 网 络 Alibaba Cloud Content Delivery Network 一

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

IS-IS路由协议中文教程v1

IS-IS路由协议中文教程v1 IS-IS v1.0 Chapter 0 Preface Statement BSCI Building Scalable Cisco Internetworks Configuring IS-IS Protocol IS-IS IS-IS OSI TCP/IP IS-IS OSPF Cisco System BSCI Student Guide Outline 1 OSI IS-IS 2 IS-IS

More information

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc Key @ Value Chain fanchihmin@yahoo.com.tw 1 Key@ValueChain 1994.6 1996.6 2000.6 2000.10 ~ 2004.10 (E- RD / Pre-Sales / Consultant) APS, Advanced Planning & Scheduling CDP, Collaborative Demand Planning

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

QL1880new2.PDF

QL1880new2.PDF ADSL Modem 1 MODEM 56K MODEM 128K ISDN INTERNET ADSL Modem VOD ADSL ADSL 2 1.1 ADSL 1.2 1.3 KM300A 2.1 2.2 2.3 2.4 2.5 KM300A 2.6 web 2.7 1.1ADSL 1.2 1.3 2.1 ADSL 2.2 ADSL 3 ADSL KM300A ADSL KM300A DIY

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

PIC_SERVER (11) SMTP ( ) ( ) PIC_SERVER (10) SMTP PIC_SERVER (event driven) PIC_SERVER SMTP 1. E-

PIC_SERVER (11) SMTP  ( ) ( ) PIC_SERVER (10) SMTP  PIC_SERVER (event driven)  PIC_SERVER SMTP  1.  E- (2005-02-01) (2005-04-28) PIC_SERVER (10) SMTP E-mail PIC_SERVER (event driven) E-mail PIC_SERVER SMTP E-mail 1. E-mail E-mail 1 (1) (2) (3) (4) 1 1. 2 E-mail A E-mail B E-mail SMTP(Simple Mail Transfer

More information

《计算机网络》实验指导书

《计算机网络》实验指导书 1 实 验 一 网 络 组 建 与 管 理 一. 实 验 目 的 1. 掌 握 平 行 双 绞 线 和 交 叉 双 绞 线 的 制 作 方 法 ( 初 级 ) 2. 掌 握 对 等 网 和 代 理 服 务 器 网 络 的 组 建 ( 初 级 ) 3. 会 用 ipconfig 和 ping 命 令 ( 初 级 ) 4. 掌 握 网 络 中 文 件 夹 共 享 和 打 印 机 共 享 ( 初 级 )

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

VoIP Make a Rtp Call VoIP Abstract... 2 VoIP RTP...3 Socket IP...9 Config Two Voice-hub

VoIP Make a Rtp Call VoIP Abstract... 2 VoIP RTP...3 Socket IP...9 Config Two Voice-hub VoIP... 2... 2 Abstract... 2... 3... 3 RTP...3 Socket...4...6...7 IP...9 Config Two Voice-hub... 10 1 12 VoIP VoIP voice-hub voice-hub Abstract At the beginning of this paper, we introducted the essential

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

ext-web-auth-wlc.pdf

ext-web-auth-wlc.pdf 使 用 无 线 局 域 网 控 制 器 的 外 部 Web 身 份 验 证 配 置 示 例 目 录 简 介 先 决 条 件 要 求 使 用 的 组 件 规 则 背 景 信 息 外 部 Web 身 份 验 证 过 程 网 络 设 置 配 置 为 来 宾 用 户 创 建 动 态 接 口 创 建 预 先 身 份 验 证 ACL 在 WLC 上 为 来 宾 用 户 创 建 本 地 数 据 库 配 置 外 部

More information

Microsoft Word - YDB 064-2011 Vehicle Telematics Service Requirement and General Framework

Microsoft Word - YDB 064-2011 Vehicle Telematics Service Requirement and General Framework 通 信 标 准 类 技 术 报 告 YDB XXX 2010 泛 在 物 联 应 用 汽 车 信 息 服 务 业 务 需 求 和 总 体 框 架 Vehicle Telematic Service Requirement and General Framework 200X XX XX 印 发 中 国 通 信 标 准 化 协 会 目 次 前 言... 错 误! 未 定 义 书 签 1 范 围...

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : JN0-331 Title : SEC,Specialist(JNCIS-SEC) Version : Demo 1 / 10 1. Regarding zone types, which statement is true? A. You cannot assign an

More information

Microsoft Word - A200811-1988.doc

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

More information

版本说明书

版本说明书 i CHGM-36M * CHGM-36C * CHGM-130M CHGM-130C CHGM-120M * CHGM-120C * CHGC-120M CHGC-120C CHGC-300M CHGC-300C CHGM-530M-1 CHGM-530C-1 CHGM-600C CHGM-600M-1 * CHGM-600M CHGC-30M CHGC-30C CHGM-230 CHGM-230C

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

投影片 1

投影片 1 資料庫管理程式 ( 補充教材 -Part2) 使用 ADO.NET 連結資料庫 ( 自行撰寫程式碼 以實現新增 刪除 修改等功能 ) Private Sub InsertButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles InsertButton.Click ' 宣告相關的 Connection

More information

穨網經期末報告-WAP.PDF

穨網經期末報告-WAP.PDF WAP WAP 8841641 8641641 8641648 PC PC 1997 (Nokia) (Ericsson) (Motorola) Phone.com (Wireless Application Protocol WAP) (Wireless Portal) WAP WAP ( 1 HTTP) (Wireless Markup Language WML) WAP WAP WML Nokia

More information

FPGA GJVZsIPb3 IPb3pg(lwE & by2eh;[d)y IP ROM

FPGA GJVZsIPb3 IPb3pg(lwE & by2eh;[d)y IP ROM FPGA IPb3pg(lwE & by2eh;[d)y IP ROM NVMe SSD FPGA!! NVMe-IP 32G bps Gen3 x 4Lane IP CPUNVMe PCIe SSD 4GB/sec, PCIe Gen3 2ch RAID CPU FAT32 SMART, Shutdown, FLUSH!! Linux Gen3 PCIe SSD 2ch RAID 2ch RAID

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

<4D F736F F D20312D3120D5D0B9C9CBB5C3F7CAE9A3A8C9EAB1A8B8E5A3A92E646F63>

<4D F736F F D20312D3120D5D0B9C9CBB5C3F7CAE9A3A8C9EAB1A8B8E5A3A92E646F63> 本 次 股 票 发 行 后 拟 在 创 业 板 市 场 上 市, 该 市 场 具 有 较 高 的 投 资 风 险 创 业 板 公 司 具 有 业 绩 不 稳 定 经 营 风 险 高 退 市 风 险 大 等 特 点, 投 资 者 面 临 较 大 的 市 场 风 险 投 资 者 应 充 分 了 解 创 业 板 市 场 的 投 资 风 险 及 本 公 司 所 披 露 的 风 险 因 素, 审 慎 作 出

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

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

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

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

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