Simulation of SDN/OpenFlow Operations. EstiNet Technologies, Inc.

Size: px
Start display at page:

Download "Simulation of SDN/OpenFlow Operations. EstiNet Technologies, Inc."

Transcription

1 Simulation of SDN/OpenFlow Operations EstiNet Technologies, Inc.

2 Agenda: (1) 模擬器簡介 (2) 模擬器的基本操作 (3) 如何建置一個 SDN Topology (5) 如何下達指令並觀察 Flow Table, Group Table 與 Meter Table (5) 如何用 SDN 下達 QoS 指令並觀察結果 (6) 進階範例比較傳統網路 Port-based Operations 與 SDN 網路 Flow-based Operations 之不同

3 Introduction to EstiNet Simulator

4 EstiNet 網路模擬器 (Simulator) 以軟體模擬的方式, 呈現真實網路的組態與封包傳送行為 可在模擬的網路中藉由各式有線與無線的通訊協定來傳遞網路封包 可隨意控制網路狀態, 例如有線網路的封包傳送延遲與封包遺失率, 或是無線網路的封包傳送能量 / 距離等 Switch Router Switch Router Router Switch Router Router Switch 真實網路 EstiNet 網路模擬器 4

5 Ethernet & Wi-Fi Simulation 5

6 SDN Simulator Architecture (Out-of-band Control Plane) 6

7 What does OpenFlow Define? Tables, Messages Tables: Flow Tables, Group Tables, Meter Tables Flow Tables Group Tables Meter Table Flow Identification and Packet Modification & Forwarding (add/ modify /delete) Broadcast, Multicast, VLAN &LAG (Action Set : Bucket) Rate Limiting : Bands 限流 Messages: Controller-to-Switch Messages Asynchronous Messages Symmetric Messages 7

8 OpenFlow Messages (based on version 1.3.4) 8

9 OpenFlow Table Processing (v 1.3.4) Copy Copy Output Action Within Apply-Actions Instruction Output Action Within Apply-Actions Instruction Output Action Within Apply-Actions Instruction Pkt Hdr + Metadata + Action Set + In Port Flow Table 1 Pkt Hdr + Metadata + Action Set + In Port Flow Table 2 Pkt Hdr + Metadata + Action Set + In Port Flow Table n Execute Packet Action Set Put to some queue of some port Meter Instruction Meter Instruction Meter Instruction Group Action Within Apply-Actions Instruction Group Action Within Apply-Actions Instruction Direct Direct Direct Group Action Within Apply-Actions Instruction Meter Table Copy Copy Copy Execute Bucket Action Set Group Table 9

10 Flow Table 10

11 Action Types & Action Set 11

12 Group Table 12

13 Meter Table 13

14 Legacy switch vs SDN switch Legacy switch Port-based Distributed 分散式 Protocols are executed on switches SDN switch Flow-based Centralized 集中式 Protocols are executed on controller Control plan and Data plane are separated Flow-based operations can not only provide forwarding service but also support more advanced networking services, such as QoS. 14

15 用一個小型的 SDN 網路範例 ( 請同學實際操作 ) 來介紹模擬器的 4 個操作模式與 SDN 操作

16 SDN Simulation Simulation Time: E-Tools=> =>Configure Simulation Processes=> Simulation Engine => Set the Duration of Simulation=> ex: 3600 sec(s) Set the Progressing Mode => Try to Synchronize with the Real-world Clock [Node1] Start Time: 2 sec; Stop Time: 3600 secs Controller : [Ryu] ryu-manager /usr/lib/python2.7/site-packages/ryu/app/simple_switch_13.py [NOX] nox_core -i ptcp: switch [tcpdump] tcpdump -i eth0 -U -w controller.pcap [Node3] OpenFlow switch v13: [controller] => Controller IP Address [Flow Table] => Log Flow Table Entries [Node4] Start Time: 10 sec; Stop Time: 3600 secs Sender: ttcp -4 -t -s u -p [Node5] Start Time: 10 sec; Stop Time: 3600 secs Receiver: ttcp -4 -r -s u -p 8000 [Module]=> [MAC8023] Log Packet Statistics => Throughput (KB/sec) of Incoming Packets log tables, wireshark, throughtput 16

17 SDN Operations Outline Controller : Ryu Curl Commands in Ryu Add, Show, Modify and Delete Flow Entry Add, Show, Modify and Delete Meter Add, Show, Modify and Delete Group

18 Controller : Ryu

19 Install Ryu in Fedora 24 Perform the following commands in terminal with root privilege. 1. yum update 2. yum install python-pip 3. yum install python-devel 4. yum install python-eventlet 5. yum install python-routes 6. yum install python-webob 7. yum install python-paramiko 8. pip install ryu 9. pip install six --upgrade Verify the Installation

20 Setup Ryu for EstiNet 1. Find ryu-manager binary in your system whereis ryu-manager 2. Find Ryu workdir in your system ryu-manager Ctrl + C

21 Flow, Meter, Group Tables

22 OpenFlow Table Processing (v 1.3.4) Copy Copy Output Action Within Apply-Actions Instruction Output Action Within Apply-Actions Instruction Output Action Within Apply-Actions Instruction Pkt Hdr + Metadata + Action Set + In Port Flow Table 1 Pkt Hdr + Metadata + Action Set + In Port Flow Table 2 Pkt Hdr + Metadata + Action Set + In Port Flow Table n Execute Packet Action Set Put to some queue of some port Meter Instruction Meter Instruction Meter Instruction Group Action Within Apply-Actions Instruction Group Action Within Apply-Actions Instruction Direct Direct Direct Group Action Within Apply-Actions Instruction Meter Table Copy Copy Copy Execute Bucket Action Set Group Table

23 Curl Commands in Ryu

24 Curl command in Ryu curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":2}, "actions":[{"type":"output", "port":5}]}' Syntax : Check /usr/lib/python2.7/site-packages/ryu/app/ofctl_rest.py Check /usr/lib/python2.7/site-packages/ryu/lib/ofctl_v1_3.py

25 Add, Show, Modify and Delete Flow Entry

26 Topology

27 Unidirectional UDP Traffic Arrangement 01_Ryu_Simulation_FlowTable.xtpl Sender : - At Node 4 - ttcp -4 -t s -u -p Receiver : - At Node 7 - ttcp -4 -r -s u -p 8007

28 Get Switch s DPID Curl Command : #./get_dpid.sh curl

29 Add Flow Entries Flow entry 1 : Forward packets from port 2 to port 5 #./a_p2_p5.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":2}, "actions":[{"type":"output", "port":5}]}' Flow entry 2 : Forward packets from port 5 to port 2 #./a_p5_p2.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":5}, "actions":[{"type":"output", "port":2}]}' Flow Table 0 Entry 1 Entry 2 Pkt

30 Show Flow Entries Curl Command : #./show_flow.sh <Format> curl IP:8080/stats/flow/DPID <Example> curl

31 Modify Flow Entry Modify Flow entry 2 : Drop the packets from port 5 #./d_p5.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":5}, "actions":[]}' Recover Flow entry 2 #./ma_p5_p2.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":5}, "actions":[{"type":"output", "port":2}]}' Flow Table 0 Entry 1 Entry 2 Pkt

32 Delete Flow Entries Curl Command #./clear_all.sh <Format> curl -X DELETE IP:8080/stats/flowentry/clear/DPID <Example> curl -X DELETE

33 Add, Show, Modify and Delete Meter

34 Meter Type Type 1 : DROP Type 2 : DSCP_REMARK

35 Type 1: Drop

36 Bidirectional UDP Traffic Arrangement 02_Ryu_Simulation_Meter_Drop.xtpl Sender : - At Node 4 - ttcp -4 -t s u -p Receiver : - At Node 7 - ttcp -4 -r s -u -p 8007 Receiver : - At Node 4 - ttcp -4 -r -s u -p 8004 Sender : - At Node 7 - ttcp -4 -t -s u -p

37 Add Meter Entries Type 1 : DROP Meter entry 1 : 6 Mbps limit #./m1_6m.sh curl -X POST -d '{"dpid": "3", "meter_id":1, "flags":"kbps", "bands":[{"type":"drop", "rate":6000}]}' Meter entry 2 : 2 Mbps limit #./m2_2m.sh curl -X POST -d '{"dpid": "3", "meter_id":2, "flags":"kbps", "bands":[{"type":"drop", "rate":2000}]}' Entry 1 Entry 2 Meter Table

38 Show Meter Entries Curl Command #./show_meter.sh <Format> curl IP:8080/stats/meter/DPID <Example> curl

39 Add Flow Entries with Meter Flow Table 0 Entry 1 Entry 2 Flow entry 1 : Forward packets from port 2 to port 5 & limit throughput to 6 Mbps #./a_m1_p2_p5.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":2}, "actions":[{"type":"meter", "meter_id":1}, {"type":"output", "port":5}]}' Flow entry 2 : Forward packets from port 5 to port 2 & limit throughput to 2 Mbps #./a_m2_p5_p2.sh Pkt Entry 1 Entry 2 Meter Table curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":5}, "actions":[{"type":"meter", "meter_id":2}, {"type":"output", "port":2}]}'

40 Add Flow Entries for ARP Flow entry 3: Assign ARP packets from port 2 to go out to port 5 #./f3_a_arp_p2_p5.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"1", "match":{"in_port":2, "arp_tpa":" "}, "actions":[{"type":"output", "port":5}]}' Flow entry 4: Assign ARP packets from port 5 to go out to port 2 #./f4_a_arp_p5_p2.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"1", "match":{"in_port":5, "arp_tpa":" "}, "actions":[{"type":"output", "port":2}]}'

41 Modify Meter Entry Modify Meter entry 1 Change meter band from 6 Mbps to 2 Mbps #./m_m1_6m_2m.sh curl -X POST -d '{"dpid": "3", "meter_id":1, "flags":"kbps", "bands":[{"type":"drop", "rate":2000}]}'

42 Delete Meter Entries Delete Meter entry 1 #./d_m1.sh curl -X POST -d '{"dpid": "3", "meter_id":1, "flags":"kbps", "bands":[{"type":"drop", "rate":2000}]}' Delete Meter entry 2 #./d_m2.sh curl -X POST -d '{"dpid": "3", "meter_id":2, "flags":"kbps", "bands":[{"type":"drop", "rate":2000}]}'

43 Type 2: DSCP_REMARK

44 DSCP Remark Table 0 Table 1 Packets Match : in port = 2 Action : DSCP remark Go to Table 1 Match : DSCP Action : Meter drop out port = 5

45 Unidirectional UDP Traffic Arrangement 03_Ryu_Simulation_Meter_DSCP_REMARK.xtpl Sender : - At Node 4 - ttcp -4 -t -s u -p Receiver : - At Node 7 - ttcp -4 -r s -u -p 8007

46 Add Meter Entries Type 2 : DSCP_REMARK Meter entry 1 : Remark DSCP to 1 if throughput reaches 8 Mbps #./m1_dscp1_8m.sh curl -X POST -d '{"dpid": "3", "meter_id":1, "flags":"kbps", "bands":[{"type":"dscp_remark", "rate":8000, "prec_level":1}]}' Meter entry 2 : 6 Mbps limit #./m2_6m.sh curl -X POST -d '{"dpid": "3", "meter_id":2, "flags":"kbps", "bands":[{"type":"drop", "rate":6000}]}' Entry 1 Entry 2 Meter Table

47 Add Flow Entries with Meter Flow Table 0 Entry 1 Flow Table 1 Entry 2 Flow entry 1 on Table 0: Assign packets from port 2 to go to Table 1 & Remark DSCP to 1 if throughput reaches 8 Mbps #./f1_a_m1_dscp1_p2_t1.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":2}, "actions":[{"type":"meter", "meter_id":1}, {"type":"goto_table", "table_id":1}]}' Flow entry 2 on Table 1: Assign packets from Table 0 to go out to port 5 & limit throughput to 6 Mbps if DSCP is 1 #./f2_a_m2_dscp1_t1_p5.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "table_id":1, "match":{"ip_dscp":1}, "actions":[{"type":"meter", "meter_id":2}, {"type":"output", "port":5}]}' Pkt Entry 1 Entry 2 Meter Table

48 Add Flow Entries for ARP Flow Table 0 Entry 1 Entry 3 Entry 4 Flow Table 1 Entry 2 Pkt Flow entry 3 on Table 0: Assign ARP packets from port 2 to go out to port 5 #./f3_a_arp_p2_p5.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"1", "match":{"in_port":2, "arp_tpa":" "}, "actions":[{"type":"output", "port":5}]}' Flow entry 4 on Table 0: Assign ARP packets from port 5 to go out to port 2 #./f4_a_arp_p5_p2.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"1", "match":{"in_port":5, "arp_tpa":" "}, "actions":[{"type":"output", "port":2}]}' Entry 1 Entry 2 Meter Table

49 Add, Show, Modify and Delete Group

50 Group Type Type 1 : ALL Type 2 : SELECT Type 3 : INDIRECT Type 4 : Fast Failover

51 Type 1: ALL Type 3: INDIRECT

52 Unidirectional UDP Traffic Arrangement 04_Ryu_Simulation_Group_ALL_INDIRECT.xtpl Sender : - At Node 4 - ttcp -4 -t -s u -p Receiver : - At Node 7 - ttcp -4 -r -s u -p 8007

53 Add Group Entry Type 1 : ALL Group entry 1 : Output to port 3, Output to port 4 #./g1_out_p3_p4.sh curl -X POST -d '{"dpid": "3", "type":"all", "group_id":1, "buckets":[{"actions":[{"type":"output", "port":3}]}, {"actions":[{"type":"output", "port":4}]}]}' Flow entry 1 : Output to port 5 & Go to Group table #./f1_a_g1.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":2}, "actions":[{"type":"output", "port":5}, {"type":"group", "group_id":1}]}' Pkt Flow Table 0 Entry 1 Copy ALL, Port 3 & Port 4 Group Table

54 Show Group Entry Curl Command #./show_group.sh <Format> curl IP:8080/stats/group/DPID <Example> curl

55 Modify Group Entry Type 3 : INDIRECT Group entry 1 : Define one bucket only #./m_g1_indirect_p4.sh curl -X POST -d '{"dpid": "3", "type":"indirect", "group_id":1, "buckets":[{"actions":[{"type":"output", "port":4}]}]}' Pkt Flow Table 0 Entry 1 Copy INDIRECT, Port 4 Group Table

56 Delete Group Entry Delete Group entry 1 : curl -X POST -d '{"dpid": "3", "type":"indirect", "group_id":1, "buckets":[{"actions":[{"type":"output", "port":4}]}]}'

57 Type 2: SELECT

58 Unidirectional CBR UDP Traffic Arrangement 05_Ryu_Simulation_Group_SELECT.xtpl Sender : - At Node 4 - stg -4 -s stg_cbr_1sec.conf p 8007 Receiver : - At Node 7 - rtg -4 -u -p 8007

59 ADD Group Entry Type 2 : SELECT Group entry 1 : Round Robin output to port 3 and port 4 #./g1_runrobin_p3_p4.sh curl -X POST -d '{"dpid": "3", "type":"select", "group_id":1, "buckets":[{"weight":1, "actions":[{"type":"output", "port":3}]}, {"weight":1, "actions":[{"type":"output", "port":4}]}]}' Flow entry 1 : Output to port 5 & Go to Group table #./f1_a_g1r.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":2}, "actions":[{"type":"output", "port":5}, {"type":"group", "group_id":1}]}' Pkt Flow Table 0 Entry 1 Copy SELECT, Port 3 & Port 4 Group Table Check results at Play Back mode

60 Type 4: Fast Failover

61 Unidirectional CBR UDP Traffic Arrangement 06_Ryu_Simulation_Group_Fast_Failover.xtpl Sender : - At Node 4 - stg -4 -s stg_cbr_1sec.conf p 8007 Receiver : - At Node 7 - rtg -4 -u -p 8007 Port 3 fails during 50 to 70 seconds.

62 Pkt Modify Group Entry Type 4 : Fast Failover Group entry 1 : Fast failover #./g1_ff_p3_p4.sh curl -X POST -d '{"dpid": "3", "type":"ff", "group_id":1, "buckets":[{"watch_port":3, "actions":[{"type":"output", "port":3}]}, {"watch_port":4, "actions":[{"type":"output", "port":4}]}]}' Flow entry 1 : Output to port 5 & Go to Group table #./f1_a_g1ff.sh curl -X POST -d '{"dpid": "3", "cookie":1, "priority":"0", "match":{"in_port":2}, "actions":[{"type":"output", "port":5}, {"type":"group", "group_id":1}]}' Flow Table 0 Entry 1 Copy FF, Port 3 & Port 4 Group Table

63 USE CASES OF SDN SIMULATION APPLICATIONS

64 在區域網路中 用 SDN 技術來提供 QOS 服務

65 傳統的區域網路不會特意提供 QoS 服務 互聯網中有八個伺服器分別傳送資料給位於區域網路的八個使用者 若由網管人員根據動態需求去修改網路設定來提供 QoS 服務, 容易發生設定錯誤的情況, 且不容易提供即時的服務 65

66 當大頻寬網段進入小頻寬網段時, 會形 成頻寬瓶頸 25 Mbps 1000 Mbps 80 Mbps 66

67 當網路有頻寬瓶頸時, 會導致使用者端的 資料接收量呈現不穩定的情況 ( 因自由競爭有限頻寬 ) 67

68 導入 SDN 技術後, 區域網路也可以提供 QoS 服務 C A B A. 導入 SDN Controller 與 SDN Switch 設備 B. SDN Controller 可自動分配頻寬給不同的使用者 C. 使用者可被分群, 來提供不同等級的 QoS 服務 68

69 SDN Controller 控制 SDN Switch 來管制 經過 Switch 的所有網路連線所能使用 的頻寬量 69

70 頻寬使用量經過管制後, 使用者端的資 料接收量就會呈現穩定的情況 頻寬保證 頻寬保證 頻寬分享 頻寬保證 頻寬分享 頻寬分享 頻寬分享 頻寬競爭 頻寬分享 頻寬競爭 頻寬競爭 70

71 進階範例比較傳統網路 Port-based Operations 與 SDN 網路 Flow-based Operations 之不同 ( 包含 Firewall 與 NFV +SDN SFC, Port-based Mirror 與 Flow-based Mirror, RSTP 與 SDN Path Optimization) 模擬設定與封包行為說明

72 Thank you for using EstiNet!

PC Link Mode. Terminate PC Link? Esc. [GO]/[Esc] - - [GO]/[Esc] 轉接座未放滿. Make auto accord with socket mounted? [GO]/[Esc] Copy to SSD E0000

PC Link Mode. Terminate PC Link? Esc. [GO]/[Esc] - - [GO]/[Esc] 轉接座未放滿. Make auto accord with socket mounted? [GO]/[Esc] Copy to SSD E0000 Start SU-6808 EMMC Programmer V.0bd7 [ ]Link PC / [ ]Menu [ ] >.Select project.make new project.engineer mode.reset counter 5.Link to PC [ ] PC disconnected PC connected Select project SEM0G9C_A.prj Terminate

More information

港專單一登入系統 (SSO) 讓本校的同學, 全日制及兼職老師只要一個登入帳戶, 便可同時使用由本校提供的網上系統及服務, 包括 Blackboard 網上學習平台, 港專電郵服務, 圖書館電子資料庫及其他教學行政系統.

港專單一登入系統 (SSO) 讓本校的同學, 全日制及兼職老師只要一個登入帳戶, 便可同時使用由本校提供的網上系統及服務, 包括 Blackboard 網上學習平台, 港專電郵服務, 圖書館電子資料庫及其他教學行政系統. 港專單一登入系統 (SSO) 讓本校的同學, 全日制及兼職老師只要一個登入帳戶, 便可同時使用由本校提供的網上系統及服務, 包括 Blackboard 網上學習平台, 港專電郵服務, 圖書館電子資料庫及其他教學行政系統. 港專單一登入網站網址 http://portal.hkct.edu.hk (HKCT 之教職員, 學生 ) http://portal.ctihe.edu.hk (CTIHE 之教職員,

More information

Frame Relay 訊框中繼 FRSW S0/0 S0/1

Frame Relay 訊框中繼 FRSW S0/0 S0/1 Frame Relay 訊框中繼 將路由器設定為訊框中繼交換器以進行 frame relay 實驗 : 首先練習設定兩個埠的 frame relay switch FRSW S0/0 S0/1 介面 S0/0 介面 S0/1 102 201 DLI 102 DLI 201 Router(config)# hostname FRSW FRSW(config)# frame-relay switching

More information

InTANK ir2771-s3 ir2772-s3. User Manual

InTANK ir2771-s3 ir2772-s3. User Manual InTANK ir2771-s3 ir2772-s3 User Manual » InTANK...1» InTANK ir2771-s3 & ir2772-s3 產品使用說明... 10 V1.1 Introduction Thank you for purchasing RAIDON products. This manual will introduce the InTANK ir2771-s3

More information

Preamble Ethernet packet Data FCS

Preamble Ethernet packet Data FCS Preamble Ethernet. packet Data FCS Destination Address Source Address EtherType Data ::: Preamble. bytes. Destination Address. bytes. The address(es) are specified for a unicast, multicast (subgroup),

More information

The transformation relationship between defense enterprise architecture and C4ISR system architecture

The transformation relationship between defense enterprise architecture and C4ISR system architecture The transformation relationship between defense enterprise architecture and C4ISR system architecture Dr. Meng-chyi Harn 報告人 : 韓孟麒博士德明財經科技大學資訊科技系 C4ISR 研究中心 Introducing Takming Outline Introduction Fundamental

More information

Version Control with Subversion

Version Control with Subversion Version Control with Subversion 指導教授郭忠義 邱茂森 95598051 1 Table of contents (1) Basic concepts of subversion (1)What is Subversion (2)Version Control System (3)Branching and tagging (4) Repository and Working

More information

Multimedia Service Support and Session Management 鍾國麟

Multimedia Service Support and Session Management 鍾國麟 Multimedia Service Support and Session Management 鍾國麟 2003-9-31 1 1 Agenda Introduction What is Session? Definition Functions Why need Session Management 2G,Internet,3G SIP Basic Operation User Location

More information

SSL VPN User Manual (SSL VPN 連線使用手冊 )

SSL VPN User Manual (SSL VPN 連線使用手冊 ) SSL VPN User Manual (SSL VPN 連線使用手冊 ) 目錄 前言 (Preface) 1. ACMICPC 2018 VPN 連線說明 -- Pulse Secure for Windows ( 中文版 ):... 2 2. ACMICPC 2018 VPN 連線說明 -- Pulse Secure for Linux ( 中文版 )... 7 3. ACMICPC 2018

More information

微軟新一代私有雲服務. 利用 Windows Azure Pack 協助企業建構現代化的 IT 服務架構, 提升競爭力降低維運成本. Jason Chou Architect. Nov 7, 2013

微軟新一代私有雲服務. 利用 Windows Azure Pack 協助企業建構現代化的 IT 服務架構, 提升競爭力降低維運成本. Jason Chou Architect. Nov 7, 2013 微軟新一代私有雲服務 利用 Windows Azure Pack 協助企業建構現代化的 IT 服務架構, 提升競爭力降低維運成本 Jason Chou Architect Nov 7, 2013 Agenda Cloud OS Vision Windows Server 2012 R2 New Features Windows Azure Pack Overview Success Case High-performance

More information

微軟商務用 Skype 雲端視訊會議及與所需頻寬介紹

微軟商務用 Skype 雲端視訊會議及與所需頻寬介紹 微軟商務用 Skype 雲端視訊會議及與所需頻寬介紹 傳統視訊會議 : 視訊會議解決方案 以硬體設備為主, 內建專屬視訊會議軟體, 要增加連線數量就必須加購昂貴的 MCU Server, 整套設備的價格多在數百萬之譜 軟體式視訊會議 : 在現有的基礎設備上, 強化整合通訊功能 (UC), 再結合視訊會議功能 (VC, Video Conference), 對於公司的網路系統或是通訊系統做更有效率的運用

More information

UAK1-C01 USB Interface Data Encryption Lock USB 資料加密鎖. Specifications for Approval

UAK1-C01 USB Interface Data Encryption Lock USB 資料加密鎖. Specifications for Approval Product Definition C-MING Product Semi-finished Product OEM/ODM Product Component USB Interface Data Encryption Lock USB 資料加密鎖 Specifications for Approval Approval Manager Issued By Revision History Revision

More information

Figure 1 Microsoft Visio

Figure 1 Microsoft Visio Pattern-Oriented Software Design (Fall 2013) Homework #1 (Due: 09/25/2013) 1. Introduction Entity relation (ER) diagrams are graphical representations of data models of relation databases. In the Unified

More information

無線寬頻的演進與數位匯流的大未來 台灣大哥大股份有限公司技術群阮得晉副總經理

無線寬頻的演進與數位匯流的大未來 台灣大哥大股份有限公司技術群阮得晉副總經理 無線寬頻的演進與數位匯流的大未來 台灣大哥大股份有限公司技術群阮得晉副總經理 Taiwan Mobile Co. Ltd 2 Global Mobile Broadband Market Example: AT&T AT&T 50x Mobile Data Traffic Increase in Past 3 Years (,000) 5,000 AT&T Mobile Data Traffic Growth,

More information

2009 OB Workshop: Structural Equation Modeling. Changya Hu, Ph.D. NCCU 2009/07/ /07/03

2009 OB Workshop: Structural Equation Modeling. Changya Hu, Ph.D. NCCU 2009/07/ /07/03 Amos Introduction 2009 OB Workshop: Structural Equation Modeling Changya Hu, Ph.D. NCCU 2009/07/02- 2 Contents Amos Basic Functions Observed Variable Path Analysis Confirmatory Factor Analysis Full Model

More information

一般來說, 安裝 Ubuntu 到 USB 上, 不外乎兩種方式 : 1) 將電腦上的硬碟排線先予以排除, 將 USB 隨身碟插入主機, 以一般光碟安裝方式, 將 Ubuntu 安裝到 USB

一般來說, 安裝 Ubuntu 到 USB 上, 不外乎兩種方式 : 1) 將電腦上的硬碟排線先予以排除, 將 USB 隨身碟插入主機, 以一般光碟安裝方式, 將 Ubuntu 安裝到 USB Ubuntu 是新一代的 Linux 作業系統, 最重要的是, 它完全免費, 不光是作業系統, 連用軟體都不必錢 為什麼要裝在 USB 隨身碟上? 因為, 你可以把所有的軟體帶著走, 不必在每一台電腦上重新來一次, 不必每一套軟體裝在每一台電腦上都要再一次合法授權 以下安裝方式寫的是安裝完整的 Ubuntu- 企業雲端版本 V. 11.10 的安裝過程, 若是要安裝 Desktop 版本, 由於牽涉到

More information

CLAD 考前準備 與 LabVIEW 小技巧

CLAD 考前準備 與 LabVIEW 小技巧 CLAD 考前準備 與 LabVIEW 小技巧 NI 技術行銷工程師 柯璟銘 (Jimmy Ko) jimmy.ko@ni.com LabVIEW 認證 Certified LabVIEW Associate Developer (LabVIEW 基礎認證 ) Certified LabVIEW Associate Developer LabVIEW 全球認證 40 題 (37 題單選,3 題複選

More information

Java 程式設計基礎班 (7) 莊坤達台大電信所網路資料庫研究室. Java I/O. Class 7 1. Class 7 2

Java 程式設計基礎班 (7) 莊坤達台大電信所網路資料庫研究室. Java I/O.   Class 7 1. Class 7 2 Java 程式設計基礎班 (7) 莊坤達台大電信所網路資料庫研究室 Email: doug@arbor.ee.ntu.edu.tw Class 7 1 回顧 Java I/O Class 7 2 Java Data Structure 動態資料結構 Grow and shrink at execution time Several types Linked lists Stacks Queues Binary

More information

桌上電腦及筆記本電腦安裝 Acrobat Reader 應用程式

桌上電腦及筆記本電腦安裝 Acrobat Reader 應用程式 On a desktop or notebook computer Installing Acrobat Reader to read the course materials The Course Guide, study units and other course materials are provided in PDF format, but to read them you need a

More information

Citrix CloudGateway. aggregate control. all apps and data to any device, anywhere

Citrix CloudGateway. aggregate control. all apps and data to any device, anywhere Citrix CloudGateway aggregate control all apps and data to any device, anywhere Agenda 1. What s Cloud Gateway? 2. Cloud Gateway Overview 3. How it works? What s Cloud Gateway? It s all about the apps

More information

全面強化電路設計與模擬驗證. Addi Lin / Graser 2 / Sep / 2016

全面強化電路設計與模擬驗證. Addi Lin / Graser 2 / Sep / 2016 全面強化電路設計與模擬驗證 Addi Lin / Graser 2 / Sep / 2016 Agenda OrCAD Design Solution OrCAD Capture 功能應用 OrCAD Capture CIS 介紹 OrCAD PSpice 模擬與驗證 OrCAD Design Solution Powerful and Widely Used Design Solution Front-to-Back

More information

購票流程說明 How To purchase The Ticket?

購票流程說明 How To purchase The Ticket? 購票流程說明 How To purchase The Ticket? 步驟 1: 點選 登入 Click 登入 Login (You have to login before purchasing.) 步驟 2: 若已是會員請填寫會員帳號 密碼, 點選 登入 若非會員請點選 註冊 If you are the member of PB+, Please login. If not, please register.

More information

報告人 / 主持人 : 林寶樹 Colleges of Computer Science & ECE National Chiao Tung University

報告人 / 主持人 : 林寶樹 Colleges of Computer Science & ECE National Chiao Tung University 行動寬頻尖端技術跨校教學聯盟 - 行動寬頻網路與應用 MiIoT ( Mobile intelligent Internet of Things) 報告人 / 主持人 : 林寶樹 Colleges of Computer Science & ECE National Chiao Tung University Aug 14, 2015 課程簡介 課程綱要 實作平台評估 2 背景說明 目前雲端與行動寬頻緊密結合,

More information

Java 程式設計基礎班 (7) 劉根豪台大電機所網路資料庫研究室. Java I/O. Class 7 1. Class 7

Java 程式設計基礎班 (7) 劉根豪台大電機所網路資料庫研究室. Java I/O.   Class 7 1. Class 7 Java 程式設計基礎班 (7) 劉根豪台大電機所網路資料庫研究室 Email: kenliu@arbor.ee.ntu.edu.tw 1 回顧 Java I/O 2 1 Java Data Structure 動態資料結構 執行的時候可以動態變大或縮小 類型 Linked lists Stacks Queues Binary trees 3 自我參考類別 (self-referential classes)

More information

場次 : C3. 公司名稱 : Radware. 主題 : ADC & Security for SDDC. 主講人 : Sam Lin ( 職稱 ) 總經理

場次 : C3. 公司名稱 : Radware. 主題 : ADC & Security for SDDC. 主講人 : Sam Lin ( 職稱 ) 總經理 場次 : C3 公司名稱 : Radware 主題 : ADC & Security for SDDC 主講人 : Sam Lin ( 職稱 ) 總經理 L4-L7 ADC (appliance or NFV) and Security service (appliance or NFV ) for (Software Define) Data Center Sam Lin Radware Taiwan

More information

InTANK ir2622 User Manual

InTANK ir2622 User Manual InTANK ir2622 User Manual » InTANK...1» InTANK ir2622 產品使用說明... 12 V1.2 » InTANK Introduction Thank you for purchasing RAIDON products. This manual will introduce the InTANK ir2622 Series. Before using

More information

虛擬機 - 惡意程式攻防的新戰場. 講師簡介王大寶, 小時候大家叫他王小寶, 長大後就稱王大寶, 目前隸屬一神祕單位. 雖然佯稱興趣在看書與聽音樂, 但是其實晚上都在打 Game. 長期於系統最底層打滾, 熟悉 ASM,C/C++,

虛擬機 - 惡意程式攻防的新戰場. 講師簡介王大寶, 小時候大家叫他王小寶, 長大後就稱王大寶, 目前隸屬一神祕單位. 雖然佯稱興趣在看書與聽音樂, 但是其實晚上都在打 Game. 長期於系統最底層打滾, 熟悉 ASM,C/C++, 王大寶, PK 虛擬機 - 惡意程式攻防的新戰場 講師簡介王大寶, 小時候大家叫他王小寶, 長大後就稱王大寶, 目前隸屬一神祕單位. 雖然佯稱興趣在看書與聽音樂, 但是其實晚上都在打 Game. 長期於系統最底層打滾, 熟悉 ASM,C/C++, 對於資安毫無任何興趣, 也無經驗, 純粹是被某壞人騙上台, 可以說是不可多得的素人講師!! 議程大綱 : 現今的 CPU 都支援虛擬化專用指令集, 讓 VM

More information

Mid-term EXAM. 11/14/2009

Mid-term EXAM. 11/14/2009 Mid-term EXAM. 11/14/2009 1. (15%) Data Compression a) Encode the following characters using Huffman coding with the given frequencies: A(12), B(8), C(9), D(20), E(31), F(14), G(8) (-1 point if theree

More information

InTANK ir2623-s3 User Manual

InTANK ir2623-s3 User Manual InTANK ir2623-s3 User Manual » InTANK...1» InTANK ir2623-s3 產品使用說明...12 V1.0 » InTANK Introduction Thank you for purchasing RAIDON products. This manual will introduce the IR2623-S3 Series. Before using

More information

Chapter 4 (Part IV) The Processor: Datapath and Control (Parallelism and ILP)

Chapter 4 (Part IV) The Processor: Datapath and Control (Parallelism and ILP) Chapter 4 (Part IV) The Processor: Datapath and Control (Parallelism and ILP) 陳瑞奇 (J.C. Chen) 亞洲大學資訊工程學系 Adapted from class notes by Prof. M.J. Irwin, PSU and Prof. D. Patterson, UCB 4.10 Instruction-Level

More information

步驟 1: 首頁以 facebook 或 google 帳號登入, 並點選節目 Step 1:Log in with your facebook/google account, then click the show banner.

步驟 1: 首頁以 facebook 或 google 帳號登入, 並點選節目 Step 1:Log in with your facebook/google account, then click the show banner. 步驟 1: 首頁以 facebook 或 google 帳號登入, 並點選節目 Step 1:Log in with your facebook/google account, then click the show banner. 步驟 2: 填寫會員資料 Step 2:Fill out the membership form. Name ID No. Male/female Foreigner

More information

Oxford isolution. 下載及安裝指南 Download and Installation Guide

Oxford isolution. 下載及安裝指南 Download and Installation Guide Oxford isolution 下載及安裝指南 Download and Installation Guide 系統要求 個人電腦 Microsoft Windows 10 (Mobile 除外 ) Microsoft Windows 8 (RT 除外 ) 或 Microsoft Windows 7 (SP1 或更新版本 ) ( 網上下載 : http://eresources.oupchina.com.hk/oxfordisolution/download/index.html)

More information

JAVA Programming Language Homework V: Overall Review

JAVA Programming Language Homework V: Overall Review JAVA Programming Language Homework V: Overall Review ID: Name: 1. Given the following Java code: [5 points] 1. public class SimpleCalc { 2. public int value; 3. public void calculate(){ value = value +

More information

Chapter 7. Digital Arithmetic and Arithmetic Circuits. Signed/Unsigned Binary Numbers

Chapter 7. Digital Arithmetic and Arithmetic Circuits. Signed/Unsigned Binary Numbers Chapter 7 Digital Arithmetic and Arithmetic Circuits Signed/Unsigned Binary Numbers Signed Binary Number: A binary number of fixed length whose sign (+/ ) is represented by one bit (usually MSB) and its

More information

English G H. Package Contents. Hardware Requirements. Technical Specifications. Device Overview. MSI DS502 GAMING HEADSET User Guide

English G H. Package Contents. Hardware Requirements. Technical Specifications. Device Overview. MSI DS502 GAMING HEADSET User Guide Package Contents MSI DS502 GAMING HEADSET User Guide Hardware Requirements PC with USB port Windows 8.1/8/7/XP English Technical Specifications Headphones * Drivers : Ø40mm * Sensitivity (S.P.L) : 105

More information

The notice regarding Participation Ways of our global distributor video conference on Feb. 5.

The notice regarding Participation Ways of our global distributor video conference on Feb. 5. The notice regarding Participation Ways of our global distributor video conference on Feb. 5. On Feb.5, 2010 Los Angeles time, between 5:00 PM - 7:00 PM, we will convene an important global distributor

More information

EZCast Wire User s Manual

EZCast Wire User s Manual EZCast Wire User s Manual Rev. 2.01 Introduction Thanks for choosing EZCast! The EZCast Wire contains the cutting-edge EZCast technology, and firmware upgrade will be provided accordingly in order to compatible

More information

SOHOTANK PD3500+ User Manual

SOHOTANK PD3500+ User Manual SOHOTANK PD3500+ User Manual » SOHORAID SR2 Series User Manual.3» SOHORAID SR2 系列產品使 用說明.. 14 2 Introduction Thank you for purchasing STARDOM products. This manual will introduce the SOHOTANK PD3500+ Series.

More information

EZCast Docking Station

EZCast Docking Station EZCast Docking Station Quick Start Guide Rev. 2.00 Introduction Thanks for choosing EZCast! The EZCast Docking Station contains the cutting-edge EZCast technology, and firmware upgrade will be provided

More information

Quick Installation Guide for Connectivity Adapter Cable CA-42

Quick Installation Guide for Connectivity Adapter Cable CA-42 9235663_CA42_1_en.fm Page 1 Monday, September 13, 2004 11:26 AM Quick Installation Guide for Connectivity Adapter Cable CA-42 9235645 Issue 1 Nokia, Nokia Connecting People and Pop-Port are registered

More information

Increase Productivity and Quality by New Layout Flow

Increase Productivity and Quality by New Layout Flow Increase Productivity and Quality by New Layout Flow Jonathan / Graser 16 / Oct / 2015 Design Process Introduction CONSTRAINTS PLACEMENT FANOUT BREAKOUT ROUTING DELAY (ATE) NET-GROUP Topology & Delay Physical

More information

軟體定義網路簡介與發展趨勢. Software Defined Network Briefs & Trends ITRI/ICL 楊明曉. Copyright 2015 ITRI 工業技術研究院

軟體定義網路簡介與發展趨勢. Software Defined Network Briefs & Trends ITRI/ICL 楊明曉. Copyright 2015 ITRI 工業技術研究院 軟體定義網路簡介與發展趨勢 Software Defined Network Briefs & Trends ITRI/ICL 楊明曉 Outlines 網路問題 &SDN 緣起 SDN & Openflow 簡介 NFV with SDN Reference Outlines 網路問題 &SDN 緣起 SDN & Openflow 簡介 NFV with SDN Reference Modern

More information

MH-3621-U3 Clone Dual SATA HDD Docking System

MH-3621-U3 Clone Dual SATA HDD Docking System MH-3621-U3 Clone CONTENTS ABOUT THE DOCKING SYSTEM... 2 HARD DRIVE INSTALLATION GUIDE... 5 CLONE OPERATION GUIDE... 6 NOTE... 8 LIMITED WARRANTY... 10 1 Thank you for purchasing MH-3621-U3 from archgon.

More information

RENESAS BLE 實作課程 Jack Chen Victron Technology CO., LTD 2015 Renesas Electronics Corporation. All rights reserved.

RENESAS BLE 實作課程 Jack Chen Victron Technology CO., LTD 2015 Renesas Electronics Corporation. All rights reserved. RENESAS BLE 實作課程 2016-01-21 Jack Chen Jack.chen@victron.com.tw Victron Technology CO., LTD AGENDA CS+ & Renesas Flash Programmer 安裝 3 Renesas Flash Programmer 燒錄介紹 6 CS+ 介面介紹 11 CS+ 開啟 Project & 使用教學 14

More information

EZCast Wire. User s Manual. Rev. 2.00

EZCast Wire. User s Manual. Rev. 2.00 EZCast Wire User s Manual Rev. 2.00 Introduction Thanks for choosing EZCast! The EZCast Wire contains the cutting-edge EZCast technology, and firmware upgrade will be provided accordingly in order to compatible

More information

Port GCC to a new architecture Case study: nds32

Port GCC to a new architecture Case study: nds32 HelloGCC 2013 Port GCC to a new architecture Case study: nds32 2013.11.16 Chung-Ju Wu ( 吳中如 ) www.andestech.com WWW.ANDESTECH.COM Overview of Andes Technology Corporate Highlights Founded in 2005 in Hsinchu

More information

購票流程說明 How To purchase The Ticket?

購票流程說明 How To purchase The Ticket? 購票流程說明 How To purchase The Ticket? 步驟 1: 已是會員請點選 登入, 選擇 2016 WTA 臺灣公開賽 Taiwan Open tickets Step1:If You are the member, please Click 登入 Click to the column: 2016 WTA 臺灣公開賽 Taiwan Open tickets Click 登入

More information

Lotusphere Comes to You 輕鬆打造 Web 2.0 入口網站 IBM Corporation

Lotusphere Comes to You 輕鬆打造 Web 2.0 入口網站 IBM Corporation 輕鬆打造 Web 2.0 入口網站 2007 IBM Corporation 議程 Web 2.0 新特性一覽 Web 2.0 入口網站主題開發 用戶端聚合技術 PortalWeb2 主題 開發 AJAX portlets 程式 總結 JSR 286 及 WSRP 2.0 對 AJAX 的支援 AJAX 代理 用戶端 portlet 編程模型 Web 2.0 特性一覽 WP 6.1 提供的 Web

More information

EdConnect and EdDATA

EdConnect and EdDATA www.hkedcity.net Tryout Programme of Standardised Data Format for e-textbook and e-learning Platform EdConnect and EdDATA 5 December 2018 Agenda Introduction and background Try-out Programme Q&A 電子課本統一數據格式

More information

VMware vsphere. 零壹科技 Josh.wang VMware Inc. All rights reserved

VMware vsphere. 零壹科技 Josh.wang VMware Inc. All rights reserved VMware vsphere 零壹科技 Josh.wang 2010 VMware Inc. All rights reserved Agenda vsphere Welcome 01. Virtualization 09. High Availability 02. ESXi 10. Fault Tolerance 03. vcenter 11. DRS / DPM 04. vsphere Client

More information

私有雲公有雲的聯合出擊 領先的運算, 儲存與網路虛擬化技術 靈活的計費模式與經濟性 支援廣大的商業應用場景 涵蓋各類型雲服務 類標準的企業資料中心架構 全球規模與快速部署. 聯合設計的解決方案可為客戶提供最佳的 VMware 和 AWS

私有雲公有雲的聯合出擊 領先的運算, 儲存與網路虛擬化技術 靈活的計費模式與經濟性 支援廣大的商業應用場景 涵蓋各類型雲服務 類標準的企業資料中心架構 全球規模與快速部署. 聯合設計的解決方案可為客戶提供最佳的 VMware 和 AWS 私有雲公有雲的聯合出擊 領先的運算, 儲存與網路虛擬化技術 支援廣大的商業應用場景 類標準的企業資料中心架構 靈活的計費模式與經濟性 涵蓋各類型雲服務 全球規模與快速部署 聯合設計的解決方案可為客戶提供最佳的 VMware 和 AWS VMware Cloud on AWS 使用場景 A B C D 雲端遷移資料中心延伸災難備援次世代應用程式 Consolidate Migrate Maintain

More information

Chapter 3. Enterprise Campus Network Design

Chapter 3. Enterprise Campus Network Design Chapter 3 Enterprise Campus Network Design 1 Overview The network foundation hosting these technologies for an emerging enterprise should be efficient, highly available, scalable, and manageable. This

More information

Quick Installation Guide

Quick Installation Guide ECW5211-L Enterprise Access Point Copyright Notice This document is protected by USA copyright laws and other laws and is the property of Edgecore Networks Corporation. You may not copy, reproduce, distribute,

More information

黃河凱. Kaiser Huang 巨匠電腦北區 / 新竹認證中心認證講師國立新竹教育大學數位學習科技研究所在職生微軟原廠認證講師 MCT

黃河凱. Kaiser Huang 巨匠電腦北區 / 新竹認證中心認證講師國立新竹教育大學數位學習科技研究所在職生微軟原廠認證講師 MCT 黃河凱 Kaiser Huang 巨匠電腦北區 / 新竹認證中心認證講師國立新竹教育大學數位學習科技研究所在職生微軟原廠認證講師 MCT 2007-2014 微軟嵌入式系統 TTT 教育認證講師 kai168@gmail.com. MCT, MCITP-SA/EA, MCTS-WS2008/CE6/XPe, LPIC 第一堂 : 系統安裝與升級設定的簡介 全新式安裝的步驟與方法 從 DVD 或 USB

More information

Chapter 4. Channel Coding and Error Control

Chapter 4. Channel Coding and Error Control Chapter 4 Channel Coding and Error Control Adapted from class notes by Prof. Leszek T. Lilien, CS, Western Michigan University and Prof. Dharma P. Agrawal & Qing-An Zeng, University of Cincinnati Most

More information

Ubiquitous Computing Using SIP B 朱文藝 B 周俊男 B 王雋伯

Ubiquitous Computing Using SIP B 朱文藝 B 周俊男 B 王雋伯 Ubiquitous Computing Using SIP B91902039 朱文藝 B91902069 周俊男 B91902090 王雋伯 Outline Ubiquitous Computing Using SIP 1. Introduction 2. Related Work 3. System Architecture 4. Service Example 1. Introduction

More information

WriteAhead 遨遊雲端暨 行動學習應 用 研討會 雲端時代的資訊教育與語 言學習 介紹互動式寫作環境 張俊盛 清華 大學資訊 工程系及研究所 2015 年 4 月 21 日 ( 二 ) 上午 10:00 ~ 12:30 台北市 立 大同 高中 行政 大學 5 樓階梯教室

WriteAhead 遨遊雲端暨 行動學習應 用 研討會 雲端時代的資訊教育與語 言學習 介紹互動式寫作環境 張俊盛 清華 大學資訊 工程系及研究所 2015 年 4 月 21 日 ( 二 ) 上午 10:00 ~ 12:30 台北市 立 大同 高中 行政 大學 5 樓階梯教室 遨遊雲端暨 行動學習應 用 研討會 雲端時代的資訊教育與語 言學習 介紹互動式寫作環境 WriteAhead 張俊盛 清華 大學資訊 工程系及研究所 2015 年 4 月 21 日 ( 二 ) 上午 10:00 ~ 12:30 台北市 立 大同 高中 行政 大學 5 樓階梯教室 高中資訊教育 培養現代公 民的資訊素養 並不是如何使 用 生產 力軟體 也不只是寫程式 了解現在商業軟體並 非唯 一的選擇,

More information

第九章結構化查詢語言 SQL - 資料定義語言 (DDL) 資料庫系統設計理論李紹綸著

第九章結構化查詢語言 SQL - 資料定義語言 (DDL) 資料庫系統設計理論李紹綸著 第九章結構化查詢語言 SQL - 資料定義語言 (DDL) 資料庫系統設計理論李紹綸著 SQL 的資料定義語言 本章內容 建立資料表 修改資料表 刪除資料表 FOREIGN KEY 外鍵條件約束與資料表關聯性 2 資料定義語言可分為下列三種 : SQL 的資料定義語言 CREATE TABLE 指令 : 用來建立一個基底關聯表, 和設定關聯表相關的完整性限制 CREATE VIEW 指令 : 用來建立一個視界,

More information

GPIB 儀器控制之概念及軟硬體介紹 研華股份有限公司 工業自動化事業群

GPIB 儀器控制之概念及軟硬體介紹 研華股份有限公司 工業自動化事業群 GPIB 儀器控制之概念及軟硬體介紹 研華股份有限公司 工業自動化事業群 Outline 1. Introduction to Adavntech GPIB Card 2. Introduction to IEEE 488.1 3. Introduction to IEEE 488.2 & SCPI GPIB History General Purpose Interface Bus 由 HP 於

More information

Chapter 7. Signed/Unsigned Binary Numbers. Digital Arithmetic and Arithmetic Circuits. Unsigned Binary Arithmetic. Basic Rules (Unsigned)

Chapter 7. Signed/Unsigned Binary Numbers. Digital Arithmetic and Arithmetic Circuits. Unsigned Binary Arithmetic. Basic Rules (Unsigned) Chapter 7 Digital rithmetic and rithmetic Circuits igned/unsigned inary Numbers igned inary Number: binary number of fixed length whose sign (+/ ) is represented by one bit (usually M) and its magnitude

More information

Quick Installation Guide

Quick Installation Guide WiPG-1500 Quick Installation Guide Version: 9.0 Date: Jul 11, 2013 1 1. Package Contents WiPG-1500 device Plug&Show USB token Power Adapter (DC +5V, 2.5A) Wi-Fi Antenna x 2 Wall-mount Kit (screw x4, bracket

More information

國立交通大學 資訊科學與工程研究所 碩士論文 內核的一對多串流轉送技術 研究生 : 洪家鋒 指導教授 : 林盈達教授. In-kernel Relay for One-to-Many Streaming 中華民國九十九年六月

國立交通大學 資訊科學與工程研究所 碩士論文 內核的一對多串流轉送技術 研究生 : 洪家鋒 指導教授 : 林盈達教授. In-kernel Relay for One-to-Many Streaming 中華民國九十九年六月 國立交通大學 資訊科學與工程研究所 碩士論文 內核的一對多串流轉送技術 In-kernel Relay for One-to-Many Streaming 研究生 : 洪家鋒 指導教授 : 林盈達教授 中華民國九十九年六月 內核的一對多串流轉送技術 In-kernel Relay for One-to-Many Streaming 研究生 : 洪家鋒 指導教授 : 林盈達 Student:Chia-Feng

More information

多元化資料中心 的保護策略 技術顧問 陳力維

多元化資料中心 的保護策略 技術顧問 陳力維 多元化資料中心 的保護策略 技術顧問 陳力維 現代化的資料保護架構 使用者自助服務 任何儲存設備 影響低 多種還原點選擇 (RPO) Application Server 完整全面的雲端整合 Network Disk Target 容易操作與深入各層的報表能力 管理快照與複製能力 Primary Storage 快速 可靠的還原 (RTO) 完整的磁帶 & 複製管理 單一整合的解決方案 企業級的擴充性

More information

Chapter 4. Enterprise and Campus Network Design

Chapter 4. Enterprise and Campus Network Design Chapter 4 Enterprise and Campus Network Design 1 Overview An emerging enterprise should be efficient highly available scalable manageable It includes descriptions of various topologies, routing protocols,

More information

MP3 Codec Design 吳炳飛教授. Chaotic Systems & Signal Processing Lab, CSSP Lab. CSSP Lab:

MP3 Codec Design 吳炳飛教授. Chaotic Systems & Signal Processing Lab, CSSP Lab. CSSP Lab: MP3 Codec Design 吳炳飛教授 國立交通大學 電機與控制工程學系 CSSP Lab: http://cssp.cn.nctu.edu.tw Chaotic Systems & Signal Processing Lab, CSSP Lab July 5, 2004 Chapter 1 Introduction to MP3 Chapter 1: Introduction to MP3

More information

BTC, EMPREX Wireless Keybaord +Mouse + USB dongle. 6309URF III Quick Installation Guide

BTC, EMPREX Wireless Keybaord +Mouse + USB dongle. 6309URF III Quick Installation Guide BTC, EMPREX 6309URF III Quick Installation Guide Hardware Installation 1. Plug the dongle receiver connector into your available USB port on PC. 2. Make sure the batteries of the keyboard and mouse are

More information

SPI 功能使用方法 Application Note

SPI 功能使用方法 Application Note 1 適用產品 :SM59R16A2 / SM59R08A2 2 SPI 使用概述 : SPI 通信使用 4 個引腳, 分別為 SPI_: 當 master 時資料輸出 ; 當 slave 時資料輸入 SPI_: 當 master 時資料輸入 ; 當 slave 時資料輸出 SPI_SCK: SPI 的時脈信號由 master 主控產生 ; 資料 ( 輸出及輸入 ) 和時脈同步 SPI_SS: 此引腳功能唯有當作

More information

網路安全與頻寬控制閘道器之實作與研究. Management Gateways

網路安全與頻寬控制閘道器之實作與研究. Management Gateways 行政院國家科學委員會補助專題研究計畫成果報告 網路安全與頻寬控制閘道器之實作與研究 Implementation and Research of Security and Bandwidth Management Gateways 計畫類別 : 個別型計畫 整合型計畫 計畫編號 :NSC 90-2213-E-009-161- 執行期間 : 2001 年 08 月 01 日至 2002 年 7 月 31

More information

游家德 Jade Freeman 群智信息 / 敦群數位資深架構顧問

游家德 Jade Freeman 群智信息 / 敦群數位資深架構顧問 游家德 Jade Freeman 群智信息 / 敦群數位資深架構顧問 搜尋對企業的需求方案關係 微軟全面性的搜尋方案及應用價值 Enterprise Search 的基本架構 Microsoft Search Solution 物件模型與客製開發 Microsoft Search Solution 應用與案例 Q&A 每人每天會花 10 分鐘在找企業所需文件, 且還可能找不到! 整合的資料大都雜亂無章,

More information

Lomographic Society Taiwan Institute of Creative Industry Design

Lomographic Society Taiwan Institute of Creative Industry Design Lomographic Society Taiwan Institute of Creative Industry Design On 2008.10.07 Allan, PA6971076 Contents 中文摘要 02 Short story of Lomographic Society 03 About Lomographic Society Taiwan 04 Lomo Spirit 06

More information

Operating manual. LawMate WN7911B-ZZ. WiFi Module V 01

Operating manual. LawMate WN7911B-ZZ. WiFi Module V 01 羅美國際有限公司 /LawMate International Co., Ltd. 台北市內湖區文湖街 60 巷 34 號 3 樓 /3F, No.34, Lane 60, Wenhu St., Taipei, Taiwan TEL:+886 2-8797-5728 / FAX:+886 2-8797-5727 Operating manual Operating manual LawMate WN7911B-ZZ

More information

A n d r o i d Ta b l e t P C

A n d r o i d Ta b l e t P C User Guide for LPT -200AR A n d r o i d Ta b l e t P C Table of Contents 1. Overviewing Product 2. H/W Spec. 3. Wi-Fi Output Power 4. Easy Setting Icons 5. Setting 1. Wi-Fi 2. Bluetooth 3. Airplane mode

More information

Opportunities and Challenges in DSRCbased Collaborative Safety Applications 財團法人資訊工業策進會新興智慧技術研究所 (ESTI) 周志勳. ESTI 研發主軸 - 多元車載服務

Opportunities and Challenges in DSRCbased Collaborative Safety Applications 財團法人資訊工業策進會新興智慧技術研究所 (ESTI) 周志勳. ESTI 研發主軸 - 多元車載服務 Opportunities and Challenges in DSRCbased Collaborative Safety Applications ( 協同式行車安全應用的機會與挑戰 ) 財團法人資訊工業策進會新興智慧技術研究所 (ESTI) 周志勳 chchou@iii.org.tw 1 ESTI 研發主軸 - 多元車載服務 即時動態導航交通路況預測先進收費系統多模導航系統需求處理車輛追蹤 警示與管理整合式商用車車隊管理

More information

Android + TIBBO + Socket 建國科技大學資管系 饒瑞佶

Android + TIBBO + Socket 建國科技大學資管系 饒瑞佶 Android + TIBBO + Socket 建國科技大學資管系 饒瑞佶 Socket Socket 開始前 TIBBO 需要設定 Socket on_sock_data_arrival() ' 接收外界來的 SOCKET 資訊 sub on_sock_data_arrival() Dim command_data as string ' 完整控制命令 command_data = "" ' 初始化控制命令

More information

Clonezilla 實務技術 孫振凱蔡育欽

Clonezilla 實務技術 孫振凱蔡育欽 Clonezilla 實務技術 孫振凱蔡育欽 http://drbl.nchc.org.tw, http://drbl.sourceforge.net http://clonezilla.nchc.org.tw, http://clonezilla.org.tw 國家高速網路與計算中心 National Center for High-Performance Computing (NCHC) Q2,

More information

Invitation to Computer Science 5 th Edition. Chapter 8 Information Security

Invitation to Computer Science 5 th Edition. Chapter 8 Information Security Invitation to Computer Science 5 th Edition Chapter 8 Information Security CIA Triad of Information Security Ensuring that data can be modified only by appropriate mechanisms Ensuring that data is protected

More information

外薦交換生線上申請系統操作說明 Instruction on Exchange Student Online Application System. [ 中文版 ] [English Version]

外薦交換生線上申請系統操作說明 Instruction on Exchange Student Online Application System. [ 中文版 ] [English Version] 外薦交換生線上申請系統操作說明 Instruction on Exchange Student Online Application System [ 中文版 ] [English Version] 線上申請流程說明 申請系統網址 : http://schwebap.nccu.edu.tw/zeweb/exgstdapply/ 1. 建立新帳號 : 請輸入姓名 生日 email 做為未來登入系統用

More information

EAP330. Enterprise Access Point

EAP330. Enterprise Access Point EAP330 Enterprise Access Point Quick Installation Guide Copyright Notice This document is protected by USA copyright laws and other laws. Besides, the document is the property of 4IPNET, INC. You may not

More information

Operation Function Locations. Operations. Wireless Microphone Wireless Receiving Features. Wireless Transmission Audio Function Operations

Operation Function Locations. Operations. Wireless Microphone Wireless Receiving Features. Wireless Transmission Audio Function Operations D Table of Contents Operation Function Locations Operations Wireless Microphone Wireless Receiving Features Wireless Transmission Audio Function Operations 1 2 3 3 Transmitter ID Code Setting 3 Host ID

More information

香港中文大學學生會計算機科學系會 圖書清單

香港中文大學學生會計算機科學系會 圖書清單 香港中文大學學生會計算機科學系會 圖書清單 100 Theory 120 CGI 140 Visual Basic 160 Other Programming Book 101 Program budgeting and benefit-cost analysis 102 Introduction to Algorithms 103 Introduction to Algorithms 104 Data

More information

Uniband Electronic Corp. 生活咫尺 : ZigBee 的趨勢及應用. ubec. A WSN Solution Provider 翟駿逸. Wireless Living, Boundless Life

Uniband Electronic Corp. 生活咫尺 : ZigBee 的趨勢及應用. ubec. A WSN Solution Provider 翟駿逸. Wireless Living, Boundless Life 生活咫尺 : ZigBee 的趨勢及應用 ubec A WSN Solution Provider 翟駿逸 1 WSN 之無線通訊技術比較 (I) Sensing, Control, Voice, Image Audio & Compressed Video Multi-channel Digital Video 1Km Building Region Coverage 100m 10m Home

More information

物聯網發展趨勢 黃能富教授國立清華大學特聘教授網路通訊國家型科技計畫 (NCP) 通訊軟體與平臺組召集人. IPv6 建置計畫應用分項召集人 March 28, 2012 網際網路趨勢研討會

物聯網發展趨勢 黃能富教授國立清華大學特聘教授網路通訊國家型科技計畫 (NCP) 通訊軟體與平臺組召集人. IPv6 建置計畫應用分項召集人   March 28, 2012 網際網路趨勢研討會 物聯網發展趨勢 黃能富教授國立清華大學特聘教授網路通訊國家型科技計畫 (NCP) 通訊軟體與平臺組召集人 IPv6 建置計畫應用分項召集人 E-mail: nfhuang@cs.nthu.edu.tw March 28, 2012 網際網路趨勢研討會 1 1 物聯網 : 下一個萬億產業? Forrester 預測, 到 2020 年, 物物互聯 的業務, 跟 人與人通信 的業務相比, 將達到 30:1.

More information

研華公司 H 營運成果與財務報告

研華公司 H 營運成果與財務報告 研華公司 2018 1H 營運成果與財務報告 2018 年 8 月 09 日綜合經營管理總經理陳清熙 Eric.chen@advantech.com.tw Safe Harbor Notice This presentation contains forward-looking statements and is subject to risks and uncertainties. Actual

More information

Clonezilla Live 實務與應用

Clonezilla Live 實務與應用 Clonezilla Live 實務與應用 孫振凱蔡育欽 http://drbl.nchc.org.tw, http://drbl.sourceforge.net http://clonezilla.nchc.org.tw, http://clonezilla.org.tw 國家高速網路與計算中心 National Center for High-Performance Computing (NCHC)

More information

ISILON DATA LAKE 運用 ISILON 輕鬆建構企業資料湖

ISILON DATA LAKE 運用 ISILON 輕鬆建構企業資料湖 ISILON DATA LAKE 運用 ISILON 輕鬆建構企業資料湖 EDGE TO CORE TO CLOUD EMC Isilon 資深技術顧問 Frances Chien 簡君芳 1 Isilon 企業資料湖 Consolidated unstructured data storage infrastructure Scale-out architecture to support rapid

More information

Information is EVERYTHING 微軟企業混和雲解決方案. November 24, Spenser Lin. Cloud Infra Solution Sales, Microsoft Taiwan

Information is EVERYTHING 微軟企業混和雲解決方案. November 24, Spenser Lin. Cloud Infra Solution Sales, Microsoft Taiwan Information is EVERYTHING 微軟企業混和雲解決方案 November 24, 2016 Spenser Lin Cloud Infra Solution Sales, Microsoft Taiwan Value to business Applications and services drive future IT business value Efficiency Innovation

More information

Oracle Database 11g Overview

Oracle Database 11g Overview Oracle Database 11g Overview Charlie 廖志華倍力資訊資深系統顧問 Great Year for Oracle Database Database Market Database for SAP 14.3% 48.6% 9% 3% 17% 4% 15.0% 22.0% 67% Oracle IBM Microsoft Other

More information

晶焱科技股份有限公司 Amazing Microelectronic Corp.

晶焱科技股份有限公司 Amazing Microelectronic Corp. 晶焱科技股份有限公司 Amazing Microelectronic Corp. ESD Leading Provider 公司簡介 2 公司沿革 AmazingIC Founded in Taiwan 1 Billion (pcs) shipment Amazing IPO in Taiwan 1.Touch down 10 Billion pcs 2.AVL Touch down 23 billion

More information

Johnson Lai. Technical Consultant E: Copyright Fortinet Inc. All rights reserved.

Johnson Lai. Technical Consultant E: Copyright Fortinet Inc. All rights reserved. IPv6 防護管理及控管機制 Johnson Lai Technical Consultant E: clai@fortinet.com Copyright Fortinet Inc. All rights reserved. IPV6 Now! 2 Internet and TCP/IP 1969 ARPANET begins 1981 IPv4 definition (RFC 791) 1983

More information

Chapter 7 Pointers ( 指標 )

Chapter 7 Pointers ( 指標 ) Chapter Pointers ( 指標 ) Outline.1 Introduction.2 Pointer Variable Definitions and Initialization.3 Pointer Operators.4 Calling Functions by Reference.5 Using the const Qualifier with Pointers.6 Bubble

More information

Understanding IO patterns of SSDs

Understanding IO patterns of SSDs 固态硬盘 I/O 特性测试 周大 众所周知, 固态硬盘是一种由闪存作为存储介质的数据库存储设备 由于闪存和磁盘之间物理特性的巨大差异, 现有的各种软件系统无法直接使用闪存芯片 为了提供对现有软件系统的支持, 往往在闪存之上添加一个闪存转换层来实现此目的 固态硬盘就是在闪存上附加了闪存转换层从而提供和磁盘相同的访问接口的存储设备 一方面, 闪存本身具有独特的访问特性 另外一方面, 闪存转换层内置大量的算法来实现闪存和磁盘访问接口之间的转换

More information

Medical Infomatics Introduction 林仲志博士

Medical Infomatics Introduction 林仲志博士 Medical Infomatics Introduction 林仲志博士 Medical Information MI can t and should not replace thought processes in human brain but should amplify the brain s capabilities The objective and scientifically based

More information

現代化資料中心必備資料隨處保護機制 首席技術顧問藍基能 GLOBAL SPONSORS

現代化資料中心必備資料隨處保護機制 首席技術顧問藍基能 GLOBAL SPONSORS 現代化資料中心必備資料隨處保護機制 首席技術顧問藍基能 GLOBAL SPONSORS 1 I/T 的二個世界 這是一個最好的年代 ; 也是最壞的年代 Traditional Apps IT On Premise Next Gen Apps Developers Cloud You Need Both for Trust and Agility 2 EMC 現代化資料中心的策略 PROTECTION

More information

What is a Better Program?

What is a Better Program? 軟體的特性 What is a Better Program? 軟體之所謂軟 因為沒有 硬性 不可變 不可挑戰的規則 好處 : 彈性很大, 山不轉路轉, 沒有標準答案, 正常運作就好 C++ Object Oriented Programming 壞處 : 很多小問題合在一起不斷放大, 到處藏污納垢, 沒有標準答案, 不知道到底對了沒有 解決方法 Pei-yih Ting Coding styles

More information

WIN Semiconductors. Wireless Information Networking 穩懋半導體 2014 年第四季法人說明會. p.0

WIN Semiconductors. Wireless Information Networking 穩懋半導體 2014 年第四季法人說明會. p.0 WIN Semiconductors Wireless Information Networking 穩懋半導體 2014 年第四季法人說明會 2015 年 3 月 p.0 免責聲明 本資料可能包含對於未來展望的表述 該類表述是基於對現況的 預期, 但同時受限於已知或未知風險或不確定性的影響 因此實 際結果將可能明顯不同於表述內容 除法令要求外, 公司並無義務因應新資訊的產生或未來事件的發生主動更新對未來展望的表述

More information

描述性資料採礦 Descriptive Data Mining

描述性資料採礦 Descriptive Data Mining 描述性資料採礦 Descriptive Data Mining 李御璽 (Yue-Shi Lee) 銘傳大學資訊工程學系 leeys@mail.mcu.edu.tw Agenda Cluster Analysis ( 集群分析 ) 找出資料間的內部結構 Association Rules ( 關聯規則 ) 找出那些事件常常一起出現 Sequence Clustering ( 時序群集 ) Clustering

More information

CloudFusion Installation Guide

CloudFusion Installation Guide CloudFusion Installation Guide Version 2.2.9 InfinitiesSoft Solutions Inc. www.infinitiessoft.com Contents 1. Software and Hardware Requirements 1.1 Operating System Requirements 1.2 Hardware Requirements

More information

微算機原理與實驗 Principle of Microcomputer(UEE 2301/1071 )

微算機原理與實驗 Principle of Microcomputer(UEE 2301/1071 ) 微算機原理與實驗 (UEE 2301/1071 ) Chap 6. MCS-51 Instruction sets 宋開泰 Office:EE709 Phone:5731865( 校內分機 :31865) E-mail:ktsong@mail.nctu.edu.tw URL:http://isci.cn.nctu.edu.tw 1 Lab#3 5 x 7 單色點矩陣 LED(Dot Matrix)

More information

打造新世代企業資料中心 Windows Server 2016 重裝登場. 馮立偉 Hybrid Cloud Lead Microsoft Taiwan

打造新世代企業資料中心 Windows Server 2016 重裝登場. 馮立偉 Hybrid Cloud Lead Microsoft Taiwan 打造新世代企業資料中心 Windows Server 2016 重裝登場 馮立偉 Hybrid Cloud Lead Microsoft Taiwan www.20yearsofwindowsserver.com Windows Server 2016 現今攻擊時程 第一個主機被滲透 網域管理者帳號被破解 攻擊者被發現 24 48 小時 超過 200 天 ( 每個產業不同 ) 攻擊目標及方向

More information