Linux:DHCP Server Setup
Understanding how the DHCP protocol works
DHCP (Dynamic Host Configuration Protocol) provides the ability to dynamically configure IP addresses.In a DHCP network, clients no longer need to enter network parameters themselves, but are automatically assigned to clients by the DHCP server.
IP Address Rental Process
IP Lease Request
IP Rental Pro ...
Added by bo0 on Sat, 23 Nov 2019 10:41:55 +0200
Linux: DNS Server Setup
Introduction to DNS
DNS (Domain Name System) Domain Name System:
It is a system that uses client/server mechanism to translate computer name to IP address.As an important network service, DNS is not only the basis of the work of the international Internet, but also widely used in the internal network of enterprises.
Role of DNS Server
Forward R ...
Added by techcone on Sat, 23 Nov 2019 09:40:22 +0200
Apache service ab stress test
Before ab stress test, explain the following concepts:
Requests per second
The quantitative description of the concurrent processing capability of the server, in reqs/s, refers to the number of requests processed in unit time under the number of concurrent users. The maximum number of requests that can be processed per unit time under the numb ...
Added by jakebur01 on Tue, 05 Nov 2019 19:34:28 +0200
Kubernetes uses nginx to reverse proxy other services
The company uses K8S to build a test environment, and there are multiple sets of test exchanges. The current idea is to use an export IP for each set of test environment.The plan:1. Build ingress2. Build a reverse agent
Combined with the actual situation, we use to build a reverse agent to solve this problem.
The following K8S services exist i ...
Added by Mav666 on Sat, 02 Nov 2019 14:05:00 +0200
Apache configuration and application: AWStats log analysis system (actual combat!)
AWStats log analysis system
An open source log analysis system developed by Perl
It can be used to analyze the access logs of Apache, Samba, Vsftpd, IIS and other servers.
Information combined with crond and other scheduled task services can regularly analyze the log content
Environmental Science
One Linux service host (192.168.13.132)
A win ...
Added by breckenridge on Fri, 25 Oct 2019 18:03:22 +0300
Node source code: http module
http module
The HTTP module is located in / lib/http.js. Let's take a look at the core method of the module, createServer.
function createServer(opts, requestListener) {
return new Server(opts, requestListener);
}
The function of createServer is to create a Server class, which is located in / lib/_http_server.js
function Server(options, reque ...
Added by orion2004 on Thu, 24 Oct 2019 11:12:06 +0300
Tenth Party Project Front End, Activity Management List Paging and Conditions Finding
I. Preparations
Synchronize the swagger API to easyMock and then modify the contents of / gathering/gathering (GET method)
{
"code": 20000,
"flag": true,
"message": "@string",
"data|10": [{
"id": "@string",
"name": "@cword(8,12)",
"summary": "@cword(20,40)",
"detail": "@cword(20,40)",
"s ...
Added by davelr459 on Tue, 01 Oct 2019 15:31:59 +0300
Linux builds DHCP+DNS+WEB services (small project site!)
The experimental environment:
A GNS3
A Linux System for Centos7
A server 2016 server
Two PC s
The purpose of the experiment is:
Build a DHCP service to automatically assign IP addresses to two PC s
Setting up a DNS Resolution Server to Resolve Domain Names
Build a web server to provide two websites
Realize the interconnection of the whole en ...
Added by thebutler on Sun, 08 Sep 2019 15:16:02 +0300
Service Registration Discovery, Configuration Center Set Integrated Spring Cloud Consul
Earlier we talked about Eureka and Spring Cloud Config, and today we introduced an all-round player, Consul.It is a tool introduced by HashiCorp to provide service discovery and service configuration.It is developed in go language and has good portability.Included by Spring Cloud, Eureka stopped the development of new versions and wanted devel ...
Added by Grunt on Wed, 28 Aug 2019 04:41:51 +0300
k8s deployment ingress nginx
brief introduction
Just take notes to prevent forgetting. What we want to achieve today is the access method above the article pictures.
k8s installation ingress nginx
First deploy the following yaml file
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/mandatory.yaml
Most of the tutorials are do ...
Added by cybercrypt13 on Wed, 21 Aug 2019 05:38:01 +0300