[ADD] virtual_iface/tcp: remote port forwarding logic#99
Open
loouis-t wants to merge 1 commit intoaramperes:masterfrom
Open
[ADD] virtual_iface/tcp: remote port forwarding logic#99loouis-t wants to merge 1 commit intoaramperes:masterfrom
loouis-t wants to merge 1 commit intoaramperes:masterfrom
Conversation
5bf39ee to
728853d
Compare
Implements remote TCP port forwarding using previously added config parsing (#73671a4). Resolves aramperes#6 by listening on a specified virtual IP/port and forwarding incoming connections to a local service. Example: `--source-peer-ip 10.10.10.10 --remote 8080:127.0.0.1:49369` forwards `10.10.10.10:8080` to `127.0.0.1:49369`.
728853d to
543a01d
Compare
Author
|
Hello @aramperes, I implemented the "remote port forwarding" that was discussed in #6, could you have a look at it ? 😄 |
Owner
|
Hi, thank you for the PR! I reviewed it briefly and it looks good, I'm going to give it a try locally when I have some time. |
Author
Thank's ! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements remote TCP port forwarding using previously added config parsing (73671a4).
Resolves #6 by listening on a specified virtual IP/port and forwarding incoming connections to a local service.
Example:
--source-peer-ip 10.10.10.10 --remote 8080:127.0.0.1:49369forwards10.10.10.10:8080to127.0.0.1:49369.