K
K
katerkoff2019-11-01 13:09:22
JavaScript
katerkoff, 2019-11-01 13:09:22

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

4 answer(s)
R
Ruslan., 2018-09-18
@LaRN

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++)

S
Stalker_RED, 2018-09-18
@Stalker_RED

It was enough to replace var number=1with let number=1
Read about closures and asynchronous code.

P
paran0id, 2019-11-01
@paran0id

MB from switches can be collected?

V
Valentin, 2019-11-01
@vvpoloskin

It is necessary to use programs for doping network connections on each workstation (such as tcplogview), and then parse the logs.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question