During the epidemic, everyone is discussing the implementation of telecommuting. It is recommended to read PingCAP’s 5 Years of Telecommuting Practice written by Huang Dongxu. The following Intranet mapping tools are often used as supplements.
So let’s talk about why we do Intranet mapping
Accessing Intranet devices from the public network has always been a troublesome thing, especially for wechat development. The device may be behind a router, or the carrier may not assign you a public IP address because of a shortage of IP addresses. If we want direct access to these devices, it’s usually very cumbersome.
- Beg network management big guy to add to oneself Intranet on router
Port mapping
- buy
Peanut shells
Dynamic domain name resolution software - Use free (or paid) Intranet mapping services such as NatApp
- Based on the
ngrok/frp
Create an Intranet mapping service
Why give upngrok
, the use offrp
We provided a free service of NGROk in 2016, and shared the steps of building for reference in “Angrok An Intranet Penetrating Service”. The steps of building were very unfriendly to ordinary users, so we stopped related services and switched to FRP later.
Github’s attention comparison
Protocol Penetration Support
FRP supports protocols such as HTTP, SSH, TCP, UDP and FTP
start
The preparatory work
To build a complete FRP service, we need
- One ECS with a public IP address
- Domain name (not required if no resolution is required)
The installationFRP (FRPS)
The service side
- Download the FRP installation package
Github.com/fatedier/fr…
- Decompress the package and modify it
frps.ini
[common]
bind_port = 7000 # FRPS service started, occupied port
vhost_http_port = 80 The FRPS service listens for forwarding ports
Copy the code
- Start the
frps
service
./frps -c ./frps.ini
Copy the code
The installationFRP (FRPC)
The client
- On the target Intranet device, install the client. Download different versions based on the operating system
Access Intranet services by customizing domain names
- Modify the
frpc.ini
[common] server_addr = ECS public IP server_port = 7000 [optional but must be unique]type= HTTP local_port = port of the local target service custom_domains = user-defined domain nameCopy the code
- Start the client
./frpc -c ./frpc.ini
Copy the code
- You can access Intranet services by accessing the customized domain name
Use SSH to access Intranet machines
- Modify the
frpc.ini
[common] server_port = 7000 [optional but must be unique]type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 10022
Copy the code
- Start the client
./frpc -c ./frpc.ini
Copy the code
- Access Intranet machines over SSH
ssh -p 10022 [email protected]
Copy the code