Network traffic from unknown source

Currently reading
Network traffic from unknown source

2
0
NAS
DS920+
Operating system
  1. Linux
Mobile operating system
  1. Android
I've got a constant 15-20kb/s up/down traffic on my DS920+. I don't know where this traffic is originating. I suspect it might be the connection between the NAS and my desktop, but I don't know for sure. I'd like to confirm this, and I don't know if it's me being stupid or if network monitoring really is this hard to accomplish on this NAS model.

I've tried DarkStat which doesn't seem to be supported on my model. I've tried looking for various docker images, all of which are either outdated, just plain doesn't work, or are massively over-specced for my needs - I just want to monitor traffic and its sources. At the very least I'd hope there's something like vnstat, which I have running on all my other machines, to be able to monitor bandwidth across time (I've looked for this as well, found several docker images, but none that work for my model).

Thanks for any help with this.
 
I've got a constant 15-20kb/s up/down traffic on my DS920+. I don't know where this traffic is originating. I suspect it might be the connection between the NAS and my desktop, but I don't know for sure. I'd like to confirm this, and I don't know if it's me being stupid or if network monitoring really is this hard to accomplish on this NAS model.

I've tried DarkStat which doesn't seem to be supported on my model. I've tried looking for various docker images, all of which are either outdated, just plain doesn't work, or are massively over-specced for my needs - I just want to monitor traffic and its sources. At the very least I'd hope there's something like vnstat, which I have running on all my other machines, to be able to monitor bandwidth across time (I've looked for this as well, found several docker images, but none that work for my model).

Thanks for any help with this.
Try this docker image and monitor your traffic that way:

Code:
docker run --name=iotop -ti --privileged --net=host --pid=host esnunes/iotop:latest
 
Upvote 0
Alternatively you can use tcpdump via SSH command line.

Firstly run ifconfig to find the name of the interface you want to monitor, e.g. eth0, eth1, ovs_bond0. The DS920+ has two physical interfaces and you may be using them separately or bonded them with a form of LAG.

Next run this command, assuming:
  • eth0 interface
  • NAS is on LAN IP 192.168.0.100
  • SSH server running on standard port 22
Code:
sudo tcpdump -n -i eth0 | grep -v 192.168.0.100.22

This requires your administrator's password to run:
  • sudo super-user do... run will high privilege
  • -n will not translate IP addresses to names
  • -i eth0 is saying the interface
  • | grep -v sends the tcpdump output to grep and it removes traffic related SSH using NAS_IP.SSH_PORT
Crtl-C to exit tcpdump.

Without the -n you would filter using whatever the NAS's network name is that is shown in the dump, with '.22' added.
 
Upvote 0

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Similar threads

Each Syno package has defined default port(s) for a communication then you can define filters to capture...
Replies
8
Views
7,385
  • Question
Yes, Omada is TP-Link's management system. Have set a reserved IP range and have put the NAS into that -...
Replies
2
Views
416
  • Question
Hi. As a newbie I may be totally misunderstanding the concept of how Tailscale works but anyway here goes...
Replies
0
Views
528
  • Question
Mmm..., looks like the problem was that we were connected to a dead network port. When livened up, all...
Replies
4
Views
1,063
  • Solved
hi im having the same problem can you tell me what you changed? I only my router to a tplink router it was...
Replies
4
Views
3,969
There are three MASQUERADE rules* but I cannot see how they relate to the don't NAT name, or anything else...
Replies
45
Views
4,187
What I've found out: 1.) If I turn off the Kill Switch, then I'm good to go with the local devices 2.) If...
Replies
2
Views
2,530

Welcome to SynoForum.com!

SynoForum.com is an unofficial Synology forum for NAS owners and enthusiasts.

Registration is free, easy and fast!

Back
Top