Portfwd

User-space TCP/UDP port forwarding services
Alternatives To Portfwd
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Croc22,163
4 days ago132May 18, 2022107mitGo
Easily and securely send things from one computer to another :crocodile: :package:
Masscan20,782
11 days ago1February 27, 2018381otherC
TCP port scanner, spews SYN packets asynchronously, scanning entire Internet in under 5 minutes.
Wait For It8,267
4 months agoSeptember 23, 202275mitPython
Pure bash script to test and wait on the availability of a TCP host and port
Sish3,2651a month ago34November 12, 20217mitGo
HTTP(S)/WS(S)/TCP Tunnels to localhost using only SSH.
Openwrt Shadowsocks2,988
2 years ago1gpl-3.0Makefile
Shadowsocks-libev for OpenWrt/LEDE
Server2,644
2 months ago75mitJavaScript
server for localtunnel.me
Kubernetes Security Best Practice2,323
4 years ago10apache-2.0
Kubernetes Security - Best Practice Guide
Slipstream1,764
3 months ago5Perl
NAT Slipstreaming allows an attacker to remotely access any TCP/UDP services bound to a victim machine, bypassing the victim’s NAT/firewall, just by anyone on the victim's network visiting a website
Tcpflow1,367
a year ago1February 27, 201861gpl-3.0C++
TCP/IP packet demultiplexer. Download from:
Edumeet1,089
4 days ago4February 02, 202264mitJavaScript
edumeet - multiparty web-meetings using mediasoup and WebRTC
Alternatives To Portfwd
Select To Compare


Alternative Project Comparisons
Readme

portfwd

User-space TCP/UDP port forwarding services

Summary

This project contains two applications: tcpfwd, udpfwd, which are for TCP and UDP port forwarding literally. Written in pure C.

Usage

tcpfwd|udpfwd <local_addr:local_port> <dest_addr:dest_port> [-d] [-o]
 
Options:
  -d              run in background
  -o              accept IPv6 connections only for IPv6 listener
  -p <pidfile>    write PID to file

Examples

Map local TCP port 1022 to 192.168.1.77:22
tcpfwd 0.0.0.0:1022 192.168.1.77:22     # allow access from all hosts
tcpfwd 127.0.0.1:1022 192.168.1.77:22   # only allow localhost
tcpfwd [::]:1022 192.168.1.77:22        # allow access to port 1022 via both IPv4 and IPv6
Map local UDP port 53 to 8.8.8.8:53
udpfwd 0.0.0.0:53 8.8.8.8:53
udpfwd [::]:53 8.8.8.8:53
IPv4-IPv6 transforming
udpfwd [::]:1701 localhost:1701         # add IPv6 support for a local L2TP service
tcpfwd 0.0.0.0:80 [2001:db8:3::2]:80    # enable IPv4 access for an IPv6-only web service
Popular Port Projects
Popular Tcp Projects
Popular Networking Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
C
Port
Tcp
Udp