




版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、Mininet中文使用教程譯者注:這篇 Blog 是在學習 SDN 過程中翻譯的Mininet 官方的文檔。文檔主要是介紹了 Mininet 的簡單用法。會分成幾個局部放出來,原文。下面是正文第1局部:Everyday Mininet Usage首先是是命令語法· $ 這個符號代表現在處于 Linux 的shell 交互下,需要使用的是 Linux 命令· mininet> 這個符號表示現在處于 Mininet 交互下,需要使用的是 Mininet 的命令· 這個符號表示的是現在處于 Linux 的 root 權限下。以上相應
2、的狀態下下屬于對應的命令,就能夠得到正常的輸出。需要注意的是mininet>的情況比擬特殊,需要使用 minient 的命令來進行交互。Display Startup Options我們首先來啟動 Mininet。鍵入以下命令來顯示Mininet的幫助信息:$ sudo mn -hUsage: mn options(type mn -h for details)The mn utility creates Mininet network from the command line. It can createparametrized topologies, invoke the Mini
3、net CLI, and run tests.Options:-h, -help show this help message and exit-switch=SWITCH ivs|ovsk|ovsl|user,param=value.-host=HOST cfs|proc|rt,param=value.-controller=CONTROLLERnone|nox|ovsc|ref|remote,param=value.-link=LINK default|tc,param=value.-topo=TOPO linear|minimal|reversed|single|tree,param=v
4、alue.-c, -clean clean and exit-custom=CUSTOM read custom topo and node params from .pyfile-test=TEST cli|build|pingall|pingpair|iperf|all|iperfudp|none-x, -xterms spawn xterms for each node-i IPBASE, -ipbase=IPBASEbase IP address for hosts-mac automatically set host MACs-arp set all-pairs ARP entrie
5、s-v VERBOSITY, -verbosity=VERBOSITYinfo|warning|critical|error|debug|output-innamespace sw and ctrl in namespace?-listenport=LISTENPORTbase port for passive switch listening-nolistenport don't use passive listening port-pre=PRE CLI script to run before tests-post=POST CLI script to run after tes
6、ts-pin pin hosts to CPU cores (requires -host cfs or -hostrt)-version如上所示,輸出了 mn 的幫助信息。Start Wireshark為了使用 Wireshark 來查看 OpenFlow 的控制信息,我們先翻開 Wireshark 并讓他在后臺運行。$ sudo wireshark &在 Wireshark 的過濾選項中,輸入of,然后選擇 Apply。In Wireshark, click Capture, then Interfaces, then select Start on the loopback in
7、terface (lo).現在窗口上暫時應該沒有任何 OpenFlow 的數據包。注:在Mininet VM鏡像中Wireshark是默認已經安裝的。如果你的系統中沒有Wireshark的和OpenFlow,您可以使用Mininet的install.sh腳本,按以下步驟安裝:$ cd $ git clone s:/github /mininet/mininet如果它尚不存在$ mininet/util/install.sh -w如果已經安裝了 Wireshark,但是運行不了e.g. 你得到一個類似$DISPLAY not set之類的錯誤信息,可以參考 FAQ,: s:/github /mi
8、ninet/mininet/wiki/FAQ#wiki-X11-forwarding設置好 X11就可以正常運行 GUI 程序,并且使用 xterm 之類的終端仿真器了,后面的演示中可以用到。Interact with Hosts and SwitchesStart a minimal topology and enter the CLI:$ sudo mn默認的最小拓撲結構包含有兩臺主機h1,h2,還有一個 OpenFlow 的交換機,一個 OpenFlow 的控制器四臺設備。這種拓撲接口也可以使用-topo=minimal來指定。當然我們也可以使用其他的拓撲結構,具體信息可以看
9、-topo的信息。現在四個實體h1,h2,c0,s1都在運行著。c0作為控制器,是可以放在虛擬機外部的。如果沒有具體的測試作為參數傳遞時,我們可以使用 Mininet 交互。在Wireshark的窗口中,你會看到內核交換機連接到控制器。顯示Mininet CLI命令:mininet> helpDocumented commands (type help <topic>):=EOF exit intfs link noecho pingpair py source xtermdpctl gterm iperf net pingall pingpairfull quit time
10、dump help iperfudp nodes pingallfull px sh xYou may also send a command to a node using: <node> command argsFor example: mininet> h1 ifconfigThe interpreter automatically substitutes IP addressesfor node names when a node is the first arg, so commandslike mininet> h2 ping h3should work.S
11、ome character-oriented interactive commands requirenoecho: mininet> noecho h2 vi foo.pyHowever, starting up an xterm/gterm is generally better: mininet> xterm h2顯示節點:mininet> nodesavailable nodes are:c0 h1 h2 s1顯示網絡鏈接:mininet> neth1 h1-eth0:s1-eth1h2 h2-eth0:s1-eth2s1 lo: s1-eth1:h1-eth0
12、 s1-eth2:h2-eth0c0輸出所有節點的信息:mininet> dump<Host h1: h1-eth0:10.0.0.1 pid=3278><Host h2: h2-eth0:10.0.0.2 pid=3279><OVSSwitch s1: lo:127.0.0.1,s1-eth1:None,s1-eth2:None pid=3282><OVSController c0: 127.0.0.1:6633 pid=3268>從上面的輸出中,你可以看到有一臺交換機和兩臺主機。在 Mininet 的CLI 中第一個字符串是設備名,那后
13、面的命令就在該設備上執行。例如我們想在h1設備上執行ifconfig那么輸入如下命令:mininet> h1 ifconfig -ah1-eth0 Link encap:Ethernet HWaddr 3e:94:43:b1:ad:48 inet addr:10.0.0.1 Bcast:10.255.255.255 Mask:255.0.0.0 inet6 addr: fe80:3c94:43ff:feb1:ad48/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:22 errors:0
14、dropped:0 overruns:0 frame:0 TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:1764 (1.7 KB) TX bytes:648 (648.0 B)lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: :1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:
15、0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)上面的輸出中,可以看見 h1-eth0 跟 lo兩個接口,需要注意的是,在 Linux 系統的 shell 中運行ifconfig是看不到h1-eth0。與h1-eth0相反的是,switch 默認是跑在 root 的網絡namespace上面,所
16、以在switch上執行命令與在 Linux 下的 shell 中是一樣的。mininet> s1 ifconfig-aeth0 Link encap:Ethernet HWaddr 08:00:27:98:dc:aa inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0 inet6 addr: fe80:a00:27ff:fe98:dcaa/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:46716 errors:0 dropped
17、:0 overruns:0 frame:0 TX packets:40265 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:10804203 (10.8 MB) TX bytes:40122199 (40.1 MB)lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: :1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX p
18、ackets:43654 errors:0 dropped:0 overruns:0 frame:0 TX packets:43654 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:37264504 (37.2 MB) TX bytes:37264504 (37.2 MB)lxcbr0 Link encap:Ethernet HWaddr fe:5e:f0:f7:a6:f3 inet addr:10.0.3.1 Bcast:10.0.3.255 Mask:255.255.255.0 inet
19、6 addr: fe80:a8c4:b5ff:fea6:2809/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:52 errors:0 dropped:0 overruns:0 frame:0 TX packets:20 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:4759 (4.7 KB) TX bytes:2952 (2.9 KB)ovs-system Link encap:Ether
20、net HWaddr 3e:79:59:3d:d9:bb BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)s1 Link encap:Ethernet HWaddr 6e:8c:5d:91:d5:44 inet6 addr: fe80:f
21、c47:8aff:fe6a:4155/64 Scope:Link UP BROADCAST RUNNING MTU:1500 Metric:1 RX packets:13 errors:0 dropped:0 overruns:0 frame:0 TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:1026 (1.0 KB) TX bytes:648 (648.0 B)s1-eth1 Link encap:Ethernet HWaddr 5e:a2:f7:86:f3:b1
22、 inet6 addr: fe80:5ca2:f7ff:fe86:f3b1/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:8 errors:0 dropped:0 overruns:0 frame:0 TX packets:22 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:648 (648.0 B) TX bytes:1764 (1.7 KB)s1-eth2 Link encap:E
23、thernet HWaddr b2:c6:37:e0:d9:61 inet6 addr: fe80:b0c6:37ff:fee0:d961/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:8 errors:0 dropped:0 overruns:0 frame:0 TX packets:21 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:648 (648.0 B) TX bytes:1
24、674 (1.6 KB)veth14524J Link encap:Ethernet HWaddr fe:ca:13:f5:dd:b4 inet6 addr: fe80:fcca:13ff:fef5:ddb4/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:8 errors:0 dropped:0 overruns:0 frame:0 TX packets:40 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:100
25、0 RX bytes:648 (648.0 B) TX bytes:4190 (4.1 KB)veth2K19CE Link encap:Ethernet HWaddr fe:f1:f7:e8:49:45 inet6 addr: fe80:fcf1:f7ff:fee8:4945/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:8 errors:0 dropped:0 overruns:0 frame:0 TX packets:42 errors:0 dropped:0 overruns:0 ca
26、rrier:0 collisions:0 txqueuelen:1000 RX bytes:648 (648.0 B) TX bytes:4370 (4.3 KB)veth9WSHRK Link encap:Ethernet HWaddr fe:87:1d:33:f6:41 inet6 addr: fe80:fc87:1dff:fe33:f641/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:8 errors:0 dropped:0 overruns:0 frame:0 TX packets:
27、43 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:648 (648.0 B) TX bytes:4460 (4.4 KB)vethH2K7R5 Link encap:Ethernet HWaddr fe:5e:f0:f7:a6:f3 inet6 addr: fe80:fc5e:f0ff:fef7:a6f3/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:14 errors:0 drop
28、ped:0 overruns:0 frame:0 TX packets:48 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:1776 (1.7 KB) TX bytes:5030 (5.0 KB)vethO99MI2 Link encap:Ethernet HWaddr fe:cf:ee:97:fb:7f inet6 addr: fe80:fccf:eeff:fe97:fb7f/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500
29、Metric:1 RX packets:14 errors:0 dropped:0 overruns:0 frame:0 TX packets:51 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:1767 (1.7 KB) TX bytes:5294 (5.2 KB)上面的輸出中包含交換機的虛擬網卡 s1,以及主機的 eth0。為了區別顯示host 主機的網絡是隔離的,我們可以通過arp與route命令來做演示,分別在 s1與h1上面演示如下:mininet> s1 arpAdd
30、ress HWtype HWaddress Flags Mask Ifacelocalhost ether 00:16:3e:54:9c:03 C lxcbr0localhost ether 52:54:00:12:35:02 C eth0localhost ether 52:54:00:12:35:03 C eth0localhost ether 00:16:3e:51:24:a7 C lxcbr0mininet> s1 routeKernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Ifaced
31、efault localhost 0.0.0.0 UG 0 0 0 eth010.0.2.0 * 255.255.255.0 U 0 0 0 eth010.0.3.0 * 255.255.255.0 U 0 0 0 lxcbr0172.17.0.0 * 255.255.0.0 U 0 0 0 docker0mininet> h1 arpmininet> h1 routeKernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface10.0.0.0 * 255.0.0.0 U 0 0 0 h1
32、-eth0這樣可以做到將每一個主機,交換機,以及控制器都放到他自己的標準的 network namespace 中,但是這種做法并沒有什么特別的優勢,除非你想復制一個非常復雜的網絡。Mininet 不支持這種做法,你可以通過-innamespace參數來查看更多的信息。譯者注:感覺有點像 LXC 或者說想最近比擬火的 Docker注意:只有網絡是虛擬出來的,每一個主機里面的進程使用的都是同一套目錄,可以看到相同的進程集合,我們打印不同主機下面的進程列表看看:mininet> h1 ps -a PID TTY TIME CMD 3899 pts/3 00:00:00 tmux 4000 p
33、ts/23 00:00:00 sudo 4001 pts/23 00:00:51 wireshark 4030 pts/23 00:00:00 dbus-launch 4530 pts/23 00:00:43 dumpcap 4541 pts/22 00:00:00 sudo 4542 pts/22 00:00:00 mnmininet> h2 ps -a PID TTY TIME CMD 3899 pts/3 00:00:00 tmux 4000 pts/23 00:00:00 sudo 4001 pts/23 00:00:52 wireshark 4030 pts/23 00:00:
34、00 dbus-launch 4530 pts/23 00:00:43 dumpcap 4541 pts/22 00:00:00 sudo 4542 pts/22 00:00:00 mnmininet> s1 ps -a PID TTY TIME CMD 3899 pts/3 00:00:00 tmux 4000 pts/23 00:00:00 sudo 4001 pts/23 00:00:54 wireshark 4030 pts/23 00:00:00 dbus-launch 4530 pts/23 00:00:46 dumpcap 4541 pts/22 00:00:00 sudo
35、 4542 pts/22 00:00:00 mn如上所示, h1,h2,s1三個進程列表是完全相同的。其實完全可以做到各個主機完全獨立,就想 LXC 那樣,但是目前 Mininet 并沒有這么做。在 Mininet 中所有的進程都放在 root 下面,這樣你可以在 Linux的 shell 中直接用kill或者ps這些命令查看或者殺死進程。Test connectivity between hosts現在,驗證您可以h1 ping 通 h2:mininet> h1 ping h2 -c 1PING 10.0.0.2 (10.0.0.2) 56(84) bytes of data.64 b
36、ytes from 10.0.0.2: icmp_seq=1 ttl=64 time=8.57 ms- 10.0.0.2 ping statistics -1 packets transmitted, 1 received, 0% packet loss, time 0msrtt min/avg/max/mdev = 8.576/8.576/8.576/0.000 msmininet中的命令語法如上所示。host1 command host2。在 Wireshark 中可以看到 OpenFlow 的控制流量,可以看到h1 ARPs h2的 mac,并將一個 packet_in發送到&
37、#160;c0,然后c0發送packet_out消息流播送到交換機在本例中,唯一的其他數據端口。第二個主機接受到的ARP請求,并發送一個播送答復。此回復進到控制器,該控制器將其發送到h1并且 pushes down a flow entry。現在第一主機知道的第二個IP地址,并且可以通過ICMP ping 來回顯請求。這個請求,連同其從第二主機對應的應答,both go the controller and result in a flow entry pushed down (along with the actual packets getting sent out).重復前一條命令:mi
38、ninet> h1 ping -c 1 h2這次 ping 的時間將比第一次低的多, A flow entry covering ICMP ping traffic was previously installed in the switch, so no control traffic was generated, and the packets immediately pass through the switch.使用pingall命令可以讓每一個節點直接都產生上面的效果。mininet> pingallRun a simple web server and client我們
39、不單可以在主機上面運行ping命令,每一條 Linux下的命令或者程序都可以在 Mininet 中運行:接下來,嘗試開始于h1啟動一個簡單的 效勞器上,然后從h2發出請求,最后關閉Web效勞器:mininet> h1 python -m Simple Server 80 &mininet> h2 wget h1-2021-09-15 08:10:11- :/10.0.0.1/Connecting to 10.0.0.1:80. connected. request sent, awaiting response. 200 OKLength: 2647 (2.6K) text
40、/htmlSaving to: index.html 0K . 100% 71.7M=0s2021-09-15 08:10:11 (71.7 MB/s) - index.html saved 2647/2647mininet> h1 kill %python退出mininet交互命令:mininet>exitcleanup如果Mininet出于某種原因崩潰,可以用下面命令來清理:sudo mn -cPart 2: 高級選項Advanced Startup Options回歸測試Run a Regression TestMininet 可以用于直接運行回歸測試,不一定要切換到他的 C
41、LI 下面。運行回歸測試:$ sudo mn -test pingpair這條命令會創立一個小的拓撲結構,然后啟動 OpenFLow 的控制器,然后跑 ping 測試,最后再把拓撲結構跟控制器關掉。另一種有用的試驗是iperf的給它約10秒來完成:還有一直常用的測試是iperf(完成這個測試大概需要10s 鐘):$ sudo mn -test iperf此命令創立的相同Mininet,并在其中一臺 host 上面跑 iperf server, 然后在另外一臺 host 上面運行iperf client 然后解析取得帶寬情況。更改拓撲結構大小和類型 Changing Topology Size
42、and TypeMininet 默認的拓撲結構是由兩臺 host 以及一臺交換機組成的,你可以用-topo參數來更改拓撲結構。假設你要在一個交換機與三臺 host 之間做 ping 探測驗證verify all-pairs ping connectivity。:運行回歸測試:$ sudo mn -test pingall -topo single,3另一個例子中,使用線性拓撲其中每個交換機配有一個主機,并且所有的交換機連接在一起:$ sudo mn -test pingall -topo linear,4課喲用參數來控制拓撲結構是 Mininet 中最有用的功能之一,非常強大。鏈路變化 Lin
43、k variationsMininet2.0允許你設置連接參數,甚至可以通過命令行實現自動化設置:$ sudo mn -link tc,bw=10,delay=10ms mininet> iperf . mininet> h1 ping -c10 h2上面的設置每兩個節點之間的延遲是10ms,因為 ICMP 請求傳過了兩條鏈路一次是到大交換機,一次到達主機,往返時間RRT就應該是40ms。你還可以使用 PythonAPI 來做更多的事兒,不過現在我們先繼續往下演練。調整輸出信息Adjustable VerbosityMininet默認輸出信息的級別是
44、Info,Info級別會輸出 Mininet的詳細信息。我們也可以通過 -v參數來設置輸出DEBUG信息。$ sudo mn -v debug.mininet> exit這樣會打印出更多額外的細節。現在嘗試一下output參數,這樣可以在 CLI 中打印更少的信息。$ sudo mn -v outputmininet> exit除了上面的幾個級別,還有其他的級別可以使用,比方warning等Custom Topologies自定義拓撲結構在custom/topo-2sw-2host.py中是一個例子可以拿來參考,我們可以看到通過 PythonAPI 我們可以很簡單的來定義
45、拓撲結構。這個例子直接連接兩臺交換機,每個交換機帶有一臺主機。"""Custom topology exampleTwo directly connected switches plus a host for each switch: host - switch - switch - hostAdding the 'topos' dict with a key/value pair to generate our newly definedtopology enables one to pass in '-topo=mytopo'
46、from the command line."""from mininet.topo import Topoclass MyTopo( Topo ): "Simple topology example." def _init_( self ): "Create custom topo." # Initialize topology Topo._init_( self ) # Add hosts and switches leftHost = self.addHost( 'h1' ) rightHost = s
47、elf.addHost( 'h2' ) leftSwitch = self.addSwitch( 's3' ) rightSwitch = self.addSwitch( 's4' ) # Add links self.addLink( leftHost, leftSwitch ) self.addLink( leftSwitch, rightSwitch ) self.addLink( rightSwitch, rightHost )topos = 'mytopo': ( lambda: MyTopo() ) 我們提供一個自定義
48、的mininet 文件,就可以創立新的拓撲結構、交換機類型。我們在命令行里面測試一下:$ sudo mn -custom /mininet/custom/topo-2sw-2host.py -topo mytopo -test pingall* Creating network* Adding controller* Adding hosts:h1 h2* Adding switches:s3 s4* Adding links:(h1, s3) (h2, s4) (s3, s4)* Configuring hostsh1 h2* Starting controller* Starting 2
49、switchess3 s4* Ping: testing ping reachabilityh1 -> h2h2 -> h1* Results: 0% dropped (2/2 received)* Stopping 2 switchess3 .s4 .* Stopping 2 hostsh1 h2* Stopping 1 controllersc0* Donecompleted in 1.220 secondsID= MAC默認情況下,host 的 mac 地址是隨機分配的。這會導致每次 mininet 創立的時候,MAC地址都會改變,這會給調試帶來一些困難-mac參數可以解決上
50、面的問題,栗子如下:之前:$ sudo mnmininet> h1 ifconfigh1-eth0 Link encap:Ethernet HWaddr c2:d9:4a:37:25:17 inet addr:10.0.0.1 Bcast:10.255.255.255 Mask:255.0.0.0 inet6 addr: fe80:c0d9:4aff:fe37:2517/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:17 errors:0 dropped:0 overruns:0 fra
51、me:0 TX packets:7 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:1398 (1.3 KB) TX bytes:578 (578.0 B)lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: :1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:0 errors:0 dropped:0 ove
52、rruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)使用-mac參數:$ sudo mn -macmininet> h1 ifconfigh1-eth0 Link encap:Ethernet HWaddr 00:00:00:00:00:01 inet addr:10.0.0.1 Bcast:10.255.255.255 Mask:255.0.0.0 inet6 addr: fe80:200:ff:fe00:1/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:17 errors:0 dropped:0 overruns:0 frame:0 TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 colli
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 買賣合同擔保人協議書
- 逾期仲裁調節協議書
- 裝修合同毀約協議書
- 餐飲招收學員協議書
- 音樂機構合伙協議書
- 高考志愿招生協議書
- 魚塘投股合同協議書
- 食堂勞務外包協議書
- 食品轉讓合同協議書
- 賭博自愿離婚協議書
- mq135空氣質量檢測傳感器說明書空氣污染控制用
- 國家開放大學《監督學》形考任務( 1-4)試題和答案解析
- 試卷交接簽字單
- 高考化學答題技巧與規范課件
- 2022屆高考英語復習:最后一節英語課(13張PPT)
- 加強評標專家管理實施方案
- 股票實戰技巧(一)薛斯通道_CCI_DMI經典指標組合
- 小學生德育教育ppt課件
- 配電箱系統圖
- 精選靜電感應現象的應用練習題(有答案)
- 初中音樂--人聲的分類--(1)pptppt課件
評論
0/150
提交評論