国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫COMPUTER NETWORKS

時(shí)間:2023-12-24  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



COMPUTER NETWORKS FALL 2023
Build Your Own Router
Assigned: December 6, 2023 Due Date: 23:59, December 27, 2023
1 ASSIGNMENT
You must work on this assignment individually.
This project is designed for you to:
• Learntobuildasimplerouter.
• TobefamiliarwithIPv4,ICMPandARP.
In this project, you will be writing a simple router with a static routing table. Your router will receive raw Ethernet frames and process them just like a real router: forward them to the correct outgoing interface, create new frames, etc. The starter code will provide the framework to receive Ethernet frames; your job is to create the forwarding logic.
You are allowed to use some high-level abstractions, including C++11 extensions, for parts that are not directly related to networking, such as string parsing, multi-threading, etc.
In the following contents, you will see
• DetaileddescriptionofthisporjectinSection2
• GuidelinestosetuptheenvironmentinSection3 • OverviewofthestartercodeinSection4
• SomehelpfulhintsinSections5
• HowtosubmityourcodeinSection6
• GradingcriteriainSection7
This assignment is considerably hard, so get started early, not as some of you did for FTP Project, to avoid missing the deadline.
  1

2 PROJECT DESCRIPTION
There are four main parts in this assignment:
• HandleEthernetframes • HandleARPpackets
• HandleIPv4packets
• HandleICMPpackets
This assignment runs on top of Mininet which was built at Stanford. Mininet allows you to emulate a network topology on a single machine. It provides the needed isolation between the emulated nodes so that your router node can process and forward real Ethernet frames between the hosts like a real router. You don’t have to know how Mininet works to complete this assignment, but if you’re curious, you can learn more information about Mininet on its official website (http://mininet.org/).
Your router will route real packets between emulated hosts in a single-router topology. The project envi- ronment and the starter code has the following default topology:
  +−−−−−−−−−−−−−−−−+ server1−eth0
| 192.168.2.2/24 + +−−−−−−−−−−−+
 192.168.2.1/24 | sw0−eth1 | +−−−−−−−−−−+ +−−−−−−−−−−−−−−−−−−+ |
| server1 | |
| |
| client |
| | | (sw0) |
| | +−−−−−−−−−−−+ | SimpleRouter |
 +−−−−−−−−−−+ client −eth0
| |
+−−−−−−−−−−−−−−−−−−+ +−−−−−−−−−−−+
10.0.1.100/8 +
sw0−eth3 sw0−eth2 10.0.1.1/8 172.64.3.1/16
| |
| server2 | |++||
 | | | +−−−−−−−−−−−+ | | | server2−eth0
+−−−−−−−−−−−−−−−−−−−−−−+ +−−−−−−−−−−−−−−−−+ 172.64.3.10/16
     The corresponding routing table for the SimpleRouter sw0 in this default topology:
NOTE: DonothardcodeanyIPaddresses,network,orinterfaceinformation.Wewillbetestingyour code on other single-router topologies with different number of servers and clients, and different IP and network addresses. So it is STRONGLY RECOMMENDED that you test your implementations under dif- ferentIPaddressesandroutingtables(bymodifyingthe IP_CONFIG and RTABLE filerespectively).
If your router is functioning correctly, all of the following operations should work:
   Destination Gateway Mask Iface −−−−−−−−−−−− −−−−−−−−−−−− −−−−−−−−−−−−−−−− −−−−−−−−
 0.0.0.0 192.168.2.2 172.64.3.10
10.0.1.100 0.0.0.0 0.0.0.0 255.255.255.0 0.0.0.0 255.255.0.0
sw0−eth3 sw0−eth1 sw0−eth2
      2


ping fromtheclienttoanyoftherouter’sinterfaces:
  mininet> client ping 192.168.2.1
 ...
mininet> client ping 172.64.3.1
...
mininet> client ping 10.0.1.1
...
     •



ping fromtheclienttoanyoftheappservers:
from the client to any of the router’s interfaces:
from the client to any of the app servers:
Downloadingfilesfromhttp-serverby wget command
2.1 ETHERNET FRAMES
  mininet> client ping server1 # or client ping 192.168.2.2 ...
mininet> client ping server2 # or client ping 172.64.3.10
 ...
      traceroute
  mininet> client traceroute 192.168.2.1 ...
mininet> client traceroute 172.64.3.1
 ...
mininet> client traceroute 10.0.1.1
...
      traceroute
  mininet> client traceroute server1
 ...
mininet> client traceroute server2
...
        mininet> client wget http://192.168.2.2/<filename>
 ...
mininet> client wget http://172.64.3.10/<filename>
...
    A data packet on a physical Ethernet link is called an Ethernet packet, which transports an Ethernet frame as its payload.
The starter code will provide you with a raw Ethernet frame. Your implementation should understand source and destination MAC addresses and properly dispatch the frame based on the protocol.
   0123 012345678**12345678**12345678**1 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
| Destination Address | + (48 bits ) +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
3

 | | Source Address | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ (48 bits ) + || +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Type (16 bits) | |
 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ + || || ~ Payload ~ || ||
 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
    Note that actual Ethernet frame also includes a **-bit Cyclical Redundancy Check (CRC). In this project, you will not need it, as it will be added automatically.
• Type : Payload types – 0x0806 (ARP)
– 0x0800 (IPv4)
For your convenience, the starter code defines Ethernet header as an   structure in   :
Requirements
• YourroutershouldignoreEthernetframesotherthanARPandIPv4.
• Your router must ignore Ethernet frames not destined to the router, i.e., when destination hard- ware address is neither the corresponding MAC address of the interface nor a broadcast address ( FF:FF:FF:FF:FF:FF ).
• Your router must appropriately dispatch Ethernet frames (their payload) carrying ARP and IPv4 packets.
2.2 ARP PACKETS
The Address Resolution Protocol (ARP) (RFC 826) is a telecommunication protocol used for resolution of Internet layer addresses (e.g., IPv4) into link layer addresses (e.g., Ethernet). In particular, before your router can forward an IP packet to the next-hop specified in the routing table, it needs to use ARP re- quest/reply to discover a MAC address of the next-hop. Similarly, other hosts in the network need to use ARP request/replies in order to send IP packets to your router.
Note that ARP requests are sent to the broadcast MAC address ( FF:FF:FF:FF:FF:FF ). ARP replies are sent directly to the requester’s MAC address.
  ethernet_hdr
core/protocol.hpp
  struct ethernet_hdr {
uint8_t ether_dhost[ETHER_ADDR_LEN]; /* destination ethernet address */
 uint8_t ether_shost[ETHER_ADDR_LEN]; /* source ethernet address */
uint16_t ether_type ; /* packet type ID */ } __attribute__ ((packed)) ;
         4

 0123 012345678**12345678**12345678**1 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
| Hardware Type | Protocol Type | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
 | HW addr len | Prot addr len | Opcode | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ || ~ Source hardware address ~ || +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
 || ~ Source protocol address ~ || +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ ||
 ~ Destination hardware address ~ || +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ || ~ Destination protocol address ~ ||
 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
      • Hardware Type : 0x0001 (Ethernet)
• Protocol Type : 0x0800 (IPv4)
• Opcode :
– 1 (ARP request)
– 2 (ARP reply)
• HW addr len : number of octets in the specified hardware address. Ethernet has 6-octet addresses,
so 0x06.
• Prot addr len : number of octets in the requested network address. IPv4 has 4-octet addresses, so 0x04.
For your convenience, the starter code defines the ARP header as an   structure in   :
     struct arp_hdr
arp_hdr
core/protocol.hpp
   {
unsigned unsigned unsigned unsigned unsigned
short short char char short
arp_hrd ; arp_pro ; arp_hln ; arp_pln ; arp_op ;
/* format of hardware address */ /* format of protocol address */ /* length of hardware address */ /* length of protocol address */ /* ARP opcode (command) */
 unsigned char
uint**_t
unsigned char
arp_sha[ETHER_ADDR_LEN]; /* sender hardware address arp_sip ; / * sender IP address arp_tha[ETHER_ADDR_LEN]; /* target hardware address arp_tip ; /* target IP address
*/ * / */ */
uint**_t
} __attribute__ ((packed)) ;
 5

    Requirements
• YourroutermustproperlyprocessincomingARPrequestsandreplies:
– MustproperlyrespondtoARPrequestsforMACaddressfortheIPaddressofthecorrespond- ing network interface
– MustignoreotherARPrequests
• When your router receives an IP packet to be forwarded to a next-hop IP address, it should check
ARP cache if it contains the corresponding MAC address:
– Ifavalidentryfound,theroutershouldproceedwithhandlingtheIPpacket
– Otherwise,theroutershouldqueuethereceivedpacketandstartsendingARPrequesttodis- cover the IP-MAC mapping.
• When router receives an ARP reply, it should record IP-MAC mapping information in ARP cache (Source IP/Source hardware address in the ARP reply). Afterwards, the router should send out all corresponding enqueued packets.
NOTE: Your implementation should not save IP-MAC mapping based on any other messages, only from ARP replies!
• ToreducestalenessoftheARPinformation,entriesinARPcacheshouldtimeoutafter 30seconds. Thestartercode(ArpCache class)alreadyincludesthefacilitytomarkARPentries“invalid”.Your task is to remove such entries. If there is an ongoing traffic (e.g., client still pinging the server), then the router should go through the standard mechanism to send ARP request and then cache the response. If there is no ongoing traffic, then ARP cache should eventually become empty.
• TheroutershouldsendanARPrequestaboutonceaseconduntilanARPreplycomesbackorthe requesthasbeensentoutatleast 5times.
If your router didn’t receive ARP reply after re-transmitting an ARP request 5 times, it should stop re-transmitting, remove the pending request, and any packets that are queued for the transmission that are associated with the request.
YourroutershouldalsosendanICMPDestination HostUnreachable messagetothesourceIP.
2.3 IPV4 PACKETS
Internet Protocol version 4 (IPv4) (RFC 791) is the dominant communication protocol for relaying data- grams across network boundaries. Its routing function enables internetworking, and essentially estab- lishes the Internet. IP has the task of delivering packets from the source host to the destination host solely based on the IP addresses in the packet headers. For this purpose, IP defines packet structures that encapsulate the data to be delivered. It also defines addressing methods that are used to label the datagram with source and destination information.
       0123 012345678**12345678**12345678**1 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
 | Version | IHL | Type of Service | Total Length | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
6

 | Identification | Flags | Fragment Offset | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Time to Live | Protocol | Header Checksum | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Source Address |
 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Destination Address | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Options | Padding | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ ||
 || ~ Payload ~ || || +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
    For your convenience, the starter code defines the IPv4 header as an   structure in :
 uint8_t uint16_t
ip_tos ; ip_len ;
*/
service */
ip_hdr
core/protocol.hpp
  struct ip_hdr {
unsigned int ip_hl :4; unsigned int ip_v :4;
/* header
/* version
/* type of
/* total length */
length */
 uint16_t uint16_t
uint8_t
uint8_t
uint16_t ip_sum;
/* identification */
/* fragment offset field */ /* time to live */
/* protocol */
/* checksum * /
ip_id ;
ip_off ; ip_ttl ; ip_p ;
 uint**_t ip_src , ip_dst ; /* source and dest address */ } __attribute__ ((packed));
     Requirements
• ForeachincomingIPv4packet,yourroutershouldverifyitschecksumandtheminimumlengthof an IP packet
– Invalidpacketsmustbediscarded.
• Your router should classify datagrams into (1) destined to the router (to one of the IP addresses of
the router), and (2) datagrams to be forwarded:
– For(1),ifpacketcarriesICMPpayload,itshouldbeproperlydispatched.Otherwise,discarded (a proper ICMP error response is NOT required for this project).
– For (2), your router should use the longest prefix match algorithm to find a next-hop IP ad- dress in the routing table and attempt to forward it there
• For each forwarded IPv4 packet, your router should correctly decrement TTL and recompute the checksum.
7

2.4 ICMP PACKETS
Internet Control Message Protocol (ICMP) (RFC 792) is a simple protocol that can send control informa- tion to a host.
In this assignment, your router will use ICMP to send messages back to a sending host. • Echo or   message
Echo Reply
  0123
012345678**12345678**12345678**1 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Type | Code = 0 | Checksum | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
| Identifier | Sequence Number |
 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Data ...
+−+−+−+−+−
     – Type
* *
8 : echo message
0 : echo reply message
message
 Time Exceeded
  0123
012345678**12345678**12345678**1 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Type=11 | Code | Checksum | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
 | unused | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Internet Header + 64 bits of Original Data Datagram | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
  •
   – Code
* *
0 : time to live exceeded in transit
1 : fragment reassembly time exceeded (NOT required to implement)
message
 Destination Unreachable
  0123
012345678**12345678**12345678**1 +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
 | Type=3 | Code | Checksum | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | unused | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+ | Internet Header + 64 bits of Original Data Datagram | +−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+−+
  •
   8

– Code
* 1 : Destination host unreachable
* 3 : Destination port unreachable
When an ICMP message is composed by a router, the source address field of the internet header can be the IP address of any of the router’s interfaces, as specified in RFC 792.
Notethat TimeExceeded messageisneededfor traceroute toworkproperly.
For your convenience, the starter code defines the ICMP header as an structure in :
You may want to create additional structs for ICMP messages, but make sure to use the packed attribute so that the compiler doesn’t try to align the fields in the struct to word boundaries (i.e., must use
__attribute__((packed)) annotation).
Requirements
Your router should properly generate the following ICMP messages, including proper ICMP header check- sums:
    icmp_hdr
core/protocol.hpp
  struct icmp_hdr { uint8_t icmp_type ; uint8_t icmp_code;
 uint16_t icmp_sum;
} __attribute__ ((packed));
        •


Echo Reply message ( type 0 ):
Sent in response to an incoming Echo Request message (ping) to one of the router’s interfaces.
Echo requests sent to other IP addresses should be forwarded to the next hop address as usual. Inthisproject, EchoReply message’sinitialTTLfieldinitsIPv4headershouldbe 64.
Time Exceeded message ( type 11 , code 0 ):
Sent if an IP packet is discarded during processing because the TTL field is 0. This is needed for
traceroute to work.
Port Unreachable message ( type 3 , code 3 ):
Sent if an IP packet containing a UDP or TCP payload is sent to one of the router’s interfaces. This is needed for traceroute to work.
3 ENVIRONMENT SETUP
        You are suggested to finish this project on Ubuntu 16.04.7. If your system is Windows or Mac OS, you can install Ubuntu 16.04.7 Virtual Machine in VMware. (Do not use Windows Subsystem for Linux (WSL), as Mininet is currently not supported by WSL.)
We provide   to setup the environment. Please run it in superuser mode:
setup.sh
   sudo bash setup.sh
    9

To run or test your code, please change work path to the project directory and open three terminals here, then
1. inthefirstterminal,startpox
/opt/pox/pox . py −−verbose ucla_cs118
2. inthesecondterminal,startMininet chmod +x run.py
sudo ./run.py
To exit Mininet, type exit command in this terminal.
3. inthethirdterminal,startyourrouter
Besides,youcanusethe show-arp.py scripttoprintoutyourrouter’scurrentarpcacheorroutingtable in another terminal.
• Toshowarpcahce,run:
./show−arp.py arp
• Toshowroutingtable,run:
./show−arp.py routing
Here are some tips:
• DONOTCOPYdirectlyfromtheprojectspec,asthepdfformattingmaybeproblematic.
• Ifyougetthefollowingoutputsafterrunningrouter
or
Please restart Mininet.
• Ifyougetthefollowingoutputsafterrunning
Maybe converting the format of   is helpful
                  make
./ router
                      Got packet of size 42 on interface sw0−eth1
 Received packet, but interface is unknown, ignoring
       Resetting SimpleRouter with 0 ports
 Interface l i s t empty
     run.py
   /usr/bin/env: ’python\r ’ : No such file or directory
    run.py
   sudo apt−get install dos2unix dos2unix run.py
    10

• •
When POX controller is restrated, the simpler router needs to be manually stopped and started again.
Ifyougetthefollowingoutputsafterrunning   or
Try cleaning up mininet related environments by
sudo mn −c
4 STARTER CODE OVERVIEW is the overal structure of the starter code:
           Here
  simple−router .hpp
+−−−−−−−−−−−−−−+ core/protocol .hpp
||
| SimpleRouter | core/ utils .hpp
 || +−−−+−−−−−+−−−−+
m_arp 1 | 1| | 1 m_ifaces +−−−−−−−−−−−−−−−−+ | +−−−−−−−−−−−−−−−−−−+ |||
 | | m_routingTable | |||
|1 |1 | N (std::set)
vvv +−−−−−−+−−−−−+ +−−−−−−+−−−−−−−+ +−−−−−+−−−−−+ ||||||
 | ArpCache | | RoutingTable | | Interface | |||||| +−−−−−−−−−−−−+ +−−−−−−−−−−−−−−+ +−−−−−−−−−−−+
arp−cache.hpp routing−table .hpp core/interface .hpp
      •


SimpleRouter
Mainclassforyoursimplerouter,encapsulating ArpCache, RoutingTable,andassetof Interface
objects.
Interface
Class containing information about router’s interface, including router interface name ( name ),
hardware address ( addr ), and IPv4 address ( ip ).
RoutingTable ( routing-table.hpp|cpp )
Class implementing a simple routing table for your router. The content is automatically loaded
fromatextfilewithdefaultfilenameis RTABLE (namecanbechangedusing RoutingTable option in router.config configfile)
            •
ArpCache ( arp-cache.hpp|cpp )
Exception : Error creating interface . . . RTNETLINK answers : File exists
run.py
autograde.py
    11

  •


Method to send raw Ethernet frames (
Method to handle ARP cache events (
Method to lookup entry in the routing table (
):
Class for handling ARP entries and pending ARP requests.
4.1 KEY METHODS
Your router receives a raw Ethernet frame and sends raw Ethernet frames when sending a reply to the sending host or forwarding the frame to the next hop. The basic functions to handle these functions are:

Method that receives a raw Ethernet frame (
):
Need to implement
   Implemented
simple-router.hpp|cpp
  /**
* This method is called each time the router receives a packet on
 * the interface. The packet buffer \p packet and the receiving
* interface \p inIface are passed in as parameters.
*/
void
SimpleRouter::handlePacket(const Buffer& packet, const std::string& inIface);
    simple-router.hpp|cpp
  /**
  * Call this method to send packet \p packt from the router on
* interface \p outIface
*/
void
SimpleRouter::sendPacket(const Buffer& packet, const std::string& outIface);
      Need to implement
arp-cache.hpp|cpp
):
   /**
* This method gets called every second. For each request sent out,
* you should keep checking whether to resend a request or remove it.
*/
void
ArpCache : : periodicCheckArpRequestsAndCacheEntries ( ) ;
      Need to implement
routing-table.hpp|cpp
):
   /**
* This method should lookup a proper entry in the routing table
* using " longest −prefix match" algorithm
*/
RoutingTableEntry
RoutingTable : : lookup ( uint**_t ip ) const ;
    4.2 DEBUGGING FUNCTIONS
  We have provided you with some basic debugging functions in core/utils.hpp ( core/utils.cpp ). Feel free to use them to print out network header information from your packets. Below are some functions you may find useful:
12

  •


print_hdrs(const uint8_t *buf, uint**_t length) , print_hdrs(const Buffer& packet) Print out all possible headers starting from the Ethernet header in the packet
ipToString(uint**_t ip) , ipToString(const in_addr& address)
Print out a formatted IP address from a uint**_t or in_addr . Make sure you are passing the IP
address in the correct byte ordering
macToString(const Buffer& macAddr) PrintoutaformattedMACaddressfroma Buffer ofMACaddress
4.3 LOGGING PACKETS
      You can use Mininet to monitor traffic that goes in and out of the emulated nodes, i.e., router, server1 and server2. For example, to see the packets in and out of server1 node, use the following command in Mininet command-line interface (CLI):
mininet> server1 sudo tcpdump −n −i server1−eth0
Alternatively, you can bring up a terminal inside server1 using the following command
           mininet> xterm server1
then inside the newly opened   :
     $ sudo tcpdump −n −i server1−eth0
xterm
      4.4 GRADING SCRIPT
 Toeasedebugging,wemakeasimplifiedversionofgradingscriptpublicwith autograde.py.Itcontains all the public test cases (details in Section 7), which make up 45/85 of the total test score. To run the script, first start pox and your router, then use the following command:
chmod +x autograde.py sudo . / autograde . py
The grading result and related information will be shown in standard output as well as the details.log file. You can also change the logging level to see more detailed information:
log . setLevel ( logging .DEBUG)
If you get the following outputs from router:
Just turn off your router, grading script, and then start and exit Mininet with run.py . Afterwards, the grading script may work as expected.
                  Got packet of size 42 on interface sw0−eth1 Received packet, but interface is unknown, ignoring
     13

Notice that the private, comprehensive grading script will be run on other single-router topology with different interfaces, IP/MAC addresses. Thus, the output of provided script may be different from your final score, even on public test cases.
5 HELPFUL HINTS
Given a raw Ethernet frame, if the frame contains an IP packet that is not destined towards one of our interfaces:
• Sanity-checkthepacket(meetsminimumlengthandhascorrectchecksum).
• DecrementtheTTLby1,andrecomputethepacketchecksumoverthemodifiedheader.
• Find out which entry in the routing table has the longest prefix match with the destination IP ad- dress.
• Check the ARP cache for the next-hop MAC address corresponding to the next-hop IP. If it’s there, send it. Otherwise, send an ARP request for the next-hop IP (if one hasn’t been sent within the last second), and add the packet to the queue of packets waiting on this ARP request.
If an incoming IP packet is destined towards one of your router’s IP addresses, you should take the fol- lowing actions, consistent with the section on protocols above:
• If the packet is an ICMP echo request and its checksum is valid, send an ICMP echo reply to the sending host.
• IfthepacketcontainsaTCPorUDPpayload,sendanICMPportunreachabletothesendinghost. Otherwise, ignore the packet. Packets destined elsewhere should be forwarded using your normal forwarding logic.
Obviously, this is a very simplified version of the forwarding process, and the low-level details follow. For example, if an error occurs in any of the above steps, you will have to send an ICMP message back to the sender notifying them of an error. You may also get an ARP request or reply, which has to interact with the ARP cache correctly.
In case you have difficulties, you can contact the TAs by email: zgxw18@gmail.com,ycdfwzy@outlook.com or visit the TAs at 1**211, East Main Building.
6 SUBMISSION REQUIREMENTS
To submit your project, you need to prepare:
1. A report.pdf filenomorethanTHREEpages.(Seedetailsinsection7)
2. Allyoursourcecode, Makefile and report.pdf asa .tar.gz archive(andanyfilesfromextracredit part).
To create the submission, use the provided Makefile in the starter code. Just update Makefile to include your student ID and then just type
make tarball
           14

Then submit the resulting archive to WEB LEARNING. Before submission, please make sure:
• • •
Yourcodecompiles Yourimplementationconformstothespecification
.tar.gz archivedoesnotcontaintemporaryorotherunnecessaryfiles.Wewillautomaticallydeduct points otherwise.
7 GRADING GUIDELINES
  Yourprojectwillbegradedbasedonthefollowingparts(privatetestsarenotprovidedin autograde.py): 1. Pingtests
a) (5 pts, public) Pings from client to all other hosts (all pings expected to succeed), including non-existing host (error expected)
b) (5 pts, public) Pings from server1 to all other hosts (all pings expected to succeed), including non-existing host (error expected)
c) (5 pts, public) Pings from server2 to all other hosts (all pings expected to succeed), including non-existing host (error expected)
d) (10pts,private)Pingresponses(fromclient)haveproperTTLs
e) (5pts,public)Pingbetweenselectedhosts,checkARPcache,thereshouldbeapropernum- ber of entries
f) (5pts,public)Pingfromclienttoserver1,after40seconds,theARPcacheshouldbeempty(+ no segfaults)
g) (5 pts, private) Ping from client a non-existing IP, router sends proper ARP requests (+ no segfaults)
h) (5pts,private)Pingfromclient,receivehostunreachablemessage
2. Traceroutetests
a) (5pts,public)Traceroutefromclienttoallotherhosts,includinganon-existinghost b) (5pts,public)Traceroutefromserver1toallotherhosts,includinganon-existinghost c) (5pts,public)Traceroutefromserver2toallotherhosts,includinganon-existinghost
d) (10pts,private)Traceroutefromclienttorouter’sinterfaces(get1line) 3. Filedownloadingtests
a) (5pts,public)Downloadasmallfile(≈1KB)fromanyserverthroughhttp
b) (10pts,private)Downloadalargefile(≈10MB)fromanyserverthroughhttp 4. (20pts)CodequalityandProjectReport(report.pdf)
 15

The project report could include:
a) YournameandstudentID
b) Theproblemsyouhavemetinthisprojectandhowyousolvedthem.
c) Listofanyadditionallibrariesused. d) Anyadviceonthisproject.
Note that poor design, code structure, or report will probably reduce the credits you gained in this part.
Suppose you get A credits according to the above criteria, your final grade should be

請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代寫公式指標(biāo) 代做選股公式 請(qǐng)人做股標(biāo)指標(biāo)
  • 下一篇:莆田鞋在哪個(gè)平臺(tái)買,推薦8個(gè)購買平臺(tái)
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 寵物飼養(yǎng) 十大衛(wèi)浴品牌排行 suno 豆包網(wǎng)頁版入口 wps 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    久艹视频在线免费观看| 国产乱码一区| 五月婷婷综合色| av免费中文字幕| 日本中文字幕一级片| 国产mv久久久| 国产尤物99| 亚洲国产精品一区二区第四页av | 青青精品视频播放| 久久精品99久久久香蕉| 国产欧美一区二区三区在线| 色噜噜狠狠色综合网| 国产精品免费电影| 日本成人中文字幕在线| 国产精品久久久久久久久久东京| 久久精品亚洲94久久精品| 成人久久18免费网站图片| 日本久久精品视频| 奇米四色中文综合久久 | 久久天天东北熟女毛茸茸| 日韩免费毛片| 欧美影院在线播放| 男人亚洲天堂网| 日韩一区二区三区高清| 日韩av三级在线| 欧美在线欧美在线| 国产日韩欧美精品在线观看| 欧美亚洲国产日本| 午夜精品在线观看| 日韩视频第二页| 免费久久久久久| 日本视频一区在线观看| 日韩av免费在线看| 国产综合色一区二区三区| 成人免费视频91| 日韩一区av在线| 国产成人av网| 国产精品日韩一区二区免费视频| 精品国产aⅴ麻豆| 久久精品在线视频| 九九久久精品一区| 日韩中文一区| 免费毛片网站在线观看| 91精品国产自产在线| 国产三级中文字幕| 91精品国产高清久久久久久91| 国产成年人在线观看| 萌白酱国产一区二区| 日韩欧美不卡在线| 国产欧美一区二区三区四区| 国产成人精品免高潮在线观看| 成人福利网站在线观看11| 国产成人精品日本亚洲11| 国产精品久久99久久| 久久精品99| 精品乱码一区二区三区| 日韩av影视| 成年丰满熟妇午夜免费视频| 久久久av网站| 亚洲精品无人区| 久久久久国产视频| 欧美日韩福利视频| 久久成人精品一区二区三区| 国产精品国产三级国产aⅴ9色| 性色av香蕉一区二区| 国产欧美精品一区二区三区-老狼| 丝袜一区二区三区| 天天在线免费视频| 色综合视频网站| 欧美尤物巨大精品爽| 91精品视频专区| 中文一区一区三区免费| 美女精品国产| 波霸ol色综合久久| 97碰碰碰免费色视频| 精品麻豆av| 视频在线99re| av一区二区三区四区电影| 国产精品国模大尺度私拍| 人人干视频在线| 国产成人黄色av| 色欲av无码一区二区人妻| 88国产精品欧美一区二区三区| 色综合久久88| 国产日韩欧美电影在线观看| 国产精品高清网站| 黄色网址在线免费看| 国产日韩av在线播放| 久久天天躁狠狠躁夜夜爽蜜月| 日韩欧美猛交xxxxx无码| 国产夫妻自拍一区| 欧美一区二区视频97| 久久久亚洲精品视频| 日日噜噜夜夜狠狠久久丁香五月| 91精品国产91久久久久久最新 | 国产特级黄色大片| 国产精品久久久久久久天堂第1集| 欧美日韩一区二区视频在线| 国产精品久久久| 国产美女91呻吟求| 伊人久久大香线蕉精品| 99久久免费观看| 日韩中文一区| 久久精品99久久| 免费在线观看的毛片| 精品国产一区二区三区久久久久久 | 国产精品视频内| 蜜桃av噜噜一区二区三| 久久亚洲精品一区二区| 国产欧美韩日| 亚洲国产精品影视| 久久久成人精品一区二区三区| 日韩精品一区二区三区色偷偷| 国产精品乱码一区二区三区| 国产伦精品一区二区三区照片91| 亚洲一区二区中文字幕| 久久久久免费视频| 国产自产精品| 五月天综合网| 国产精品区一区二区三在线播放| 国产日产欧美一区二区| 欧美一区二区色| 国产精品区一区二区三在线播放| 国产一区 在线播放| 亚洲一区二区三区四区在线播放 | 亚洲中文字幕无码中文字| 日韩激情视频一区二区| 国产精品国产亚洲精品看不卡| 高清av免费一区中文字幕| 日本精品免费| 精品国产电影| www国产91| 成人免费无码av| 欧美中文在线视频| 欧美精品成人91久久久久久久| 久久乐国产精品| 国产又粗又爽又黄的视频| 欧美一级片免费播放| 国产精品精品软件视频| 久久另类ts人妖一区二区| 国产综合av一区二区三区| 性一交一乱一伧国产女士spa| 国产精品初高中精品久久| 久久久999视频| 国产欧美韩国高清| 欧美视频在线播放一区| 亚洲高清在线观看一区| 精品国产一区二区三区在线| 久久久久久久久久久综合| 国产久一一精品| 欧美牲交a欧美牲交| 亚洲伊人第一页| 欧美大片欧美激情性色a∨久久| 久久精品国产久精国产一老狼| 91国产在线免费观看| 国产精品久久综合av爱欲tv| 91免费国产视频| 国产一区二区视频播放| 日韩免费不卡av| 午夜精品在线视频| 亚洲中文字幕无码av永久| 欧美猛交ⅹxxx乱大交视频| 精品国产一区二区三区久久狼黑人| 一本久道久久综合| 国产不卡一区二区视频| 成人免费在线网址| 黄色网页免费在线观看| 日韩三级在线播放| 视频在线精品一区| 亚洲制服欧美久久| 九色91av视频| 国产精品黄视频| 国产精品丝袜高跟| xxx一区二区| 精品久久久91| 国产精品推荐精品| 久久精品国产亚洲精品| 日韩综合视频在线观看| 九一免费在线观看| 国产福利片一区二区| 国产精品8888| 久久av在线看| 国产精品美女久久| 国产精品色午夜在线观看| www国产91| 国产精品久久中文| 国产精品成久久久久三级| 国产精品第七影院| 久久夜色精品国产欧美乱| 久久香蕉国产线看观看av| 久久成人亚洲精品| 久久99亚洲热视| 久久久久久91香蕉国产| 一本久久a久久精品vr综合| 亚洲制服中文| 日韩一级片一区二区| 欧美一区二区三区四区在线观看地址| 午夜免费福利小电影| 日韩视频免费在线播放| 欧美日韩一区综合|