I have a private network running with three Parity nodes. Each one of these uses the same chain spec file and I invoke parity with a unique network id.
With geth, I know to use the --networkid flag but it doesn't seem to be connecting to the other nodes. And why should it? It doesn't have the chain spec file.
How do I give geth the information in the chain spec file, such as the enode info, etc.?
EDIT I see that this has been marked as duplicate. Unless I really did hit "submit" twice or something, I think the user is thinking of this thread: Parity Chain Spec file in Geth?
It's quite obvious that these are significantly different questions, so I'm sure no further explanation is necessary.
admin.addPeer("enode://<id>@ip:port"), or pass in the geth command line--bootnodes enode://<id>@ip:port, or through the configuration file indicated in the answer. – Ismael Nov 06 '17 at 15:04