Update create_dns_host.md - Allow multiple ipv4 addresses #242
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.
A change in dns script to print a line with node name and node id for every ipv4 assigned to a node
For example, if we have a network with this configuration:
node-1 -> ips: 203.0.113.97, 100.80.205.233, 10.65.0.1
node-2 -> ips: 203.0.113.157, 100.80.247.32, 10.65.0.1
current script prints:
127.0.0.1 localhost
203.0.113.97 node-1.zerotier.network 6dc55d88fb.zerotier.network
203.0.113.157 node-2.zerotier.network fd6906b901.zerotier.network
with my proposed change we would get:
127.0.0.1 localhost
203.0.113.97 node-1.zerotier.network 6dc55d88fb.zerotier.network
100.80.205.233 node-1.zerotier.network 6dc55d88fb.zerotier.network
100.65.0.1 node-1.zerotier.network 6dc55d88fb.zerotier.network
203.0.113.157 node-2.zerotier.network fd6906b901.zerotier.network
100.80.247.32 node-2.zerotier.network fd6906b901.zerotier.network
100.65.0.2 node-2.zerotier.network fd6906b901.zerotier.network