diff options
author | Magnus <mfeuer@jaguarlandrover.com> | 2014-09-15 16:52:36 -0700 |
---|---|---|
committer | Magnus <mfeuer@jaguarlandrover.com> | 2014-09-15 16:52:36 -0700 |
commit | 4548f2b15f72e2a45289472caef51e3ce9f65d41 (patch) | |
tree | 40dec556fcb74b75bab96b009c52664cc5519fe0 | |
parent | 79c10dc7e8b99d0ba471fbe585a8b7e95de94dd0 (diff) | |
download | rvi_core-4548f2b15f72e2a45289472caef51e3ce9f65d41.tar.gz |
Set node_address to nil + comments.
Signed-off-by: Magnus <mfeuer@jaguarlandrover.com>
-rw-r--r-- | hvac_demo/vehicle.config | 8 | ||||
-rw-r--r-- | rvi_sample.config | 5 |
2 files changed, 12 insertions, 1 deletions
diff --git a/hvac_demo/vehicle.config b/hvac_demo/vehicle.config index 10e41ac..dbdb06f 100644 --- a/hvac_demo/vehicle.config +++ b/hvac_demo/vehicle.config @@ -86,7 +86,13 @@ %% specified by the configuration entry rvi -> components -> %% data_link -> bert_rpc_server (see below). %% - { node_address, "127.0.0.1:8817" }, + %% + %% If this node is sitting behind a firewall and cannot + %% receive incomign connections on any address, its + %% node_address should be set to "0.0.0.0:0" to inform + %% the remote node that it should not attempt to + %% connect back to self. + { node_address, "0.0.0.0:0" }, %% Specify the prefix of all services that this rvi node is hosting. %% diff --git a/rvi_sample.config b/rvi_sample.config index 2b94359..750f913 100644 --- a/rvi_sample.config +++ b/rvi_sample.config @@ -85,6 +85,11 @@ %% specified by the configuration entry rvi -> components -> %% data_link -> bert_rpc_server (see below). %% + %% If this node is sitting behind a firewall and cannot + %% receive incomign connections on any address, its + %% node_address should be set to "0.0.0.0:0" to inform + %% the remote node that it should not attempt to + %% connect back to self. { node_address, "127.0.0.1:8817" }, %% Specify the prefix of all services that this rvi node is hosting. |