Qu

Size: px
Start display at page:

Download "Qu"

Transcription

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

2 Quality of Service QoS QoS RSVP Different Service: DiffServ RSVP DiffServ NS NS NS RSVP a 20 b NS

3 IP QoS Quality of Service ( QoS) QoS QoS QoS QoS RSVP DiffServ QoS RSVP DiffServ RSVP DiffServ RSVP DiffServ 2

4 TCP/IP TCP/IP TCP/IP TCP/IP SSH SSH World Wide Web TCP/IP 3

5 TCP Quality of Service QoS QoS QoS QoS QoS QoS RSVP DiffServ NS TCP/IP QoS QoS QoS QoS QoS 4

6 RSVP RSVP DiffServ QoS QoS NS-2 NS QoS RSVP DiffServ NS-2 NS-2 RSVP NS-2 NS-2 RSVP Marc Griez NS-2 NS : 6 1Mbps 0.5Mb 3 2 RSVP DiffServ QoS QoS RSVP DiffServ QoS 5

7 2 Quality of Service 2.1 QoS QoS IP TCP/IP TCP UDP UDP UDP QoS 6

8 UDP UDP Quality of Service( QoS) QoS QoS IP TOS(Type of Service) TOS IP 4 IP 6 TOS Traffic Class [2] QoS TOS QoS QoS 2.2 QoS RSVP DiffServ QoS RSVP DiffServ RSVP DiffServ QoS RSVP DiffServ RSVP RSVP RSVP QoS QoS RSVP 7

9 RSVP RSVP RSVP RSVP PATH PATH QoS [1] PATH QoS PATH PATH PATH PATH PATH PATH PATH OPWA one path with advertisement ADSPEC PATH PATH Resv QoS Resv PATH QoS PATH QoS Resv Resv PATH PATH Resv 8

10 RSVP Different Service: DiffServ RSVP QoS DiffServ [1] DiffServ DiffServ DiffServ RSVP RSVP DiffServ DiffServ QoS IP DS DS DiffServ PHB per hop behavior PHB DS PHB DS DS DiffServ RSVP RSVP DiffServ DiffServ RSVP DiffServ 9

11 1.1 RSVP DiffServ 2.1: RSVP DiffServ 10

12 3 NS NS NS-2 QoS NS-2 NS-2 TCP UDP QoS NS [ ] [Byte] 11

13 3.1: NS-2 nam nam NS UDP nam : nam 1 12

14 3.3: nam NS RSVP NS-2 QoS QoS NS-2 RSVP NS-2 Marc Greis NS-2 RSVP NS-2 13

15 RSVP DiffServ 4.1: M[bps] 10M[bps] UDP 3 4 5M[bps] QoS 2 2.5M[bps] RSVP DiffServ QoS : RSVP DiffServ 0 0.5Mbps 3Mbps 1 2Mbps RSVP DiffServ RSVP 0.5M[bps] 14

16 0.5M[bps] 1M[bps] 4.2 RSVP DiffServ 4.2 RSVP DiffServ DiffServ RSVP RSVP DiffServ 4.2: RSVP DiffServ 15

17 5 RSVP PATH Resv 4.2 RSVP PATH Resv RSVP PATH Recv DiffServ RSVP DiffServ DiffServ RSVP DiffServ RSVP DiffServ RSVP NS-2 RSVP 16

18 6 RSVP DiffServ RSVP NS-2 RSVP RSVP 17

19 18

20 [1], QoS,, 2001, 287p. [2] Srinivas Vegesna, IP QoS,, 2002, 343p. [3] NS2,, ( onoder/onoder/nstutorial.html) [4] NS by Example,, ( [5] Marc Greis Tutorial for the UCB/LBNL/VINT Network Simulator ns,, (

21 a DiffServ NS-2 ns-2.29/tcl/ex/diffserv/ds-cbr-srtcm.tcl # # cbr-tb.tcl # Author: Jeremy Ethridge. # Dates: June 29-July 5, # Notes: A DS-RED script that uses CBR traffic agents and the Token Bucket policer. # # ---- # s # Mb \ # 5 ms \ # \ # e core e dest # / Mb Mb Mb # / 5 ms 5 ms 5 ms # ---- / # s # Mb # 5 ms # # set ns [new Simulator] $ns color 0 red $ns color 1 blue $ns color 2 green set f0 [open ds_2mb w] set f1 [open ds_3mb w] set nf [open ds2out.nam w] 20

22 $ns namtrace-all $nf set cir set cbs set rate set cir set cbs set rate set testtime 85.0 set packetsize 1000 # Set up the network topology shown at the top of this file: set s1 [$ns node] set s2 [$ns node] set e1 [$ns node] set core [$ns node] set e2 [$ns node] set dest [$ns node] $ns duplex-link $s1 $e1 10Mb 5ms DropTail $ns duplex-link $s2 $e1 10Mb 5ms DropTail $ns simplex-link $e1 $core 10Mb 5ms dsred/edge $ns simplex-link $core $e1 10Mb 5ms dsred/core $ns simplex-link $core $e2 5Mb 5ms dsred/core $ns simplex-link $e2 $core 5Mb 5ms dsred/edge $ns duplex-link $e2 $dest 10Mb 5ms DropTail $ns duplex-link-op $s1 $e1 orient down-right $ns duplex-link-op $s2 $e1 orient up-right $ns duplex-link-op $e1 $core orient right $ns duplex-link-op $core $e2 orient right $ns duplex-link-op $e2 $dest orient right set qe1c [[$ns link $e1 $core] queue] 21

23 set qe2c [[$ns link $e2 $core] queue] set qce1 [[$ns link $core $e1] queue] set qce2 [[$ns link $core $e2] queue] # Set DS RED parameters from Edge1 to Core: $qe1c meanpktsize $packetsize $qe1c set numqueues_ 1 $qe1c setnumprec 2 $qe1c addpolicyentry [$s1 id] [$dest id] TokenBucket 10 $cir0 $cbs0 $qe1c addpolicyentry [$s2 id] [$dest id] TokenBucket 10 $cir1 $cbs1 $qe1c addpolicerentry TokenBucket $qe1c addphbentry $qe1c addphbentry $qe1c configq $qe1c configq $qe2c meanpktsize $packetsize $qe2c set numqueues_ 1 $qe2c setnumprec 2 $qe2c addpolicyentry [$dest id] [$s1 id] TokenBucket 10 $cir0 $cbs0 $qe2c addpolicyentry [$dest id] [$s2 id] TokenBucket 10 $cir1 $cbs1 $qe2c addpolicerentry TokenBucket $qe2c addphbentry $qe2c addphbentry $qe2c configq $qe2c configq # Set DS RED parameters from Core to Edge1: $qce1 meanpktsize $packetsize $qce1 set numqueues_ 1 $qce1 setnumprec 2 $qce1 addphbentry $qce1 addphbentry $qce1 configq $qce1 configq # Set DS RED parameters from Core to Edge2: $qce2 meanpktsize $packetsize $qce2 set numqueues_ 1 $qce2 setnumprec 2 $qce2 addphbentry

24 $qce2 addphbentry $qce2 configq $qce2 configq # Set up one CBR connection between each source and the destination: set udp0 [new Agent/UDP] $ns attach-agent $s1 $udp0 $udp0 set packetsize_ $packetsize $udp0 set class_ 0 set cbr0 [new Application/Traffic/CBR] $cbr0 attach-agent $udp0 $cbr0 set packet_size_ $packetsize $cbr0 set rate_ $rate0 set udp1 [new Agent/UDP] $ns attach-agent $s2 $udp1 $udp1 set packetsize_ $packetsize $udp1 set class_ 1 set cbr1 [new Application/Traffic/CBR] $cbr1 attach-agent $udp1 $cbr1 set packet_size_ $packetsize $cbr1 set rate_ $rate1 # issei written: Create three traffic sinks set sink0 [new Agent/LossMonitor] set sink1 [new Agent/LossMonitor] $ns attach-agent $dest $sink0 $ns attach-agent $dest $sink1 $ns connect $udp0 $sink0 $ns connect $udp1 $sink1 proc record {} { global sink0 sink1 global ns f0 f1 f2 counter set time 0.5 set bw0 [$sink0 set bytes_] set bw1 [$sink1 set bytes_] set now [$ns now] puts $f0 "$now [expr $bw0/$time*8]" 23

25 puts $f1 "$now [expr $bw1/$time*8]" $sink0 set bytes_ 0 $sink1 set bytes_ 0 $ns at [expr $now+$time] "record" incr counter } proc finish {} { global ns global f0 f1 nf $ns flush-trace close $f0 close $f1 close $nf puts "xgraph to display the results" exec xgraph ds_2mb ds_3mb -geometry 800x400 & puts "nam running..." exec nam ds2out.nam & exit 0 } $qe1c printpolicytable $qe1c printpolicertable set counter 0 $ns at 0.0 "record" $ns at 0.0 "$cbr0 start" $ns at 0.0 "$cbr1 start" $ns at 20.0 "$qce2 printstats" $ns at 40.0 "$qce2 printstats" $ns at 60.0 "$qce2 printstats" $ns at 80.0 "$qce2 printstats" $ns at $testtime "$cbr0 stop" $ns at $testtime "$cbr1 stop" $ns at [expr $testtime + 1.0] "finish" $ns run 24

26 RSVP $defaultrng seed 1 set ns [new Simulator] $ns color 0 red $ns color 1 blue $ns color 2 green $ns color 46 purple set f0 [open rsvp_2mb w] set f1 [open rsvp_3mb w] set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] set n4 [$ns node] set n5 [$ns node] # Keep nam trace generation off for now set nf [open rsvp3out.nam w] $ns namtrace-all $nf $ns duplex-rsvp-link $n4 $n3 10Mb 5ms Param Null $ns duplex-rsvp-link $n5 $n3 10Mb 5ms Param Null $ns duplex-rsvp-link $n3 $n2 5Mb 5ms Param Null $ns duplex-rsvp-link $n2 $n1 10Mb 5ms Param Null $ns duplex-rsvp-link $n1 $n0 10Mb 5ms Param Null # Enable upcalls on all nodes Agent/RSVP set noisy_ 255 set rsvp0 [$n0 add-rsvp-agent] set rsvp1 [$n1 add-rsvp-agent] 25

27 set rsvp2 [$n2 add-rsvp-agent] set rsvp3 [$n3 add-rsvp-agent] set rsvp4 [$n4 add-rsvp-agent] set rsvp5 [$n5 add-rsvp-agent] # Create three traffic sources set udp4 [new Agent/UDP] $ns attach-agent $n4 $udp4 $udp4 set packetsize_ 500 $udp4 set fid_ 1 set cbr4 [new Application/Traffic/CBR] $cbr4 set rate_ 3M $cbr4 set random_ 1 $cbr4 set packetsize_ 500 $cbr4 attach-agent $udp4 set udp5 [new Agent/UDP] $ns attach-agent $n5 $udp5 $udp5 set packetsize_ 500 $udp5 set fid_ 1 set cbr5 [new Application/Traffic/CBR] $cbr5 set rate_ 5M $cbr5 set random_ 1 $cbr5 set packetsize_ 500 $cbr5 attach-agent $udp5 # Create three traffic sinks set sink4 [new Agent/LossMonitor] $ns attach-agent $n0 $sink4 set sink5 [new Agent/LossMonitor] $ns attach-agent $n0 $sink5 $ns connect $udp4 $sink4 $ns connect $udp5 $sink5 # Create the same session on all sender nodes $rsvp4 session $n0 1 $rsvp5 session $n0 1 set counter 0 26

28 # Record start $ns at 0.0 "record" $ns at 0.0 "$rsvp4 sender " $ns at 0.0 "$rsvp5 sender " # Perform test reservations $ns at 5.0 "$rsvp2 reserve 0 ff $n4" $ns at 2.0 "$cbr4 start" $ns at 85.0 "$cbr4 stop" $ns at 2.0 "$cbr5 start" $ns at 85.0 "$cbr5 stop" $ns at "finish" proc record {} { global sink4 sink5 ns f0 f1 counter set time 0.5 set bw0 [$sink4 set bytes_] set bw1 [$sink5 set bytes_] set now [$ns now] puts $f0 "$now [expr $bw0/$time*8]" puts $f1 "$now [expr $bw1/$time*8]" $sink4 set bytes_ 0 $sink5 set bytes_ 0 $ns at [expr $now+$time] "record" if { $counter == 10 } { puts "Time: $now" set counter 0 } incr counter } proc finish {} { global ns nf global f0 f1 f $ns flush-trace close $nf close $f0 close $f1 27

29 puts "Done." puts "xgraph to display the results" exec xgraph rsvp_2mb rsvp_3mb -geometry 800x400 & puts "nam running..." exec nam rsvp3out.nam & } exit 0 $ns run 28

30 b NS-2 NS-2 NS-2 NS [3] NS by Example [4] Marc Greis RSVP [5] Marc Greis RSVP NS-2.29 UNIX OS URL RSVP patch on ns mamalik/rsvponns2.html NS-2.27 Gzip $ patch -u -p1 ns-2.27-rsvp.patch1 yes rsvp/rsvp.cc rsvp/rsvp.h rsvp/rsvp-link.h rsvp/rsvp-link.cc rsvp/rsvp-messages.h rsvp/rsvp-messages.cc rsvp/rsvp-objects.h rsvp/rsvp-objects.cc rsvp/wfq.h rsvp/wfq.cc tcl/lib/ns-rsvp.tcl 29

31 tcl/ex/rsvp/rsvp conf.tcl tcl/ex/rsvp/rsvp distinct.tcl tcl/ex/rsvp/rsvp large.tcl tcl/ex/rsvp/rsvp merge.tcl tcl/lib/ns-rsvp.tcl WFQClass set util_check_intv_ 0 WFQClass set util_record_ 0 NS-2 NS-2 FILES Makefile.in common/packet.h makefile.vc tcl/lib/ns-lib.tcl RSVP NS 30

QoS Intserv diffserv 1998 12 16 Internet Week 98 Internet Week98 1998 Kenjiro Cho, Japan Network Information Center 1 3 QoS Intserv RSVP QoS Diff-serv 2 QoS ISP 3 2.1 FAX LAN WAN LAN WAN Heavy Tail WWW

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

C08.PDF

C08.PDF QoS Diffserv 1999 12 14 Internet Week 99 Internet Week 99 1999 kenjiro Cho, Japan Network Information Center 1 DiffServ DiffServ DiffServ DiffServ 2 DiffServ congestion 90 IP IP 3 QoS 3.1 QoS QoSQuality

More information

設定手順

設定手順 IP Cluster & Check Point NGX (IPSO 4.0 & Check Point NGX (R60)) 2007 7 IP Cluster & Check Point NGX...2 1 Gateway Cluster...6 1-1 cpconfig...6 1-2 Gateway Cluster...6 1-3 3rd Party Configuration...8 1-4

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

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

Cisco ASA Firepower ASA Firepower

Cisco ASA Firepower ASA Firepower Cisco ASA Firepower ASA Firepower 1 2 3 4 1 1-1 Cisco ASA Cisco ASA Firepower Cisco ASA with Firepower Services Cisco Adaptive Security Device Manager ASDM MEMO Cisco ASA with Firepower Services Application

More information

nakayama15icm01_l7filter.pptx

nakayama15icm01_l7filter.pptx Layer-7 SDN SDN NFV 50 % 3 MVNO 1 2 ICM @ 2015/01/16 2 1 1 2 2 1 2 2 ICM @ 2015/01/16 3 2 Service Dependent Management (SDM) SDM Simple Management of Access-Restriction Translator Gateway (SMART-GW) ICM

More information

untitled

untitled FutureNet Microsoft Corporation Microsoft Windows Windows 95 Windows 98 Windows NT4.0 Windows 2000, Windows XP, Microsoft Internet Exproler (1) (2) (3) COM. (4) (5) ii ... 1 1.1... 1 1.2... 3 1.3... 6...

More information

untitled

untitled ... 3... 3... 4... 5... 6... 6... 6... 7... 7... 8... 8... 8... 9... 12... 12... 13... 14... 15... 16... 16 DSCP... 16... 17... 18 DiffServ..... 18... 26... 26 ADD QOS FLOWGROUP... 27 ADD QOS POLICY...

More information

Lync Server 2010 Lync Server Topology Builder BIG-IP LTM Topology Builder IP Lync 2010 BIG IP BIG-IP VE Virtual Edition BIG-IP SSL/TLS BIG-IP Edge Web

Lync Server 2010 Lync Server Topology Builder BIG-IP LTM Topology Builder IP Lync 2010 BIG IP BIG-IP VE Virtual Edition BIG-IP SSL/TLS BIG-IP Edge Web 1.1 Microsoft Lync Server 2010 BIG-IP LTM 2 4 5 BIG-IP : Lync 6 BIG-IP : Lync 7 BIG-IP : - 8 BIG-IP : - 9 A: BIG-IP Microsoft Lync Server 2010 Microsoft Lync Server 2010 Office Communications Server BIG-IP

More information

2004 3

2004 3 JAIST Reposi https://dspace.j Title 様々なデータを扱えるストリーミング技術を用いて機 器間の通信 制御を行う研究 Author(s) 明壁, 祐基 Citation Issue Date 2004-03 Type Thesis or Dissertation Text version author URL http://hdl.handle.net/10119/1806

More information

Page 1

Page 1 ... 1... 3... 4... 6 0100... 8 0102... 11 0103 FTP... 12 0105... 13 0109... 14... 15 0130... 16 0150 STD... 17 0154 TXT... 18 0170... 19 0180 1... 20 0190 2... 21 0196 3... 22 0200... 23 0300... 24 0500

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

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

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that

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

Configuring_01

Configuring_01 Symantec Backup Exec Dell EqualLogic Microsoft Exchange Server SQL Server IT / / 24 365 Symantec Backup Exec Advanced Disk-based Backup Option (ADBO) Dell Equal- Logic Microsoft Exchange Server 2003 2007

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

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

QOS.dvi

QOS.dvi ... 2... 2... 2... 3 DiffServDifferentiated Service... 4 DSCPDiffServ Code Point... 5... 5... 7... 7 PURGE QOS... 8 SET QOS DSCP..... 9 SET QOS HWPRIORITY... 10 SET QOS HWQUEUE... 12 SET QOS SCHEDULING...

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

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

$ 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

dvi

dvi { SSH { 3 3 1 telnet ID ( ) ID ( 1) SSH(Secure SHell) (ID ) SSH SSH SSH login : userid password : himitsu login : userid psaaword: himitsu login : userid password : himitsu 1. Host 11 7 UNIX ( sakura)

More information

INR-HG5579a_Netshut_Guide_Linux-Solaris_.doc

INR-HG5579a_Netshut_Guide_Linux-Solaris_.doc ( ) ( ) () 1 Netshut...1 1.1....1 1.1.1....1 1.1.2. OS...1 1.2....2 2...2 2.1....2 2.2. Linux(RPM )...3 2.3. Solaris(PKG )...4 3 Netshut...7 3.1....7 3.2....8 3.3. Netshut...9 3.4. Syslog...10 3.4.1....11

More information

QoS.dvi

QoS.dvi ... 3... 3... 4... 5... 6... 6... 6... 7... 7... 8... 8... 8... 9... 12... 12... 13... 14... 15... 16... 16 DSCP... 16... 17... 18 DiffServ..... 18... 26... 26 ADD QOS FLOWGROUP... 27 ADD QOS POLICY...

More information

¥¤¥ó¥¿¡¼¥Í¥Ã¥È·×¬¤È¥Ç¡¼¥¿²òÀÏ Âè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

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

グローバル タイトル変換テーブルの編集

グローバル タイトル変換テーブルの編集 19 CHAPTER SGM SGM GUI Global Title Translation GTT; 800 ID GTT Signaling Connection Control Part SCCP; Service Switching Point SSP; SubSystem Number SSN; GTT GTT CSV 16 SGM 3.3 3.1 4.0 4.1 4.2 GTT GTT

More information

IEEE e

IEEE e 2007 IEEE 802.11e LAN VoIP 2008 2 4 3606U075-2 1 5 1.1...................................... 5 1.2...................................... 5 1.3..................................... 6 2 IEEE 802.11e LAN

More information

スライド タイトルなし

スライド タイトルなし LightCycler Software Ver.3.5 : 200206 1/30 Windows NT Windows NT Ctrl + Alt + Delete LightCycler 3 Front Screen 2/30 LightCycler3 Front RUN Data Analysis LightCycler Data Analysis Edit Graphics Defaults

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

Microsoft Word - Live Meeting Help.docx

Microsoft Word - Live Meeting Help.docx 131011 101919 161719 19191110191914 11191417 101919 1915101919 Microsoft Office Live Meeting 2007 191714191412 1913191919 12 151019121914 19151819171912 17191012151911 17181219 1610121914 19121117 12191517

More information

21 VOD A study of the VOD contents decentralization delivery for unicast VOD 1100314 2010 3 1 VOD VOD Video on Demand VOD, Management Server Management Server Management Server 4 VOD CDN i Abstract A

More information

RR-US470 (RQCA1588).indd

RR-US470 (RQCA1588).indd RR-US470 Panasonic Corporation 2006 2 3 4 http://www.sense.panasonic.co.jp/ 1 2 3 ( ) ZOOM 5 6 7 8 9 10 4 2 1 3 4 2 3 1 3 11 12 1 4 2 5 3 1 2 13 14 q φ φ 1 2 3 4 3 1 2 3 4 2 3 15 16 1 2 3 [/]p/o 17 1 2

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

untitled

untitled 2 1 Web 3 4 2 5 6 3 7 Internet = Inter Network 8 4 B B A B C A B C D D 9 A G D G F A B C D F D C D E F E F G H 10 5 11 Internet = Inter Network PC 12 6 1986 NSFNET 1995 1991 World Wide Web 1995 Windows95

More information

Microsoft Word - MetaFluor70取扱説明.doc

Microsoft Word - MetaFluor70取扱説明.doc MetaFluor (Version 7.7) MetaFluor 1. MetaFluor MetaFluor Meta Imaging Series 7.x Meta Imaging Series Administrator CCD Meta Imaging Series Administrator CCD Molecular Devices Japan KK/ Imaging Team (1/14)

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

帯域を測ってみよう (適応型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

集中講義 インターネットテクノロジー 第5回

集中講義 インターネットテクノロジー 第5回 5 ichii@ms.u-tokyo.ac.jp 2002/5/31 2 IPv6 2002/5/31 3 IPv6 32 IP 2008 streamline QoS anycast anycast: IPv6 40 128 2002/5/31 4 IP ICANN Ad Hoc Group on Numbering and Addressing McFadden/Holmes Report of

More information

PowerPoint Presentation

PowerPoint Presentation AI Programming data mining ( Plug in Weka to Eclipse) Review of Identification Tree Run bouncing ball in Weka Run bouncing ball in Eclipse How about color? weight? rubber? Please write down their formulae.

More information

2 PC [1], [2], [3] 2.1 OS 2.1 ifconfig 2.1 lo ifconfig -a 2.1 enp1s0, enx0090cce7c734, lo 3 enp1s0 enx0090cce7c734 PC 2.1 (eth0, eth1) PC 14

2 PC [1], [2], [3] 2.1 OS 2.1 ifconfig 2.1 lo ifconfig -a 2.1 enp1s0, enx0090cce7c734, lo 3 enp1s0 enx0090cce7c734 PC 2.1 (eth0, eth1) PC 14 2 PC [1], [2], [3] 2.1 OS 2.1 ifconfig 2.1 lo ifconfig -a 2.1 enp1s0, enx0090cce7c734, lo 3 enp1s0 enx0090cce7c734 PC 2.1 (eth0, eth1) PC 14 $ ifconfig lo Link encap: inet :127.0.0.1 :255.0.0.0 inet6 :

More information

Internet Week98 QoS : Int-serv Diff-serv QoS Int-serv RSVP Diff-serv

Internet Week98 QoS : Int-serv Diff-serv QoS Int-serv RSVP Diff-serv Internet Week98 QoS : Int-serv Diff-serv kjc@csl.sony.co.jp QoS Int-serv RSVP Diff-serv QoS e.g., voice & data 10M/10 100M/100 --> FAX LAN/WAN/ vs vs = heavy tail WWW CPU ARPANET M/M/1 1 (2) N = T N: :

More information

FCC This product is conform to the FCC standards. FCC Rules (Federal Communications Commission) This product complies with Part15 Subpart B and C of the FCC Rules. FCC ID : MK4TR3XM-SX01 FCC NOTICE This

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

JANOG9 パネルセッション IP バックボーンにおける QOS の適用 Session , Cisco Systems, Inc. All rights reserved. 25 th Jan Miya Kohno 1

JANOG9 パネルセッション IP バックボーンにおける QOS の適用 Session , Cisco Systems, Inc. All rights reserved. 25 th Jan Miya Kohno 1 JANOG9 パネルセッション I バックボーンにおける QOS の適用 Session 0 2001, Cisco Systems, Inc. All rights reserved. 25 th Jan. 2002 Miya Kohno (mkohno@cisco.com) 1 様々なトラフィック特性 遅延バッファリング - 網内における 廃棄抑制のためのバッファリング - 網出口における 揺らぎ吸収のためのバッファリング

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

untitled

untitled ... 2... 2... 2... 3... 3... 3... 5 UDP... 5 TCP... 6 VLAN... 8... 9... 10... 10 IGMP Snooping... 10... 12... 12 CREATE ACL...... 13 DESTROY ACL..... 15 PURGE ACL... 16 RESET ACL COUNTER... 17 SETACL...

More information

Cleaner XL 1.5 クイックインストールガイド

Cleaner XL 1.5 クイックインストールガイド Autodesk Cleaner XL 1.5 Contents Cleaner XL 1.5 2 1. Cleaner XL 3 2. Cleaner XL 9 3. Cleaner XL 12 4. Cleaner XL 16 5. 32 2 1. Cleaner XL 1. Cleaner XL Cleaner XL Administrators Cleaner XL Windows Media

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

橡MPLS-Japan-shared-fastreroute.PDF

橡MPLS-Japan-shared-fastreroute.PDF MPLS - Fast Reroute NEC E-mail: a-iwata@ah.jp.nec.com TEL: 044-856-2123, FAX: 044-856-2230 1 (1) (2) (3) Fast Reroute Cisco Juniper Axiowave (4) Shared Fast Reroute NEC (5) Interoperability OAM (6) 2 #1

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

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

DNS DNS 2002/12/19 Internet Week 2002/DNS DAY 2

DNS DNS 2002/12/19 Internet Week 2002/DNS DAY 2 DNS 2002 12 19 2003 1 16 Internet Week 2002/DNS DAY ( ) (JPRS) DNS DNS 2002/12/19 Internet Week 2002/DNS DAY 2 DNS SOA SOA TTL $TTL NS MX CNAME 2002/12/19 Internet Week 2002/DNS DAY

More information

IP IP DHCP..

IP IP DHCP.. NICE 2008 4 14 1 NICE 2 1.1.................... 2 2 3 2.1........................................ 3 2.2....................................... 5 2.3.................................... 6 2.4...................................

More information

JEE 上の Adobe Experience Manager forms のインストールおよびデプロイ(WebLogic 版)

JEE 上の Adobe Experience Manager forms のインストールおよびデプロイ(WebLogic 版) JEE ADOBE EXPERIENCE MANAGER FORMS WEBLOGIC http://help.adobe.com/ja_jp/legalnotices/index.html iii 1 AEM forms 2 AEM Forms 3 4 - WebLogic Server 4.1............................................................................

More information

UsersGuide_INR-HG5497c_.doc

UsersGuide_INR-HG5497c_.doc UPS / Web/SNMP VCCI A Web/SNMP... 1.. WEB...1.. SNMP...1.. NETSHUT...1.. 100BASE-TX...1... 2 Web... 4.....5.....7......7......8......9.. UPS...10... UPS...10...13......14......14...15......17......17..

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

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

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

acl.dvi

acl.dvi ... 2... 2... 2... 3... 3... 4... 4... 5 IGMP Snooping... 5... 6... 6 CREATE ACL...... 7 DESTROY ACL..... 8 PURGE ACL... 9 SETACL... 10 SHOW ACL... 11 CentreCOM 9424T/SP 9408LC/SP 2.3 1 ASIC Ethernet MAC

More information

TTC_AR-1081_IB共通_2_110622

TTC_AR-1081_IB共通_2_110622 Advanced Running Enhancement System Advanced Running Enhancement System N 22 47.1733 E 113 53.6288 10:35:56A 12 A 50M 0.00 3:13 P KM 80% view 1(1) view 5() view 2(2) T1 T2 10:3556 2:3556 FR SEP 19 FR

More information

Microsoft Word - J doc

Microsoft Word - J doc Oracle Application Server for HP-UX 4.0.8.2 2000 11 : J02449-01 : Oracle Application Server Release Notes for HP 9000 Servers and Workstations A86087-01 Oracle Application Server for HP-UX 4.0.8.2 Oracle

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

橡表紙~目次.PDF

橡表紙~目次.PDF 1 1895 100 2 1903 1910 D.W (1915 ) (1916 ) 1920 (1925 ) (1932 ) 1920 1950 40 50 70 50 1 50-191 - 90 1958 11 2,745 96 1 1,958 40 70 1949 40 70 10 72 76 10 98 14 8070 3 1997 5,047 2,002 3,329 0.1 1995 (2)

More information

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker Centric Manager IT Service

More information

install

install SCore SCore 5.0 2001.03.19 devel@pccluster.org SCore Backbone LAN Ethernet EEPRO100 Myrinet-2000 Fibre 02/03/20 2 1 NIC (Network Interface Card) NIC 100Mbps Ethernet EEPRO100 Tulip 3C905B Network Trunking

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

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

公平なネットワーク利用を実現する スケーラブルな パケットスケジューリング方式

公平なネットワーク利用を実現する スケーラブルな パケットスケジューリング方式 公平なネットワーク利用を実現するスケーラブルなパケットスケジューリング方式 Hierarchically Aggregated Fair Queuing (HAFQ) for Per-flow Fair Service in High-speed Networks 大阪大学大学院基礎工学研究科情報数理系専攻博士前期課程 2 年牧一之進 2018/8/28 信学会全国大会 1 発表内容 研究の背景 研究の目的

More information

MTX/MRXシステム ファームウェア アップデートガイド

MTX/MRXシステム ファームウェア アップデートガイド MTX/MRX MTX MRX7-D XMV EXi8/EXo8 ( ) MTX5-D MRX7-D XMV Dante Dante ( ) Dante dinate Dante Audinate Windows Microsoft Corporation Bonjour Apple Inc. 1 MTX-MRX Editor Device Information Audinate Dante Controller

More information

TOPLON PRIO操作手順

TOPLON PRIO操作手順 TOPLON PRIO 2004/05/24 I/O LON WAGO TOPLON PRIO 1. 1) PCC-10 S/W 2) PC 3) PCC-10 4) Windows Lon WorksR Plug n Play Apply OK 5) Visio LonMaker LonPoint 6) TOPLON PRIO 2. IO-PRO SYM TOPLON-PRIO SNVT NVI

More information

はじめに

はじめに IT 1 NPO (IPEC) 55.7 29.5 Web TOEIC Nice to meet you. How are you doing? 1 type (2002 5 )66 15 1 IT Java (IZUMA, Tsuyuki) James Robinson James James James Oh, YOU are Tsuyuki! Finally, huh? What's going

More information

第5回お試しアカウント付き並列プログラミング講習会

第5回お試しアカウント付き並列プログラミング講習会 qstat -l ID (qstat -f) qscript ID BATCH REQUEST: 253443.batch1 Name: test.sh Owner: uid=32637, gid=30123 Priority: 63 State: 1(RUNNING) Created at: Tue Jun 30 05:36:24 2009 Started at: Tue Jun 30 05:36:27

More information

RouteMagic Controller RMC-MP200 / MP Version

RouteMagic Controller RMC-MP200 / MP Version RouteMagic Controller RMC-MP200 / MP1200 - Version 3.7.1 - RouteMagic Controller( RMC ) 3.7 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.7 RouteMagic Controller Version

More information

<Documents Title Here>

<Documents Title Here> Oracle9i Database R9.2.0 for Windows Creation Date: Mar 06, 2003 Last Update: Mar 24, 2003 CD 1 A99346-01 Oracle9i Database Release 2 (9.2.0.1.0) for Microsoft Windows NT/2000/XP CD 1 of 3 2 A99347-01

More information

h70_pp_utl_2_2.doc

h70_pp_utl_2_2.doc 2 2004. 02.23 1 2003.08.01 2004.02.23 620 1.1 istorage 2 CLUSTERPRO CLUSTERPRO OS Windows 2000/Windows 2003 CLUSTERPRO Microsoft, Windows NT Microsoft Corporation CLARiiON ATF, CLARiiON Array Manager EMC

More information

buho210.dvi

buho210.dvi int fp7220::opensocket( void ) { struct hostent *hp; struct sockaddr_in sin; unsigned timeout; int result, s; } // make socket if (!(hp = gethostbyname(szserverloc)) ) return -1; if ( (s = socket(af_inet,

More information

MINI2440マニュアル

MINI2440マニュアル Open-JTAG LPC2388 + GCC + Eclipse http://www.csun.co.jp info@csun.co.jp Ver1.4 2009/7/31 LPC2388 OpenJTAG copyright@2009 http://www.csun.co.jp info@csun.co.jp 1 ...3 ARM...4...5...6 4.2 OpenJTAG...6 4.2...8

More information

17 Multiple video streams control for the synchronous delivery and playback 1085404 2006 3 10 Web IP 1 1 1 3,,, i Abstract Multiple video streams control for the synchronous delivery and playback Yoshiyuki

More information

Vol. 48 No. 4 Apr LAN TCP/IP LAN TCP/IP 1 PC TCP/IP 1 PC User-mode Linux 12 Development of a System to Visualize Computer Network Behavior for L

Vol. 48 No. 4 Apr LAN TCP/IP LAN TCP/IP 1 PC TCP/IP 1 PC User-mode Linux 12 Development of a System to Visualize Computer Network Behavior for L Vol. 48 No. 4 Apr. 2007 LAN TCP/IP LAN TCP/IP 1 PC TCP/IP 1 PC User-mode Linux 12 Development of a System to Visualize Computer Network Behavior for Learning to Associate LAN Construction Skills with TCP/IP

More information

HARK Designer Documentation 0.5.0 HARK support team 2013 08 13 Contents 1 3 2 5 2.1.......................................... 5 2.2.............................................. 5 2.3 1: HARK Designer.................................

More information

4 BIG-IP v9.xldapactive Directory (AD) RADIUSTACACS+ BIG-IP 4 BIG-IP GUI CPU WAN Optimization ModuleWOM WOM BIG-IP BIG-IP SSL Logical Volume Manager B

4 BIG-IP v9.xldapactive Directory (AD) RADIUSTACACS+ BIG-IP 4 BIG-IP GUI CPU WAN Optimization ModuleWOM WOM BIG-IP BIG-IP SSL Logical Volume Manager B BIG-IP v10 - BIG-IP v10 TMOS TM P1 BIG-IP Local Traffic Manager TM P BIG-IP Application Security Manager TM P BIG-IP WebAccelerator TM P WAN P10 4 TMOS TMOS BIG-IP Application Security Manager BIG-IP ASM

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

$ 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 eth0, eth1, lo 3 13 $ ifconfig lo Link encap: inet :127.0.0.1 :255.0.0.0 inet6 : ::1/128 : UP LOOPBACK RUNNING MTU:65536

More information

10.00mm 2 A4 0 A4 MS 72pt 25mm MS 25mm MS 2

10.00mm 2 A4 0 A4 MS 72pt 25mm MS 25mm MS 2 Silhouette Studio silhouette CAMEO Silhouette Studio silhouette CAMEO Windows Silhouette Studio mm mm F mm OK 1 10.00mm 2 A4 0 A4 MS 72pt 25mm MS 25mm MS 2 3 4 Silhouette Silhouette Silhouette silhouette

More information

NetWorker Avamar リリース8.0統合ガイド

NetWorker Avamar リリース8.0統合ガイド EMC NetWorker Avamar 8.0 P/N 300-013-563 A02 Copyright 2012 EMC Corporation. All rights reserved. 2012 7 EMC Corporation EMC Corporation EMC EMC 2 EMC EMC EMC Corporation EMC Web Technical Documentation

More information

意外と簡単!?

意外と簡単!? !?Access Oracle Oracle Migration Workbench MS-Access Oracle Creation Date: Oct 01, 2004 Last Update: Mar 08, 2005 Version: 1.1 !? Oracle Database 10g / GUI!? / Standard Edition!? /!?!? Oracle Database

More information

IPSJ SIG Technical Report , 2 Andorid Capture-A-Moment Capture-A-Moment Capturing System by SmartPhone to Record Real-Time Scene Kohei Takada,

IPSJ SIG Technical Report , 2 Andorid Capture-A-Moment Capture-A-Moment Capturing System by SmartPhone to Record Real-Time Scene Kohei Takada, , 2 Andorid Capture-A-Moment Capture-A-Moment Capturing System by SmartPhone to Record Real-Time Scene Kohei Takada, Yasuhito Tsukahara, Yui Murase and Kazunori Sugiura, 2 We propose Capture-A-Moment System

More information

untitled

untitled CAPEC, 2009 6 16 June 16, 2009 Page 1 CAPEC EMS 1. EMS USA EU 2. EMS 3. EMS 4. EMS 5. CAPEC 6. EMS June 16, 2009 Page 2 EMS EC 3 EMS EMS EMS EMS CAPEC EMS CAPEC EMS EMS June 16, 2009 Page 3 EU EU EC 1997/67/EC

More information

B1 Ver ( ), SPICE.,,,,. * : student : jikken. [ ] ( TarouOsaka). (, ) 1 SPICE ( SPICE. *1 OrCAD

B1 Ver ( ), SPICE.,,,,. * : student : jikken. [ ] ( TarouOsaka). (, ) 1 SPICE ( SPICE. *1 OrCAD B1 er. 3.05 (2019.03.27), SPICE.,,,,. * 1 1. 1. 1 1.. 2. : student : jikken. [ ] ( TarouOsaka). (, ) 1 SPICE ( SPICE. *1 OrCAD https://www.orcad.com/jp/resources/orcad-downloads.. 1 2. SPICE 1. SPICE Windows

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

RouteMagic Controller( RMC ) 3.6 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.6 RouteMagic Controller Version 3

RouteMagic Controller( RMC ) 3.6 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.6 RouteMagic Controller Version 3 RouteMagic Controller RMC-MP200 / MP1200 - Version 3.6 - RouteMagic Controller( RMC ) 3.6 RMC RouteMagic RouteMagic Controller RouteMagic Controller MP1200 / MP200 Version 3.6 RouteMagic Controller Version

More information