CCNP Chapter 16 VXLAN effect demonstration + port mirroring
CCNP Part 16 vxlan (II) + port mirroring
This article is mainly about the practical demonstration of vxlan
VXLAN demo
There should be no such image in normal ensp To use this CE12800 I have here, which can be provided for you to use Link: https://pan.baidu.com/s/1nqGo8a7mmWpthu-CuBC80Q?pwd=cjnb Extraction code: cjnb This thing needs to be m ...
Added by r3dn3ck on Mon, 21 Feb 2022 13:50:52 +0200
Session is shared with Cookie, deployment memcached and session
nginx problem handling
1. Cache files on the client
If the user repeatedly accesses the same file of the server, it can be cached to the client to avoid the server repeatedly transmitting the same file and save time
Open the configuration file and add a location under the default location
location ~* \.(jpg|html|txt|mp3) ${/ / when it i ...
Added by PyraX on Mon, 21 Feb 2022 13:48:02 +0200
It's hard to hear C language? Why don't you take a look at my UNIX system call
1. Write in front
Previously, we have introduced some common knowledge of C language and standard input and output. In this blog, we will introduce the call of UNIX system interface. UNIX operating system provides services through a series of system calls. These system calls are actually functions in the operating system, which can be called b ...
Added by ekalath on Mon, 21 Feb 2022 11:14:49 +0200
Linux environment intrusion emergency and troubleshooting
1, Account security
1. User information file / etc/passwd
# Format: account:password:UID:GID:GECOS:directory:shell
# User name: Password: user ID: group ID: user description: Home Directory: shell after login
root:x:0:0:root:/root:/bin/bash
# View logged in users:
cat /etc/passwd | grep /bin/bash
# View users with UID=0
awk -F: '$3==0{print ...
Added by pkallberg21 on Mon, 21 Feb 2022 10:52:15 +0200
Mysql log management
Mysql log management
1, MySQL log management
The default log storage location of MySQL is / usr/local/mysql/data
There are two ways to open logs: through configuration files or through commands The log opened through command modification is temporary and will be closed after the service is shut down or restarted
MySQL common log types and s ...
Added by MikeUK on Mon, 21 Feb 2022 10:16:57 +0200
muduo library net source code analysis III (timer)
Enables EventLoop to handle timer events
Timing function
Used to make the program wait for a period of time or schedule a scheduled task:
sleep
alarm usleep
nanosleep
clock_nanosleep
getitimer / setitimer
timer_create / timer_settime / timer_gettime / timer_delete
timerfd_create / timerfd_gettime / timerfd_settime chooses this method. ...
Added by Ixplodestuff8 on Mon, 21 Feb 2022 08:34:16 +0200
Ubuntu/Linux Terraform oci one click script snapping up Oracle VM Standard. A1. Flex # 4 OCPU, 24 GB memory vps
Oracle's machine was blown up, so that the little partners could not open the free machine, so they wrote a script and robbed it on the server. When the resources came out, they could basically open it. This script uses Terraform to call API to execute tasks. The following is a brief description.
Oracle ARM has been used by everyone for a wh ...
Added by adam87 on Sun, 20 Feb 2022 19:22:56 +0200
How should I configure the server after spending 288 for three years
preface
The ECS that Alibaba cloud bought for 95 yuan is about to expire. It needs more than 1000 to renew. I thought there was nothing important on the server, so I took advantage of Tencent cloud discount and spent 288 to buy a three-year CVM. CVM is a cloud virtual machine. Let's call it a server for the time being.
1 core 2G, it seems tha ...
Added by dch27 on Sun, 20 Feb 2022 19:06:18 +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