Analysis of the implementation process of Docker intranet penetration frp deployment

Analysis of the implementation process of Docker intranet penetration frp deployment

1. Create a configuration file directory

cd /home directory

mkdir frp

The final directory structure:

2. Create a server configuration file

vi frps.ini

[common]
bind_port = 17000
token = myToken
vhost_http_port = 10080
vhost_https_port = 10443
 
dashboard_port = 17500
dashboard_user = admin
dashboard_pwd = admin
 
 
tcp_mux = true
max_pool_count = 10

3. Create a server-side yml file

vi frps-docker-compose.yml

version: '3'
services:
 
  frps:
    image: snowdreamtech/frps
    ports:
      - "17000:17000"
      - "27500:17500"
      - "10022:10022" #For ssh connection - "10080:10080" #For external network access # More ports can be added based on actual needs:
      - ./frps.ini:/etc/frp/frps.ini container_name: frps

4. Start the server

docker-compose -f frps-docker-compose.yml up Note: Enable background running -d

5. Create a client configuration file

vifrpc.ini

[common]
#Server ip
server_addr = xxxx
server_port = 17000
token = myToken
 
[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 10022
use_encryption = true
use_compression = true
 
[pi.mydomain.com]
type = http
local_port = 80
custom_domains = pi.mydomain.com

6. Create client yml file

vi frpc-docker-compose.yml

version: '3'
services:
  frpc:
    image: cloverzrg/frpc-docker
    volumes:
      - ./frpc.ini:/conf/frpc.ini
    container_name: frpc
    network_mode: host

8. Start the client

docker-compose -f frpc-docker-compose.yml up -d

  • Visit the domain name http://pi.mydomain.com:10080, you can access the web page normally (the premise is that the client machine starts the http server and listens to port 80); note that the domain name A record of pi.mydomain.com should be resolved to IP xxxx first. If the server already has a corresponding domain name, you can also resolve the CNAME record to the original domain name of the server.
  • Connect remotely via ssh -p 10022 username@xxxx;
  • Visit http:xxxx:27500, and you can see the dashboard, which shows the connection status of each client.

Reference: https://liyangweb.com/service/358.html

frp Chinese document: https://www.cnblogs.com/yanglang/p/12035934.html

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Analysis of the process of deploying nGrinder performance testing platform with Docker
  • How to deploy MySQL and Redis services using Docker
  • How to install tomcat in docker and deploy the Springboot project war package
  • Steps to deploy multiple tomcat services using DockerFile on Docker container
  • Docker image creation, uploading, pulling and deployment operations (using Alibaba Cloud)
  • Detailed deployment of docker+gitlab+gitlab-runner
  • How to deploy stand-alone Pulsar and clustered Redis using Docker (development artifact)
  • Analysis of the Docker deployment Consul configuration process

<<:  Vue folding display multi-line text component implementation code

>>:  MySQL 8.0.21 installation steps and problem solutions

Recommend

Detailed explanation of the usage and difference between nohup and & in Linux

Example: We use the Python code loop_hello.py as ...

Solution to the inconsistency between crontab execution time and system time

Preface In LINUX, periodic tasks are usually hand...

Mybatis paging plug-in pageHelper detailed explanation and simple example

Mybatis paging plug-in pageHelper detailed explan...

jQuery implements the function of adding and deleting employee information

This article shares the specific code of jQuery t...

Some notes on installing fastdfs image in docker

1. Prepare the Docker environment 2. Search for f...

MySQL Router implements MySQL read-write separation

Table of contents 1. Introduction 2. Configure My...

JavaScript common statements loop, judgment, string to number

Table of contents 1. switch 2. While Loop 3. Do/W...

Details on using bimface in vue

Table of contents 1. Install Vue scaffolding 2. C...

js implements shopping cart addition and subtraction and price calculation

This article example shares the specific code of ...

CSS to achieve the image hovering mouse folding effect

CSS to achieve the image hovering mouse folding e...

Example code for using text-align and margin: 0 auto to center in CSS

Use text-align, margin: 0 auto to center in CSS W...

How to set up automatic daily database backup in Linux

This article takes Centos7.6 system and Oracle11g...

Detailed explanation of Vue mixin

Table of contents Local Mixin Global Mixins Summa...