99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

CAN201 代做、代寫 Python語言編程

時間:2023-12-11  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯


CAN201 Introduction to Networking Networking Project

 CAN201 Introduction to Networking

Networking Project

   Contribution to Overall Marks Submission Deadline of Part I Submission Deadline of Part II Type

Learning Outcome

40%

17th Nov. 2022, 23:59 18th Dec. 2022, 23:59 Team coursework [A] [B] [C] [D]

          How the work should be submitted?

**3; SOFT COPY ONLY!

**3; Every team leader must submit the work through Learning Mall. Specification of Part II (20% of overall marks)

This part of the networking project aims to use Mininet to create a simple SDN network topology and emulate a traffic control function through using the SDN flow entry. Assuming that the client side only knows the service running on server 1 and communicates with server 1 (without knowing the existence of the service on server 2). However, the SDN controller can manipulate (forward/redirect) the traffic without the awareness of the client. The detailed project tasks are specified as follows. For Part II, the client side program and server side program will be given.

Task 1

Use Mininet Python library to create a Python file to build a simple SDN network topology as Fig. 1 shows. Note that Client uses IP address 10.0.1.5/24, Server1 uses IP address 10.0.1.2/24, and Server2 uses 10.0.1.3/24. Also, Client, Server1 and Server2 need to use the MAC address as Fig. 1 presents.

Task 2

Program and run an SDN controller application using Ryu framework (see Task 4.1 and Task 5.1) and make sure every node (i.e., Client, Server1 and Server2) are reachable with each other. In other words, they can ‘ping’ with each other. Notice that any flow entry (excluding the table-miss flow entry) should set an idle timeout of 5 seconds.

   Figure 1. A simple SDN network topology

1

 

CAN201 Introduction to Networking Networking Project

 Task 3

Apply the given socket client program (client.py) and the given socket server program (server.py) to this SDN network topology. Specifically, run server.py on both Server1 and Server2, and run client.py on Client. With that, use the socket client side on Client to send traffic to the socket server side on Server1. Notice that wait 5 seconds after ping (the idle timeout mentioned in Task 2) and then start run the client.py, which is to make sure that the flow entry caused by ICMP ping packets has been removed.

Task 4

4.1. Program an SDN controller application that is able to create a flow entry after receiving the first (TCP SYN segment caused) Packet_In SDN packet (from the SDN switch to the SDN controller), then install the flow entry to the SDN switch, and then send out the Packet_Out SDN packet that contains the TCP SYN segment, whereby all the following traffic sent from Client to Server1 is forwarded to Server1.

4.2. With task 4.1, use Wireshark/Tcpdump on Client to capture the packets and then calculate the networking latency (from the first SYN segment till the last ACK segment indicating the TCP 3- way handshake is done).

Task 5

5.1. Program an SDN controller application that is able to create a flow entry after receiving the first (TCP SYN segment caused) Packet_In SDN packet (from the SDN switch to the SDN controller), then install the flow entry to the SDN switch, and then send out the Packet_Out SDN packet that contains the TCP SYN segment, whereby all the following traffic sent from Client to Server1 is redirected to Server2.

5.2. With task 5.1, use Wireshark/Tcpdump on Client to capture the packets and then calculate the networking latency (from the first SYN segment till the last ACK segment indicating the TCP 3- way handshake is done).

Submission:

Codes:

**3; >= Python 3.6;

**3; The whole implementation includes multiple Python scripts as follows:

1) Network topology Python file (which is used to create the SDN network topology for completing Task 1). Please name it “networkTopo.py”.

2) The Ryu SDN controller Python program (for performing Task 2 and Task 4.1). Please name it “ryu_forward.py”.

3) The Ryu SDN controller Python program (for performing Task 2 and Task 5.1). Please name it “ryu_redirect.py”.

Project Report:

**3; A cover page with your full names (pinyin for Chinese student; name on your passport for international student) and student IDs of the whole team;

**3; 4 ~ 6 pages (including everything such as the reference while excluding the cover page), double columns, using the IEEE template provided;

**3; PDF format, LaTeX is recommended, IEEE template; 2

  

CAN201

Introduction to Networking Networking Project

 **3;

Including:

- Abstract

- Introduction: project task specification (introduce some background about SDN and describe

the task of this project, do not copy from this document and use your own words), challenge (identify the research/development problems you are going to address), practice relevance (come up with the potential applications with your proposal, e.g., load balance, secure traffic control, etc.), contributions (key points that you did for this coursework).

- Related Work: research papers, technical reports, or similar applications that solve or facilitate network traffic redirection.

- Design: the design of you solution, which should include the network system design diagram (and you need to describe it using your own words) based on Fig. 1, the workflow of your solution (in particular, the steps of creating the flow entry, installing the flow entry, etc.), the algorithm (i.e., the kernel pseudo codes of the network traffic redirection function) for the SDN controller.

- Implementation: the host environment where you develop the implementation, such as the host CPU, Memory, Operating System, etc. Also, the development softwares or tools, like the IDE, the Python libraries, the SDN controller software (i.e., Ryu here), etc. Further, steps of implementation (e.g., program flow charts), programming skills (OOP, Parallel, etc.) you used, and the actual implementation of the traffic redirection function. In addition, the difficulties you met and how did you solve them.

- Testing and Results: testing environment (can be more or less the same with your host implementation environment), testing steps (the steps of using the developed Python programs to complete the project tasks **4, including snapshots), and testing results, i.e., the networking latency comparison between the forwarding case (Task 4.2) and the redirection case (Task 5.2), and you should apply figures of bars or curves for showing average performance.

- Conclusion: what you did for this project and any future work for improvement.

- Acknowledgement: individual contribution percentage should be clarified here if the project is a teamwork by using this format: Student1’s name (ID) contributes XX% to the project,

Student2’s name (ID) contributes XX% to the project, and Student3’s name (ID) contributes XX% to the project, etc. If there is no clarification of individual contribution, it is considered that all the individual team contributes the same percentage to the project.

- Reference [IEEE format]

Meanwhile, you have to follow the compulsory requirement (no tolerance1):

**3; Only ZIP file is allowed to submit;

**3; The ZIP file should be named as: CAN20**CW-Part-II-Student1name-Student2name-

Student3name-Student4name-Student5name

**3; The ZIP file includes two folders, i.e., “Codes” and “Report”. The Codes folder includes all

the Python files, and the Report folder includes the report file;

**3; Python files are: networkTopo.py, ryu_forward.py, ryu_redirect.py;

**3; The report file should be named as: Report_Part_II.pdf;

Allowed Python modules:

os, sys, shutil, socket, struct, hashlib, math, tqdm, numpy, threading, multiprocessing, gzip, zlib, zipfile,

1 It means that if you do not follow the compulsory requirement, your work will be marked as zero. 3

 

CAN201 Introduction to Networking Networking Project

 time, mininet, ryu.

Marking Criteria

The following marking scheme is for the team, and every team member shall contribute to the project. Also, several specific rules should be followed:

1. Every team should use the “ACKNOWLEDGMENT” section of the IEEE template to describe the individual contribution(s) using the following format: Student1’s name (ID) contributes XX% to the project, Student2’s name (ID) contributes XX% to the project, and Student3’s name (ID) contributes XX% to the project, etc.

2. If there is no clarification about the individual contributions, it is considered that every team member in the same team has the same contribution percentage and will have the same mark of the CW project.

3. The individual contribution must be in a range: for a 5-person team, it must be 10% - 30% (15% and 30% are included); for a 4-person team, it must be 15% - 35% (15% and 35% are included). If any individual contribution percentage of a team is out of the range (e.g., a 5-person team has the contributions like: 60%, 10%, 10%, 10%, 10%), the team may go through a review by the module leader

about the contribution discrepancy.

4. The algorithm for calculating individual mark as follows:

a. Assuming the 3-person team’s mark is m, student1 contributes x%, student2 contributes y% and student3 contributes z%, student4 contributes u%, student5 contributes v%.

b. The student who gets the most contribution will get mark m.

c. Student

d. Student

e. Student

f. Student

g. Student

Report (50%) Marking Criteria

Contents (40%)

Typography (5%) Writing (5%)

Marking Scheme: 1. Contents (40%)

1.1. Abstract (3%) - Good (3%)

1’s mart will be x/max(x,y,z,u,v)*m. 2’s mart will be y/max(x,y,z,u,v)*m. 3’s mart will be z/max(x,y,z,u,v)*m. 4’s mart will be u/max(x,y,z,u,v)*m. 5’s mart will be v/max(x,y,z,u,v)*m.

Item Mark

Abstract 3% Introduction 5% Related Work 4% Design 8% Implementation 7% Testing and Results 7% Conclusion 3% Reference 3% Report structure, style, and format 5%

                           Language

5%

   - Appropriate (**2%)

- No abstract (0%) 1.2. Introduction (5%)

4

 

CAN201

Introduction to Networking

Networking Project

 - Excellent (5%)

- Lack of necessary parts (1%-4%)

- No introduction (0%)

1.3. Related Work (4%)

- Sufficient (4%)

- Not enough (1%-3%)

- No introduction (0%)

1.4. Design (8%)

- Excellent: adequate and accurate figures and text description (8%)

- Reasonable: clear figures and text description (4%-7%)

- Incomplete: unclear figures and text description (1%-3%)

- No design (0%)

1.5. Implementation (7%)

- Excellent: sufficient details of implementation (7%)

- Reasonable: clear description of implementation (4%-6%)

- Incomplete: unclear description of implementation (1%-3%)

- No implementation (0%)

1.6. Testing and Results (7%)

- Excellent: sufficient testing description, correct experimental results using figures with clear text

description and analysis (7%)

- Acceptable: clear testing description, appropriate experimental results using figures with

acceptable text description and analysis (3%-6%)

- Incomplete: lack of testing description, experimental results with figures, or text description and

analysis (1%-2%)

- No testing and results (0%)

1.7. Conclusion (3%)

- Excellent conclusion (3%)

- Acceptable conclusion (1%-2%)

- No conclusion (0%)

1.8. Reference (3%)

- Excellent reference with the correct IEEE format (3%)

- Incorrect or inconsistent reference format (1%-2%)

- No reference (0%)

2. Typography (5%)

- Beautiful and clear typography: 5%

- Acceptable typography: 2%-4%

- Bad typography: 0% ~ 1%

3. Writing (5%)

- Accurate and concise language: 3%-5%

- Unclear and confusing language: 1% ~ 2%

Codes (50%)

Program testing steps:

 5

 

CAN201 Introduction to Networking Networking Project

 1.Forwarding case:

1.1 Run the networkTopo.py to create the SDN network topology. Check Client, Server1, and Server2 use the correct IP addresses and MAC addresses.

1.2. Run ryu_forward.py on Controller, and use Client to ping Server1’s IP address and Server2’s IP address.

1.3. Run server.py on both Server1 and Server2, and also run client.py on Client after the previous ICMP ping incurred flow entry’s idle timeout (i.e., 5 seconds).

a. Show the flow table on Switch.

b. Show Server1 receives the traffic sent from Client.

2.Redirection case:

2.1 Run the networkTopo.py to create the SDN network topology. Check Client, Server1, and Server2 use the correct IP addresses MAC addresses.

2.2. Run ryu_redirect.py on Controller, and use Client to ping Server1’s IP address and Server2’s IP address.

2.3. Run server.py on both Server1 and Server2, and also run client.py on Client after the previous ICMP ping incurred flow entry’s idle timeout (i.e., 5 seconds).

c. Show the flow table on Switch.

d. Show Server2 receives the traffic sent from Client.

Marking scheme:

1. Step 1.1 and 2.1 (10%)

- Complete topology with correct IP addresses: 10%

- Incomplete topology or incorrect IP addresses: 3%-9% (3 MAC and 3 IP addresses, 1 for host names)

- No networkTopo.py or not executable networkTopo.py: 0%-2%

Note: if no networkTopo.py or the networkTopo.py is not executable, the marking stops here. 2. Step 1.2 (5%)

- The program ryu_forward.py can work and Client can ping Server1 and Server2: 5%

- If ryu_forward.py can work but Client cannot ping Server1 or Server2: 3%-4%

- If no ryu_forward.py or ryu_forward.py is not executable: 0%-1%

Note: if no ryu_forward.py or ryu_forward.py is not executable, no marking for Step 1.3.

3. Step 1.3 (10%)

- The flow entry can be shown correctly and Server1 can receive traffic: 10%

- The flow entry cannot be shown correctly or Server1 cannot receive traffic: 5%

- Neither the above: 0%

4. Step 2.2 (10%)

- The program ryu_redirect.py can work and Client can ping Server1 and Server2: 10%

- If ryu_redirect.py can work but Client cannot ping Server1 or Server2: 6%-8%

- If no ryu_redirect.py or ryu_redirect.py is not executable: 0%-3%

Note: if no ryu_redirect.py or ryu_redirect.py is not executable, no marking for Step 2.3.

5. Step 2.3 (15%)

- The flow entry can be shown correctly and Server2 can receive traffic: 15%

- The flow entry cannot be shown correctly or Server2 cannot receive traffic: 7%

- Neither the above: 0%

請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:INT305 代做、代寫 Python 語言編程
  • 下一篇:COMP5930M 代做、代寫 c++,java 程序語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                中文字幕一区二区三区不卡 | 亚洲国产精品天堂| av亚洲产国偷v产偷v自拍| 综合久久久久久久| 欧美日韩在线播放三区四区| 午夜精品久久久久| 精品电影一区二区| 99re热这里只有精品视频| 亚洲电影中文字幕在线观看| 日韩欧美国产精品一区| 成人avav影音| 视频一区欧美精品| 国产人妖乱国产精品人妖| 色综合天天综合在线视频| 日韩1区2区日韩1区2区| 国产视频一区二区在线| 欧美视频一区在线观看| 国产成人免费视频| 日韩国产欧美在线播放| 国产日产欧美精品一区二区三区| 欧美亚洲国产一区二区三区va| 精品在线视频一区| 亚洲高清免费视频| 亚洲国产高清aⅴ视频| 欧美色中文字幕| 国产一区91精品张津瑜| 亚洲一区二区三区爽爽爽爽爽 | 日韩美女久久久| 欧美电影影音先锋| 色哟哟精品一区| 成人性生交大片免费看中文| 青青草国产成人av片免费| 亚洲青青青在线视频| 国产偷v国产偷v亚洲高清 | 在线播放国产精品二区一二区四区 | 99久久国产综合色|国产精品| 视频在线观看一区二区三区| 亚洲免费av观看| 中文字幕在线播放不卡一区| 久久影院午夜论| 精品国产一区二区三区四区四| 91精品国产一区二区三区香蕉| 欧美视频一区二区三区四区 | 91丨九色porny丨蝌蚪| 国产高清不卡二三区| 精品一区二区在线观看| 免费精品视频在线| 毛片一区二区三区| 九九国产精品视频| 国产精品一区二区黑丝| 久久99在线观看| 国产资源精品在线观看| 国产一区二区按摩在线观看| 国产一区二区剧情av在线| 国产激情视频一区二区三区欧美| 国产精品亚洲第一区在线暖暖韩国| 蜜芽一区二区三区| 精品一区二区三区在线观看| 蜜臀av性久久久久蜜臀aⅴ| 日韩—二三区免费观看av| 午夜精品一区二区三区三上悠亚| 亚洲高清免费在线| 婷婷久久综合九色国产成人| 奇米色一区二区三区四区| 蜜臀91精品一区二区三区| 精油按摩中文字幕久久| 国产v综合v亚洲欧| 成人精品免费看| 91网站黄www| 欧美日韩在线综合| 日韩一区二区三区四区| 久久欧美一区二区| 欧美激情一区不卡| 一区二区三区四区亚洲| 日韩不卡在线观看日韩不卡视频| 国产一区视频导航| 色婷婷av一区二区三区大白胸| 欧美人与z0zoxxxx视频| 久久精品无码一区二区三区| 国产精品欧美一区二区三区| 一区二区欧美在线观看| 蜜臀久久99精品久久久久宅男| 国产真实乱偷精品视频免| 99国产精品国产精品久久| 欧美精品v国产精品v日韩精品| wwww国产精品欧美| 亚洲图片欧美视频| 国内精品久久久久影院薰衣草 | 91美女在线视频| 日韩免费在线观看| 亚洲少妇30p| 蜜臀av国产精品久久久久| 99国产欧美另类久久久精品| 日韩亚洲欧美在线观看| 日本一区二区在线不卡| 日本在线不卡视频一二三区| 99视频国产精品| 久久久久久久网| 日韩成人一级片| 91网上在线视频| 国产亚洲综合色| 日韩av一二三| 欧美综合亚洲图片综合区| 国产欧美日韩不卡免费| 丝袜美腿一区二区三区| 91丨九色丨黑人外教| 国产女同性恋一区二区| 免费高清成人在线| 欧美精品在欧美一区二区少妇| 国产精品久久久久一区二区三区共| 麻豆国产欧美一区二区三区| 在线观看视频91| 亚洲欧洲三级电影| 成人av免费在线| 国产精品入口麻豆原神| 久久综合一区二区| 欧美日韩不卡一区二区| 中文字幕佐山爱一区二区免费| 黄色成人免费在线| 精品久久久久久亚洲综合网 | 成人天堂资源www在线| 日韩欧美一级精品久久| 日韩激情av在线| 欧美日韩黄色一区二区| 亚洲精品ww久久久久久p站| av电影天堂一区二区在线观看| 国产精品天干天干在观线| 精品一区二区三区香蕉蜜桃| 欧美岛国在线观看| 麻豆一区二区三| 久久久激情视频| 国产一区二区三区久久久| 久久青草欧美一区二区三区| 国产乱码精品一区二区三区忘忧草| 精品国产精品一区二区夜夜嗨| 国产一区激情在线| 秋霞午夜av一区二区三区| 99久久精品情趣| 中文文精品字幕一区二区| 国产v综合v亚洲欧| 国产香蕉久久精品综合网| 成人国产精品免费观看动漫| 日韩一区欧美一区| 在线精品视频免费播放| 美女视频黄 久久| 久久天堂av综合合色蜜桃网| 国产成人综合在线| 一区二区日韩av| 日韩欧美一级二级三级| 国产成人免费网站| 亚洲尤物在线视频观看| 日韩视频国产视频| 国内成+人亚洲+欧美+综合在线| 国产高清不卡一区二区| 亚洲同性gay激情无套| 欧美剧情片在线观看| 久久国产精品露脸对白| 国产三级一区二区| 91在线观看下载| 五月婷婷激情综合| 国产欧美一区二区精品仙草咪| 国产精品乡下勾搭老头1| 亚洲欧美自拍偷拍| 欧美成人三级在线| www.欧美亚洲| 日本免费在线视频不卡一不卡二| 欧美一级免费观看| 成人毛片老司机大片| 亚洲自拍偷拍九九九| 精品99999| 精品污污网站免费看| 国产呦精品一区二区三区网站| 国产精品传媒入口麻豆| 欧美三级视频在线| 国产精品一二三四区| 亚洲精品欧美激情| 欧美无人高清视频在线观看| 日韩不卡免费视频| 精品国产一区二区三区久久久蜜月| 国产一区欧美二区| 亚洲综合激情网| 中文字幕在线观看不卡视频| 在线不卡欧美精品一区二区三区| jizzjizzjizz欧美| 国产精品123| 极品美女销魂一区二区三区 | 首页亚洲欧美制服丝腿| 亚洲欧美日韩国产另类专区 | 中文字幕精品一区二区三区精品| 这里只有精品99re| 欧美日韩国产免费| 欧美无人高清视频在线观看| 成人性生交大片免费看视频在线| 美女网站色91| 美女视频免费一区| 麻豆91精品视频| 麻豆免费看一区二区三区| 日韩激情中文字幕| 日日摸夜夜添夜夜添精品视频 | 亚洲欧美一区二区三区孕妇|