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

Size: px
Start display at page:

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

Transcription

1

2 8 (6/8) : 2 2 / 49

3 9 : 3 / 49

4 ARPANET in / 49

5 4 ARPANET ARPANET in / 49

6 lumeta internet mapping / 49

7 IP 7 / 49

8 ( ) (L3) : : 7 Application Application 6 Presentation Presentation 5 Session Session 4 Transport Transport 3 Network Network Network 2 Data Link Data Link Data Link 1 Physical Physical Physical node relay node node OSI 7 8 / 49

9 (hierarchical routing) Autonomous System (AS): ( ) Keio University: AS38635 WIDE Project: AS2500 SINET: AS2907 AS AS 2 AS 3c 3a 3b AS3 1a 1c 1d 1b AS1 2a 2c 2b AS2 9 / 49

10 IGP (Interior Gateway Protocol): AS RIP (Routing Information Protocol) distance vector routing protocol (Bellman-Ford algorithm) OSPF (Open Shortest Path First) link state routing protocol (Dijkstra s algorithm) EGP (Exterior Gateway Protocol): AS BGP (Boader Gateway Protocol) path vector routing protocol 10 / 49

11 (topology) ( ) 2 IP 11 / 49

12 traceroute : skitter/ark (CAIDA): 20 iplane (U. Washington): PlanetLab DIMES (Tel Aviv U.) AS BGP : RouteViews (U. Oregon), RIPE RIS 12 / 49

13 traceroute IP TTL (time-to-live) TTL 1 TTL 0 ICMP TIME EXCEEDED IP IP TTL = 1 TTL = 2 TTL = 3 src ICMP Time Exceeded dst ICMP Time Exceeded ICMP Dst Port Unreachable 13 / 49

14 traceroute sample output % traceroute traceroute to ( ), 64 hops max, 40 byte packets ( ) ms ms ms 2 jc-gw0.iij.net ( ) ms ms ms 3 tky001ix07.iij.net ( ) ms ms ms 4 tky001bb00.iij.net ( ) ms ms ms 5 tky001ix04.iij.net ( ) ms ms ms ( ) ms ms ms 7 ge toknf-cr2.ix.singtel.com ( ) ms ms ms 8 p6-13.sngtp-cr2.ix.singtel.com ( ) ms ( ) ms ms ( ) ms ms ( ) ms ( ) ms ms ms ( ) ms ms ms 12 st1-6-bkk.csloxinfo.net ( ) ms ms ms 13 st1-6-bkk.csloxinfo.net ( ) ms ms ms ( ) ms ms ms 15 * * * 16 * * * 17 * * * 14 / 49

15 BGP AS AS AS AS : AS BGP : BGP : BGP table version is , local router ID is Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, S Stale Origin codes: i - IGP, e - EGP,? - incomplete Network Next Hop Metric LocPrf Weight Path * / i *> i 15 / 49

16 RouteViews University of Oregon 10 : AS / 49

17 active BGP entries (RIB): 557k on 2015/6/ / 49

18 CAIDA s skitter/ark projects CAIDA skitter/ark: traceroute / 49

19 AS source: 2009 Internet Observatory Report (NANOG47) 19 / 49

20 AS source: 2009 Internet Observatory Report (NANOG47) 20 / 49

21 (node or vertex) (edge) : : ( ) (path): 2 (subgraph): (degree): ( ) ( ) Bellman-Ford Dijkstra ( ) ( : ) 21 / 49

22 Dijkstra 1. : = 0 = 2. : (1) (2) dijkstra algorithm 22 / 49

23 : Dijkstra $ cat topology.txt a - b 5 a - c 8 b - c 2 b - d 1 b - e 6 c - e 3 d - e 3 c - f 3 e - f 2 d - g 4 e - g 5 f - g 4 $ ruby dijkstra.rb -s a topology.txt a: (0) a b: (5) a b c: (7) a b c d: (6) a b d e: (9) a b d e f: (10) a b c f g: (10) a b d g $ a b 5 d c 3 4 e g f 4 23 / 49

24 : JR ( 100m) $ cat jr.txt # JR Yamanote line Osaki - Gotanda 09 Gotanda - Meguro 12 Meguro - Ebisu 15 Ebisu - Shibuya 16 Shibuya - Harajuku 12 Harajuku - Yoyogi Tamachi - Shinagawa 22 Shinagawa - Osaki 20 # JR Chuo line Tokyo - Kanda 13 Kanda - Ochanomizu 13 Ochanomizu - Suidobashi Sagaya - Yoyogi 10 Yoyogi - Shinjuku 07 # JR Sobu line Ochanomizu - Akihabara 09 Akihabara - Asakusabashi 11 $ $ ruby dijkstra.rb -s Shinagawa -d Ochanomizu jr.txt Ochanomizu: (94) Shinagawa Tamachi Hamamatsucho Shinbashi Yurakucho Tokyo Kanda Ochanomizu $ ruby dijkstra.rb -s Tokyo -d Shinjuku jr.txt Shinjuku: (103) Tokyo Kanda Ochanomizu Suidobashi Iidabashi Ichigaya Yotsuya Shinanomachi Sagaya Yoyogi $ 24 / 49

25 sample code (1/4) #!/usr/bin/env ruby # # dijkstra s algorithm based on the pseudo code in the wikipedia # # usage: dijkstra.rb -s source [-d destination] topologyfile require optparse source = nil # source of spanning-tree destination = nil # destination OptionParser.new { opt opt.on( -s VAL ) { v source = v} opt.on( -d VAL ) { v destination = v} opt.parse!(argv) } INFINITY = 0x7fffffff # constant to represent a large number 25 / 49

26 sample code (2/4) # read topology file and initialize nodes and edges # each line of topology file should be "node1 (- ->) node2 weight_val" nodes = Array.new # all nodes in graph edges = Hash.new # all edges in graph ARGF.each_line do line s, op, t, w = line.split next if line[0] ==?# w == nil unless op == "-" op == "->" raise ArgumentError, "edge_type should be either - or -> " weight = w.to_i nodes << s unless nodes.include?(s) # add s to nodes nodes << t unless nodes.include?(t) # add t to nodes # add this to edges edges[s] = {} # if edges[s] doesn t exit, initialize with empty hash edges[s][t] = weight # if this edge is undirected, add the reverse directed edge if (op == "-") edges[t] = {} edges[t][s] = weight # sanity check if source == nil raise ArgumentError, "specify source_node by -s source " unless nodes.include?(source) raise ArgumentError, "source_node(#{source}) is not in the graph" 26 / 49

27 sample code (3/4) # create and initialize 2 hashes: distance and previous dist = Hash.new # distance for destination prev = Hash.new # previous node in the best path nodes.each do i dist[i] = INFINITY # Unknown distance function from source to v prev[i] = -1 # Previous node in best path from source # run the dijkstra algorithm dist[source] = 0 # Distance from source to source while (nodes.length > 0) # u := vertex in Q with smallest dist[] u = nil nodes.each do v if (!u) (dist[v] < dist[u]) u = v if (dist[u] == INFINITY) break # all remaining vertices are inaccessible from source nodes = nodes - [u] # remove u from Q # update dist[] of u s neighbors edges[u].keys.each do v alt = dist[u] + edges[u][v] if (alt < dist[v]) dist[v] = alt prev[v] = u 27 / 49

28 sample code (4/4) # print the shortest-path spanning-tree dist.sort.each do v, d # if destination is specified, skip other destinations next if destination && destination!= v print "#{v}: " # destination node if d!= INFINITY print "(#{d}) " # distance # construct path from dest to source i = v path = "#{i}" while prev[i]!= -1 do path.insert(0, "#{prev[i]} ") # prep previous node i = prev[i] puts "#{path}" # print path from source to dest else puts "unreachable" 28 / 49

29 graphviz ( digraph finite_state_machine { rankdir=lr; size="8,5" node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8; node [shape = circle]; LR_0 -> LR_2 [ label = "SS(B)" ]; LR_0 -> LR_1 [ label = "SS(S)" ];... LR_8 -> LR_6 [ label = "S(b)" ]; LR_8 -> LR_5 [ label = "S(a)" ]; } 29 / 49

30 2: twitter : : Kwak twitter data 4000 : twitter degrees txt (135KB) 10,000 twitter degrees.zip (164MB, 550MB) 4000 numeric2screen.zip (365MB, 756MB) ID 1. twitter following/follower 10, following/follower CCDF X following/follower log-log ID 4. : 5. : : PDF SFC-SFS : / 49

31 twitter degrees.zip (164MB, 550MB) # id followings followers numeric2screen.zip (365MB, 756MB) # id screenname 12 jack 13 biz 14 noah 15 crystal 16 jeremy 17 tonystubblebine 18 Adam 20 ev 21 dom 22 rabble / 49

32 10,000 X following Y follower log-log 1 (0 ) CCDF X following/follower log-log 1 50 ID # rank id screenname followings followers aplusk TheEllenShow britneyspears cnnbrk Oprah twitter / 49

33 sort sort : $ sort [options] [FILE...] options ( ) -n : -r : -k POS1[,POS2] : (1 ) -t SEP : -m : -T DIR : : file 3 /usr/tmp $ sort -nr -k3,3 -T/usr/tmp file 33 / 49

34 : 1 # ruby autocorr.rb autocorr_5min_data.txt > autocorr.txt # head -10 autocorr_5min_data.txt T00: T00: T00: T00: T00: T00: T00: T00: T00: T00: # head -10 autocorr.txt / 49

35 : 1 # ruby autocorr.rb autocorr_5min_data.txt > autocorr.txt # head -10 autocorr_5min_data.txt T00: T00: T00: T00: T00: T00: T00: T00: T00: T00: # head -10 autocorr.txt / 49

36 k R(k) = 1 n n x i x i+k k = 0 R(k)/R(0) i=1 n 2n R(0) = 1 n i=1 x 2 i 36 / 49

37 # regular expression for matching 5-min timeseries re = /^(\d{4}-\d{2}-\d{2})t(\d{2}:\d{2})\s+(\d+)\s+(\d+)/ v = Array.new() # array for timeseries ARGF.each_line do line if re.match(line) v.push $3.to_f n = v.length # n: number of samples h = n / 2-1 # (half of n) - 1 r = Array.new(n/2) # array for auto correlation for k in 0.. h # for different timelag s = 0 for i in 0.. h s += v[i] * v[i + k] r[k] = Float(s) # normalize by dividing by r0 if r[0]!= 0.0 r0 = r[0] for k in 0.. h r[k] = r[k] / r0 printf "%d %.3f\n", k, r[k] 37 / 49

38 set xlabel "timelag k (minutes)" set ylabel "auto correlation" set xrange [-100:5140] set yrange [0:1] plot "autocorr.txt" using ($1*5):2 notitle with lines auto correlation timelag k (minutes) 38 / 49

39 2: : ifbps txt format: time IN(bits/sec) OUT(bits/sec) original format: unix time IN(bytes/sec) OUT(bytes/sec) OUT IN traffic (Mbps) /03 05/10 05/17 05/24 05/31 time IN OUT 39 / 49

40 2: mean stddev 350 Traffic (Mbps) time (2 hour interval) 40 / 49

41 2: # time in_bps out_bps re = /^\d{4}-\d{2}-(\d{2})t(\d{2}):\d{2}:\d{2}\s+\d+\.\d+\s+(\d+\.\d+)/ # arrays to hold values for every 2 hours sum = Array.new(12, 0.0) sqsum = Array.new(12, 0.0) num = Array.new(12, 0) ARGF.each_line do line if re.match(line) # matched hour = $2.to_i / 2 bps = $3.to_f sum[hour] += bps sqsum[hour] += bps**2 num[hour] += 1 printf "#hour\tn\tmean\t\tstddev\n" for hour in mean = sum[hour] / num[hour] var = sqsum[hour] / num[hour] - mean**2 stddev = Math.sqrt(var) printf "%02d\t%d\t%.1f\t%.1f\n", hour * 2, num[hour], mean, stddev 41 / 49

42 2: set xlabel "time (2 hour interval)" set xtic 2 set xrange [-1:23] set yrange [0:] set key top left set ylabel "Traffic (Mbps)" plot "hourly_out.txt" using 1:($3/ ) title mean with lines, \ "hourly_out.txt" using 1:($3/ ):($4/ ) title "stddev" with yerrorbars 42 / 49

43 2: Traffic (Mbps) Mon Tue Wed Thu Fri Sat Sun time (2 hour interval) 43 / 49

44 2: # time in_bps out_bps re = /^\d{4}-\d{2}-(\d{2})t(\d{2}):\d{2}:\d{2}\s+\d+\.\d+\s+(\d+\.\d+)/ # is Tuesday, add wdoffset to make wday start with Monday wdoffset = 0 # traffic[wday][hour] traffic = Array.new(7){ Array.new(12, 0.0) } num = Array.new(7){ Array.new(12, 0) } ARGF.each_line do line if re.match(line) # matched wday = ($1.to_i + wdoffset) % 7 hour = $2.to_i / 2 bps = $3.to_f traffic[wday][hour] += bps num[wday][hour] += 1 printf "#hour\tmon\ttue\twed\tthu\tfri\tsat\tsun\n" for hour in printf "%02d", hour * 2 for wday in printf " %.1f", traffic[wday][hour] / num[wday][hour] printf "\n" 44 / 49

45 2: set xlabel "time (2 hour interval)" set xtic 2 set xrange [-1:23] set yrange [0:] set key top left set ylabel "Traffic (Mbps)" plot "week_out.txt" using 1:($2/ ) title Mon with lines, \ "week_out.txt" using 1:($3/ ) title Tue with lines, \ "week_out.txt" using 1:($4/ ) title Wed with lines, \ "week_out.txt" using 1:($5/ ) title Thu with lines, \ "week_out.txt" using 1:($6/ ) title Fri with lines, \ "week_out.txt" using 1:($7/ ) title Sat with lines, \ "week_out.txt" using 1:($8/ ) title Sun with lines 45 / 49

46 2: Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed Thu Fri Sat Sun / 49

47 2: n = 12 for wday in for wday2 in sum_x = sum_y = sum_xx = sum_yy = sum_xy = 0.0 for hour in x = traffic[wday][hour] / num[wday][hour] y = traffic[wday2][hour] / num[wday2][hour] sum_x += x sum_y += y sum_xx += x**2 sum_yy += y**2 sum_xy += x * y r = (sum_xy - sum_x * sum_y / n) / Math.sqrt((sum_xx - sum_x**2 / n) * (sum_yy - sum_y**2 / n)) printf "%.3f\t", r printf "\n" 47 / 49

48 9 : 48 / 49

49 10 (6/22) : 49 / 49

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè5²ó 5 2011 6 8 : 1 2 / 31 : 3 / 31 ARPANET in 1969 4 / 31 4 ARPANET ARPANET in 1973 5 / 31 lumeta internet mapping http://www.lumeta.com http://www.cheswick.com/ches/map/ 6 / 31 IP 7 / 31 ( ) (L3) : : 7 Application

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè9²ó 9 2012 6 8 : 2 2 / 45 : 3 / 45 ARPANET in 1969 4 / 45 4 ARPANET ARPANET in 1973 5 / 45 lumeta internet mapping http://www.lumeta.com http://www.cheswick.com/ches/map/ 6 / 45 IP 7 / 45 ( ) (L3) : : 7 Application

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè9²ó 9 2014 6 9 8 (6/2) : 2 2 / 49 9 : 3 / 49 ARPANET in 1969 4 / 49 4 ARPANET ARPANET in 1973 5 / 49 lumeta internet mapping http://www.lumeta.com http://www.cheswick.com/ches/map/ 6 / 49 IP 7 / 49 ( ) (L3)

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè10²ó 10 2012 6 15 : 2 / 37 : 3 / 37 DNS CPU 4 / 37 : DoS / : 5 / 37 : : IDS: Intrusion Detection System 6 / 37 7 / 37 Flash Crowd ( etc) DoS/DDoS PC scan worm/virus SQL Slammer, Code Red ( ) 8 / 37 YouTube

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè10²ó 10 2013 6 19 9 (6/12) : 2 / 47 10 : 3 / 47 DNS CPU 4 / 47 : DoS / : 5 / 47 : : IDS: Intrusion Detection System 6 / 47 7 / 47 Flash Crowd ( etc) DoS/DDoS PC scan worm/virus SQL Slammer, Code Red ( ) 8 /

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè2²ó 2 212 4 13 1 (4/6) : ruby 2 / 35 ( ) : gnuplot 3 / 35 ( ) 4 / 35 (summary statistics) : (mean) (median) (mode) : (range) (variance) (standard deviation) 5 / 35 (mean): x = 1 n (median): { xr+1 m, m = 2r

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè2²ó 2 2015 4 20 1 (4/13) : ruby 2 / 49 2 ( ) : gnuplot 3 / 49 1 1 2014 6 IIJ / 4 / 49 1 ( ) / 5 / 49 ( ) 6 / 49 (summary statistics) : (mean) (median) (mode) : (range) (variance) (standard deviation) 7 / 49

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

第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

宛先変更のトラブルシューティ ング

宛先変更のトラブルシューティ ング APPENDIX B この付録では Guard の宛先変更元ルータ (Cisco および Juniper) に関連する宛先変更問題を解決するためのトラブルシューティング手順を示します 次の手順について説明します Guard のルーティングと宛先変更元ルータの設定確認 Guard と宛先変更元ルータ間の BGP セッションの設定確認 宛先変更元ルータのレコードの確認 B-1 Guard のルーティングと宛先変更元ルータの設定確認

More information

untitled

untitled 7 Review PC+ () 1+PHS etc!! SOI!! Topics () IP () / L3 IP YMH RTX-1500 BUFFLO BHR-4RV PLNEX GW-P54SG Cisco 2600 Hitachi GR2000-1B Cisco 3700 Juniper M10 Foundry Networks NetIron 800 Cisco CRS-1 (FIB: Forwarding

More information

????? 1???

????? 1??? SUN MON TUE WED THU FRI SAT SUN MON TUE WED THU FRI SAT SUN MON TUE WED THU FRI SAT SUN MON TUE WED THU FRI SAT SUN MON TUE WED THU FRI SAT SUN MON TUE WED THU FRI SAT SUN MON TUE WED THU FRI SAT SUN MON

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

13koki_koza.indd

13koki_koza.indd Tokyo University of Science Calendar 2013. 10~2014. 3 2013 6 13 20 27 7 14 21 28 1 8 15 22 29 10 Sun Mon Tue Wed Thu Fri Sat 2 9 16 23 30 3 10 17 24 31 4 11 18 25 5 12 19 26 3 10 17 24 4 11 18 25 5 12

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè3²ó 3 2013 4 24 2 (4/17) ( ) : gnuplot 2 / 55 3 : 3 / 55 : ISP - 5 / 55 : 6 / 55 fast path: slow path: ICMP processor line card line card switch fabric line card line card 7 / 55 ( ) ping traceroute tcpdump

More information

【公開】村越健哉_ヤフーのIP CLOSネットワーク

【公開】村越健哉_ヤフーのIP CLOSネットワーク P ヤフーの IP CLOS ネットワーク サイトオペレーション本部 インフラ技術 3 部 村越健哉 紹介 P n 名前 u 村越健哉 ( むらこしけんや ) n 所属 u サイトオペレーション本部インフラ技術 3 部 n 仕事 u ヤフーのプロダクションネットワーク全般 アジェンダ P n Hadoopネットワーク変遷 n IP CLOS ネットワーク構成詳細 u 設計 u 構築 u 運 n Hadoopテスト結果

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè3²ó 3 2011 5 25 :gnuplot 2 / 26 : 3 / 26 web server accesslog mail log syslog firewall log IDS log 4 / 26 : ( ) 5 / 26 ( ) 6 / 26 (syslog API ) RRD (Round Robin Database) : 5 1 2 1 1 1 web 7 / 26 web server

More information

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè3²ó 3 2012 4 20 ( ) : gnuplot 2 / 54 : 3 / 54 : ISP - 5 / 54 : 6 / 54 fast path: slow path: ICMP processor line card line card switch fabric line card line card 7 / 54 ( ) ping traceroute tcpdump SNMP 8 /

More information

NetworkKogakuin12

NetworkKogakuin12 最短経路をもとめるダイクストラ法 ダイクストラ法はグラフの各点から特定の点への最短距離 ( 経路 ) を逐次的に (= 1 台のコンピュータで ) もとめる方法である. ダイクストラ法 = ダイクストラののアルゴリズム 数学的なネットワーク ( グラフ ) のアルゴリズムとしてもっとも重要なものの ひとつである. 入力 グラフ ( ネットワーク ) グラフ上の終点 ( 特定の点 ) 14 3 4 11

More information

ネットワークのおべんきょしませんか? 究める BGP サンプル COMMUNITY アトリビュートここまで解説してきた WEIGHT LOCAL_PREFERENCE MED AS_PATH アトリビュートはベストパス決定で利用します ですが COMMUNITY アトリビュートはベストパスの決定とは

ネットワークのおべんきょしませんか? 究める BGP サンプル COMMUNITY アトリビュートここまで解説してきた WEIGHT LOCAL_PREFERENCE MED AS_PATH アトリビュートはベストパス決定で利用します ですが COMMUNITY アトリビュートはベストパスの決定とは COMMUNITY アトリビュートここまで解説してきた WEIGHT LOCAL_PREFERENCE MED AS_PATH アトリビュートはベストパス決定で利用します ですが COMMUNITY アトリビュートはベストパスの決定とは直接関係しません COMMUNITY アトリビュートを利用すると 特定の条件に基づいてルート情報をグループ化する ことができます グループ化したルート情報の識別情報

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回 ネットワークとは

第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

Print

Print 2016 5.14 6.3 6.22 7.16 )22 5.14()22() ) 6.3()5() W)26 )18 6.22(W)26() 26( 7.16()18(M) 18(M 2016 V2 0 www.imageforumfestival.com 0 V7 V9 V2 0 11:00 13:45 16:30 19:00 5/14 [sat] 5/15 [sun ] 5/16 [mon

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

untitled

untitled 2013. Apr.4 Mon Tue Wed Thu Fri Sat Sun 4/1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 5/1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 TEL WEB 1 2 3 4 1 2 3! ENTER 2013. 329 2013.

More information

橡2-TrafficEngineering(revise).PDF

橡2-TrafficEngineering(revise).PDF Traffic Engineering AsiaGlobalCrossing GlobalCrossing Japan Traffic Engineering(TE) ( RFC2702 Requirements for Traffic Engineering over MPLS) 1 MPLS/VPN MPLS/TE MPLS VPN Prefix base (TDP

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

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè7²ó 7 2013 5 29 6 (5/15) : 2 / 41 7 : 3 / 41 (univariate analysis) (multivariate analysis) ( ) 4 / 41 : 5 / 41 : WIDE 2001 1570 6 / 41 ITS 3 (, ) source: google crisis response 7 / 41 ( ) 8 / 41 :.Locky WiFi

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

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

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

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè11²ó 11 2013 6 19 11 (6/19) 6 (18:10-19:40) λ13 UNIX : 2 / 26 UNIX UNIX sort, head, tail, cat, cut diff, tee, grep, uniq, wc join, find, sed, awk, screen 3 / 26 sort sort : $ sort [options] [FILE...] options

More information

JANOG14-コンバージェンスを重視したMPLSの美味しい使い方

JANOG14-コンバージェンスを重視したMPLSの美味しい使い方 MPLS JANOG14 BGP MPLS 2 : : 1988 2 2003 7 : 3 ( ( )100%) : 633 (2003 ) : : 1,029 (2004 7 1 ) 3 So-net 250 4 30!? 10 Non IP IP 5 IGP? ECMP ECMP?? 6 BGP MPLS 7 MPLS ATM IP ATM

More information

gnuplot.dvi

gnuplot.dvi gnuplot gnuplot 1 gnuplot exit 2 10 10 2.1 2 plot x plot sin(x) plot [-20:20] sin(x) plot [-20:20][0.5:1] sin(x), x, cos(x) + - * / ** 5 ** plot 2**x y =2 x sin(x) cos(x) exp(x) e x abs(x) log(x) log10(x)

More information

RPKI in DNS DAY

RPKI in DNS DAY RPKI in DNS DAY 木村泰司 2015 年 11 月 19 日 ( 木 ) 発表者 名前 木村泰司 ( きむらたいじ ) 所属 一般社団法人日本ネットワークインフォメーションセンター (JPNIC) CA / RPKI / DNSSEC / セキュリティ情報 : 調査 ( 執筆 ) セミナー 企画 開発 運用 ユーザサポート 業務分野 電子証明書 / RPKI / DNSSEC (DPS/

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

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

fx-9860G Manager PLUS_J

fx-9860G Manager PLUS_J fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション ADD-PATH の 基本的な設定例と検討課題 インターネットマルチフィード ( 株 ) 技術部 Interop tokyo 2013 NOC 金井瑛 1 Interop Tokyo 2013 と ADD-PATH 今年度の Interop Tokyo 2013 では ADD-PATH の相互接続検証を行いました MX80, MX480, CRS-X, ASR9006

More information

0ニ0・モgqNャX1TJf・

0ニ0・モgqNャX1TJf・ 2013 Summer 2012.4.1 >>> 2013.3.31 01 Masayuki Shimada 02 6: 6: 6: 03 SUN SAT FRI THU WED TUE MON 18 17 19 20 22 23 24 21 54 58 45 58 58 54 58 55 25 12 05 54 54 58 27 58 35 54 54 54 6: 5: 04 10: 10:54

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

Step1 Step2 Step3 Step4 Step5 COLUMN.1 Step1 Step2 Step3 Step4 Step5 Step6 Step7 Step8 COLUMN.2 Step1 Step2 Step3 Step4 Step5 COLUMN.3 Step1 Step2 Ste

Step1 Step2 Step3 Step4 Step5 COLUMN.1 Step1 Step2 Step3 Step4 Step5 Step6 Step7 Step8 COLUMN.2 Step1 Step2 Step3 Step4 Step5 COLUMN.3 Step1 Step2 Ste 2 0 1 2 C A L E N D A R 7 8 9 SUN MON TUE WED THU FRI SAT SUN MON TUE WED THU FRI SAT SUN MON TUE WED THU FRI SAT 1 2 3 4 5 6 7 1 2 3 4 8 9 10 11 12 13 14 5 6 7 8 9 10 11 15 16 17 18 19 20 21 12 13 14

More information

BGPルートがアドバタイズされない場合のトラブルシューティング

BGPルートがアドバタイズされない場合のトラブルシューティング BGP ルートがアドバタイズされない場合のトラブルシューティング 目次 概要前提条件要件使用するコンポーネント表記法基本的なネットワークステートメントを使用してアナウンスされるルートマスクとのネットワークステートメントを使用してアナウンスされるルート aggregate-address コマンドを使用してアナウンスされるルート ibgp が記憶したルートをアナウンスできない場合 redistribute

More information

Qu

Qu 卒業研究報告 題 目 QoS の検証に向けたネットワークシミュレータ NS-2 の機能拡張 指導教員 植田和憲講師 報告者学籍番号 1060192 氏名石本一生 平成 18 年 3 月 20 日 高知工科大学電子 光システム工学科 2 1 3 1.1.......................................... 3 1.2........................................

More information

untitled

untitled - - GRIPS 1 traceroute IP Autonomous System Level http://opte.org/ GRIPS 2 Network Science http://opte.org http://research.lumeta.com/ches/map http://www.caida.org/home http://www.imdb.com http://citeseer.ist.psu.edu

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 A I / 58

2 A I / 58 2 A 2018.07.12 I 2 2018.07.12 1 / 58 I 2 2018.07.12 2 / 58 π-computer gnuplot 5/31 1 π-computer -X ssh π-computer gnuplot I 2 2018.07.12 3 / 58 gnuplot> gnuplot> plot sin(x) I 2 2018.07.12 4 / 58 cp -r

More information

Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a

Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a Page 1 of 6 B (The World of Mathematics) November 0, 006 Final Exam 006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (a) (Decide whether the following holds by completing the truth

More information

Microsoft PowerPoint irs14-rtbh.ppt

Microsoft PowerPoint irs14-rtbh.ppt RTBH 実装例の紹介 ~AS9370 編 ~ さくらインターネット ( 株 ) 技術部大久保修一 ohkubo@sakura.ad.jp 今日の Agenda はじめに RTBH とは? RTBH 実装の背景 構成の検討 ルータの試験 OSPF vs BGP BGP 広報経路の RTBH 化 まとめ RTBH とは? Remotely Triggered Black Hole Filtering

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

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 11 20 p.1/34 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

橡C14.PDF

橡C14.PDF BGP4 (( ) InternetWeek 98 ( ) Internet Week98 1998 Toshiya Asaba, Japan Network Information Center 1. 2. BGP 2.1. 2.2. ISP 2.3. IX - 2.4. 2.5. 3. BGP4 3.1. BGP4 3.2. EBGP IBGP 3.3. BGP AS 3.4. AS AS 3.5.

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

Inter-IX IX/-IX 10/21/2003 JAPAN2003 2

Inter-IX IX/-IX 10/21/2003 JAPAN2003 2 Inter-IX satoru@ft.solteria.net 10/21/2003 JAPAN2003 1 Inter-IX IX/-IX 10/21/2003 JAPAN2003 2 Inter-IX? Inter-IX IX IX L2 10/21/2003 JAPAN2003 3 (1) IX (-IX) IX Resiliency 10/21/2003 JAPAN2003 4 (2) IX

More information

橡3-MPLS-VPN.PDF

橡3-MPLS-VPN.PDF MPLS-VPN NTT () MPLS IP IP 1 MPLS-VPN MPLS IP-VPN IP (IP-Sec VPN) MPLS-VPNMPLS (IP-VPN) MPLS-VPN IF ATM HSD (FR IP ) (a)ipsec-vpn ( ) (b)mpls-vpn IP-NW MPLS-VPN VPN 2 MPLS-VPN Cisco

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

Ruby Ruby ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( ) 44=>

Ruby Ruby ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( ) 44=> Ruby Ruby 200779 ruby Ruby G: Ruby>ruby Ks sample1.rb G: Ruby> irb (interactive Ruby) G: Ruby>irb -Ks irb(main):001:0> print( 2+3+4+5+6+7+8+9 ) 44 irb(main):002:0> irb irb(main):001:0> 1+2+3+4 => 10 irb(main):002:0>

More information

ループ防止技術を使用して OSPFv3 を PE-CE プロトコルとして設定する

ループ防止技術を使用して OSPFv3 を PE-CE プロトコルとして設定する ループ防止技術を使用して OSPFv3 を PE-CE プロトコルとして設定する 目次 概要前提条件要件使用するコンポーネント背景説明設定ネットワーク図設定 DN ビット確認トラブルシューティング Cisco サポートコミュニティ - 特集対話 概要 このドキュメントでは Open Shortest Path First (1 バージョン 3 (OSPFv3) " を プロバイダーエッジ (PE )

More information

Cisco 1711/1712セキュリティ アクセス ルータの概要

Cisco 1711/1712セキュリティ アクセス ルータの概要 CHAPTER 1 Cisco 1711/1712 Cisco 1711/1712 Cisco 1711/1712 1-1 1 Cisco 1711/1712 Cisco 1711/1712 LAN Cisco 1711 1 WIC-1-AM WAN Interface Card WIC;WAN 1 Cisco 1712 1 ISDN-BRI S/T WIC-1B-S/T 1 Cisco 1711/1712

More information

untitled

untitled Section 1 5 6 MRTG 7 Prefix RMON NetFlow NetFlow NetFlow Data Collector DB Subnet B B Router = Exporter Subnet A AS IP Prefix 1 8 Subnet B Router = Exporter AS AS Prefix 2 NetFlow Version 5 AS AS Peer

More information

2 I I / 61

2 I I / 61 2 I 2017.07.13 I 2 2017.07.13 1 / 61 I 2 2017.07.13 2 / 61 I 2 2017.07.13 3 / 61 7/13 2 7/20 I 7/27 II I 2 2017.07.13 4 / 61 π-computer gnuplot MobaXterm Wiki PC X11 DISPLAY I 2 2017.07.13 5 / 61 Mac 1.

More information

ニュース10-11月号

ニュース10-11月号 2 TOKYO NATIONAL MUSEUM NEWS 8 1201 3PICK UP DATA 1250 1081212 1300 1,5001,200 1,200900 900600 20 1 03-5777-8600 http:// todaiji2010.jp/ 10 8 200 1121121 3 EVENT 12 13 12 13 12 13 3 10301330151161330153

More information

HA8000-bdシリーズ RAID設定ガイド HA8000-bd/BD10X2

HA8000-bdシリーズ RAID設定ガイド HA8000-bd/BD10X2 HB102050A0-4 制限 補足 Esc Enter Esc Enter Esc Enter Main Advanced Server Security Boot Exit A SATA Configuration SATA Controller(s) SATA Mode Selection [Enabled] [RAID] Determines how

More information

migrating_to_2-node_cluster_flyer.ps

migrating_to_2-node_cluster_flyer.ps CN1610 2 2 CN1610 2 2 ( ) (N3150 N3220 N3240 ) 2 v CN1610 v ( ) CN1610 2 CN1610 2 2 : v 2 v Data ONTAP 8.2 v v LIF CN1610 : v CN1610 RCF FASTPATH IBM N Web v v v / CN1610 Data ONTAP (Clustered Data ONTAP

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

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

cpall.dvi

cpall.dvi 55 7 gnuplot gnuplot Thomas Williams Colin Kelley Unix Windows MacOS gnuplot ( ) ( ) gnuplot gnuplot 7.1 gnuplot gnuplot () PC(Windows MacOS ) gnuplot http://www.gnuplot.info gnuplot 7.2 7.2.1 gnuplot

More information

wide90.dvi

wide90.dvi 12 361 1 (CPU ) Internet TCP/IP TCP/IP TCP/IP Internet ( ) (IP ) ( ) IP 363 364 1990 WIDE IP Internet IP IP ( ) IP Internet IP Internet IP IP IP IP IP IP IP Internet Internet 1.1 2 Internet Internet Internet

More information

.....Q.........\..A

.....Q.........\..A Osaka University of Commerce vol.01 2009 July 4. ( 2. ( 6. ( 5. ( 3. ( 1. ( ! 5 1 8 9 5 1 8 9 11 4 8 5 13 20 27 10 7 14 28 6 10 20 18 17 7 1 8 15 22 30 11 4 25 1 13 20 2 12 13 910 282 1923 1723 12 2 9

More information

C01-C04

C01-C04 1 January 20 21 22 23 24 25 26 27 28 29 30 31 sun mon tue wed thu fri s a t sun mon tue wed thu fri s a t 13 14 15 16 1 January 17 18 19 sun mon tue wed thu fri s a t sun mon tue wed thu fri s a t 13 20

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

外部ルート向け Cisco IOS と NXOS 間の OSPF ルーティング ループ/最適でないルーティングの設定例

外部ルート向け Cisco IOS と NXOS 間の OSPF ルーティング ループ/最適でないルーティングの設定例 外部ルート向け Cisco IOS と NXOS 間の OSPF ルーティングループ / 最適でないルーティングの設定例 目次 はじめに前提条件要件使用するコンポーネント背景説明重要な情報 RFC 1583 セクション 16.4.6 からの抜粋 RFC 2328 セクション 16.4.1 からの抜粋設定シナリオ 1 ネットワーク図シナリオ 2 ネットワーク図推奨事項確認トラブルシューティング関連情報

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

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

/

/ / 1 UNIX AWK( ) 1.1 AWK AWK AWK A.V.Aho P.J.Weinberger B.W.Kernighan 3 UNIX AWK GNU AWK 1 1.2 1 mkdir ~/data data ( ) cd data 1 98 MS DOS FD 1 2 AWK 2.1 AWK 1 2 1 byte.data 1 byte.data 900 0 750 11 810

More information

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門

Debian での数学ことはじめ。 - gnuplot, Octave, R 入門 .... Debian gnuplot, Octave, R mkouhei@debian.or.jp IRC nick: mkouhei 2009 11 14 OOo OS diff git diff --binary gnuplot GNU Octave GNU R gnuplot LaTeX GNU Octave gnuplot MATLAB 1 GNU R 1 MATLAB (clone)

More information

wide97.dvi

wide97.dvi 12 357 1 WIDE MOBSEC (Mobile Security) Working Group Mobile-IP IP (IPSEC) IPA( ) (NECM) NECM 11 MOBSEC IP IETF Mobile-IP VIP PC 40 LAN IP IP MANET (Mobile Ad Hoc Networking) IETF Working Group 359 2 2.1

More information

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル P1E1M01500-3 - - - LSI MegaRAID SAS-MFI BIOS Version x.xx.xx (Build xxxx xx, xxxx) Copyright (c) xxxx LSI Corporation HA -0 (Bus xx Dev

More information

Microsoft Word - Meta70_Preferences.doc

Microsoft Word - Meta70_Preferences.doc Image Windows Preferences Edit, Preferences MetaMorph, MetaVue Image Windows Preferences Edit, Preferences Image Windows Preferences 1. Windows Image Placement: Acquire Overlay at Top Left Corner: 1 Acquire

More information

help gem gem gem my help

help gem gem gem my help hikiutils 1234 2017 3 1 1 6 1.0.1 help gem................... 7 gem.................................... 7 gem................................... 7 my help.................................. 7 my help......................

More information

$ ifconfig lo Link encap: inet : : inet6 : ::1/128 : UP LOOPBACK RUNNING MTU:65536 :1 RX :8 :0 :0 :0 :0 TX :8 :0 :0 :0 :0 (Collision

$ ifconfig lo Link encap: inet : : inet6 : ::1/128 : UP LOOPBACK RUNNING MTU:65536 :1 RX :8 :0 :0 :0 :0 TX :8 :0 :0 :0 :0 (Collision 2 (1) (2)PC [1], [2], [3] 2.1 OS ifconfig OS 2.1 ifconfig ( ) ifconfig -a 2.1 PC PC enp1s0, enx0090cce7c734, lo 3 PC 2.1 13 $ ifconfig lo Link encap: inet :127.0.0.1 :255.0.0.0 inet6 : ::1/128 : UP LOOPBACK

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

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

kubostat2018d p.2 :? bod size x and fertilization f change seed number? : a statistical model for this example? i response variable seed number : { i

kubostat2018d p.2 :? bod size x and fertilization f change seed number? : a statistical model for this example? i response variable seed number : { i kubostat2018d p.1 I 2018 (d) model selection and kubo@ees.hokudai.ac.jp http://goo.gl/76c4i 2018 06 25 : 2018 06 21 17:45 1 2 3 4 :? AIC : deviance model selection misunderstanding kubostat2018d (http://goo.gl/76c4i)

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

Quiz 1 ID#: Name: 1. p, q, r (Let p, q and r be propositions. Determine whether the following equation holds or not by completing the truth table belo

Quiz 1 ID#: Name: 1. p, q, r (Let p, q and r be propositions. Determine whether the following equation holds or not by completing the truth table belo Quiz 1 ID#: Name: 1. p, q, r (Let p, q and r be propositions. Determine whether the following equation holds or not by completing the truth table below.) (p q) r p ( q r). p q r (p q) r p ( q r) x T T

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

SRX IDP Full IDP Stateful Inspection 8 Detection mechanisms including Stateful Signatures and Protocol Anomalies Reassemble, normalize, eliminate ambi

SRX IDP Full IDP Stateful Inspection 8 Detection mechanisms including Stateful Signatures and Protocol Anomalies Reassemble, normalize, eliminate ambi IDP (INTRUSION DETECTION AND PREVENTION) SRX IDP Full IDP Stateful Inspection 8 Detection mechanisms including Stateful Signatures and Protocol Anomalies Reassemble, normalize, eliminate ambiguity Track

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

ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13

ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13 ProVAL Unit System Enable Recording Log Preferred Language Default File Type Default Project Path ProVAL : Unit SystemUse SI Units SI SI USCS Enable Recording Log Language Default File Type Default Project

More information

I I / 68

I I / 68 2013.07.04 I 2013 3 I 2013.07.04 1 / 68 I 2013.07.04 2 / 68 I 2013.07.04 3 / 68 heat1.f90 heat2.f90 /tmp/130704/heat2.f90 I 2013.07.04 4 / 68 diff heat1.f90 heat2.f90!! heat2. f 9 0! c m > NGRID! c nmax

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

untitled

untitled 8 GP 3 (utonomous System) GP(order Gateway Protocol) GP GP GP 1 ISP 1 KI 2516 SO-NET 2527 IIJ 2497 ON 4713 WIE 2500 GP (order Gateway Protocol) ISP External GP ( ) 2516 7660 2500 4717 4767 ( ) 1 1 2 2

More information

T rank A max{rank Q[R Q, J] t-rank T [R T, C \ J] J C} 2 ([1, p.138, Theorem 4.2.5]) A = ( ) Q rank A = min{ρ(j) γ(j) J J C} C, (5) ρ(j) = rank Q[R Q,

T rank A max{rank Q[R Q, J] t-rank T [R T, C \ J] J C} 2 ([1, p.138, Theorem 4.2.5]) A = ( ) Q rank A = min{ρ(j) γ(j) J J C} C, (5) ρ(j) = rank Q[R Q, (ver. 4:. 2005-07-27) 1 1.1 (mixed matrix) (layered mixed matrix, LM-matrix) m n A = Q T (2m) (m n) ( ) ( ) Q I m Q à = = (1) T diag [t 1,, t m ] T rank à = m rank A (2) 1.2 [ ] B rank [B C] rank B rank

More information

AN 100: ISPを使用するためのガイドライン

AN 100: ISPを使用するためのガイドライン ISP AN 100: In-System Programmability Guidelines 1998 8 ver.1.01 Application Note 100 ISP Altera Corporation Page 1 A-AN-100-01.01/J VCCINT VCCINT VCCINT Page 2 Altera Corporation IEEE Std. 1149.1 TCK

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

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