docker speed test

Currently reading
docker speed test

334
67
NAS
Synology DS920+
Operating system
  1. Windows
Mobile operating system
  1. Android
Back when I first started with my NAS I installed Openspeedtest to see how fast the data connection was. I'd like to try it again. However, the tutorial I used to install it hasn't been updated and the installation has. Is there an updated tutorial anywhere someone may know of. TIA
 
Last edited by a moderator:
I've not used Openspeedtest but I have used iperf3 which does a similar thing, albeit from the CLI rather than a browser.
Docker install guide: How to run a local iPerf3 speed test server on Synology NAS in Docker | LtRoyalShrimp

This guy has lots of syno docker guides and seems to have one for ost: How to Install OpenSpeedTest on Your Synology NAS
He has a slightly weird way of configuring & running docker via the syno's User Defined Scripts dialogue rather than via SSH or the GUI, but it should nevertheless work fine.
 
I'm familiar with his scripts and tried it. however, it doesn't work. it doesn't even download the image. I have one for Pihole that works fine!
 
Did a manual install and finally found what had changed to get it to work. Although am not sure if the results are right!! Thank you
 

Attachments

  • speed.JPG
    speed.JPG
    50 KB · Views: 15
I'm familiar with his scripts and tried it. however, it doesn't work. it doesn't even download the image. I have one for Pihole that works fine!
The
Code:
docker run
command in his script pulls the image from the docker registry if it's not on your system.
Edit: have just seen you have managed to download it.

Not sure what results you were expecting? This looks like you are running a test of your LAN (or you could have 1Gb symmetrical Fibre...;))?
 
That's what I was wondering. As I have 1g fiber, but I want the LAN test! I'm gathering that's what it's showing! my isp is usually in that range also.
 
That's what I was wondering. As I have 1g fiber, but I want the LAN test! I'm gathering that's what it's showing! my isp is usually in that range also.
This is LAN speed.

If you want WAN speed try this compose:

YAML:
version: '3.3'
services:
    speedtest:
        container_name: speedtesttracker
        image: henrywhitaker3/speedtest-tracker
        ports:
            - 80:80
        volumes:
            - ./speedtesttracker:/config
        environment:
            - TZ=
            - PGID=1000
            - PUID=1000
            - OOKLA_EULA_GDPR=true
            - AUTH=true
        logging:
            driver: "json-file"
            options:
                max-file: "10"
                max-size: "200k"
        restart: unless-stopped

Change the values as needed.
 
I'm talking about my Synology NAS firewall. I've tested both TCP/UDP 8080 and I still get red Xs as results, rather then the actual Ping, down and up speeds. When I disable my firewall completly, then all is good.
TCP/UDP 5060, add that as well.
 
@Rusty I've tried both TCP/UDP 5060 and 8080 (at the same time):

View attachment 11448

and each time I enable my NAS firewall I get this (after the [services.d] done.)
View attachment 11446
and this
View attachment 11447
Hmm. The container is in a network that has internet access? This doesnt look like incoming issue at all, but an outgoing. It looks like your instance is unable to reach other destinations not the otherway around.

Can you try and ping anything from the command line from within the container?
 

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

I can’t find any option to restore just the settings. 1710356648 Phew, managed to fix it. Within the...
Replies
4
Views
401
Good to hear. Deluge has not been updated for almost two years now as an app, nevertheless. But it gives...
Replies
12
Views
964
  • Question
Open an issue on that GitHub page. The developers will be glad to assist. OP has posted two threads on...
Replies
5
Views
965
I'm happy with email notifications but in v0.3.3 of dockcheck the author added apprise notifications...
Replies
4
Views
1,043
I am also trying to setup a Z-wave USB dongle and am getting stuck after following the same steps as...
Replies
1
Views
1,035
How did you create the Portainer container in first place? As in exact docker run commands or in case...
Replies
7
Views
1,241
Looks like I triggered you somehow with my post: it was not my intention. I have no idea whether bash or...
Replies
4
Views
1,536

Welcome to SynoForum.com!

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

Registration is free, easy and fast!

Back
Top