12 webpack auto compile code

Every time you need to compile your code, running npm run build manually becomes cumbersome. Use webpack-dev-server It can help you to compile code automatically when the code changes. It provides a simple web server and can be reloaded in real time. I. installation npm install --save-dev webpack-dev- ...

Posted by howler on Sat, 19 Oct 2019 10:20:23 -0700

ACL standard access control list

ACL Access Control List Structure Diagram Objective of this chapter Learn TCP and UDP protocolsOverview of access control list, how access control list worksType of access control list.Configuration of standard access control class tableCreate ACLApply ACLy to interfaceConfiguration instance of standard ACL I. access control list (ACL) 2. ...

Posted by FUNKAM35 on Tue, 15 Oct 2019 06:25:40 -0700

Shell Programming case Multi-Branch Statement, Loop Statement (for, while, etc.), Shell Function, Shell Array

case multi-branch statement The structure of case statement: Execute different command lines for different values of variables case variable value in Mode 1) Command Sequence 1 ;; Mode 2) Command Sequence 2 ;; ..... *) Default command sequence esac Example: Character type recognition: Prompt the user to enter a character ...

Posted by merrydown on Sun, 13 Oct 2019 18:14:14 -0700

Prometheus Configuration Acquisition Target

Prometheus Configuration Acquisition Target 1. Scraping periodically at http/s (scrape/pull) according to the configuration task (job)2. The metric on the target. Target3. It can be specified statically or automatically. Prometheus saves scrape metric s on local or remote storage. Define the acquisition target using scrape_configsConfigure a ...

Posted by mwaw on Fri, 11 Oct 2019 14:21:54 -0700

DNS Information Collection of Information Collection--fierce

Links to the original text: https://blog.51cto.com/executer/2106151 Catalog Tool description Parameter interpretation Blasting subdomain name Custom dictionary exploding subdomain name Inverse the IP segment of the specified range Inversel ...

Posted by Kitkat on Sat, 05 Oct 2019 15:13:36 -0700

Network Management

Network protocol OSI Seven-Layer Model and TCP/IP Four-Layer Model TCP Protocol and UDP Protocol TCP protocol: Transport control protocol. It is a connection-oriented protocol, which must establish a reliable connection with the other party before sending data. UDP protocol: User datagram protoco ...

Posted by kevin99 on Fri, 04 Oct 2019 12:05:10 -0700

kubespray creates windows server 2019 worker node cluster

By default, refer to: https://docs.microsoft.com/en-us/virtualization/windowscontainers/kubernetes/creating-a-linux-master Based on the above method, kubespray is used for optimization. 1. First, modify the following files: inventory/your_name/group_vars/k8s-cluster/k8s-cluster.yml Modification: ...

Posted by firepages on Thu, 03 Oct 2019 09:06:15 -0700

Common Linux Commands - Learning Notes 3

Di DNS (Domain Name System) Query Tool $ dig www.baidu.com ; <<>> DiG 9.9.4-RedHat-9.9.4-74.el7_6.2 <<>> www.baidu.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 53570 ;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: ...

Posted by Anim9or on Wed, 02 Oct 2019 13:33:18 -0700

Implement DNS master-slave domain, http virtual host and user

DNS Domain name resolution refers to the domain name to the IP of the website space, so that people can easily access the website through the registered domain name. IP address is the digital address that identifies the site on the network. In order to facilitate memory, domain name is used instead of IP address to identify the site address. D ...

Posted by infestedarch0n on Mon, 30 Sep 2019 23:15:36 -0700

Part 2 of the Kubernetes series: Creating Kubernetes applications using the kubectl command

1. introduction The API Server of k8s provides a RESTful-style gateway interface that allows users to initiate requests to the k8s cluster. Such operations as creating a Pod or destroying a PodUsers can communicate with API Server through programming language following API Server's Gateway Interface Specification. They can also communicate wit ...

Posted by yurko on Tue, 24 Sep 2019 03:25:13 -0700