this post was submitted on 31 Mar 2024
86 points (95.7% liked)

Selfhosted

39226 readers
506 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

So I am trying to track down what is possibly slowing down my download connection from my Debian server to my devices (streaming box, laptop, other servers, etc).

First let me go over my network infrastructure: OPNsense Firewall (Intel C3558R) <-10gb SFP+ DAC-> Managed Switch <-2.5gb RJ45-> Clients, 2.5gb AX Access Point, and Debian Server (Intel N100).

Under a 5 minute stress test between my laptop (2.5gb adapter plugged into switch) and the Debian Server (2.5gb Intel I226-V NIC), I get the full bandwidth when uploading however when downloading it tops out around 300-400mbps. The download speed does not fair any better when connecting to the AX access point, with upload dropping to around 500mbps. File transfers between the server and my laptop are also approximately 300mbps. And yes, I manually disabled the wifi card when testing over ethernet. Speed tests to the outside servers reflect approximately 800/20mbps (on an 800mbps plan).

Fearing that the traffic may be running through OPNsense and that my firewall was struggling to handle the traffic, I disconnected the DAC cable and reran the test just through the switch. No change in results.

Identified speeds per device:

Server: 2500 Mb/s
Laptop: 2500Base-T
Switch: 2,500Mbps
Firewall: 10Gbase-Twinax

Operating Systems per device:

Server: Debian Bookworm
Laptop: macOS Sonoma (works well for my use case)
Switch: some sort of embedded software
Firewall: OPNsense 24.1.4-amd64

Network Interface per device:

Server: Intel I226-V
Laptop: UGreen Type C to 2.5gb Adapter
Switch: RTL8224-CG
Firewall: Intel X553

The speed test is hosted through Docker on my server.

all 34 comments
sorted by: hot top controversial new old
[–] suzune@ani.social 25 points 5 months ago (1 children)

Did you use iperf? It makes sure that HDD/SSD is not the bottleneck.

You can also check the statistics and watch for uncommon errors. Or trace the connection with tcpdump.

[–] dontwakethetrees@lemmy.world 8 points 5 months ago (2 children)

Using iperf3 results in 2.5gb of bandwidth. SSD should not be a bottleneck, the server only has NVME storage and the laptop SSD is located in the SoC. Both far exceeding the network speeds. Traceroute indicated just a single hop to the server.

[–] gaf@borg.chat 12 points 5 months ago (1 children)

NVMe drives aren't guaranteed to be fast. Based on those stats I'm guessing you have QLC and no DRAM.

[–] dontwakethetrees@lemmy.world 4 points 5 months ago (1 children)

I think you might be right, couldn't find an identifiable label on the drive and the model reported in Debian shows up in searches as having only 2465MB/s read speeds. After real-world losses and also handling running an OS + multiple services I imagine that could me the source of my problems. Thanks!

[–] shadeless@discuss.tchncs.de 3 points 5 months ago

You can do a disk benchmark on the server to be sure

[–] pearsaltchocolatebar@discuss.online 1 points 5 months ago (1 children)

What's the make and model of your server?

[–] dontwakethetrees@lemmy.world 3 points 5 months ago

Just an N100 based (quad core 3.4ghz) mini pc with 8gb of RAM and 2.5gb ethernet.

[–] ninjan@lemmy.mildgrim.com 12 points 5 months ago (1 children)

Do you have a firewall? Packet inspection in particular can wreak havoc on speeds.

[–] stevestevesteve@lemmy.world 2 points 5 months ago (1 children)

Op said they tried without the firewall connected and had the same results

[–] ninjan@lemmy.mildgrim.com 1 points 5 months ago

Ah, right, read to fast it seems! Though that still leaves the possibility of software firewalls, but any OOTB ones wouldn't be doing any packet inspection.

[–] ryannathans@aussie.zone 9 points 5 months ago* (last edited 5 months ago)

Try iperf from your server to your opnsense firewall, to both your laptop and server

[–] pearsaltchocolatebar@discuss.online 7 points 5 months ago* (last edited 5 months ago) (1 children)

Have you tried changing out ethernet cables and trying different ports?

Also, try hosting the speed test from your laptop and running the speed test from the server to see if the results are reversed.

[–] dontwakethetrees@lemmy.world 5 points 5 months ago (2 children)

Just attempted that, odd thing happened was that both evened out on the reverse test at ~800Mbp/s. So higher than the download test before and lower on the upload. Conducted iperf3 tests and that shows the 2.5gb bandwidth so I retried file sharing. Samba refused to work for whatever reason on Debian so I conducted a SCP transfer and after a few tests of a 6.3GB video file, I averaged around 500mbps (highs of around 800mbp/s and lows of around 270mbp/s).

[–] filister@lemmy.world 11 points 5 months ago* (last edited 5 months ago) (2 children)

SCP encrypts your traffic before sending it, so it might be CPU/RAM bottleneck. You can try with different cypher or different compression levels, which are defined in your .ssh/config file.

Since the server is on an N100 that could very well explain it.

[–] dontwakethetrees@lemmy.world 1 points 5 months ago

I'll check my server's CPU usage while transferring. I only used SCP for testing yesterday because the Samba share stopped working.

[–] emptiestplace@lemmy.ml 1 points 5 months ago

iperf3 showed 2.5 in both directions?

-R reverses direction

Also note it can be set up as a daemon - I like to have at least one available on every network I have to deal with.

[–] filister@lemmy.world 7 points 5 months ago* (last edited 5 months ago) (1 children)

https://www.baeldung.com/linux/network-speed-testing try some of the options offered here.

You can also try rsync/rclone too and see how they perform.

[–] dan@upvote.au 15 points 5 months ago (1 children)

rsync and rclone both rely on disk performance. iperf3 is the best way to test network performance.

Note that the Windows version of iperf is unofficial and very old now, so you really want to use two Linux systems if you're testing with iperf.

[–] ryannathans@aussie.zone 1 points 5 months ago (1 children)

Iperf3 in wsl is probably ok

[–] dan@upvote.au 3 points 5 months ago

This is a good point. I know the WSL team were doing some optimizations to improve the performance of iperf3 in WSL, but I haven't tested it.

[–] Decronym@lemmy.decronym.xyz 6 points 5 months ago* (last edited 5 months ago)

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
IP Internet Protocol
NVMe Non-Volatile Memory Express interface for mass storage
SCP Secure Copy encrypted file transfer tool, authenticates and transfers over SSH
SSD Solid State Drive mass storage
SSH Secure Shell for remote terminal access
TCP Transmission Control Protocol, most often over IP

[Thread #644 for this sub, first seen 31st Mar 2024, 06:35] [FAQ] [Full list] [Contact] [Source code]

[–] dan@upvote.au 2 points 5 months ago* (last edited 5 months ago)

Try switching to bbr for congestion control, and adjust the buffer sizes. The defaults are good for Gigabit but not really for higher speeds. Not near my computer right now so I can't grab a copy of my sysctl settings, but searching Google for "Linux TCP buffer size tuning" and "Linux enable bbr" should find some useful info.

If the devices are different speeds (eg one system is 2.5Gbps but another is 1Gbps), try enabling flow control on the switch, if it's a managed switch.

[–] HumanPerson@sh.itjust.works 1 points 5 months ago (1 children)

Damn, I wish my server was that "slow."

[–] dontwakethetrees@lemmy.world 1 points 5 months ago

I mean, compared to what it should be, it is. Especially when I paid for 2.5gb infrastructure.

And it also affects how fast I can pull files from my server. Trying to get some shows downloaded to my laptop before a business trip, guess better prepare for an hour or two copy over LAN. Pulling a backup OS image for my devices? Going to wait for a while.

[–] filister@lemmy.world 0 points 5 months ago (1 children)

Try to execute

ping -c 1000 1.1.1.1

And check for any packet loss and jitter.

Additionally I would also recommend trying a different test server and comparing the results.

Keep in mind that your ISP might also have issues with the connectivity which can be fixed in the following days.

[–] dontwakethetrees@lemmy.world 7 points 5 months ago (1 children)

I've done pings without any drops. ISP doesn't come into effect as this is only LAN traffic, laptop and server are on the same switch.

[–] filister@lemmy.world 4 points 5 months ago

Sorry in that case I would recommend you do iperf and see what the traffic would be. Make sure you whitelist the traffic as well.

[–] entropicdrift@lemmy.sdf.org -3 points 5 months ago (1 children)

Who is your ISP? I had some issues with my FIOS ONT. Had to disable IPv6 on my router for it to stop dropping packets.

[–] dontwakethetrees@lemmy.world 8 points 5 months ago (1 children)

ISP wouldn't matter regarding handling of LAN only traffic right?

[–] entropicdrift@lemmy.sdf.org 7 points 5 months ago (1 children)

Ah, you're right. I didn't read closely enough. Sorry!

[–] dontwakethetrees@lemmy.world 2 points 5 months ago

No problem 😁