Answer the question
In order to leave comments, you need to log in
How to collect statistics of visits to network resources in the local network?
Task:
Collect paths of visits to network resources in the local network from computers in the domain.
It is necessary to abandon the network environment, for this I would like to see how hosts interact with each other via SMB. Which network paths they go to, to whom, etc.
Maybe there are some software solutions (client-server) for this?
Answer the question
In order to leave comments, you need to log in
It 's not clear here:
for (var number=1; number<3; number++)
Under this condition, number will be 1 and 2 will not reach 3.
To make it as in the comment: //Lines - run through everything from 1 to 3
you need:
for (var number=1; number<4; number++)
It was enough to replace var number=1
with let number=1
Read about closures and asynchronous code.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question