スライド タイトルなし

Size: px
Start display at page:

Download "スライド タイトルなし"

Transcription

1 - TCP; Transmission Control Protocol - (1) TCP (2) TCP Interactive Data Flow (3) TCP Bulk Data Flow (4) TCP Data Retransmission (5) TCP Persist Timer (6) TCP Keep Alive Timer (7) 1

2 ping telnet ftp X traceroute tftp bootp smtp NFS/RPC TCP UDP ICMP IP IGMP Data-Link Ethernet FDDI SDH FR ATM 2

3 - TCP : Transmission Control Protocol - TCP (Transmission Control Protocol) end-to-end / Application TCP IP Network Interface Physical IP Network Interface Physical Application TCP IP Network Interface Physical 3

4 - TCP; Transmission Control Protocol - (1) TCP (2) TCP Interactive Data Flow (3) TCP Bulk Data Flow (4) TCP Data Retransmission (5) TCP Persist Timer (6) TCP Keep Alive Timer (7) 4

5 TCP Header Format source port identifier destination port identifier Offset(4) Rsrvd(6) checksum sequence number ACK number control bits UR AK PH R T SY FN window size Urgent Pointer 20 Bytes Option Padding 5

6 TCP Header Format UR AK PH RT SY FN Urgent Pointer Field Significant (URG) Acknowledgement Field Significant (ACK) Push Function Reset the Connection Synchronize Sequence Numbers (SYN) No More Data From Sender (FIN) 6

7 TCP Features Stream Oriented Data Transmission Connection (Three-way-handshake) Connection ( Stream ) Identifier Socket {dst_ip_addr, dst_port, src_ip_addr, src_port} Sequence Number ; 32 bits 0 (2^32-1) 2^32 Sequence Number Wrap Full-Duplex Acknowledgement (ACK) ; (SN) (Segment retransmission) by Time-out, Dupilicated-ACK Sliding Window Control (*) Window_size 65,535 Bytes 7

8 TCP Port Allocation RFC1700) 1. Well-Known Ports ; 0-1, Registered Ports ; 1,024-49, Dynamic and/or Private Ports ; 49,152-65,535 : ftp://ftp.isi.edu/in-notes/iana/assignments/port-numbers 8

9 TCP Well-Known Ports Port Number Keyword Application 5 rje Remote Job Entry 20 ftp-data File Transfer [Default data] 21 ftp File Transfer [Control] 23 telnet Telnet 25 smtp Simple Management Protocol 39 rlp Resource Location Protocol 53 domain Domain Name Server 63 whois++ Whois++ 67 bootp Bootstrap Protocol Server 69 tftp Trivial File Transfer 70 gopher Gopher 79 finger Finger 80 http World Wide Web HTTP 110 pop3 Post Office Protocol - Version sunrpc SUN Remote Procedure Call 119 nntp Network News Transfer Protocol 9

10 TCP Well-Known Ports Port Number Keyword Application 123 ntp Network Time Protocol 137 netbios-ns NetBIOS Name Service 138 netbios-dgm NetBIOS Datagram Service 139 netbios-ssn NetBIOS Session Service 179 bgp Border Gateway Protocol (BGP) 202 at-nbp AppleTalk Name Binding Protocol 213 ipx IPX 220 imap3 IMAP3 (Interactive Mail Access Protocol) 396 netware-ip Novell Netware over IP 540 uucp uucp daemon 546 dhcpv6-client DHCPv6 Client 547 dhcpv6-server DHCPv6 Server 560 rmonitor remote monitor daemon 10

11 TCP Connection / Log on the console; svr4% telnet bsdi discard Trying Connected to bsdi. Escape character is ^]. ^] telnet> quit Connection closed. #port= 9 (server discard packet) tcpdump output svr > bsdi.discard: S (0) win 4096 <mss 1024> (0.0024) bsdi.discard > svr4.1037: S (0) ack win 4096 <mss 1024> (0.0048) svr > bsdi.discard:. ack win (4.1482) svr > bsdi.discard: F 14156:14156(0) ack win (0.0013) bsdi.discard > svr4.1037:. ack win (0.0014) bsdi.discard > svr4.1037: F (0) ack win (0.0225) svr > bsdi.discard:. ack win 4096

12 TCP Connection / tcpdump output svr > bsdi.discard: S (0) win 4096 <mss 1024> (0.0024) bsdi.discard > svr4.1037: S (0) ack win 4096 <mss 1024> (0.0048) svr > bsdi.discard:. ack win (4.1482) svr > bsdi.discard: F 14156:14156(0) ack win (0.0013) bsdi.discard > svr4.1037:. ack win (0.0014) bsdi.discard > svr4.1037: F (0) ack win (0.0225) svr > bsdi.discard:. ack win 4096 [ ] source.port > destination.port : flags SN_begin.SN_end(data_size) flags : S = SYN ; Synchronize sequence_number(sn) F = FIN ; Finish data transmission R = RST ; Reset connection P = PSH ; push data to receiving process asap. = ; none of above four flags is on SN_end = SN_begin + data_size win 4096 ; window size is 4096 mss 1024 ; maximum segment size is 1024 bytes 12

13 TCP Connection / svr (client) segment 1 SYN (0) bsdi.discard(server) segment 3 ( ) SN SYN (0) ACK ACK segment 2 ( ) SN segment 4 FIN 14156:14156(0) ACK ACK segment 5 ( ) SN segment 6 segment 7 ( ) SN FIN (0) ACK ACK

14 TCP Connection / svr (client) bsdi.discard(server) Active open (appli. open : telnet) SYN_ACK(a+1,b) Passive open open SYN (a) ACK(b+1) open Active Close (application close: quit) half close FIN (m,s) ACK (m+1) FIN_ACK (m+1,s) ACK (s+1) EOF to Application Passive Close (application close) half close full close 14

15 SYN_RCVD appl: close send: FIN FIN_WAIT_1 recv: ACK send: <nothing> recvl: SYN send: SYN, ACK FIN_WAIT_2 recv: ACK send: <nothing> appl: close send: FIN appl: passive open send: <nothing> recv: FIN send: ACK recv: FIN,ACK send: ACK recv: FIN send: ACK Active close CLOSED LISTEN passive open Send : RST appl: send data send: SYN recv: SYN send: SYN,ACK (simultaneous open) ESTABLISHED simultaneous close CLOSING recv: ACK send: <nothing> TIME_WAIT 2 MSL timeout appl: active open send: SYN SYN_SENT recv: SYN,ACK send: ACK recv: FIN send: ACK Active open appl: close or timeout CLOSE_WAIT appl: close send: FIN LAST_ACK Passive close recv: ACK send: <nothing>

16 TCP Layer Interfaces Session OPEN SEND RECEIVE STATUS ABORT CLOSE Session Session Session TCP IP Send (Service_Type, TTL, ) Recieve send receive 16

17 TCP Layer Interfaces (1) OPEN Call ; ; Local_port, Destination_socket, Open_Mode(Active/Passive), [timeout_value] [Priority], [security], [Options] ; Local_Connection_Name TCP ; LISTEN(Passive_Open) ESTABLISHED(Active_Open) System calls; - socket(pf, type, protocol) - bind(socket, localaddr, adddrlen) - connect(socket, destaddr, addrlen) (2) SEND Call : ; Local_Connection_Name,, [PUSH], [URG], [ ] ; TCP ; (ESTASBLISHED) System calls ; write(socket, buffer, length) send(socket, message, length, flags) 17

18 TCP Layer Interfaces (3) RECEIVE Call : ; Local_Connection_Name, ;, URG, PUSH, [ ] TCP ; (ESTASBLISHED) System calls ; read(descriptor, buffer, length) recvfrom(socket, buffer, flags, fromaddr, addlen) recvmsg(socket, messagestruct, flags) (4) STATUS Call ; ; Local_Connection_Name ; Local_Socket, Destination_Socket, Local_Conenction_Name, window_size, window_size, Connection_state, ACK,, URG, Priority, Security, 18

19 TCP Layer Interfaces (5) ABORT Call : ; Local_Connection_Name ; TCP ; (CLOSED) (6) CLOSE Call : ; Local_Connection_Name ; TCP ; (CLOSED) System call ; close(socket) 19

20 - TCP; Transmission Control Protocol - (1) TCP (2) TCP Interactive Data Flow (3) TCP Bulk Data Flow (4) TCP Data Retransmission (5) TCP Persist Timer (6) TCP Keep Alive Timer (7) 20

21 TCP Interactive Data Flow - Default and Basic Procedure - Telnet client Telnet server key-stroke d data byte ack of data byte to telnet server process d echo to display process d echo of data byte ack of echo data byte echo from telnet server process d 21

22 TCP Interactive Data Flow - Delayed ACK - Telnet client Telnet server key-stroke d echo to display process d data byte ack of data byte echo of data byte to telnet server process d Aggregate message Delayed ACK echo from telnet server process d ack of echo data byte 22

23 TCP Interactive Data Flow - Delayed ACK : Piggy-Back - Telnet client Telnet server data byte delay window echo of data byte + ack of data byte ndow delay wi echo from telnet server process d ack of echo data byte 23

24 TCP Interactive Data Flow <Client> <Server> date n (6 bytes) => Sat Feb 6 07:52:17 MST 1993 n (30 bytes) d a t e n CR/LF svr bsdi.1023 > svr4.login: P 0:1(1) ack (0.0165) svr4.login > bsdi.1023: P 1:2(1) ack (0.1235) bsdi.1023 > svr4.login:. ack (0.3181) bsdi.1023 > svr4.login: P 1:2(1) ack (0.0163) svr4.login > bsdi.1023: P 2:3(1) ack (0.0656) bsdi.1023 > svr4.login:. ack (0.2746) bsdi.1023 > svr4.login: P 2:3(1) ack (0.0165) svr4.login > bsdi.1023: P 3:4(1) ack (0.1090) bsdi.1023 > svr4.login:. ack (0.2512) bsdi.1023 > svr4.login: P 3:4(1) ack (0.0164) svr4.login > bsdi.1023: P 4:5(1) ack (0.1323) bsdi.1023 > svr4.login:. ack (0.3407) bsdi.1023 > svr4.login: P 4:5(1) ack (0.0173) svr4.login > bsdi.1023: P 5:7(2) ack (0.0420) bsdi.1023 > svr4.login:. ack (0.0599) svr4.login > bsdi.1023: P 7:37(30) ack (0.1403) bsdi.1023 > svr4.login:. ack (0.0042) svr4.login > bsdi.1023: P 37:44(7) ack (0.1958) bsdi.1023 > svr4.login:. ack 44 24

25 D-ACK D-ACK D-ACK D-ACK D-ACK D-ACK bsdi PSH 0:1(1) ack 1 (d) PSH 1:2(1) ack 1 (echo d) PSH 1:2(1) ack 2 (a) PSH 2:3(1) ack 2 (echo a) PSH 2:3(1) ack 3 (t) PSH 3:4(1) ack 3 (echo t) PSH 3:4(1) ack 4 (e) PSH 4:5(1) ack 4 (echo e) PSH 4:5(1) ack 5 ( n) svr4.login ack 2 ack 3 ack 4 ack 5 PSH 5:7(2) ack 5 (echo CR/LF) ack 7 PSH 7:37(30) ack 5 (date ) ack 37 PSH 37:44(7) ack 5 (echo svr4%) ack Delayed ACK Aggregate D-ACK ; 200 msec Piggy-back ; echo + ack segment 13 ; 1 byte data n segment 14 ; 2 byte date CR/LF

26 TCP Negle Algorithm (Sender) n e t Large RTT data packet flow a (Receiver) d aggregate payload te n + + n e t echo & ack packet flow (e.g., ack_of_ d & echo d ) : IP (20B) : TCP(20B) : Data 26

27 Negle Algorithm key-stroke (sn=1) c (sn=2) a (sn=3) t ack 2 OK sn=1 a + t at Telnet client ack 4 sn=4 (sn=3 ) PSH 1:2(1) ack 2 PSH 2:3(1) ack 2 PSH 3:5(2) ack 4 PSH 2:4(2) ack 3 ack 5 Telnet server 2 4 echo c (sn=2) at (sn=3,4) ack 5 sn=5 (sn=4 ) 27

28 Disable Negle Algorithm F1 key (sn=1) ESC (sn=2) [ (sn=3) M ack 4 OK 1,2,3 sn= 5 missing 2,3,4 Telnet client PSH 1:2(1) ack 2 PSH 2:3(1) ack 2 PSH 3:4(1) ack 2 PSH 2:5(3) ack 3 PSH 5:6(1) ack 4 ack 2 Telnet server M ^[[ 4 to telnet server ESC (sn=2) [ (sn=3) M (sn=4) ack 2 ^ timeout F1 key echo PSH 2:6(4) ack 4 ^]]M 6 ack 6 ack 2 ack 2 ^[[M 7 ack 6 OK 2,3,4,5 28

29 - TCP; Transmission Control Protocol - (1) TCP (2) TCP Interactive Data Flow (3) TCP Bulk Data Flow (4) TCP Data Retransmission (5) TCP Persist Timer (6) TCP Keep Alive Timer (7) 29

30 TCP Bulk Data Transmission - Sliding Window - Window Sliding Window (Receiver ) Congestion Window(Sender ) (1) ACK window (2) ACK Aggregation(ACK ) (3) Receiver window (4) ACK window 30

31 TCP Sliding Window Offered window (advertised by receiver) Unsent window sent and ACKed sent but not ACKed Can send ASAP Can not send until window slides 31

32 TCP Sliding Window Sent 3 and 4 Offered window (advertised by receiver) Unsent window sent and ACKed sent but not ACKed Can send ASAP Can not send until window slides Receive ack 5 from receiver 3+window=9 5+window=11 Receive ack 5 from receiver

33 TCP Sliding Window Window advertise by receiver shrink enlarge window closed by ACK reception = ACKed SN Opend by ACK reception (=ack+window) Slide window by ACK from receiver 33

34 bsdi SYN 0:0(0) win4096 <mss1024> SYN 3:3(0) ack 1 win4096 <mss1024> ack 4 win4096 PSH 1:1025(1024) ack 4 win4096 PSH 1025:2049(1024) ack 4 win4096 PSH 2049:3073(1024) ack 4 win4096 ack 2049 win4096 ack 3073 win3072 PSH 3073:4097(1024) ack 4 win4096 ack 4097 win4096 PSH 4097:5121(1024) ack 4 win4096 PSH 5121:6145(1024) ack 4 win4096 PSH 6145:7169(1024) ack 4 win4096 ack 6145 win4096 PSH 7169:8193(1024) ack 4 win4096 ack 8193 win4096 FI 8193:8193(0) ack 4 win4096 ack 8194 win4096 FIN 4:4(0) ack 8194 win4096 ack 5 win4096 svr4.discard Window - window = mss = segments ACK Window Shrink ; (*) aggregate ACK & & & & 15 34

35 bsdi.1023 svr4.discard SYN 0:0(0) win4096 <mss1024> SYN 3:3(0) ack 1 win4096 <mss1024> ack 4 win4096 PSH 1:1025(1024) ack 4 win4096 PSH 1025:2049(1024) ack 4 win4096 PSH 2049:3073(1024) ack 4 win4096 PSH 3073:4097(1024) ack 4 win ack 4097 win 0 ack 4097 win PSH 4097:5121(1024) ack 4 win4096 PSH 5121:6145(1024) ack 4 win4096 PSH 6145:7169(1024) ack 4 win4096 FIN PSH 7169:8193(1024) ack 4 win ack 8193 win 0 ack 8193 win 4096 FIN 4:4(0) ack 8194 win4096 ack 8193 win [Fast Sender Slow Receiver] Window shrink - 8 : : Window enlarge (= window update) - 9 : : (*) segment 13 : FIN Piggy-Back 35

36 TCP Congestion Window Offered window (advertised by receiver) Unsent window sent and ACKed Congestion window ( cwnd =1 ) Shall not send ASAP Can not send until window slides sent but not ACKed 36

37 TCP Congestion Window Sent 3 Offered window (advertised by receiver) Unsent window sent and ACKed Shall send without ACK ASAP; cwnd=2 (cwnd cwnd*2) Shall not send ASAP Can not send until window slides 3+window=9 4+window=10 Receive ack 4 from receiver Receive ack 4 from receiver

38 TCP Congestion Window Slow Start Policy (cwnd ; exponential increase) cwnd = 1 ; ) { for (not congestion) { for ( if ( ACK ) { cwnd = cnwd +1 } cwnd = 1 } (*) : Congestion Avoidance Sender Local 38

39 TCP Congestion Window advertised_window advertised_window congestion cwnd cwnd time < Congestion > time < Congestion > (*) Duplicated ACK 39

40 TCP Congestion Window(1) [ ] 1 [ ] [ ] [ ]

41 TCP Congestion Window(2) [ ] 2 [ ] [ ] 3 [ ]

42 TCP Congestion Window(3) [ ] 4 [ ] [ ] [ ]

43 TCP Congestion Window(4) [ ] 8 [ ] [ ] [ ]

44 cwnd =1 1 cwnd =2 cwnd =3 cwnd =4 cwnd =5 cwnd =6 bsdi :513(512) ack1 win4096 ack 513 win :1025(512) ack1 win :1537(512) ack1 win4096 ack 1025 win :2049(512) ack1 win :2561(512) ack1 win4096 ack 1537 win :3073(512) ack1 win :3585(512) ack1 win4096 ack 2049 win 8192 ack 2561 win 8192 FIN PSH 3585:4097(512) ack 1 win4096 ack 3073 win 8192 ack 3585 win 8192 ack 4098 win 7680 FIN 1:1(0) ack 4098 win 8192 ack 2 win 4096 svr4.discard

45 TCP Congestion Window 1 Advertised Window by Receiver 2 Congestion Window (cwnd ) defined by sender (*) Window(Advertised window) (1) Congestion Avoidance (2) RTT x

46 - TCP; Transmission Control Protocol - (1) TCP (2) TCP Interactive Data Flow (3) TCP Bulk Data Flow (4) TCP Data Retransmission (5) TCP Persist Timer (6) TCP Keep Alive Timer (7) 46

47 TCP Data Retransmission (1) Expire of Retransmission Timeout (RTO) Value - RTO calculation using RTT - Exponential Back-off (Max. 64 sec.) (2) Reception of Duplicated ACK - Fast Retransmission / Fast Recovery (3) Congestion Window (cwnd ) Control - Slow Start (exponential increase) - Congestion Avoidance (liner increase) 47

48 RTO Expired Retransmission bsdi sec 7 3 sec 8 6 sec 9 64 sec SYN 0:0(0) win4096 <mss1024> svr4.discard SYN 3:3(0) ack 1 win4096 <mss1024> ack 4 win4096 PSH 1:15(14) ack 4 win4096 ack 15 win 4096 PSH 15:23(8) ack 4 win4096 PSH 15:23(8) ack 4 win4096 PSH 15:23(8) ack 4 win4096 PSH 15:23(8) ack 4 win4096 PSH 15:23(8) ack 4 win (RTO; ) RTO = 1.5 sec /* */ for ( 9 minutes) { if ( RTO expired) { retransmission; RTO=RTO x 2; RTO=min{64sec, RTO}; } } end /* */ 18 PSH 15:23(8) ack 4 win

49 RTO Expired Retransmission bsdi.1029 > svr4.discard: S 1:1(0) win 4096 <mss 1024> ( ) svr4.discard > bsdi.1029: S 4:4(0) ack ( ) bsdi.1029 > svr4.discard:. ack ( ) bsdi.1029 > svr4.discard: P 1:15(14) ack ( ) svr4.discard > bsdi.1029:. ack 15 win ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.disacrd: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:28(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack ( ) bsdi.1029 > svr4.discard: P 15:23(8) ack 5 : : : : 49

50 RTO Expired Retransmission - RTO Exponential Back-Off - RTO 64 sec 48 sec 32 sec 16 sec (S) If (S 9 minutes) { continue; } else { abort; } Retransmission 50

51 Timeout and Retransmission RTO (Retransmission TimeOut) (1) ; RTT - RTO = 2 x RTT where RTT = RTTp + (1- ) RTTM = 0.9xRTTp + 0.1xRTTM (2) ; -RTO = RTT + 4 x 51

52 Retransmission by Duplicated ACK (2) Reception of Duplicated ACK - Fast Retransmission / Fast Recovery Segment ; single (or few) segment(s) ACK Segments (3 ) 52

53 Fast Retransmission by Duplicated ACK 6401:6657(256) ack1 6657:6913(256) ack1 6913:7169(256) ack1 7169:7425(256) ack1 8193:8449(256) ack1 6657:6913(256) ack1 Fast Retransmission ack 5889 ack 6145 ack 6401 ack :7681(256) ack1 ack :7937(256) ack1 ack : ) ack1 ack 6657 ack 6657 ack 6657 ack :8705(256) ack1 8705:8961(256) ack1 8961:9217(256) ack1 ack 8449 win5888 ack 8705 win5888

54 Congestion Window Control [ ] cwnd=1; cwnd for () cwnd { [1] cwnd (i) ssthresh cwnd Exponential increase (slow start) (ii) ssthresh cwnd Liner increase (congestion avoidance) [2] ssthresh (i) Timeout goto 1 (ii) Duplicated-ACK 1/2 ssthresh=65kb; if ( Timeout ) { cwnd=1; ssthresh = cwnd/2; } if ( duplicated ACK ) { ssthresh=cwnd / 2; cwnd=ssthresh; } if (cwnd ssthresh) { slow_start; /* exponential */ } else { congestion_avoidance; /* liner */ } } 54

55 Congestion Window Control ( ) ICMP (1) ICMP Source Quench cwnd = 1 ; ssthresh = as is ; (2) Host unreachable No Action ; 55

56 slow-start slow-start Congestion avoidance Congestion avoidance Congestion avoidance cwdn_1 cwdn_3 Target cnwd (cwnd_1) / 2 ssthresh (cwnd_3) / 2 cwnd Timeout Fast Recovery Fast Recovery 56

57 - TCP; Transmission Control Protocol - (1) TCP (2) TCP Interactive Data Flow (3) TCP Bulk Data Flow (4) TCP Data Retransmission (5) TCP Persist Timer (6) TCP Keep Alive Timer (7) 57

58 TCP Persist Timer [ ] Advertised window size = 0 1 Byte [ ] window= 0 [Timer ] Exponential Back-off (Max. 60 ) 58

59 TCP Persist Timer 1 bsdi.1027 > svr4.5555: P 1:1025(1024) ack 1 win ( ) svr > bsdi.1027:. ack 1025 win ( ) bsdi.1027 > svr4.5555:. 1025:2049(1024) ack 1 win ( ) bsdi.1027 > svr4.5555:. 2049:3073(1024) ack 1 win ( ) svr > bsdi.1027:. ack 3073 win ( ) bsdi.1027 > svr4.5555:. 3073:4097(1024) ack 1 win ( ) bsdi.1027 > svr4.5555: P 4097:5121(1024) ack 1 win ( ) bsdi.1027 > svr4.5555: P 5121:6145(1024) ack 1 win ( ) svr > bsdi.1027:. ack 5121 win ( ) bsdi.1027 > svr4.5555: P 6145:7169(1024) ack 1 win ( ) bsdi.1027 > svr4.5555: P 7169:8193(1024) ack 1 win ( ) bsdi.1027 > svr4.5555: P 8193:9217(1027) ack 1 win ( ) svr > bsdi.1027:. ack 9217 win 0 14 ( ) bsdi.1027 > svr4.5555:. 9217:9218(1) ack 1 win ( ) svr > bsdi.1027:. ack 9217 win 0 16 ( ) bsdi.1027 > svr4.5555:. 9218:9219(1) ack 1 win ( ) svr > bsdi.1027:. ack 9218 win 0 18 ( ) bsdi.1027 > svr4.5555:. 9219:9220(1) ack 1 win ( ) svr > bsdi.1027:. ack 9219 win 0 20 ( ) bsdi.1027 > svr4.5555:. 9220:9221(1) ack 1 win ( ) svr > bsdi.1027:. ack 9220 win 0 22 ( ) bsdi.1027 > svr4.5555:. 9221:9222(1) ack 1 win ( ) svr > bsdi.1027:. ack 9221 win 0 59

60 - TCP; Transmission Control Protocol - (1) TCP (2) TCP Interactive Data Flow (3) TCP Bulk Data Flow (4) TCP Data Retransmission (5) TCP Persist Timer (6) TCP Keep Alive Timer (7) 60

61 Keep Alive Timer [ ] (*) TCP (i) (FIN segment) (ii) [ ] TCP -2 probe -10 (75 probe ) 61

62 TCP Keepalive Timer 1 bsdi.1055 > svr4.echo: P 1:14(13) ack 1 2 ( ) svr4.echo > bsdi.1055: P 1:14(13) ack 14 3 ( ) bsdi.1055 > svr4.echo:. ack 14 4 ( ) arp who-has svr4 tell bsdi 5 ( ) arp reply svr4 is-at 0:0:c0:c2:9b:26 6 ( ) bsdi.1055 > svr4.echo:. ack 14 7 ( ) svr4.echo > bsdi.1055:. ack 14 8 ( ) arp who-has svr4 tell bsdi 9 ( ) arp reply svr4 is-at 0:0:c0:c2:9b:26 10 ( ) bsdi.1055 > svr4.echo:. ack ( ) svr4.echo > bsdi.1055:. ack ( ) arp who-has svr4 tell bsdi 13 ( ) arp who-has svr4 tell bsdi 14 ( ) arp who-has svr4 tell bsdi 15 ( ) arp who-has svr4 tell bsdi 16 ( ) arp who-has svr4 tell bsdi 17 ( ) arp who-has svr4 tell bsdi 18 ( ) arp who-has svr4 tell bsdi 19 ( ) arp who-has svr4 tell bsdi 20 ( ) arp who-has svr4 tell bsdi 21 ( ) arp who-has svr4 tell bsdi 62

63 - TCP; Transmission Control Protocol - (1) TCP (2) TCP Interactive Data Flow (3) TCP Bulk Data Flow (4) TCP Data Retransmission (5) TCP Persist Timer (6) TCP Keep Alive Timer (7) 63

64 - - (1) Silly Window Syndrome (2) MTU Discovery (3) Window scaling for long fat-pipe (4) T/TCP (Transaction TCP) (5) Rate Control (6) ECN(Explicit Congestion Notification) 64

65 Path MTU Discovery [ ] (Path MTU) [ ] ICMP (DF; Don t Fragment ) 10 65

66 1 (0.0 ) solaris > slip.discard: S 1:1(0) win 8760 <mss 1460> (DF) 2 (0.1016) slip.discard > solaris.33016: S 1:1(0) ack 1 win 4096 <mss 512> 3 (0.5290) solaris > slip.discard: P 1:513(512) ack 1 win 4096 <mss 512> 4 (0.0038) bsdi > solaris: icmp: slip unreachable - need to frag, mtu = 296 (DF) 5 (0.0259) solaris > slip.discard: F 513:513(0) ack 1 win 9216 (DF) 6 (0.0923) slip.discard > solaris.33016:. ack 1 win (0.3577) solaris > slip.discard: P 1:257(256) ack 1 win 9216 (DF) 8 (0.3290) slip.doscard > solaris.33016:. ack 257 win (0.3308) solaris > slip.discard: FP 257:513(256) ack 1 win 9216 (DF) 10 (0.3208) slip.discard > solaris.33016:. ack win (0.0422) slip.discard > solaris.33016: F 1:1(0) ack 514 win (0.1719) slip.discard > splaris.33016:. ack 2 win 9216 (DF) <mss 1460> <mss 296> solaris bsdi slip 512 B (DF) ICMP too big (mss 296) 66

67 Window Scaling for Long Fat Pipe - RFC Network Bandwidth bps RTT ms BWxRTT B Ethernet M 3 3,750 T M 60 11,580 T1 1,544 M ,500 T3 45,000 M ,500 OC12 2,400,000 M 60 7,500,000 Max. Window Size 2^(16) Bytes = 64KB Window Scaling ; wscale wscale=n 64 x 2^(n) window 67

68 Window Scaling for Long Fat Pipe 1 vangogh.4107 > bsdi.echo: S 1:1(0) win <mss 512, nop, wscale 1, nop, nop, timestamp, > 2 ( ) bsdi.echo > vangogh.4107: S 1:1(0) ack 1 win 4906 <mss 512> 3 ( ) vangogh.4107 > bsdi.echo:. ack 1 win ( ) vangogh.4107 > bsdi.echo: P 1:14(13) ack 1 win ( ) bsdi.echo > vangogh.4107: P 1:14(13) ack 14 win ( ) vangogh.4107 > bsdi.echo:. ack 14 win ( ) vangogh.4107 > bsdi.echo: F 14:14(0) ack 14 win ( ) bsdi.echo > vangogh.4107:. ack 15 win ( ) bsdi.echo > vangogh.4107: F 14:14(0) ack 15 win ( ) vangogh.4107 > bsdi.echo:. ack 15 win ( ) vangogh.4107 > bsdi.echo: S 1:1(0) win <mss 512, nop, wscale 2, nop, nop, timestamp > 12 ( ) bsdi.echo > vangogh.4107: S 1:1(0) ack 1 win 4096 <mss 512> 13 ( ) vangogh.4107 > bsdi.echo:. ack 1 win nop; no operation wscale ; window scale 68

69 RFC 1379 ; T/TCP - Transaction TCP - [ ] TCP [ ] CC (Connection Count) Option SYN Piggy-back ; half-synchronization (1) SYN, Data, FIN, CC (2) SYN, SYN-ACK, Data, FIN, FIN-ACK, CC, CC-Echo (3) FIN-ACK 69

70 Client SYN (a) SYN_ACK(a+1,b) RFC 1379 ; T/TCP ACK(b+1) Data (a+2) Data_ACK(a+2,b+1) Server Client SYN,Data,FIN,CC SYN,S-ack,Data, F,F-ack FIN-ACK Server FIN (m,s) ACK (m+1) FIN_ACK (m+1,s) ACK (s+1)

71 TCP Destination Node 1 Source Node 1 Window Line Speed with Window Rate Shaped Transmission with Window 71

72 Window Window Line Speed with Window TCP Rate Window Shaped Transmission with Window RED ECN RED ECN RED ECN 72

73 ECN(Explicit Congestion Notification) TOS for Differentiated Service - PHB(Per-Hop-Behavior) - CU(Currently Unused) => for ECN(Explicit Congestion Notification)? TOS : PHB CU PHB: DE (Default Service) EF (Expedited Forwarding) Others AF (Assured Forwarding) xxxxx0 Standard Purpose xxxx11 Experimental Purpose xxxx01 Experimental Purpose 73

74 Explicit Congestion Notification (ECN) Congestion Node (Set ECN bit) (8) ECN=11 (2) ECN=01 Reduce Speed Destination Node 1 (7) ECN=10 (1) ECN=00 (5) ECN=11 (9) ECN=11 (3) ECN=01 (4) ECN=10 Source Node 1 (6) ECN=11 Reduce Speed ; 74

トランスポートレイヤの仕事 計算機間での良好なデータのやり取りを実現する 誤りがないように 再送 パリティー情報による自動再生 (FEC; Forward Error Correction) データを取りこぼさないように それ以外に欲しくなる機能 並列データ転送 ネットワークに やさしく 道が混まな

トランスポートレイヤの仕事 計算機間での良好なデータのやり取りを実現する 誤りがないように 再送 パリティー情報による自動再生 (FEC; Forward Error Correction) データを取りこぼさないように それ以外に欲しくなる機能 並列データ転送 ネットワークに やさしく 道が混まな トランスポートレイヤ技術 - TCP; Transmission Control Protocol - 1 トランスポートレイヤの仕事 計算機間での良好なデータのやり取りを実現する 誤りがないように 再送 パリティー情報による自動再生 (FEC; Forward Error Correction) データを取りこぼさないように それ以外に欲しくなる機能 並列データ転送 ネットワークに やさしく 道が混まないように

More information

スライド タイトルなし

スライド タイトルなし トランスポートレイヤ 技 術 - TCP; Transmission Control Protocol - 1 トランスポートレイヤの 仕 事 計 算 機 のインターフェース(Socket) 間 での 良 好 な データのやり 取 りを 実 現 する 誤 りがないように 再 送 パリティー 情 報 による 自 動 再 生 (FEC; Forward Error Correction) データを 取

More information

Contents Part1: TCP Part2: TCP Part3: TCP Part4: Part5: TCP Part6:

Contents Part1: TCP Part2: TCP Part3: TCP Part4: Part5: TCP Part6: TCP Yoshifumi Nishida nishida@csl.sony.co.jp Contents Part1: TCP Part2: TCP Part3: TCP Part4: Part5: TCP Part6: TCP TCP TCP Transmission Control Protocol IP TCP application TCP UDP IP DataLink header IP

More information

I TCP 1/2 1

I TCP 1/2 1 I TCP 1/2 1 Transport layer: a birds-eye view Hosts maintain state for each transport endpoint Routers don t maintain perhost state H R R R R H Transport IP IP IP IP IP Copyright(C)2011 Youki Kadobayashi.

More information

橡c03tcp詳説(3/24修正版).PDF

橡c03tcp詳説(3/24修正版).PDF 1 1 2 TCP 1 3 TCP 9 4 TCP 15 5 21 6 TCP 25 7 27 TCP 1 TCP Windows98 Linux Solaris TCP(Transmission Control Protocol) IP TCP UDP UDP TCP UDP TCP 1 TCP RFC793 RFC2581 TCP 4-1 - DataLink header IP header

More information

128 64 32 16 8bit 7bit 6bit 5bit 4bit 3bit 2bit 1bit 8 4 2 1 3.6m 4.5m 5.5m 6.4m Tokyo:3.6m 3.6m 4.5m 3.6m 5.5m 6.4m JCSAT-3 AI 3 Hub WIDE Internet 2Mbps VSAT point-to-point/multicst

More information

2004 SYN/ACK SYN Flood G01P014-6

2004 SYN/ACK SYN Flood G01P014-6 2004 SYN/ACK SYN Flood 2005 2 2 1G01P014-6 1 5 1.1...................................... 5 1.2...................................... 5 1.3..................................... 6 2 7 2.1..................................

More information

untitled

untitled ()IP OSI ( ) (TCP/IP)TCP UDP ( ) IP + IP TCP / Web TCP/UDP IP / LAN IM xdsl/ () (FAX) 6bit(6556) FAX FAX ( ) UDP/TCP UDP(User Datagram Protocol) CL (Connectionless) TCP(Transmission Control Protocol) CO

More information

第1回 ネットワークとは

第1回 ネットワークとは 1 第 8 回 UDP TCP 計算機ネットワーク 2 L4 トランスポート層 PDU: Protocol Data Unit L4 セグメント L4 ヘッダ データ セグメントデータ最大長 =MSS maximum segment size L3 パケット IP ヘッダ TCP ヘッダ IP データ L2 フレーム イーサヘッダ IP ヘッダ TCP ヘッダ イーサネットデータ イーサトレイラ フレームデータ

More information

TCP T ransmission Control Protocol TCP TCP TCP TCP TCP TCP TCP TCP c /(18)

TCP T ransmission Control Protocol TCP TCP TCP TCP TCP TCP TCP TCP c /(18) 3 -- 4 1 TCP T ransmission Control Protocol 2013 12 TCP TCP TCP TCP TCP TCP TCP TCP c 2013 1/(18) 3 -- 4 -- 1 1--1 TCP 2013 12 TCP Transmission Control Protocol TCP TCP TCP 1981 RFC 793 Request for Comments

More information

untitled

untitled ICMP 0466-XX-1395 t04000aa@sfc.keio.ac.jp 133.113.215.10 (ipv4) 2001:200:0:8803::53 (ipv6) (FQDN: Fully Qualified Domain Name) ( www.keio.ac.jp 131.113.215.10 /MAC ID 00:11:24:79:8e:82 Port Port = = Port

More information

2 1: OSI OSI,,,,,,,,, 4 TCP/IP TCP/IP, TCP, IP 2,, IP, IP. IP, ICMP, TCP, UDP, TELNET, FTP, HTTP TCP IP

2 1: OSI OSI,,,,,,,,, 4 TCP/IP TCP/IP, TCP, IP 2,, IP, IP. IP, ICMP, TCP, UDP, TELNET, FTP, HTTP TCP IP 1.,.. 2 OSI,,,,,,,,, TCP/IP,, IP, ICMP, ARP, TCP, UDP, FTP, TELNET, ssh,,,,,,,, IP,,, 3 OSI OSI(Open Systems Interconnection: ). 1 OSI 7. ( 1) 4 ( 4),,,,.,.,..,,... 1 2 1: OSI OSI,,,,,,,,, 4 TCP/IP TCP/IP,

More information

ヤマハ ルーター ファイアウォール機能~説明資料~

ヤマハ ルーター ファイアウォール機能~説明資料~ 1 2 3 4 LAN ISDN/ NAT (LAN#) (PP#) (TUNNEL#) + R 5 ----------< >---------- ----------< >---------- 6 IPv6 VPN ping IPsec PPTP ICMP (1) TCP (6) UDP (17) IPv6 (41) AH (51) ESP (50) GRE (47) IPv4

More information

tcp/ip.key

tcp/ip.key IP TCP IP ヘッダデータ部ヘッダデータ部ヘッダデータ部 Ethernet パケット Ethernet パケット Ethernet パケット IP(1) 0 8 16 24 31 () Version IHL () Time To Live () Identification () Type of Service ) Flags Protocol () Source Address IP) Destination

More information

ヤマハ ルーター ファイアウォール機能~説明資料~

ヤマハ ルーター ファイアウォール機能~説明資料~ 1 RT140i #1(PPP) RT105i RTA52i R (PP#) (LAN#) [NAT] R LAN LAN 2 #2() RT300i RTW65b RT140e RT105e (LAN2) R (LAN1) RTA55i R LAN LAN 3 #3(PPPoE) R (LAN#) (PP#) (PP#) LAN ISDN/ LAN 4 RT300i RT105 #4(VPN) R

More information

SRT/RTX/RT設定例集

SRT/RTX/RT設定例集 Network Equipment Rev.6.03, Rev.7.00, Rev.7.01 Rev.8.01, Rev.8.02, Rev.8.03 Rev.9.00, Rev.10.00, Rev.10.01 2 3 4 5 6 1 2 3 1 2 3 7 RTX1000 RTX1000 8 help > help show command > show command console character

More information

第1回 ネットワークとは

第1回 ネットワークとは 第 6 回 IP 計算機ネットワーク ルーティング IP パケットの宛先に応じて次の転送先インターフェースを決定 D:192.168.30.5 パケット 192.168.10.0/24 fe0 192.168.20.0/24 fe1 fe3 fe2 192.168.30.0/24 ルーティングテーブル 192.168.40.0/24 192.168.10.0 direct fe0 192.168.20.0

More information

帯域を測ってみよう (適応型QoS/QoS連携/帯域検出機能)

帯域を測ってみよう (適応型QoS/QoS連携/帯域検出機能) RTX1100 client server network service ( ) RTX3000 ( ) RTX1500 2 Sound Network Division, YAMAHA 3 Sound Network Division, YAMAHA 172.16.1.100/24 172.16.2.100/24 LAN2 LAN3 RTX1500 RTX1100 client 172.16.1.1/24

More information

2011 I/ 2 1

2011 I/ 2 1 2011 I/ 2 1 ISO 7 layer reference model TCP/IP ISO 7 layer reference model 5 7 2011 I/ 2 2 2011 I/ 2 3 OSI 7 Layer Reference Model 2011 I/ 2 4 Harry Nyquist (1924) Maximum data rate = 2H log 2 V (bits/s)

More information

設定例集_Rev.8.03, Rev.9.00, Rev.10.01対応

設定例集_Rev.8.03, Rev.9.00, Rev.10.01対応 Network Equipment 設定例集 Rev.8.03, Rev.9.00, Rev.10.01 対応 2 3 4 5 6 7 8 help > help show command > show command console character administrator pp disable disconnect 9 pp enable save Password: login timer

More information

IP.dvi

IP.dvi ... 3... 3... 3... 4... 6 VLAN... 6... 6 DHCP... 7... 7... 9... 9... 10... 12 R... 15... 15... 15 ARP... 18... 18 ARP... 18 DNS... 20... 20 DHCP/BOOTP... 21... 21 DHCP... 22 UDP... 23... 23... 23... 26...

More information

wide93.dvi

wide93.dvi 5 161 1 1.1 DDT WG DDT WG 1. \DDT" 2. DDT WG DDT WG 1.2 x ( IP) y ( X.25) x y \x overy" x y 1.1 IP X.25 IP IP IPX Appletalk OSI IP \encapsulation" \encapsulation header" \decapsulation" 163 164 1993 WIDE

More information

ict2-.key

ict2-.key IP TCP TCP/IP 1) TCP 2) TCPIP 3) IPLAN 4) IP パケット TCP パケット Ethernet パケット 発信元 送信先 ヘッダ 列番号 ポート番号 TCP パケットのデータ IP パケットのデータ 本当に送りたいデータ データ IP ヘッダデータ部ヘッダデータ部ヘッダデータ部 Ethernet パケット Ethernet パケット Ethernet パケット

More information

main2.dvi

main2.dvi 15 WWW 501 1 W4C WG 1 WWW (HTTP[53, 22]) WIDE WWW 1997 3 WIDE WWW WIDE CacheBone WG 2 WWW WG WWW W4C WG 2 WIDE CacheBone 3 4 5 6 WWW 1 W4C WG:WIDE World-Wide Web Cache Working Group 503 2 WIDE CacheBone

More information

Packet Tracer: 拡張 ACL の設定 : シナリオ 1 トポロジ アドレステーブル R1 デバイスインターフェイス IP アドレスサブネットマスクデフォルトゲートウェイ G0/ N/A G0/

Packet Tracer: 拡張 ACL の設定 : シナリオ 1 トポロジ アドレステーブル R1 デバイスインターフェイス IP アドレスサブネットマスクデフォルトゲートウェイ G0/ N/A G0/ トポロジ アドレステーブル R1 デバイスインターフェイス IP アドレスサブネットマスクデフォルトゲートウェイ G0/0 172.22.34.65 255.255.255.224 N/A G0/1 172.22.34.97 255.255.255.240 N/A G0/2 172.22.34.1 255.255.255.192 N/A Server NIC 172.22.34.62 255.255.255.192

More information

NetEng-04.ppt

NetEng-04.ppt 4(1) 1 5 end-to-end host-to-host point-to-point 2 multiplexingdemultiplexing UDP TCP (flow control) (congestion control) TCP 3 ()(IP) : best-effort 4 TCP (Transmission Control Protocol) (flow control)

More information

tutorial.dvi

tutorial.dvi m-sato@yoko.nel.co.jp 1 (rough) OSI, ITU-T? ATM-Forum? DAVIC? 2 Internet Architecture Boad (IAB) IETF Engineering Steering Group (IESG) Internet PCA egistration Authority (IPA) Internet Assigned Number

More information

Agenda IPv4 over IPv6 MAP MAP IPv4 over IPv6 MAP packet MAP Protocol MAP domain MAP domain ASAMAP ASAMAP 2

Agenda IPv4 over IPv6 MAP MAP IPv4 over IPv6 MAP packet MAP Protocol MAP domain MAP domain ASAMAP ASAMAP 2 MAP Tutorial @ 1 Agenda IPv4 over IPv6 MAP MAP IPv4 over IPv6 MAP packet MAP Protocol MAP domain MAP domain ASAMAP ASAMAP 2 IPv4 over IPv6 IPv6 network IPv4 service Internet Service ProviderISP IPv4 service

More information

IP 2.2 (IP ) IP 2.3 DNS IP IP DNS DNS 3 (PC) PC PC PC Linux(ubuntu) PC TA 2

IP 2.2 (IP ) IP 2.3 DNS IP IP DNS DNS 3 (PC) PC PC PC Linux(ubuntu) PC TA 2 IP 2010 10 1 1 IP (IP ) 2 IP IP 2.1 IP (IP ) 1 IP 2.2 (IP ) IP 2.3 DNS IP IP DNS DNS 3 (PC) PC PC PC Linux(ubuntu) PC TA 2 4 1,2 4.1 (Protocol) IP:Internet Protocol) 4.2 internet The Internet (internet)

More information

I j

I j I j06062 19.5.22 19.5.25 19.5.25 1 1 1 ping 3 2 2 ping 4 3 3 traceroute 5 4 4 netstat 5 4.1 netstat -i............................................. 5 4.2 netstat -r.............................................

More information

Microsoft PowerPoint ppt [互換モード]

Microsoft PowerPoint ppt [互換モード] 第 5 回 IP 計算機ネットワーク IP Internet Protocol Layer 3 ネットワーク層 機能 アドレッシング (IP アドレス ) IP Reachable 到達可能 = インターネット L2ではローカルのみ通信可 ルーティング フラグメント IP パケット IP パケット IP ヘッダ ペイロード イーサネットヘッダ ペイロード FCS 4 14 1500 イーサネットペイロード

More information

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè1²ó

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè1²ó 1 2011 5 11 lumeta internet mapping http://www.lumeta.com http://www.cheswick.com/ches/map/ 2 / 43 ( ) 3 / 43 (Kenjiro Cho) WIDE 1984 ( ) OS 1993 1996 ( ) (QoS ) 2001 ( ) 2004 ( ) QoS 4 / 43 (Internet

More information

$ cal ) ( cal $ cal cal cal 1. () ( clear) 2. ( cal) 3. ( man) \() ( ) --() +()

$ cal ) ( cal $ cal cal cal 1. () ( clear) 2. ( cal) 3. ( man) \() ( ) --() +() 5 5 5.1 kernel UNIX OS (...) shell ( ) 5: UNIX: UNIXpp.133-134 UNIX UNIX Mac OS X $ % $ bash(bourne again shell)% tcsh() 5.2 5.2.1 5.1 clear $ clear 5.2 cal CLEAR $ cal CALender 5.2.2 1 cat /etc/shells

More information

14 G 1 ...3...4...4...4...4...4...4...5...5...6...7...7...8...9...9... 11... 11...12...13...14...16...16 5.2...17...19...24...24...25 2 PC LAN 2002 Intrusion Detection System IDS snort 3 IDS IDS snort

More information

IPv4aaSを実現する技術の紹介

IPv4aaSを実現する技術の紹介 : ( ) : (IIJ) : 2003 4 ( ) IPv6 IIJ SEIL DS-Lite JANOG Softwire wg / Interop Tokyo 2013 IIJ SEIL MAP-E 2 IPv4aaS 3 4 IPv4aaS 5 IPv4 1990 IPv4 IPv4 32 IPv4 2 = 42 = IP IPv6 6 IPv6 1998 IPv6 (RFC2460) ICMP6,

More information

IP: TCP: QoS 90 QoS IP IP IP

IP: TCP: QoS 90 QoS IP IP IP InternetWeek99 QoS DiffServ kjc@csl.sony.co.jp DiffServ DiffServ DiffServ DiffServ IP: TCP: QoS 90 QoS IP IP IP QoS QoS (admission control) (classifier) (shaping)(policing) (packet scheduler) (signaling)

More information

GA-1190J

GA-1190J GA-1190J 1 1. 2. 3. 4. 2 5. 3 PDF 4 PDF PDF PDF PDF PDF PDF PDF PDF 5 6 ...1...2...4 1...12 2...16...18 3...22 PCL/PS...23 4...26 5...30 ETHERNET...31 TCP/IP...33 IPX/SPX...38 AppleTalk...40 HTTP...42

More information

第1回 ネットワークとは

第1回 ネットワークとは 第 6 回 IP 計算機ネットワーク 2 前回まで Ethernet LAN 内通信 MAC アドレス (32:43:55 : BA:F5:DE) IP アドレス ベンダ (OUI) NIC IP アドレス ( 187.45.147.154 ) network host 組織端末 IP アドレス : 187.45.147.154 どこの組織? どのネットワーク? ネットワークアドレス ネットワーク部

More information

DocuWide 2051/2051MF 補足説明書

DocuWide 2051/2051MF 補足説明書 ëêèõ . 2 3 4 5 6 7 8 9 0 2 3 4 [PLOTTER CONFIGURATION] [DocuWide 2050/205 Version 2.2.0] [SERIAL] BAUD_RATE =9600 DATA_BIT =7 STOP_BIT = PARITY =EVEN HANDSHAKE =XON/XOFF EOP_TIMEOUT_VALUE =0 OUTPUT RESPONSE

More information

untitled

untitled NTT TOP A WAN WAN VRRP NIC OSPF VRRP STP 1. IPv6 IPv6 2. 3. IPv6 1. IPv4 NAT IPv6 1. 2. (IPv4 ) NAT? Unique Local IPv6 Unicast Address /8 /48 /64 /128 7 1 40 16 64 ULA Global ID Interface ID Type Subnet

More information

worm hoihoi

worm hoihoi true@sfc.wide.ad.jp / (IDS, Honeypot), Web / : Darknet AS65531 10.0.0.0/8 Prefix longest match next hop AS Internet Customer A 10.1.0.0/16 AS 65531 10.0.0.0/8 Customer B 10.2.0.0/16 ( ) The Team Cymru

More information

RT300/140/105シリーズ 取扱説明書

RT300/140/105シリーズ 取扱説明書 REMOTE & BROADBAND ROUTER RT300i/RT140p/RT140f/RT140i RT140e/RT105p/RT105i/RT105e 2 3 4 5 6 7 8 9 10 Bold face Enter Ctrl Tab BS Del Console RT105i RT300i RT140p RT140f RT140i RT140e RT105p RT105i RT105e

More information

ScreenOS 5.0 ScreenOS 5.0 Deep Inspection VLAN NetScreen-25/-50/-204/-208 HA NetScreen-25 HA Lite NetScreen-25 NetScreen-50) ALG(Application Layer Gat

ScreenOS 5.0 ScreenOS 5.0 Deep Inspection VLAN NetScreen-25/-50/-204/-208 HA NetScreen-25 HA Lite NetScreen-25 NetScreen-50) ALG(Application Layer Gat ScreenOS 5.0 1 2 ScreenOS 5.0 ScreenOS 5.0 Deep Inspection VLAN NetScreen-25/-50/-204/-208 HA NetScreen-25 HA Lite NetScreen-25 NetScreen-50) ALG(Application Layer Gateway NAT Destination NetScreen-Security

More information

IIJ Technical WEEK SEILシリーズ開発動向:IPv6対応の現状と未来

IIJ Technical WEEK SEILシリーズ開発動向:IPv6対応の現状と未来 SEIL : IPv6 1 SEIL 2011 IPv6 SEIL IPv6 SEIL 4rd 2 SEIL 3 SEIL (1/3) SEIL IIJ SEIL 2001/6 IPv6 SEIL/X1 SEIL/X2 50,000 SEIL/x86 1998/8 SEIL SEIL/neu 128 SEIL/neu T1 SEIL/neu 2FE SEIL/neu ATM SEIL/Turbo SEIL/neu

More information

RT300i/RT140x/RT105i 取扱説明書

RT300i/RT140x/RT105i 取扱説明書 2 3 4 5 6 7 8 9 10 Bold face Enter Ctrl Tab BS Del Typewriter face RT105i RT300i RT140p RT140f RT140i RT140e RT105i RT300i 11 RARP 9600 bit/s 8 http://www.rtpro.yamaha.co.jp/ ftp.rtpro.yamaha.co.jp 12

More information

TM-T88VI 詳細取扱説明書

TM-T88VI 詳細取扱説明書 M00109801 Rev. B 2 3 4 5 6 7 8 9 10 Bluetooth 11 12 Bluetooth 13 14 1 15 16 Bluetooth Bluetooth 1 17 1 2 3 4 10 9 8 7 12 5 6 11 18 1 19 1 3 4 2 5 6 7 20 1 21 22 1 23 24 1 25 SimpleAP Start SSID : EPSON_Printer

More information

TCP/IP Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.3 Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.4 2

TCP/IP Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.3 Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.4 2 Japan Registry Service Co., Ltd. JPRS matuura@jprs.co.jp Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.1 TCP IP DNS Windows Internet Week 2002 [2002/12/17] Japan Registry Service

More information

Microsoft PowerPoint - network8forPDF

Microsoft PowerPoint - network8forPDF 第 8 章 トランスポート層とフロー制御 インターネット上の TCP による高信頼 通信サービス 発信ノード あて先ノード 発信ノード あて先ノード アプリデータ アプリデータ アプリケーション層 アプリデータ アプリデータ TCP セグメント トランスポート層 高信頼 TCP コネクション TCP セグメント TCP コネクション型通信送信 TCP セグメント TCP コネクション型通信受信 TCP

More information

(11) - CDN 2002.07.02 E-Mail: katto@katto.comm.waseda.ac.jp n n n 1 ( ) (a) ( ) (b) IP (1) (S,G): S: G: IGMP Join/Leave D 224.0.0.0 239.255.255.255 IP (2) Shortest Path Tree Shared Tree Shortest Path

More information

ppt

ppt / 5 1 (error control) (flow control) / 5 2 Layer 1 gateway: repeater ( ) Layer 2 gateway: bridge ( ) Layer 3 gateway: router (datalink frame) / 5 3 Data link control (error detection / correction) (flow

More information

A Study on Traffic Characteristics in Multi-hop Wireless Networks 2010 3 Yoichi Yamasaki ( ) 21 Local Area Network (LAN) LAN LAN LAN (AP, Access Point) LAN AP LAN AP AP AP (MWN, Multi-hop Wireless Network)

More information

snortの機能を使い尽くす & hogwashも使ってみる

snortの機能を使い尽くす & hogwashも使ってみる presented by P snort hogwash snort1.8.2(3) Martin Roesch IDS IDS hogwash snort1.7 FW+NIDS 100M IP IP snort./configure;make su make install configure Flexresp database snmp snmp alert idmef xml smbalert

More information

total-all-nt.dvi

total-all-nt.dvi XI W I D E P R O J E C T 1 WIDE Reliable Multicast 1.1 TV 1 1 TCP WIDE JGN/JB SOI (DV) Reliable Multicast (RM) US Reliable Multicast IETF RMT-WG PGM Digital Fountain FEC Tornado Code Ruby Code 1.2 WIDE

More information

00.目次_ope

00.目次_ope 816XL ii iii iv iv User Entry 1 3 v vi vii viii 1 1 C: >VTTERM 1- 1 1-3 1 1-4 1 1-5 1 1-6 1 1-7 1 1-8 1 1-9 1 1-10 C: >VTN 1 Host Name: 1-11 1 01 1-1 0.0.0.0 1 1-13 1 1-14 - -3 Port status and configuration

More information

TCP/IP Protocols and Services

TCP/IP Protocols and Services 00ィイ09020102ィェィィ02 070905ィョ00ィィ 09 Internet 02ィ ィエ06 0607ィィ09ィ ィェィィ02 ィェィ TCP/IP 070806ィー06ィコ0605ィィ TCP 070806ィー06ィコ0605 IP 070806ィー06ィコ0605 Ethernet 070806ィー06ィコ0605 TCP/IP 05ィーィ ィェ01ィ 08ィーィィ (RFC) 00ィ

More information

2008, 2009 TOSHIBA TEC CORPORATION All rights reserved

2008, 2009 TOSHIBA TEC CORPORATION All rights reserved 2008, 2009 TOSHIBA TEC CORPORATION All rights reserved 1 2 3 1 2 ... 1 1... 8... 9... 18... 24... 25... 30... 31... 34... 37 E... 67 Bluetooth BIP... 68 2... 71... 73... 100 3 ... 132... 134... 136 E...

More information

WEB.dvi

WEB.dvi ... 5... 5... 5... 7... 8... 8... 10... 11... 11... 12... 13 HTTP... 13... 14... 15... 15... 15 IP... 15... 16... 17... 18 NTP... 18 SNMP.... 19 SNMP... 19 SNMP... 20 SNMP... 22 SNMP... 22... 22... 23...

More information

i TCP/IP NIC Intel 3com NIC TCP/IP *1 20 IPv4 IPv6 IPv6 TCP/IP TCP/IP *1 3

i TCP/IP NIC Intel 3com NIC TCP/IP *1 20 IPv4 IPv6 IPv6 TCP/IP TCP/IP *1 3 i TCP/IP NIC Intel 3com NIC TCP/IP 78 90 500 *1 20 IPv4 IPv6 IPv6 TCP/IP TCP/IP 79 80 *1 3 ii IPv4 IPv4 *2 *3 IPv6 5 IPv6 UDP UDP IP UDP IP TCP/IP IPv6 IPv4 TCP/IP IPv6 TCP/IP TCP/IP TCP/IP TCP/IP IPv6

More information

設定例集

設定例集 REMOTE ROUTER 1999. 2. 2 YAMAHA NetWare Novell,Inc. INS 64 YAMAHA! M E M O 1 1 1.1 : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 1 1.2 : : : : : : : : : : : : : : : : : : : : :

More information

1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari student

1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari student LAN 0000000000 6/6, 6/13, 6/20 1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari studentd even kumabari 1: LAN

More information

rzakg.ps

rzakg.ps IBM Systems - iseries DHCP (Dynamic Host Configuration Protocol) 5 4 IBM Systems - iseries DHCP (Dynamic Host Configuration Protocol) 5 4 65 IBM i5/os ( 5722-SS1) 5 4 0 RISC CISC URL http://www.ibm.com/jp/manuals/main/mail.html

More information

Macintosh HD:Users:ks91:Documents:lect:nm2002s:nm2002s03.dvi

Macintosh HD:Users:ks91:Documents:lect:nm2002s:nm2002s03.dvi 3 ks91@sfc.wide.ad.jp April 22, 2002 1 2 1. over IP ( : Voice over IP; IP Internet Protocol ) over IP??? : 2002/4/20 23:59 JST : http://www.soi.wide.ad.jp/report/ 3 32 11 (4/22 ) 4 () 3 2 1? 4 ...... A.C.

More information

untitled

untitled Network Product Guide Network Monitoring System Network Product Guide Time stamp Write to disk Filter Convert Summarise Network Product Guide Network Monitoring System TDS2 TDS24 Network Analysis Report

More information

Microsoft PowerPoint ppt

Microsoft PowerPoint ppt トランスポート層が提供する機能 CP その 2 山口英奈良先端科学技術大学院大学 モデル : プロセス間の通信 通信相手のプロセスの指定 プロセス間の通信路の識別 プロセス (process) は ホストの中の処理単位で 同時に複数存在することが仮定されている 上位層へのインタフェースの提供 Connection oriented (virtual circuit) Connectionless (datagram)

More information

2.5 トランスポート層 147

2.5 トランスポート層 147 2.5 トランスポート層 147 TCP と UDP TCP (Transmission Control Protocol) コネクション型 ギャランティード マルチキャスト ブロードキャスト不可 UDP (User Datagram Protocol) コネクションレス ベストエフォート マルチキャスト ブロードキャスト可 cf. IP (Internet Protocol) コネクションレス ベストエフォート

More information

Plan of Talk CAS CAS 2 CAS Single Sign On CAS CAS 2 CAS Aug. 19, 2005 NII p. 2/32

Plan of Talk CAS CAS 2 CAS Single Sign On CAS CAS 2 CAS Aug. 19, 2005 NII p. 2/32 CAS Single Sign On naito@math.nagoya-u.ac.jp naito@math.nagoya-u.ac.jp, Aug. 19, 2005 NII p. 1/32 Plan of Talk CAS CAS 2 CAS Single Sign On CAS CAS 2 CAS naito@math.nagoya-u.ac.jp, Aug. 19, 2005 NII p.

More information

SCREENOS NAT ScreenOS J-Series(JUNOS9.5 ) NAT ScreenOS J-Series(JUNOS9.5 ) NAT : Destination NAT Zone NAT Pool DIP IF NAT Pool Egress IF Loopback Grou

SCREENOS NAT ScreenOS J-Series(JUNOS9.5 ) NAT ScreenOS J-Series(JUNOS9.5 ) NAT : Destination NAT Zone NAT Pool DIP IF NAT Pool Egress IF Loopback Grou NAT NETWORK ADDRESS TRANSLATION SCREENOS NAT ScreenOS J-Series(JUNOS9.5 ) NAT ScreenOS J-Series(JUNOS9.5 ) NAT : Destination NAT Zone NAT Pool DIP IF NAT Pool Egress IF Loopback Group (ScreenOS ) 2 Copyright

More information

Flow Control Information Network 1 /

Flow Control Information Network 1 / (2) Suguru Yamaguchi Nara Institute of Science and Technology Department of Information Science Flow Control Information Network 1 / 2012 2 Flow Control DLL : Automatic Repeat Request (ARQ) Stop-and-wait

More information

Teradici Corporation #101-4621 Canada Way, Burnaby, BC V5G 4X8 Canada p +1 604 451 5800 f +1 604 451 5818 www.teradici.com Teradici Corporation Teradi

Teradici Corporation #101-4621 Canada Way, Burnaby, BC V5G 4X8 Canada p +1 604 451 5800 f +1 604 451 5818 www.teradici.com Teradici Corporation Teradi PCoIP TER0806003 TER0806003 Issue 2 0 Teradici Corporation #101-4621 Canada Way, Burnaby, BC V5G 4X8 Canada p +1 604 451 5800 f +1 604 451 5818 www.teradici.com Teradici Corporation Teradici Teradici Teradici

More information

2

2 WJ-HD150 Digital Disk Recorder WJ-HD150 2 3 q w e r t y u 4 5 6 7 8 9 10 11 12 13 14 15 16 q w SIGNAL GND AC IN 17 SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY DAILY Program 1 Event No.1 Event

More information

2/11 ANNEX 2006.09.14 2 HATS HATS

2/11 ANNEX 2006.09.14 2 HATS HATS 1/11. HATS 2/11 ANNEX 2006.09.14 2 HATS HATS 3/11... 4... 5... 5... 6... 6... 6... 7 4/11 Annex SMTP CIAJ SMTP CIAJ 5/11 SMTP SMTP POP3 SMTP Annex 6/11 SMTP ESMTP POP IMAP4 RCPT TO 7/11 CPU SMTP CPU TCP/IP

More information

オペレーティング システムでの traceroute コマンドの使用

オペレーティング システムでの traceroute コマンドの使用 オペレーティングシステムでの traceroute コマンドの使用 目次 概要前提条件要件使用するコンポーネント表記法一般的な操作 Cisco IOS と Linux Microsoft Windows ICMP 到達不能レートの制限例 Cisco IOS ソフトウェアが稼働する Cisco ルータ Linux がインストールされた PC MS Windows がインストールされた PC 補足事項要約関連情報

More information

WIDE 1

WIDE 1 WIDE 1 2 Web Web Web Web Web Web Web Web Web Web? Web Web Things to cover Web Web Web Web Caching Proxy 3 Things NOT covered / How to execute Perl Scripts as CGI binaries on Windows NT How to avoid access

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 2 : TCP/IP : HTTP HTTP/2 1 / 22 httpget.txt: http.rb: ruby http get Java http ( ) HttpURLConnection 2 / 22 wireshark httpget.txt httpget cookie.txt ( ) telnet telnet localhost 80 GET /index.html HTTP/1.1

More information

RFC2131「Dynamic Host Configuration Protocol」における実装問題点

RFC2131「Dynamic Host Configuration Protocol」における実装問題点 Barr Hibbs Implementation Issues with RFC 2131, "Dynamic Host Configuration Protocol" Internet Draft 2003 2 24 RFC2131 Dynamic Host Configuration Protocol 11300J083 Implementation Issues with RFC 2131,

More information

IP IPv4-IPv6

IP IPv4-IPv6 IPv6 Mobility IETF 2006 6 9 14:00-15:30 Interop Tokyo 2006 IIJ Nautilus6 IP IPv4-IPv6 L2 L3 Mobile IPv6 HIP L3.5 Shim6(?) L4 SCTP IPv6 Mobile IPv6/NEMO BS IETF RFC3775 - Mobile IPv6 RFC3963 - NEMO Basic

More information

BGP ( ) BGP4 community community community community July 3, 1998 JANOG2: What is BGP Community? 2

BGP ( ) BGP4 community community community community July 3, 1998 JANOG2: What is BGP Community? 2 BGP Community 1998/7/3 JANOG#2 in KDD (yahagi@itjit.ad.jp) July 3, 1998 JANOG2: What is BGP Community? 1 BGP ( ) BGP4 community community community community July 3, 1998 JANOG2: What is BGP Community?

More information

untitled

untitled osamu@sfc.keio.ac.jp CNS 18 Web http://www.sfc.wide.ad.jp/~three/itbasic05/ 6/6 7/11 1 ls -la t04xxx student -rwxr-xrx three student - rwx r-x r-x Windows GUI UNIX Windows chmod CNS (755) (ug+x) % chmod

More information

Microsoft PowerPoint network8.pptx

Microsoft PowerPoint network8.pptx 第 8 章 トランスポート層とフロー制御 高位レイヤOSI 階層モデル 表 1.1 階層 内容 情報交換 の単位 第 7 層 アプリケーション層 (application layer) WWW 電子メール ファイル転送などのアプリケーションが機能するためのプロトコル http smtp ftp など APDU 第 6 層 プレゼンテーション層 (presentation layer) アプリケーション層で利用されるデータの表現形式および表現形式間の変換

More information

untitled

untitled RPC (( Remote Procedure Call (RPC: Message-Oriented Middleware (MOM) data-streaming =(protocol) A B A B Connection protocol = connection oriented protocol TCP (Transmission Control Protocol) connectionless

More information

DiffServ DiffServ QoS DiffServ DiffServ host host host host Internet

DiffServ DiffServ QoS DiffServ DiffServ host host host host Internet InternetWeek2000 Diffserv kjc@csl.sony.co.jp Diffserv QoS IP IP DS ISP DiffServ DiffServ QoS DiffServ DiffServ host host host host Internet IP: TCP: QoS 90 QoS IP IP IP QoS QoS packet scheduler input driver

More information

LAN

LAN LAN 2003 6 4 LAN Hotel LAN LAN IEEE802.11a IEEE802.11b 802.11b 11Mbps Copyright (c) 2003 NPO Page 3 FREESPOT FREESPOT HOTSPOT NTT ( ) MZONE ( )NTT Mobile ( ) Yahoo! BB ( ) MapFanWeb http://www.mapfan.com/musen/

More information

IPSJ SIG Technical Report * Wi-Fi Survey of the Internet connectivity using geolocation of smartphones Yoshiaki Kitaguchi * Kenichi Nagami and Yutaka

IPSJ SIG Technical Report * Wi-Fi Survey of the Internet connectivity using geolocation of smartphones Yoshiaki Kitaguchi * Kenichi Nagami and Yutaka * Wi-Fi Survey of the Internet connectivity using geolocation of smartphones Yoshiaki Kitaguchi * Kenichi Nagami and Yutaka Kikuchi With the rapid growth in demand of smartphone use, the development of

More information

IP ICMP Redirec

IP ICMP Redirec Z990002-D06-08 RGW Ver1. 2 1....6 1.1....6 1.2....7 1.3....7 1.4....7 1.5....8 1.6....9 1.7.... 12 1.7.1...12 1.7.2...12 1.7.3 IP...12 1.7.4...13 1.7.5...13 1.7.6 ICMP Redirect...13 1.7.7...14 1.7.8...15

More information

total.dvi

total.dvi VII W I D E P R O J E C T MPLS-IX MPLS-IX MPLS 1 MPLS AYAME IX IX LDP/RSVP-TE/CR- [121] 1999 Sub- LDP IP MPLS IX LSP LSP MPLS ebgp[165] LSP ( 2002 1.1 1.2) MPLS-IX MPLS IPv6 6PE IX () MPLS-IX MPLS IX

More information

ワイヤレス~イーサネットレシーバー UWTC-REC3

ワイヤレス~イーサネットレシーバー UWTC-REC3 www.jp.omega.com : esales@jp.omega.com www.omegamanual.info UWTC-REC3 www.jp.omega.com/worldwide UWIR UWTC-NB9 / UWRH UWRTD UWTC 61.6 [2.42] REF 11.7 [0.46] 38.1 [1.50] 66.0 [2.60] REF 33.0 [1.30]

More information

Microsoft Word - Open_Alliance_TC8_A02.docx

Microsoft Word - Open_Alliance_TC8_A02.docx Intrepid Control Systems, Inc. ガイド Vehicle Spy --- OPEN Alliance 及び認証試験 (TC8) の紹介 --- ( 株 ) 日本イントリピッド コントロール システムズ ( 株 ) 日本イントリピッド コントロール システムズ 1 目次 1. 概要... 3 2. OPEN Alliance とは... 3 2.1. OPEN Alliance

More information

"CAS を利用した Single Sign On 環境の構築"

CAS を利用した Single Sign On 環境の構築 CAS Single Sign On (Hisashi NAITO) naito@math.nagoya-u.ac.jp Graduate School of Mathematics, Nagoya University naito@math.nagoya-u.ac.jp, Oct. 19, 2005 Tohoku Univ. p. 1/40 Plan of Talk CAS CAS 2 CAS Single

More information

wide94.dvi

wide94.dvi 14 WWW 397 1 NIR-TF UUCP ftp telnet ( ) WIDE Networked Information Retrieval( NIR ) vat(visual Audio Tool) nv(netvedeo) CERN WWW(World Wide Web) WIDE ISODE WIDE project WWW WWW 399 400 1994 WIDE 1 WIDE

More information

RTX830 取扱説明書

RTX830 取扱説明書 RTX830 JA 1 2 3 4 5 6 7 8 9 10 11 external-memory performance-test go 12 13 show config 14 15 16 17 18 19 20 save 21 22 23 24 25 26 27 save RTX830 BootROM Ver. 1.00 Copyright (c) 2017 Yamaha Corporation.

More information

CAS Yale Open Source software Authentication Authorization (nu-cas) Backend Database Authentication Authorization to@math.nagoya-u.ac.jp, Powered by A

CAS Yale Open Source software Authentication Authorization (nu-cas) Backend Database Authentication Authorization to@math.nagoya-u.ac.jp, Powered by A Central Authentication System naito@math.nagoya-u.ac.jp to@math.nagoya-u.ac.jp, Powered by Adobe Reader & ipod Photo March 10, 2005 RIMS p. 1/55 CAS Yale Open Source software Authentication Authorization

More information

卒研 .PDF

卒研 .PDF 1. ------------------------------------------------------------------------------------------2 2. ---------------------------------------------------------------------------3 2.1 2.2 2.3 OSI 2.4 TCP/IP

More information

LSM-L3-24設定ガイド(初版)

LSM-L3-24設定ガイド(初版) 6 DB-9 Figure 6-1. DB-9 6-1 DB-9 EIA CCIT T DB9 DTE # PC DB9 DTE # DB9 DCE # 9 COM DTE-DCE CF 109 DCD 1 1 8 AB 102

More information

All Rights Reserved. Copyright(c)1997 Internet Initiative Japan Inc. 1

All Rights Reserved. Copyright(c)1997 Internet Initiative Japan Inc. 1 asaba@iij.ad.jp All Rights Reserved. Copyright(c)1997 Internet Initiative Japan Inc. 1 All Rights Reserved. Copyright(c)1997 Internet Initiative Japan Inc. 2 user IX IX IX All Rights Reserved. Copyright(c)1997

More information

untitled

untitled 25: Part ( ) Chief Technology Officer mshindo@fivefront.com SNMP MRTG HP/OV RMON INTERNET WEEK 2006/12/08 Copyright 2006 Fivefront Corporation, All Rights Reserved. 2 1 SNMP IfInUcastPkts, IfOutUcastPkts

More information

LSM-L3-24設定ガイド(初版)

LSM-L3-24設定ガイド(初版) 4 2 IP 3 2 MAC VLAN 1 MAC MAC 4-1 2 4-2 VLAN classification VLAN Learning Filtering Forwarding VLAN classification learning filtering forwarding VLAN Classification 2 : - VLAN - VLAN ID Learning VLAN classification

More information

橡sirahasi.PDF

橡sirahasi.PDF Internet Week 2000 T5 IPsec VPN 2000/12/18 1 Virtual Private Network 2 IPsec 3 IPsec VPN 4 IPsec VPN 2 1 Virtual Private Network 3 Ethernet, WAN PPTP(PPP) IPSec SSL/TLS SOCKS V5 SSH, SSL-Telnet, PET PGP,

More information

IPSEC-VPN IPsec(Security Architecture for Internet Protocol) IP SA(Security Association, ) SA IKE IKE 1 1 ISAKMP SA( ) IKE 2 2 IPSec SA( 1 ) IPs

IPSEC-VPN IPsec(Security Architecture for Internet Protocol) IP SA(Security Association, ) SA IKE IKE 1 1 ISAKMP SA( ) IKE 2 2 IPSec SA( 1 ) IPs IPSEC VPN IPSEC-VPN IPsec(Security Architecture for Internet Protocol) IP SA(Security Association, ) SA IKE 1 2 2 IKE 1 1 ISAKMP SA( ) IKE 2 2 IPSec SA( 1 ) IPsec SA IKE Initiator Responder IPsec-VPN ISAKMP

More information

<Documents Title Here>

<Documents Title Here> Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone

More information

PowerPoint Presentation

PowerPoint Presentation 3 ichii@ms.u-tokyo.ac.jp DHCP (Dynamic Host Configuration Protocol) IP IP CIDR 157.82.16.1/22 255.255.252.0 dest net 157.82.16.0/24 default next hop - 157.82.16.1 hop 0 1 2002/5/29 2 IP link layer 0.0.0.0

More information