I assume you're intending to use the Client-Server networking paradigm? In which case you cannot trust the clients to handle the actual positioning of units, you must delegate that task to the server. You then take the command list from each client per-tick, and compute the movement of each unit, once this has been completed, next tick you relay the position of each unit relevant to each client (either on a whole-map basis, or per-view basis), and start the process again.
If you're only interested in a Peer-to-Peer paradigm, the process is somewhat simpler, as you can either use a circle chain, in which case each client is receiving from one client only and sending to one client only, which can be visualized as a circle of clients each sending and receiving, or a (highly-inefficient) system whereby the client sends the position of his units to each other client, and receives the position of the other's units from every other client.
Personally, I believe the Client-Server paradigm will be the better option, as you remove the effects of cumulative latency, and the issue of a rogue client.
Good luck with your project! :)