Microsoft PowerPoint - net2.

Size: px
Start display at page:

Download "Microsoft PowerPoint - net2."

Transcription

1 2 장 Application Layer 장 Application Layer 2.1 네트워크어플리케에션의원리 2.2 Web and HTTP 2.3 FTP 2.4 전자우편 2.5 DNS 2.6 P2P 파일공유 2-2

2 2 장 Application Layer 이장의목적 Network application의개념과구현 Transport layer 서비스모델 클라이언트 _ 서버모델의예 Peer-Peer 모델 많이사용되는 application 관련 protocol에대해서학습한다. HTTP FTP SMTP/POP3/IMAP DNS Network application 프로그래밍방법 Socket API 2-3 Some network app Multi-user network game Web Streaming stored video clips Instanct messaging Internet TEL. Remote login Real-time video conference P2P file sharing Massive parallel computing 2-4

3 Creating a network app 프로그램의실행 서로다른종단시스템간에실행 네트워크위에서실행 예. Web: Web 서버와 browser 간에통신 Network core는 Network 프로그램에대해서투명하다. Network core의장치와 application 개발과는무관하다. 종단시스템으로소프트웨어를제한한다는기본설계는인터넷 application의빠른개발과전개를쉽게해준다 장 Application Layer 2.1 네트워크어플리케에션의원리 2.2 Web and HTTP 2.3 FTP 2.4 전자우편 2.5 DNS 2.6 P2P 파일공유 2.7 Socket programming with TCP 2.8 Socket programming with UDP 2.9 Web server 구축 2-6

4 Network application 의구조 Client-Server Peer-to-peer (P2P) Hybrid of client-server and P2P 2-7 Client-server 구조 Server 항상켜져있다. 고정 IP를갖는다. 다량의 client로부터요청을처리하기위해 server farm를구성하기도한다. ( 가상서버 ) Client Server에서비스를요청한다. 필요에따라서버에접속한다. 동적인 IP를사용하는경우도있다. Client간에직접통신하지않는다. 2-8

5 순수 P2P 구조 항상켜있는서버가존재하지않는다. 임의의호스트쌍이직접통신한다. Peer는필요에따라간헐적으로접속하며 IP또한바뀔수있다. 예 : 그누텔라 (Gnutella) 높은분배와분산특성 관리가어렵다. 2-9 Client-server 와 P2P 의통합구조 Napster File의전송은 P2P를이용한다. File 검색은서버를이용한다. Peer들은중앙서버에자신이가진파일의목록을등록한다. 원하는 file의위치를찾기위해서는중앙서버에질의한다. Instant messaging 두사용자간에채팅은전형적인 P2P이다. 사용자의접속여부와위치는중앙서버를이용한다. 채팅에참여하기위해서는중앙서버에 IP와자신의정보를등록한다. 대화를위해서온라인에대기중인사용자를찾기위해서는중앙서버에연결한다. 2-10

6 프로세스간통신 Process : 호스트에서실행중인프로그램 동일시스템의프로세스는그들은서로프로세스간통신을하게된다. inter-process communication 이라불리는이통신의규칙은종단시스템의운영체제에의해서좌우된다. 서로다른시스템간의 process 간에는 message 교환으로통신한다. Client process : Process간에통신세션에서통신을초기화한다. ( 능동적 ) Server process : 세션을시작하기위해서접속을기다린다.( 수동적 ) Note : P2P application 은 client process 와 server process 두가지기능을모두가지고있다 Socket 두개의 process는네트워크를통해서 message를주고받는다. 이때 process는 socket을통해네트워크에 message를보내고받는다. Socket은문 (door) 에비유될수있다. 송신쪽 process는 door 바깥쪽으로 message를밀어낸다. 송신 process는네트워크를거쳐수신 process로 message가전달되는구조가문바깥쪽에있다고신뢰한다. 전달된 message는 door을통해수신 process로전달된다. API : (1) Transport protocol 선택 ; (2) 몇가지매개변수들 2-12

7 Addressing processes process가 message를수신하기위해서는반드시자신에대한인식정보가필요하다. 호스트들은 32bit의 unique한 IP 주소를갖는다. Q : 종단시스템의 IP 주소만으로 process 를정확히구별할수있는가? 호스트의각 process 를정확히구별하기위해서는 IP 주소와 port number 가모두필요하다. 유명한 application protocol들은특정 port number가할당되어있다. HTTP server: 80 Mail server : 25 Answer : No 동일한 host에는많은 process가존재함으로구별이불가능하다 App-layer protocol 정의 교환되는 message 의타입 Request & response message 여러 message type의 syntax (message 내부의각 field를구별하는방법 ) Filed의 semantics ( 각 field의의미, 담고있는정보의내용 ) 언제어떻게 process가 message를전송하고응답하는지를결정하는규칙 Public domain protocol RFC 에정의되어있다. RFC에서제공되는규칙에따른다면상호운영이가능하다. 예 : HTTP, SMTP Proprietary protocol 예 : KaZaA Protocol의 3요소 Timing Syntax semantics 2-14

8 Application 이필요로하는전송서비스 Data 손실 Application에따라서는 data의손실을허용한다. 일부 application들은데이터손실이전혀없는신뢰적인전송을요구한다. (FTP, telnet..) Timming 인터넷폰이나다자간게임같은 application들은효과적인 data 전송을위해매우낮은수준의지연만을허용한다. 엄격한시간조건을요구한다. 대역폭 (bandwidth) Bandwidth-sensitive application 효과적인전송을위해최소대역폭을보장해야된다. Elastic application 가용한대역폭을적게사용한다. 물론대역폭이많으면좋다 다양한 application 들의요구사항 2-16

9 인터넷전송 protocol 이제공하는서비스 TCP service 연결지향형서비스 : message를전송하기전에 client와 server process간에전송제어정보가전달된다. 신뢰적인전송서비스 : 모든데이터가오류없이올바른순서로전달된다. 혼잡제어 : 네트워크가혼잡상태에이르면송신자가전송속도를낮춘다. (process의직접적인이득보다는인터넷전체성능향상 ) 제공되지않는서비스 최소전송률을보장하지않는다. 지연보장을하지않는다. Application에서담당한다. UDP service 비신뢰적인 data전송서비스를제공한다. ( 도착여부나순서를보장하지않는다.) 통신전에제어정보를전송하는 connection setup과정이없다. 신뢰성, 혼잡제어, 흐름제어, 지연, 최소전송률등을보장하지않는다. Q : UDP 를이용하는이유는무엇인가? A: 송신자가전송속도를네트워크혼잡에따라제어하는혼잡제어를제공하지않음으로, 비록모든 data 가전달되지못하더라도송신 process는원하는속도로 data를전송해야하는실시간 application 에사용한다. 이런 application들은최소전송률이필요하지만 data의일부손실은감수할수있기때문이다 인터넷 app 의하위전송 protocol 2-18

10 2 장 Application Layer 2.1 네트워크어플리케에션의원리 2.2 Web and HTTP 2.3 FTP 2.4 전자우편 2.5 DNS 2.6 P2P 파일공유 2-19 Web and HTTP First some jargon Web page는 object로구성된다. Object는 HTML 파일, 음성파일, JPEG 파일, java applet 등이다. Web page는여러 object 로구성된 HTML 파일과여러참조개체로구성된다. 각각의 object는 URL이라는주소를가진다. URL 예 Host name path name 2-20

11 HTTP overview HTTP : Hyper text transfer protocol Web application layer protocol Client/server model Client : browser는웹용 client app, 질의를전달하고요구한 web page를보여주는기능을담당 Server : Web server로 client 의질의에응답하고여러 web object를 client에전송한다. HTTP 1.0 : RFC 1945 HTTP 1.1 : RFC HTTP overview Using TCP Client가먼저서버에 80번포트로 TCP 연결을시작한다. : creates socket 서버는 client로부터의접속을승낙하면접속이이루어진다. 접속이후에는 client와 server는 socket inteface를통해 TCP와연결된다. (message를주고받는다.) HTTP is stateless Server는 client의에대한어떠한상태정보도저장하지않는다. client의질의를처리만할뿐이에대한정보는저장하지않는다. Protocol이상태정보를유지하는것은매우복잡하다!! 접속에대한 hostory를저장해야한다. Client/server간의상태정보가일치하도록유지해야한다. 2-22

12 HTTP connections 비지속연결 (nonpersistent) 지속연결 (persistent) 각각의 object마다하나의 TCP connection을이용한다. HTTP1.0에서이용한다. Client server간에하나의 TCP connection을이용여러개의 object를전송한다. HTTP1.1에서 persistent가 default이다 Nonpersistent HTTP 1a. Client 는 server 에 TCP connection 을시도한다. 2. Client 는 request message 를 TCP connection socket 을통해 server 에전송한다. 1b. Server 는 client 의 TCP connect 에대해서접속을허가한다. 3. Server 는요청한 object 를포함한 response message 를 client 에전송한다. 5. Client 는 response 를수신하고 message 를처리한후 TCP connection 을끊는다. 4. Server 는 TCP 에세접속을끊도록한다. ( 실제로 client 가 response 를받을때까지접속을끊지않는다.) 6. 모든 object에대해서위과정을반복한다. 2-24

13 응답시간 RTT 이정의 : 작은 packet 이 client 로부터 server 로갔다가다시 server 로돌아오는데걸리는시간 응답시간 TCP connection을초기화하기위한 RRT HTTP request와서버에대한응답을보내고받는데걸리는 RRT File 전송시간 전체전송시간 total = 2RTT + file trans time 2-25 Persistent HTTP Nonpersistent HTTP issues 각 object 당 2RTT가필요 OS가각각의 TCP connection에대해서자원을할당한다. 브라우저는동시에여러개의 TCP connection을연결여러 object 를처리 Persistent HTTP Server는응답을보낸후 TCP연결을유지한다. 동일 client/server강의요청과응답 message는같은 connection을이용한다. persistent without pipelining Client는 response을수신한후에만새로운 request를보낸다. 객체를수신하는데 1RTT만사용 persistent with pipelining HTTP 1.1의 default. Reference object를만나자마자계속해서 request를발생한다. 모든 object에대해서하나의 RTT 만을더필요하다. Reference object : object : 객체 2-26

14 HTTP request message (client) HTTP message에는 request와 response 두가지형태가있다. HTTP request message ASCII ( 읽을수있는형태 ) Request line (GET,POST,HEAD Commands) header lines GET /somdir/page.html HTTP/1.1 Host: User-agent: Mozilla/4.0 Connection: close Accept-language: kr 각라인은 CR과 LF로구별 (carriage return & line feed) 마지막줄에는추가 CR과 LF가따른다 HTTP request 의일반형태 2-28

15 Uploading form input Post method Web page의특정내용은 form field 입력에의존한다. 사용자가폼필드에입력한값은개체몸체 (Entity body) 에포함된다. URL method GET method를사용할수도있다. 입력된 form field의값들은 request line의 URL field를이용전송된다. (113 page 참조 ) 2-29 Method types HTTP/1.0 GET POST HEAD HTTP message로응답은하지만요청객체는보내지않는다. 흔히개발자가디버깅에이용한다. HTTP/1.1 GET, POST, HEAD PUT URL field에 entity body에있는 upload file의경로를기술하는것 DELETE URL field에삭제하고자하는 object의경로를기술. 2-30

16 HTTP response message (server) Status line (Protocol, Status code, Status phrase) header lines HTTP/ K Connection: close Date: Thu, 06 AUG :00:15 GMT Server: Apache/1.3.0 (Unix) Last-Modified: Mon, 22 Jun 1998 Content-Length: 6821 Content-Type: text/html Data data data (request html file..) 2-31 HTTP response status codes 첫번째줄에있는 response message 의 status code sample 200 OK 요청이성공적이고응답이전달되었다. 301 Moved permanently 요청한 object가이동되었다. 새로운 URL은응답 message의 header에나와있다. Client는자동으로새로운 URL을추출한다. 400 Bad request 이해할수없는 request라는일반오류코드 404 Not Found 요청한문서가서버에존재하지않는다. 505 HTTP Version Not Supported 2-32

17 HTTP 응답확인 2-33 사용자서버간에상호작용 : 쿠키 많은 major web site 에서쿠키가사용된다. 네가지구성요소 1) HTTP 쿠키헤더가포함된 response message 2) HTTP 쿠키헤더가포함된 request message 3) 사용자 browser쪽에저장된쿠키파일 ( 사용자쪽 host와관리 ) 4) Web site의 back-end database 예제 수잔은항상동일한 PC를이용 internet에접속한다. 처음으로전자상거래를위해특정사이트에접속한다. 웹사이트에처음으로 request 들어오면웹사이트는유일한식별번호 (unique ID) 를만들고 backend database에순서에맞게 ID 를저장한다. 2-34

18 쿠키의상태정보저장 2-35 Cookies 쿠키의응용 Authorization Shopping carts Recommendations User session status (Web ) Cookies와 privacy Cookies는사용자에대한더많은정보를저장할수있다. 쿠키로모아진정보는제 3자에게팔수있다. Search engines use redirection & cookies to lean yet more. 쿠키는많은웹사이트를통해서특정사용자에대한정보를모으는데이용될수있다. 2-36

19 Web cache (proxy server) 목적 : origin server 를대신해서 client 의 reauest 를충족시킨다. Browser의모든 HTTP request 가 web cache를경유하도록설정 Browser는모든 HTTP request 를 cache에전달한다. Object in cache : cache return object Else : cache는 origin server로부터 object를전송받아서저장하고사본을 browser에전달한다 Web cache (proxy server) Cache는 client와 server기능을모두한다. 일반적으로 cache는 ISP가구입하고설치한다. ( 대학, 회사,ISP ) Cache 를사용하는이유 Client의 request에대한응답시간을줄인다. 인터넷으로의기관접속회선상의 traffic 량을줄일수있다. 저속의접속회선을운영하는서비스하는제공자의 Content를빠르게분배할수있는기반구조를제공한다. ( 그러나 P2P는그렇지않다 ) 2-38

20 Cache 예제 가정 평균적인 object 크기 100,000 bit 서버와 browser간에평균 request rate는 15/sec 기관의라우터가 HTTP를요청하고응답을받는시간은 2초 결과 Lan의 utilization : 0.15 Across link의 utilization : 1 전체지연 internet delay + access delay + Lan delay Access link 의 utilization 이 1 로 Access delay 가수분단위로크다 2-39 Cache 예제 개선 Access link의대역폭을 10M bps로상향 결과 Lan의 utilization : 0.15 Across link의 utilization : 0.15 전체지연 internet delay + access delay + Lan delay = 2초 + msec+msec 경비가많이들어간다

21 Cache 예제 Install cache Hit rate : 0.4 결과 Client request중에 60% 만 origin server에전달 Across link의 utilization은 1 에서 0.6으로감소 전체지연 internet delay + access delay + Lan delay = access delay 가 0.8 미만의작은지연에속함 2-41 Conditional GET ( 조건부 GET) 목적 : cache 내부의 object 복사본이최신것이아니라면전송하지않는다. Cache : 자신이복사본으로가지고있는 object에대한마지막수정날짜를포함한 request를서버에전송한다. If-modified-Since : <date> Server : Cache에저장된 object가최신것이라면 response에 object를포함하지않는다. HTTP/ Not Modified 2-42

22 2 장 Application Layer 2.1 네트워크어플리케에션의원리 2.2 Web and HTTP 2.3 FTP 2.4 전자우편 2.5 DNS 2.6 P2P 파일공유 2-43 FTP : the file transfer protocol 원격 host로파일을송수신하는 protocol. Client-server model Client : file 송수신을시작한다. Server : 원격시스템 Ftp : RFC 959 Ftp server : port

23 FTP : 제어와 file 전송 FTP client는 21번 port를통해서서버와 control connection 을설정한다. 이제어연결을통해사용자계정과비밀번호를전송한다. Client는제어연결을통해워격지의디렉토리변경과같은명령을전송한다. 서버측은제어연결을통해파일전송을위한명령을받으면 TCP data connection을초기화한다. 하나의파일전송이끝나면 data 연결은 close된다. 다음파일전송을위해서는새로운 TCP connection을생성한다. Out of band : 파일을전송하는 connection과제어를위한 conconnection을다르게하는것. ( 반대 : in band) FTP 서버는사용자의 status를유지한다. 현재디렉토리, 인증정보 : 이로인해서버가유지할수있는전체세션의수를상당히제한한다 FTP 명령과응답코드 Sample command 명령과응답은 7bit ASCII로 control connection을이용전송된다. USER username PASS password LIST ( 원격지디렉토리의파일의 list 요청 : 응답은 data 연결을이용한다.) RETR filename (data 연결을초기화하고요청된파일전송하기위해원격호스트를시작한다.) STOR filename ( 파일을원격호스트에저장하는데이용한다.) Sample return code 331 : username OK, password required 125 : data connection already open, transfer start 425 : can t open data connection 452 : Error writing file 2-46

24 2 장 Application Layer 2.1 네트워크어플리케에션의원리 2.2 Web and HTTP 2.3 FTP 2.4 전자우편 2.5 DNS 2.6 P2P 파일공유 2-47 전자우편 세가지중요한구성요소 사용자 agent Mail server SMTP (simple mail TP) User agent Mail reader라불리기도한다. Msil message를읽고쓰고전달하고저장하고구성하는등의역할을한다. 예 : Outlook, elm, Eudora Server에 message를전달하거나 server로부터수신하는역할을한다. 2-48

25 전자우편 : mail server Mail server Mailbox : 사용자에게온 message를저장한다. Message queue : 다른메일서버로전송될 message를임시로저장하는 queue SMTP : mail server간에 mail message를송수신하는 protocol Client : mail을보내는서버 Server : mail을받는서버 2-49 전자우편 : SMTP [RFC 2821] Client server간의 mail message는 TCP의신뢰적인데이터전송서비스를이용한다. (25번 port) 송수신하는 mail server간에는중간에어떤서버를이용하지않고반드시직접연결한다. Mail server 전송과정 Handshaking Message 전송 TCP 연결종료 Command/response Command : ASCII text Response : 응답코드와영문설명 (phrase) Message는반드시 7bit ASCII 이다. SMTP는 persistent connection이다. 2-50

26 메일전송과정 1) Alice는 UA를이용 message 을작성하고제공한메일주소로전송하도록한다.(Bob) 2) UA는 mail server로 message를전송한다. message는서버의 message queue에놓인다. 3) Client측 SMTP는 message queue를확인하고 TCP connection을 BOB쪽 mail server와연결한다. 4) TCP connection을이용 message를전송한다. 5) BOB 측의 mail 서버는 message를 bob의메일박스에저장한다. 6) Bob는 UA를이용 message를꺼내와서읽는다 SMTP 전달과정예 2-52

27 SMTP 전달과정실습 2-53 SMTP SMTP persistent connection 을이용한다. SMTP의 message는 7 bit ASCII이다. (header & body) SMTP server는 meaage를 CRLF.CRLF로끝낸다. HTTP와비교 HTTP : pull SMTP : push (server간) Command& response모두 7bit ASCII 포맷을요구한다. HTTP는 response의각 object 를각각캡슐화한다. SMTP는여러 object를하나의 msg로만든다. 2-54

28 Mail message format SMTP : msgs 를전송하기위 한protocol RFC 822 : msg의표준포맷 Header line To: From: Subject: (SMTP 명령과는다르다 ) Body Msg (only ascii) header body Blank line 2-55 Message format : multimedia extensions MIME : multimedia mail extension, RFC 2045, 2056 Msg header에 mime content type에대한 line을추가해야한다. 2-56

29 Mail access protocol SMTP : 수신쪽서버에 msgs를전송하기위한 protocol Mail access protocol : 수신자의메일서버로부터수신자의 UA로메일을가져오는데이용한다. POP : Post office protocol [RFC1939] Authorization and download (agent와서버간 ) IMAP : Internet mail access protocol [RFC 1730 다양한특성을가지며구현이복잡하다. 서버의 msgs를다양하게다룰수있다. HTTP : Hotmail, yahoo mail 2-57 POP3 protocol authorization phase Client commands: user : 사용자명 pass : password Server response +OK -ERR transaction phase Client list : msgs의크기의나열 retr : 지정한번호의 msg 전송요청 dele : 종료후서버의 msg 삭제요청 quit 2-58

30 POP3 와 IMAP POP3 앞의예제는 download and delete mode 이다. 만일 UA 에서전송된 msg를잃어버리면다시는메일을읽을수없다. download and keep 모드를사용하면여러호스트의 UA에서 msg을동시에저장하고볼수있다. POP3는 stateless로 session이유지되는동안만상태정보를저장한다. ( 특히 msg의삭제여부 ) IMAP 모든 msgs를서버의한곳에저장한다. 사용자는 msgs를 folders에연결시킬수있다. 사용자는 msgs를새폴더로옮기거나읽거나삭제할수있다. IMAP는사용자의상태정보를유지한다. 폴더의이름과어떤 msg가어떤폴더와연결되어있는가하는정보 UA가다양한방법으로 msg의구성요소에접근하는방법을제공 msg의헤더만을얻거나 mime msg의일부만을얻을수도있다 장 Application Layer 2.1 네트워크어플리케에션의원리 2.2 Web and HTTP 2.3 FTP 2.4 전자우편 2.5 DNS 2.6 P2P 파일공유 2-60

31 DNS : Domain Name System 사람 : 많은인식정보를가진다. 주민등록번호, 이름, 여권번호 인터넷의 host, 라우터 호스트는흔히말하는 IP주소로식별된다. (network layer로 4장에서..) DNS 이름 : 사람이사용하는.. Q : IP 와이름간에 map Domain Name System 분산 database 수많은 name server들이계층형구조로구조화되어있다. Application layer protocol 다른 app layer protocol들이 HTTP, FTP, SMTP등사용자가제공한호스트네임을 ip로변환하는데이용한다. 인터넷의가장중요한기능중의하나 Network edge에구현된다 DNS DNS services 호스트명을 IP 주소로변환한다. 호스트에얼리아싱 (host aliasing) 정식 (canonical) 호스트명 별칭 (aliasing) 호스트명 DNS는 IP분아니라정식호스트명을얻기위해이용되기도한다. 메일서버에얼리아싱 분산부하 중복 web서버여러 IP 주소가하나의정식호스트명에연관 DNS 를중앙집중식으로하지않는이유??? 서버장애 ( 인터넷다운 ) Traffic의집중 중앙서버까지의거리 관리 확장성이전혀없다!!! (144page) 2-62

32 분산계층형 database Client 가 의 IP 를원하는경우 Root DNS서버에접속 com DNS server의 IP를질의한다. 응답받은 com DNS서버의 IP로 amazon.com을관리하는 DNS server 의 IP를질의한다. 응답받은 amazon.com 관리 DNS server에게 IP를질의한다. Client는 IP를획득한다 Root name servers Local name 서버를찾기위해서접근한다. ( 이름을반환하는역할을수행하지않는다. root name server Contacts authoritative name server if name mapping not know Get mapping Returns mapping to local name server 2-64

33 TLD and Authoritative servers Top-Level domain(tld) server : com, org, net등과같은상위레벨도메인과모든국가의상위레벨도메인에대한책임이있다. net TLD : Network solutions maintains servers edu TLD : 교육 Authoritative( 책임 ) DNS server : 인터넷에접근하기쉬운 host를가진기관은호스트명을 IP로매핑하기위한 DNS 레코드를제공하는데책임 DNS서버는이레코드를갖는다. 일부서비스제공자의책임 DNS서버에이레코드를저장하도록비용을지불할수도있다 Local Name Server 엄격한계층구조에포함되어있지않다. ISP는하나의 local name server를갖는다. Default name server 라고불린다. 호스트가 DNS 질의를보내면이것은 local name server에전달된다. Local name server는전송된질의를 DNS 서버계층으로전달하도록 proxy 를동작한다. 2-66

34 예 cis.poly.edu 호스트가 gaia.cs.umass.edu 서버의 IP 를알고자할때 query 1 : 재귀적질의 query 2,4,6 : 반복적질의 2-67 DNS queries recursive query: 접속한 name server에 name에대한 IP mapping 정보를찾아줄것을요구하는 query Heavy load iterated query: 접속한서버에 ip mapping 정보또는다음단계의 name 서버의주소를 query하는것 2-68

35 DNS caching 질의사슬에서 DNS서버가 DNS 요청에대한응답을받을때그응답을 local memory에저장한다. NDS서버는일정기간이지나면저장된정보를삭제한다. Local name server는 TLD 서버의 IP 주소를저장할수있다. 이러한caching는local DNS server가root server를우회할수있도록한다. 이러한내용은 IEFT에있다. RFC DNS record DNS 서버들은호스트명을 IP 주소로 mapping 하기위한 RR 를저장한다. RR Resorce Records RR format : (name, value, type, ttl) Type = A Name 은호스트명 Value는 ip주소 Type = CNAME Name 은별칭호스트명 Value는정식호스트명 Type = NS Name 은도메인명 Value는책임 DNS 서버 Type = MX Value 는별칭호스트명 2-70

36 DNS protocol message DNS protocol : 질의와응답 msg 는 format 이동일하다. msg header (12 byte) 식별자 : 16 bit로질의에대한응답인경우이부분이복사되어질의와수신된응답간에일치를식별한다. 플래그 : 질의 (0) 인지응답 (1) 인지구별 recursion 요구플래그 Client 가재귀질의를원할때설정 recursion 가능플래그 DNS서버가재귀기능을지원하면응답에설정 책임플래그 DNS 서버가질의에대한책임서버일때응답에설정 식별자플래그질문수응답 RR수책임 RR수추가 RR수질문 ( 가변질문수 ) 답변 ( 가변 RR수 ) 책임 ( 가변 RR수 ) 추가정보 ( 가변 RR수 ) 2-71 DNS protocol message 질의이름과타입 식별자 질문수 책임 RR 수 플래그 응답 RR 수 추가 RR 수 DNS 서버로부터의응답 책임서버의 record 다른도움이되는 Record 질문 ( 가변질문수 ) 답변 ( 가변 RR수 ) 책임 ( 가변 RR수 ) 추가정보 ( 가변 RR수 ) 2-72

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770> i ii iii iv v vi 1 2 3 4 가상대학 시스템의 국내외 현황 조사 가상대학 플랫폼 개발 이상적인 가상대학시스템의 미래상 제안 5 웹-기반 가상대학 시스템 전통적인 교수 방법 시간/공간 제약을 극복한 학습동기 부여 교수의 일방적인 내용전달 교수와 학생간의 상호작용 동료 학생들 간의 상호작용 가상대학 운영 공지사항,강의록 자료실, 메모 질의응답,

More information

/ (application layer protocols) http ftp smtp pop dns 2

/ (application layer protocols) http ftp smtp pop dns 2 Chapter 2: Application Layer 1 / (application layer protocols) http ftp smtp pop dns 2 ),, (TCP,UDP) application transport network data link physical application transport network data link physical application

More information

제20회_해킹방지워크샵_(이재석)

제20회_해킹방지워크샵_(이재석) IoT DDoS DNS (jaeseog@sherpain.net) (www.sherpain.net) DDoS DNS DDoS / DDoS(Distributed DoS)? B Asia Broadband B Bots connect to a C&C to create an overlay network (botnet) C&C Provider JP Corp. Bye Bye!

More information

0. 들어가기 전

0. 들어가기 전 컴퓨터네트워크 14 장. 웹 (WWW) (3) - HTTP 1 이번시간의학습목표 HTTP 의요청 / 응답메시지의구조와동작원리이해 2 요청과응답 (1) HTTP (HyperText Transfer Protocol) 웹브라우저는 URL 을이용원하는자원표현 HTTP 메소드 (method) 를이용하여데이터를요청 (GET) 하거나, 회신 (POST) 요청과응답 요청

More information

6강.hwp

6강.hwp ----------------6강 정보통신과 인터넷(1)------------- **주요 키워드 ** (1) 인터넷 서비스 (2) 도메인네임, IP 주소 (3) 인터넷 익스플로러 (4) 정보검색 (5) 인터넷 용어 (1) 인터넷 서비스******************************* [08/4][08/2] 1. 다음 중 인터넷 서비스에 대한 설명으로

More information

1217 WebTrafMon II

1217 WebTrafMon II (1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network

More information

KISA-GD

KISA-GD KISA-GD-2011-0002 2011.9 1) RD(Recursive Desired) 플래그 : 리커시브네임서버로하여금재귀적 (recursive) 질의 ( 항목 1.3. 참고 ) 요청을표시함. RD 플레그값이 0 이면반복적 (iterative) 질의를요청 2) AA 플래그 : Authoritative Answer 의약자로써, 네임서버가해당응답데이터를자신이보유하고있는지유무를표시

More information

Network seminar.key

Network seminar.key Intro to Network .. 2 4 ( ) ( ). ?!? ~! This is ~ ( ) /,,,???? TCP/IP Application Layer Transfer Layer Internet Layer Data Link Layer Physical Layer OSI 7 TCP/IP Application Layer Transfer Layer 3 4 Network

More information

SMB_ICMP_UDP(huichang).PDF

SMB_ICMP_UDP(huichang).PDF SMB(Server Message Block) UDP(User Datagram Protocol) ICMP(Internet Control Message Protocol) SMB (Server Message Block) SMB? : Microsoft IBM, Intel,. Unix NFS. SMB client/server. Client server request

More information

Sena Device Server Serial/IP TM Version

Sena Device Server Serial/IP TM Version Sena Device Server Serial/IP TM Version 1.0.0 2005. 3. 7. Release Note Revision Date Name Description V1.0.0 2005-03-7 HJ Jeon Serial/IP 4.3.2 ( ) 210 137-130, : (02) 573-5422 : (02) 573-7710 email: support@sena.com

More information

Secure Programming Lecture1 : Introduction

Secure Programming Lecture1 : Introduction Malware and Vulnerability Analysis Lecture4-1 Vulnerability Analysis #4-1 Agenda 웹취약점점검 웹사이트취약점점검 HTTP and Web Vulnerability HTTP Protocol 웹브라우저와웹서버사이에하이퍼텍스트 (Hyper Text) 문서송수신하는데사용하는프로토콜 Default Port

More information

thesis-shk

thesis-shk DPNM Lab, GSIT, POSTECH Email: shk@postech.ac.kr 1 2 (1) Internet World-Wide Web Web traffic Peak periods off-peak periods peak periods off-peak periods 3 (2) off-peak peak Web caching network traffic

More information

TCP.IP.ppt

TCP.IP.ppt TCP/IP TCP/IP TCP/IP TCP/IP TCP/IP Internet Protocol _ IP Address Internet Protocol _ Subnet Mask Internet Protocol _ ARP(Address Resolution Protocol) Internet Protocol _ RARP(Reverse Address Resolution

More information

SK IoT IoT SK IoT onem2m OIC IoT onem2m LG IoT SK IoT KAIST NCSoft Yo Studio tidev kr 5 SK IoT DMB SK IoT A M LG SDS 6 OS API 7 ios API API BaaS Backend as a Service IoT IoT ThingPlug SK IoT SK M2M M2M

More information

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

chapter4

chapter4 Basic Netw rk 1. ก ก ก 2. 3. ก ก 4. ก 2 1. 2. 3. 4. ก 5. ก 6. ก ก 7. ก 3 ก ก ก ก (Mainframe) ก ก ก ก (Terminal) ก ก ก ก ก ก ก ก 4 ก (Dumb Terminal) ก ก ก ก Mainframe ก CPU ก ก ก ก 5 ก ก ก ก ก ก ก ก ก ก

More information

API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum

API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 2012.11.23 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Document Distribution Copy Number Name(Role, Title) Date

More information

<4D6963726F736F667420506F776572506F696E74202D2030342E20C0CEC5CDB3DD20C0C0BFEB20B9D720BCADBAF1BDBA20B1E2BCFA2831292E70707478>

<4D6963726F736F667420506F776572506F696E74202D2030342E20C0CEC5CDB3DD20C0C0BFEB20B9D720BCADBAF1BDBA20B1E2BCFA2831292E70707478> 웹과 인터넷 활용 및실습 () (Part I) 문양세 강원대학교 IT대학 컴퓨터과학전공 강의 내용 전자우편(e-mail) 인스턴트 메신저(instant messenger) FTP (file transfer protocol) WWW (world wide web) 인터넷 검색 홈네트워크 (home network) Web 2.0 개인 미니홈페이지 블로그 (blog)

More information

Web Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인 웹 확장 아키텍처는 높은 수준의 안정성을 보장하기 위해 복잡한 솔루션으로 구현

Web Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인 웹 확장 아키텍처는 높은 수준의 안정성을 보장하기 위해 복잡한 솔루션으로 구현 02 Web Application Hosting in the AWS Cloud www.wisen.co.kr Wisely Combine the Network platforms Web Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인

More information

Cache_cny.ppt [읽기 전용]

Cache_cny.ppt [읽기 전용] Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Improving Performance and Scalability with Oracle9iAS Cache Oracle9i Application Server Cache... Oracle9i Application Server Web

More information

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS ( PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (http://ddns.hanwha-security.com) Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

The Pocket Guide to TCP/IP Sockets: C Version

The Pocket Guide to  TCP/IP Sockets: C Version 인터넷프로토콜 5 장 데이터송수신 (3) 1 파일전송메시지구성예제 ( 고정크기메시지 ) 전송방식 : 고정크기 ( 바이너리전송 ) 필요한전송정보 파일이름 ( 최대 255 자 => 255byte 의메모리공간필요 ) 파일크기 (4byte 의경우최대 4GB 크기의파일처리가능 ) 파일내용 ( 가변길이, 0~4GB 크기 ) 메시지구성 FileName (255bytes)

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 (Host) set up : Linux Backend RS-232, Ethernet, parallel(jtag) Host terminal Target terminal : monitor (Minicom) JTAG Cross compiler Boot loader Pentium Redhat 9.0 Serial port Serial cross cable Ethernet

More information

hd1300_k_v1r2_Final_.PDF

hd1300_k_v1r2_Final_.PDF Starter's Kit for HelloDevice 1300 Version 11 1 2 1 2 3 31 32 33 34 35 36 4 41 42 43 5 51 52 6 61 62 Appendix A (cross-over) IP 3 Starter's Kit for HelloDevice 1300 1 HelloDevice 1300 Starter's Kit HelloDevice

More information

Analyst Briefing

Analyst Briefing . Improve your Outlook on Email and File Management iseminar.. 1544(or 6677)-3355 800x600. iseminar Chat... Improve your Outlook on Email and File Management :, 2003 1 29.. Collaboration Suite - Key Messages

More information

자바-11장N'1-502

자바-11장N'1-502 C h a p t e r 11 java.net.,,., (TCP/IP) (UDP/IP).,. 1 ISO OSI 7 1977 (ISO, International Standards Organization) (OSI, Open Systems Interconnection). 6 1983 X.200. OSI 7 [ 11-1] 7. 1 (Physical Layer),

More information

TTA Verified : HomeGateway :, : (NEtwork Testing Team)

TTA Verified : HomeGateway :, : (NEtwork Testing Team) TTA Verified : HomeGateway :, : (NEtwork Testing Team) : TTA-V-N-05-006-CC11 TTA Verified :2006 6 27 : 01 : 2005 7 18 : 2/15 00 01 2005 7 18 2006 6 27 6 7 9 Ethernet (VLAN, QoS, FTP ) (, ) : TTA-V-N-05-006-CC11

More information

bn2019_2

bn2019_2 arp -a Packet Logging/Editing Decode Buffer Capture Driver Logging: permanent storage of packets for offline analysis Decode: packets must be decoded to human readable form. Buffer: packets must temporarily

More information

untitled

untitled CAN BUS RS232 Line Ethernet CAN H/W FIFO RS232 FIFO IP ARP CAN S/W FIFO TERMINAL Emulator COMMAND Interpreter ICMP TCP UDP PROTOCOL Converter TELNET DHCP C2E SW1 CAN RS232 RJ45 Power

More information

Portal_9iAS.ppt [읽기 전용]

Portal_9iAS.ppt [읽기 전용] Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Oracle9i Application Server e-business Portal Client Database Server e-business Portals B2C, B2B, B2E, WebsiteX B2Me GUI ID B2C

More information

3ÆÄÆ®-14

3ÆÄÆ®-14 chapter 14 HTTP >>> 535 Part 3 _ 1 L i Sting using System; using System.Net; using System.Text; class DownloadDataTest public static void Main (string[] argv) WebClient wc = new WebClient(); byte[] response

More information

TTA Journal No.157_서체변경.indd

TTA Journal No.157_서체변경.indd 표준 시험인증 기술 동향 FIDO(Fast IDentity Online) 생체 인증 기술 표준화 동향 이동기 TTA 모바일응용서비스 프로젝트그룹(PG910) 의장 SK텔레콤 NIC 담당 매니저 76 l 2015 01/02 PASSWORDLESS EXPERIENCE (UAF standards) ONLINE AUTH REQUEST LOCAL DEVICE AUTH

More information

Microsoft PowerPoint - ch02_인터넷 이해와 활용.ppt

Microsoft PowerPoint - ch02_인터넷 이해와 활용.ppt 컴퓨터 활용과 실습 원리를 알면 IT가 맛있다 chapter 2. 윈도우XP, 한글25, 엑셀23, 파워포인트23 인터넷 이해와 활용 www.hanb.co.kr -1- 학습목표 목차 통신과 네트워크의 개념 통신과 네트워크 컴퓨터 통신망 인터넷정의및역사 인터넷주소체계 인터넷 정의와 역사 인터넷 주소 웹서비스의정의및특징 웹 서비스 웹 브라우저의 기능 웹 브라우저

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

Microsoft Word - ntasFrameBuilderInstallGuide2.5.doc

Microsoft Word - ntasFrameBuilderInstallGuide2.5.doc NTAS and FRAME BUILDER Install Guide NTAS and FRAME BUILDER Version 2.5 Copyright 2003 Ari System, Inc. All Rights reserved. NTAS and FRAME BUILDER are trademarks or registered trademarks of Ari System,

More information

歯이시홍).PDF

歯이시홍).PDF cwseo@netsgo.com Si-Hong Lee duckling@sktelecom.com SK Telecom Platform - 1 - 1. Digital AMPS CDMA (IS-95 A/B) CDMA (cdma2000-1x) IMT-2000 (IS-95 C) ( ) ( ) ( ) ( ) - 2 - 2. QoS Market QoS Coverage C/D

More information

Subnet Address Internet Network G Network Network class B networ

Subnet Address Internet Network G Network Network class B networ Structure of TCP/IP Internet Internet gateway (router) Internet Address Class A Class B Class C 0 8 31 0 netid hostid 0 16 31 1 0 netid hostid 0 24 31 1 1 0 netid hostid Network Address : (A) 1 ~ 127,

More information

VZ94-한글매뉴얼

VZ94-한글매뉴얼 KOREAN / KOREAN VZ9-4 #1 #2 #3 IR #4 #5 #6 #7 ( ) #8 #9 #10 #11 IR ( ) #12 #13 IR ( ) #14 ( ) #15 #16 #17 (#6) #18 HDMI #19 RGB #20 HDMI-1 #21 HDMI-2 #22 #23 #24 USB (WLAN ) #25 USB ( ) #26 USB ( ) #27

More information

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google

More information

Interstage5 SOAP서비스 설정 가이드

Interstage5 SOAP서비스 설정 가이드 Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service

More information

Windows 8에서 BioStar 1 설치하기

Windows 8에서 BioStar 1 설치하기 / 콘텐츠 테이블... PC에 BioStar 1 설치 방법... Microsoft SQL Server 2012 Express 설치하기... Running SQL 2012 Express Studio... DBSetup.exe 설정하기... BioStar 서버와 클라이언트 시작하기... 1 1 2 2 6 7 1/11 BioStar 1, Windows 8 BioStar

More information

본교재는수업용으로제작된게시물입니다. 영리목적으로사용할경우저작권법제 30 조항에의거법적처벌을받을수있습니다. [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase sta

본교재는수업용으로제작된게시물입니다. 영리목적으로사용할경우저작권법제 30 조항에의거법적처벌을받을수있습니다. [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase sta [ 실습 ] 스위치장비초기화 1. NVRAM 에저장되어있는 'startup-config' 파일이있다면, 삭제를실시한다. SWx>enable SWx#erase startup-config Erasing the nvram filesystem will remove all configuration files Continue? [confirm] ( 엔터 ) [OK] Erase

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Synergy EDMS www.comtrue.com opyright 2001 ComTrue Technologies. All right reserved. - 1 opyright 2001 ComTrue Technologies. All right reserved. - 2 opyright 2001 ComTrue Technologies. All right reserved.

More information

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition

More information

OPCTalk for Hitachi Ethernet 1 2. Path. DCOMwindow NT/2000 network server. Winsock update win95. . . 3 Excel CSV. Update Background Thread Client Command Queue Size Client Dynamic Scan Block Block

More information

o o o 8.2.1. Host Error 8.2.2. Message Error 8.2.3. Recipient Error 8.2.4. Error 8.2.5. Host 8.5.1. Rule 8.5.2. Error 8.5.3. Retry Rule 8.11.1. Intermittently

More information

°í¼®ÁÖ Ãâ·Â

°í¼®ÁÖ Ãâ·Â Performance Optimization of SCTP in Wireless Internet Environments The existing works on Stream Control Transmission Protocol (SCTP) was focused on the fixed network environment. However, the number of

More information

Voice Portal using Oracle 9i AS Wireless

Voice Portal using Oracle 9i AS Wireless Voice Portal Platform using Oracle9iAS Wireless 20020829 Oracle Technology Day 1 Contents Introduction Voice Portal Voice Web Voice XML Voice Portal Platform using Oracle9iAS Wireless Voice Portal Video

More information

PCServerMgmt7

PCServerMgmt7 Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network

More information

Mstage.PDF

Mstage.PDF Wap Push June, 2001 Contents About Mstage What is the Wap Push? SMS vs. Push Wap push Operation Wap push Architecture Wap push Wap push Wap push Example Company Outline : (Mstage co., Ltd.) : : 1999.5

More information

Microsoft PowerPoint - CoolMessenger_제안서_라이트_200508

Microsoft PowerPoint - CoolMessenger_제안서_라이트_200508 2005 Aug 0 Table of Contents 1. 제안 개요 P.2 2. 쿨메신저 소개 P.7 3. VoIP 인터넷전화 서비스 P.23 4. 쿨메신저 레퍼런스 사이트 P.32 5. 지란지교소프트 소개 P.37 1 芝 蘭 之 交 2 1. 제안 개요 1) Summery 3 1. 제안 개요 2) 일반 메신저 vs 쿨메신저 보안 문제 기업 정보 & 기밀 유출로

More information

SRC PLUS 제어기 MANUAL

SRC PLUS 제어기 MANUAL ,,,, DE FIN E I N T R E A L L O C E N D SU B E N D S U B M O TIO

More information

○ 제2조 정의에서 기간통신역무의 정의와 EU의 전자커뮤니케이션서비스 정의의 차이점은

○ 제2조 정의에서 기간통신역무의 정의와 EU의 전자커뮤니케이션서비스 정의의 차이점은 이동전화시장 경쟁활성화를 위한 MVNO 추진을 바라보며 김원식 1) 1. 들어가며 최근 이동전화의 무선재판매 시장 활성화 등을 위해 정보통신부가 준비한 전기통신사업 법 개정안 공청회에서 무선재판매의무제 관련규정을 둘러싸고 전문가들의 우려와 지적이 상당하였다. 우선 무선재판매 제도 도입의 배경을 살펴보자. 직접적 배경으로는 국내 이동전화 요금에 대한 이용자들의

More information

T100MD+

T100MD+ User s Manual 100% ) ( x b a a + 1 RX+ TX+ DTR GND TX+ RX+ DTR GND RX+ TX+ DTR GND DSR RX+ TX+ DTR GND DSR [ DCE TYPE ] [ DCE TYPE ] RS232 Format Baud 1 T100MD+

More information

No Slide Title

No Slide Title J2EE J2EE(Java 2 Enterprise Edition) (Web Services) :,, SOAP: Simple Object Access Protocol WSDL: Web Service Description Language UDDI: Universal Discovery, Description & Integration 4. (XML Protocol

More information

ibmdw_rest_v1.0.ppt

ibmdw_rest_v1.0.ppt REST in Enterprise 박찬욱 1-1- MISSING PIECE OF ENTERPRISE Table of Contents 1. 2. REST 3. REST 4. REST 5. 2-2 - Wise chanwook.tistory.com / cwpark@itwise.co.kr / chanwook.god@gmail.com ARM WOA S&C AP ENI

More information

Microsoft Word doc

Microsoft Word doc TCP/IP 구조 1. I.P 구조설명 2. ARP 구조설명 3. TCP 구조설명 4. UDT 구조설명 5. RIP 구조설명 6. BOOTP 구조설명 7. TFTP 구조설명 destination addr source addr type data CRC 6 6 2 46-1500 4 type 0X0800 IP datagram 2 46-1500 type 0X0806

More information

Microsoft PowerPoint - 04-UDP Programming.ppt

Microsoft PowerPoint - 04-UDP Programming.ppt Chapter 4. UDP Dongwon Jeong djeong@kunsan.ac.kr http://ist.kunsan.ac.kr/ Dept. of Informatics & Statistics 목차 UDP 1 1 UDP 개념 자바 UDP 프로그램작성 클라이언트와서버모두 DatagramSocket 클래스로생성 상호간통신은 DatagramPacket 클래스를이용하여

More information

untitled

untitled 3 IBM WebSphere User Conference ESB (e-mail : ljm@kr.ibm.com) Infrastructure Solution, IGS 2005. 9.13 ESB 를통한어플리케이션통합구축 2 IT 40%. IT,,.,, (Real Time Enterprise), End to End Access Processes bounded by

More information

PowerPoint Presentation

PowerPoint Presentation FORENSIC INSIGHT; DIGITAL FORENSICS COMMUNITY IN KOREA SQL Server Forensic AhnLab A-FIRST Rea10ne unused6@gmail.com Choi Jinwon Contents 1. SQL Server Forensic 2. SQL Server Artifacts 3. Database Files

More information

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras

Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Cras Analytics > Log & Crash Search > Unity ios SDK [Deprecated] Log & Crash Unity ios SDK. TOAST SDK. Log & Crash Unity SDK Log & Crash Search. Log & Crash Unity SDK... Log & Crash Search. - Unity3D v4.0 ios

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

untitled

untitled 1... 2 System... 3... 3.1... 3.2... 3.3... 4... 4.1... 5... 5.1... 5.2... 5.2.1... 5.3... 5.3.1 Modbus-TCP... 5.3.2 Modbus-RTU... 5.3.3 LS485... 5.4... 5.5... 5.5.1... 5.5.2... 5.6... 5.6.1... 5.6.2...

More information

untitled

untitled PowerBuilder 連 Microsoft SQL Server database PB10.0 PB9.0 若 Microsoft SQL Server 料 database Profile MSS 料 (Microsoft SQL Server database interface) 行了 PB10.0 了 Sybase 不 Microsoft 料 了 SQL Server 料 PB10.0

More information

Microsoft PowerPoint - web-part03-ch19-node.js기본.pptx

Microsoft PowerPoint - web-part03-ch19-node.js기본.pptx 과목명: 웹프로그래밍응용 교재: 모던웹을 위한 JavaScript Jquery 입문, 한빛미디어 Part3. Ajax Ch19. node.js 기본 2014년 1학기 Professor Seung-Hoon Choi 19 node.js 기본 이 책에서는 서버 구현 시 node.js 를 사용함 자바스크립트로 서버를 개발 다른서버구현기술 ASP.NET, ASP.NET

More information

. PC PC 3 [ ] [ ], [ ] [ ] [ ] 3 [ ] [ ], 4 [ ] [ ], 4 [Internet Protocol Version 4 (TCP/IPv4)] 5 [ ] 6 [ IP (O)], [ DNS (B)] 7 [ ] 한국어 -

. PC PC 3 [ ] [ ], [ ] [ ] [ ] 3 [ ] [ ], 4 [ ] [ ], 4 [Internet Protocol Version 4 (TCP/IPv4)] 5 [ ] 6 [ IP (O)], [ DNS (B)] 7 [ ] 한국어 - Quick Network Setup Guide xdsl/cable Modem PC DVR ~3.., PC, DVR. Cable IP Cable/ADSL/ VDSL or 3 4 VIDEO OUT (SPOT) AUDIO IN VGA ALARM OUT COM ALARM IN RS-485 3 4 G G + 3 CONSOLE NETWORK DC V VIDEO IN VIDEO

More information

UDP Flooding Attack 공격과 방어

UDP Flooding Attack 공격과 방어 황 교 국 (fullc0de@gmail.com) SK Infosec Co., Inc MSS Biz. Security Center Table of Contents 1. 소개...3 2. 공격 관련 Protocols Overview...3 2.1. UDP Protocol...3 2.2. ICMP Protocol...4 3. UDP Flood Test Environment...5

More information

Multi Channel Analysis. Multi Channel Analytics :!! - (Ad network ) Report! -! -!. Valuepotion Multi Channel Analytics! (1) Install! (2) 3 (4 ~ 6 Page

Multi Channel Analysis. Multi Channel Analytics :!! - (Ad network ) Report! -! -!. Valuepotion Multi Channel Analytics! (1) Install! (2) 3 (4 ~ 6 Page Multi Channel Analysis. Multi Channel Analytics :!! - (Ad network ) Report! -! -!. Valuepotion Multi Channel Analytics! (1) Install! (2) 3 (4 ~ 6 Page ) Install!. (Ad@m, Inmobi, Google..)!. OS(Android

More information

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX 20062 () wwwexellencom sales@exellencom () 1 FMX 1 11 5M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX D E (one

More information

게시판 스팸 실시간 차단 시스템

게시판 스팸 실시간 차단 시스템 오픈 API 2014. 11-1 - 목 차 1. 스팸지수측정요청프로토콜 3 1.1 스팸지수측정요청프로토콜개요 3 1.2 스팸지수측정요청방법 3 2. 게시판스팸차단도구오픈 API 활용 5 2.1 PHP 5 2.1.1 차단도구오픈 API 적용방법 5 2.1.2 차단도구오픈 API 스팸지수측정요청 5 2.1.3 차단도구오픈 API 스팸지수측정결과값 5 2.2 JSP

More information

Intro to Servlet, EJB, JSP, WS

Intro to Servlet, EJB, JSP, WS ! Introduction to J2EE (2) - EJB, Web Services J2EE iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

소프트웨어 융합 개론

소프트웨어 융합 개론 소프트웨어융합개론 의개념 컴퓨터, 즉컴퓨팅기능을가진시스템들이물리적인매체로서로연결되어데이터를교환하는시스템들의모임 단말시스템 (end system), 중개시스템 (intermediate system) ISP (Internet Service Provider) 개인이나기업체에게인터넷접속서비스를제공하는회사 Internet: a network of networks 단말네트워크와코아네트워크

More information

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수 사용 설명서 TeraStation Pro II TS-HTGL/R5 패키지 내용물: 본체 (TeraStation) 이더넷 케이블 전원 케이블 TeraNavigator 설치 CD 사용 설명서 (이 설명서) 제품 보증서 www.buffalotech.com 소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를

More information

LXR 설치 및 사용법.doc

LXR 설치 및 사용법.doc Installation of LXR (Linux Cross-Reference) for Source Code Reference Code Reference LXR : 2002512( ), : 1/1 1 3 2 LXR 3 21 LXR 3 22 LXR 221 LXR 3 222 LXR 3 3 23 LXR lxrconf 4 24 241 httpdconf 6 242 htaccess

More information

thesis

thesis ( Design and Implementation of a Generalized Management Information Repository Service for Network and System Management ) ssp@nile nile.postech.ac..ac.kr DPE Lab. 1997 12 16 GMIRS GMIRS GMIRS prototype

More information

20주년용

20주년용 지상파 하이브리드 TV 시스템 개발 초고속 통신망의 발전으로 인터넷을 통한 고화질 비디오 서비스가 가능하게 되었고, IPTV 서비스 등의 방통융합서비스도 본격화되고 있 또한 최근에는 단순한 방송시청 뿐 만 아니라 검색이나 SNS 서비스 등의 다양한 기능을 가진 스마트TV도 등장하였 이에 따라 방송 이외의 매체를 통한 비디오 콘텐츠 소비가 증가하고 있고, IT사업자들과

More information

Microsoft PowerPoint - 11주차_Android_GoogleMap.ppt [호환 모드]

Microsoft PowerPoint - 11주차_Android_GoogleMap.ppt [호환 모드] Google Map View 구현 학습목표 교육목표 Google Map View 구현 Google Map 지원 Emulator 생성 Google Map API Key 위도 / 경도구하기 위도 / 경도에따른 Google Map View 구현 Zoom Controller 구현 Google Map View (1) () Google g Map View 기능 Google

More information

운영체제실습_명령어

운영체제실습_명령어 운영체제실습 리눅스네트워크기본개념및설정 서 기옥 Contents 네트워크용어정의 IP 주소 네트워크기본명령어 네트워크관리명령어 네트워크설정파일 telnet 서버설정 네트워크용어정의 네트워크 (Network) : 전자적으로데이터를주고받기위한목적으로연결된 2 개이상의컴퓨터시스템 IP 주소와 Ethernet 주소 IP 주소 : 네트워크에연결된시스템을구분하는소프트웨어적인주소

More information

Microsoft PowerPoint 통신 및 압축 명령어.ppt

Microsoft PowerPoint 통신 및 압축 명령어.ppt 컴퓨터특강 () 2006 년봄학기 문양세강원대학교컴퓨터과학과 PING 원격지컴퓨터의상태 (accessible 여부 ) 를확인 $ ping host-name // alive or dead check $ ping s host-name // packet 송수신확인 Page 2 1 TELNET (1/4) telnet 은원격지에있는상대방컴퓨터에자신의컴퓨터를접속하여,

More information

6주차.key

6주차.key 6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Page 1 Page 2 Page 3 Page 4 Page 5 Page 6 Page 7 Internet Page 8 Page 9 Page 10 Page 11 Page 12 1 / ( ) ( ) / ( ) 2 3 4 / ( ) / ( ) ( ) ( ) 5 / / / / / Page 13 Page 14 Page 15 Page 16 Page 17 Page 18 Page

More information

Mango220 Android How to compile and Transfer image to Target

Mango220 Android How to compile and Transfer image to Target Mango220 Android How to compile and Transfer image to Target http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys

More information

Solaris Express Developer Edition

Solaris Express Developer Edition Solaris Express Developer Edition : 2008 1 Solaris TM Express Developer Edition Solaris OS. Sun / Solaris, Java, Web 2.0,,. Developer Solaris Express Developer Edition System Requirements. 768MB. SPARC

More information

1. What is AX1 AX1 Program은 WIZnet 사의 Hardwired TCP/IP Chip인 iinchip 들의성능평가및 Test를위해제작된 Windows 기반의 PC Program이다. AX1은 Internet을통해 iinchip Evaluation

1. What is AX1 AX1 Program은 WIZnet 사의 Hardwired TCP/IP Chip인 iinchip 들의성능평가및 Test를위해제작된 Windows 기반의 PC Program이다. AX1은 Internet을통해 iinchip Evaluation 1. What is AX1 AX1 Program은 WIZnet 사의 Hardwired TCP/IP Chip인 iinchip 들의성능평가및 Test를위해제작된 Windows 기반의 PC Program이다. AX1은 Internet을통해 iinchip Evaluation Board(EVB B/D) 들과 TCP/IP Protocol로연결되며, 연결된 TCP/IP

More information

歯최덕재.PDF

歯최덕재.PDF ISP Monitoring Tool OSPF SNMP, Metric MIB OSPFECMP 1 11 [6], Metric ISP(Internet Service Provider) Monitoring Tool, [5] , (Network Management System) SNMP ECMP Cost OSPF ECMP IGP(Interior Gateway Protocol)

More information

Intra_DW_Ch4.PDF

Intra_DW_Ch4.PDF The Intranet Data Warehouse Richard Tanler Ch4 : Online Analytic Processing: From Data To Information 2000. 4. 14 All rights reserved OLAP OLAP OLAP OLAP OLAP OLAP is a label, rather than a technology

More information

시스코 무선랜 설치운영 매뉴얼(AP1200s_v1.1)

시스코 무선랜 설치운영 매뉴얼(AP1200s_v1.1) [ Version 1.3 ] Access Point,. Access Point IP 10.0.0.1, Subnet Mask 255.255.255.224, DHCP Client. DHCP Server IP IP,, IP 10.0.0.X. (Tip: Auto Sensing Straight, Cross-over.) step 1]. step 2] LAN. step

More information

e- 11 (Source: IMT strategy 1999 'PERMISSION ' ) The World Best Knowledge Providers Network

e- 11 (Source: IMT strategy 1999 'PERMISSION  ' )  The World Best Knowledge Providers Network e 메일 /DB 마케팅 E? E e http://www.hunet.co.kr The World Best Knowledge Providers Network e- 11 (Source: IMT strategy 1999 'PERMISSION email' ) http://www.hunet.co.kr The World Best Knowledge Providers Network

More information

슬라이드 제목 없음

슬라이드 제목 없음 (JTC1/SC6) sjkoh@knu.ac.kr JTC1 JTC1/SC6/WG7 ECTP/RMCP/MMC (JTC1/SC6) 2/48 JTC1 ISO/IEC JTC1 Joint Technical Committee 1 ( ) ISO/TC 97 ( ) IEC/TC 83 ( ) Information Technology (IT) http://www.jtc1.org

More information

전송계층프로토콜 TCP(Transmission Control Protocol) 전송계층에서동작하는연결지향형 (connectionoriented) 프로토콜 데이터의흐름을관리하고, 데이터가정확한지검증하며통신 쓰리웨이핸드셰이킹 (three-way handshaking) 을통

전송계층프로토콜 TCP(Transmission Control Protocol) 전송계층에서동작하는연결지향형 (connectionoriented) 프로토콜 데이터의흐름을관리하고, 데이터가정확한지검증하며통신 쓰리웨이핸드셰이킹 (three-way handshaking) 을통 전송계층프로토콜 TCP(Transmission Control Protocol) 전송계층에서동작하는연결지향형 (connectionoriented) 프로토콜 데이터의흐름을관리하고, 데이터가정확한지검증하며통신 쓰리웨이핸드셰이킹 (three-way handshaking) 을통해연결설정 특징 - 높은신뢰성 - 가상회선연결방식 - 연결의설정과해제 - 데이터체크섬 - 시간초과와재전송

More information

Business Agility () Dynamic ebusiness, RTE (Real-Time Enterprise) IT Web Services c c WE-SDS (Web Services Enabled SDS) SDS SDS Service-riented Architecture Web Services ( ) ( ) ( ) / c IT / Service- Service-

More information

2009년 상반기 사업계획

2009년 상반기 사업계획 웹 (WWW) 쉽게배우는데이터통신과컴퓨터네트워크 학습목표 웹서비스를위한클라이언트 - 서버구조를살펴본다. 웹서비스를지원하는 APM(Apache, PHP, MySQL) 의연동방식을이해한다. HTML 이지원하는기본태그명령어와프레임구조를이해한다. HTTP 의요청 / 응답메시지의구조와동작원리를이해한다. CGI 의원리를이해하고 FORM 태그로사용자입력을처리하는방식을알아본다.

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

More information

Assign an IP Address and Access the Video Stream - Installation Guide

Assign an IP Address and Access the Video Stream - Installation Guide 설치 안내서 IP 주소 할당 및 비디오 스트림에 액세스 책임 본 문서는 최대한 주의를 기울여 작성되었습니다. 잘못되거나 누락된 정보가 있는 경우 엑시스 지사로 알려 주시기 바랍니다. Axis Communications AB는 기술적 또는 인쇄상의 오류에 대해 책 임을 지지 않으며 사전 통지 없이 제품 및 설명서를 변경할 수 있습니다. Axis Communications

More information

Microsoft PowerPoint - L4-7Switch기본교육자료.ppt

Microsoft PowerPoint - L4-7Switch기본교육자료.ppt L4-7 Switch 기본교육자료 Pumpkin Networks. Inc. http://www.pumpkinnet.co.kr (Tel) 02-3280-9380 (Fax) 02-3280-9382 info@pumpkinnet.co.kr 기본개념 L4/L7 Switch 란? -2- 기본개념 - Switching & Routing Switching & Routing

More information

EDB 분석보고서 (04.06) ~ Exploit-DB(http://exploit-db.com) 에공개된별로분류한정보입니다. Directory Traversal users-x.php 4.0 -support-x.php 4.0 time-

EDB 분석보고서 (04.06) ~ Exploit-DB(http://exploit-db.com) 에공개된별로분류한정보입니다. Directory Traversal users-x.php 4.0 -support-x.php 4.0 time- EDB 분석보고서 (04.06) 04.06.0~04.06.0 Exploit-DB(http://exploit-db.com) 에공개된별로분류한정보입니다. 분석내용정리 ( 작성 : 펜타시큐리티시스템보안성평가팀 ) 04년 06월에공개된 Exploit-DB의분석결과, SQL 공격에대한보고개수가가장많았습니다. 이와같은결과로부터여전히 SQL 이웹에서가장많이사용되는임을확인할수있습니다.

More information

Week13

Week13 Week 13 Social Data Mining 02 Joonhwan Lee human-computer interaction + design lab. Crawling Twitter Data OAuth Crawling Data using OpenAPI Advanced Web Crawling 1. Crawling Twitter Data Twitter API API

More information

제목 레이아웃

제목 레이아웃 웹해킹이라고무시하는것들보소 2017.07.10 RUBIYA805[AT]GMAIL[DOT]COM SQL Injection 끝나지않은위협 2017.07.10 RUBIYA805[AT]GMAIL[DOT]COM Who am I 정도원 aka rubiya Penetration tester Web application bughuter Pwned 20+ wargame @kr_rubiya

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Post - Internet Marketing Contents. Internet Marketing. Post - Internet Marketing Trend. Post - Internet Marketing. Paradigm. . Internet Marketing Internet Interactive Individual Interesting International

More information