node-discover icon indicating copy to clipboard operation
node-discover copied to clipboard

cluster with nodes in the different subnets it is possible?

Open Jevin23 opened this issue 9 years ago • 1 comments

i think manually add ip-adresses of nodes from rancher-metadata (some service with node-list)

for example ip is dunamic and can be 10.42.185.29, 10.42.2.232, 10.42.69.231 ..

how i can add this nodes to cluster or make right broadcast ?

Jevin23 avatar Dec 03 '16 18:12 Jevin23

You can specify specific addresses with the unicast option, but that really disables the automatic discovery without extra event handling.

const Discover = require('node-discover');
const d = new Discover({
  unicast : ['10.42.185.29','10.42.2.232','10.42.69.231']
});

wankdanker avatar Oct 07 '20 00:10 wankdanker