Ethernet communication UDP - data transmission

catalogue 1, Introduction to Ethernet communication 1.OSI seven layer model 2. Ethernet packet analysis 3.IP header checksum calculation and inspection 2, Ethernet communication example 1. Overall experimental block diagram 2. Sequence diagram of transmission part 3. Experimental code and simulation results summary 1, Introduction ...

Added by MrTL on Tue, 22 Feb 2022 07:03:44 +0200

WinPcap handles offline heap files

1, Foreword Through the previous study, we are familiar with capturing packets from the network card. Now we will learn how to process packets. WinPcap provides us with many API s to save packets flowing through the network to a heap file and read the contents of the heap. The format of this file is very simple, but it contains the binary cont ...

Added by jinwu on Tue, 22 Feb 2022 05:33:49 +0200

Java Programming Network Programming TCP Programming

Java Programming Network Programming TCP Programming Complete the development of TCP programs using Socket s Use this class to easily establish a reliable, two-way, continuous, point-to-point communication connection In Socket development, the server side uses ServerSocket to wait for the client to connect. For Java network programs, each cl ...

Added by markjia on Mon, 21 Feb 2022 19:42:41 +0200

Initial transport layer TCP protocol and the use of TCP in socket

catalogue I Use of TCP in socket API 1. TCP classes and common methods in socket (1) ServerSocket class used by the server (2) socket class 2. Use ServerSocket to realize the interaction between a simple client segment and the server (1) Graphic thinking (2) Code implementation (3) Operation results II Initial knowledge of TCP Protoc ...

Added by DeGauss on Mon, 21 Feb 2022 06:18:56 +0200

PXE efficient batch network installation and kickstat automatic installation

1, PXE 1. Principle and concept: The pre boot execution environment (PXE), also known as the pre execution environment, provides a mechanism for starting a computer using a Network Interface. This mechanism allows the computer to start without relying on the local data storage device (hard disk) or the locally installed operating system. Ser ...

Added by Sarok on Sun, 20 Feb 2022 19:02:45 +0200

Real time communication chat program -- java network programming

Use TCP to transmit data, write the program of client and server, and realize the real-time communication between the two programs. In each program, the function of sending and receiving data in real time is realized. io interface of client Server side io interface io demo The program takes ...

Added by daneilair on Sun, 20 Feb 2022 16:50:53 +0200

UDP protocol realizes simple communication C++

1. IP address Computers in the network use IP addresses for unique identification. There are two types of IP addresses: IPv4 and IPv6. It is generally expressed in decimal system, such as ipv6.168.1, but not in decimal system. How to view IP address related information: Under Windows system, open cmd, enter the command ipconfig, and press en ...

Added by cooldude832 on Sun, 20 Feb 2022 13:11:56 +0200

Design and implementation of port scanning tool based on C language

lfy: Go realizes four scanning modes and comparisonjyx: C realizes four scanning modes and comparison 1, Technical principle Port scanning technology sends detection data packets to the TCP/UDP port of the target system, records the response of the target system, and analyzes the response to view the services of the system in monitoring or ru ...

Added by clearstatcache on Sun, 20 Feb 2022 12:41:51 +0200

[ACWing]2188. Upper and lower bounds of passive sink feasible flow

Title address: https://www.acwing.com/problem/content/2190/ Given a containing n n n points m m For a digraph with m edges, each edge has a lower bound and an upper bound. Find a feasi ...

Added by ajpasetti on Sun, 20 Feb 2022 07:23:11 +0200

DNS domain name resolution and forward resolution experiment

1, Role of DNS system Forward resolution: find the corresponding IP address according to the domain name Reverse resolution: find the corresponding domain name according to the IP address Distributed data structure of DNS system ① DNS definition DNS is the English abbreviation of "city name system". As a distributed database ...

Added by delorian on Sat, 19 Feb 2022 19:51:11 +0200