5 network configuration and system management operation
5 network configuration and system management operation
5.1 view network IP and gateway
(1) View virtual network editor
(2) Modify virtual network card Ip
(3) View gateway
(4) View VMnet8 network configuration in windows Environment
5.2 configuring network ip addresses
5.2.1 ifconfig configuration network interface
Ifconfig: n ...
Added by jogisarge on Mon, 24 Jan 2022 23:46:07 +0200
Introduction to computer vision based on Paddle -- Lecture 9: detailed explanation of MobilenetV3 network
Station B tutorial address
https://www.bilibili.com/video/BV18b4y1J7a6/
introduce
Mobilenet is a network series created by Google. It has been released to V3. Each version update is an optimization modification on the previous network. Mobilenet focuses on lightweight networks, which means less network parameters, faster execution speed and ...
Added by schandhok on Mon, 24 Jan 2022 17:01:31 +0200
2, TCP network programming
catalogue
1, Network programming for TCP
1. Example 1: the client sends information to the server, and the server displays the data on the console
① Client
② Server
2. Example 2: the client sends the file to the server, and the server saves the file locally
① Client
② Server
3. Example 3: Send a file from the client to the server, the s ...
Added by RoundPorch on Mon, 24 Jan 2022 03:59:37 +0200
GB28181 protocol -- real time video and audio on demand (Preview)
1. Basic requirements
According to the description of real-time video and audio on demand in Chapter 9 of GB/T 28181-2016, its contents are as follows:
SIP messages of real-time video and audio on demand shall be routed and forwarded through SIP servers in this domain or other domains, and the real-time video and audio stream of the target de ...
Added by perfume on Mon, 24 Jan 2022 02:17:19 +0200
Gin implements upload / download services
In this article, let's take a look at the file upload service in {Gin}.
Create project
mkdir ginupload && cd ginupload
go mod init ginupload
go get -u github.com/gin-gonic/gin
touch main.go
We create a "ginupload" directory to store code, and use "go mod" to manage dependencies.
Then, add "gin" as a th ...
Added by nemesis1931 on Sun, 23 Jan 2022 22:53:22 +0200
BGP -- border gateway routing protocol -- Basic Experiment
BGP: Border Gateway Routing Protocol - Dynamic Routing Protocol Classless path vector EGP protocol;
AS – autonomous system – standard number 16 digits 0-65535, of which 1-64511 is public and 64512-65535 is private Extended AS 32-bit binary IGP protocol pursues: 1. Acyclic (better routing) 2. Fast convergence 3. Less resource consum ...
Added by portabletelly on Sun, 23 Jan 2022 13:57:07 +0200
Qt network programming based on C + + -- network conference program based on IP Multicast
1, Experimental topic
Network conference program based on IP Multicast
2, Experimental purpose
Referring to the LAN IP multicast program in Appendix 3, design a network conference program with graphical interface (just realize the text multicast mode).
3, Overall design
1. Experimental principle
IP Multicast (also known as multiple access ...
Added by abitshort on Fri, 21 Jan 2022 16:11:59 +0200
Transformer backbone network -- TNT nanny level analysis
preface
Thesis address: arxiv Code address: github Receiver: NeurIPS 2021
Series articles
Transformer backbone - PVT_V1 nanny level resolution Transformer backbone - PVT_V2 level parsing Transformer backbone network -- T2T-ViT nanny level analysis Transformer backbone network -- TNT nanny level analysis Continuous update!
motivation
The au ...
Added by 14zero on Fri, 21 Jan 2022 08:28:45 +0200
Finally, someone understood the TCP protocol and UDP protocol
There are three elements of network programming, namely IP address, port number and communication protocol. This paper mainly describes the two communication protocols of TCP and UDP, as well as the implementation of programming.
First, we need to know about IP address, port number and communication protocol.
1, IP address
Computers in the n ...
Added by toniknik1982 on Fri, 21 Jan 2022 03:40:44 +0200
docker network mode
1, docker network
1. docker network principle
Docker uses linux bridging. A docker container bridge is virtualized in the host machine. The default is docker0 network. When docker starts a container, it will assign an IP address to the container according to the network segment of the docker bridge. The offset method is called container I ...
Added by Bikkebakke on Thu, 20 Jan 2022 09:53:13 +0200