好好爱自己!

Golang : Forwarding a local port to a remote server example

原文:https://socketloop.com/tutorials/golang-forwarding-a-local-port-to-a-remote-server-example

端口转发, 本地的端口转发到远端服务器的80端口。

 

 

------------------------------------------------------------------------------------------------------------------------------------------------

Got a strange request yesterday. A friend who is an IT manager in his company needs to implement some control over his local network. He needs to block all the staffs(his co-workers) access to Facebook during working hours, but at the same time open up a "secret" door access to Facebook for his boss.

It is pretty trivial to configure the local network firewall to block access to certain websites nowadays. However, he prefers not to configure the "secret" door in the local network firewall. The next best solution is to implement a local port forwarding to remote server.

Below is a simple port forwarding solution in Golang that will initiate a bi-directional communication with a remote server(Facebook for example).

Here you go!


 package main

 import (
 	"io"
 	"log"
 	"net"
 )

 var localServerHost = "localhost:8880"
 var remoteServerHost = "www.facebook.com:80"

 func main() {

 	ln, err := net.Listen("tcp", localServerHost)
 	if err != nil {
 		log.Fatal(err)
 	}

 	log.Println("Port forwarding server up and listening on ", localServerHost)

 	for {
 		conn, err := ln.Accept()
 		if err != nil {
 			log.Fatal(err)
 		}

 		go handleConnection(conn)
 	}
 }

 func forward(src, dest net.Conn) {
 	defer src.Close()
 	defer dest.Close()
 	io.Copy(src, dest)
 }

 func handleConnection(c net.Conn) {

 	log.Println("Connection from : ", c.RemoteAddr())

 	remote, err := net.Dial("tcp", remoteServerHost)
 	if err != nil {
 		log.Fatal(err)
 	}

 	log.Println("Connected to ", remoteServerHost)

 	// go routines to initiate bi-directional communication for local server with a
 	// remote server
 	go forward(c, remote)
 	go forward(remote, c)
 }

Sample output:

1) Run the program at the background and

2) On the browser, enter localhost:8880 in the address bar.

golang port forwarding localhost to facebook example

References:

https://www.socketloop.com/tutorials/golang-simple-client-server-example

https://www.socketloop.com/tutorials/golang-simple-client-server-hmac-authentication-without-ssl-example

posted @   立志做一个好的程序员  阅读(453)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
历史上的今天:
2018-10-26 while(std::cin>>val)怎么结束的思考
2017-10-26 13种编程语言名称的来历
2017-10-26 Python IDLE 安装与使用教程(调试、下载)
2016-10-26 bootstrap登录模板
2016-10-26 The dependency inversion principle
2016-10-26 用css、html编写一个两列布局的网页,名称为css.html ,要求左侧宽度为200px ,右侧自动扩展

不断学习创作,与自己快乐相处

点击右上角即可分享
微信分享提示