minimal port proxying
im using this to traverse across my home networks vlans since i have router panel access but cant use ethernet to connect to the guest network
- set up
config.json
(see below) - run
portproxy
- enjoy proxied connections
portRange
: ports to usestart
: lower port for port range. this should match your router's "internal port" settingend
: upper port for port range.
autoPort
: iftrue
, automatically assigns ports for mappingsmappings
: array of port mappingsprotocol
: one ofudp
,tcp
, orboth
internalIp
: ip of service to connect to. if unspecified,null
, or""
, this will default to localhostport
: port of service to connect toportOffset
: added toportRange
start to determine port if auto is false. ifstart
is 54000 andportOffset
is 12, the port will be 54012
allowExternalConnectionsFromOwnIp
: if true, allows connections from your own ip (looked up with https://ipify.org)allowNotExplicitDenied
: if true, allows any ip not in the denylist to connectallowLocalhostConnections
: if true, allows localhost to connect to the proxyallowlist
: list of ips to always allow to connect (denylist
has higher priority)denylist
: list of ips to always deny connection
these options exist, but do nothing