Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Memory and port enhancements #189

Merged
merged 2 commits into from
Feb 6, 2018
Merged

Memory and port enhancements #189

merged 2 commits into from
Feb 6, 2018

Conversation

PaulEmich
Copy link

I made some changes to the port forwarding section. By default port forwarding is now disabled on a hypernode. Documentation is added on how to configure port forwarding and how to set up a custom memory value for the machine.

Forwarded ports are by default bound to 127.0.0.1:{PORT}

Quick example:

ports:
- send: 8082
  to: 80
paul@paul-MS-7A72:~/vagrant/hypernode/hypernode-vagrant$ netstat -na | grep 8082
tcp        0      0 127.0.0.1:8082          0.0.0.0:*               LISTEN

A custom bind-address can be set if (for instance) remote access is wanted:

ports:
- send: 8082
  to: 80
  bind-addr: 0.0.0.0
paul@paul-MS-7A72:~/vagrant/hypernode/hypernode-vagrant$ netstat -na | grep 8082
tcp        0      0 0.0.0.0:8082            0.0.0.0:*               LISTEN

@vdloo vdloo merged commit 7695b47 into ByteInternet:master Feb 6, 2018
@PaulEmich PaulEmich deleted the memory-and-port-enhancements branch February 6, 2018 13:16
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants