目 录CONTENT

文章目录

SpeedTest 搭建本地测速

ABin
2025-12-29 / 0 评论 / 0 点赞 / 0 阅读 / 0 字

配置文件

  • 文件名OoklaServer.properties

#
# This is a sample configuration file for OoklaServer
#

#
# OoklaServer Options
#

# The server listens to TCP port 5060 and 8080 by default. These ports are required for
# speedtest.net servers, although more can be added.
#
# For Speedtest Custom, this can be changed to other ports if desired; you will need to
# contact support to update your server record.
#
# At least one port is required for this setting.
#
OoklaServer.tcpPorts = 5060,8080

# The server listens to UDP port 5060 and 8080 by default. These ports are required for
# speedtest.net servers, although more can be added.
#
# For Speedtest Custom, this can be changed to other ports if desired; you will need to
# contact support to update your server record.
#
# At least one port is required for this setting.
#
OoklaServer.udpPorts = 5060,8080

# Bind OoklaServer to IPv6
#
OoklaServer.useIPv6 = true

# OoklaServer.allowedDomains allows you to limit access to your OoklaServer.
#
# The default ("*") allows all domains access.
# Uncomment to allow access from ookla.com, speedtest.net, and simply add your
# own domain(s):
#
# OoklaServer.allowedDomains = *.ookla.com, *.speedtest.net

# Uncomment this to enable filtering of known bad user agents. This can help alleviate traffic
# from non-official client sources.
#
# OoklaServer.userAgentFilterEnabled = true

# Max size of worker thread pool. Might be smaller if the number of open files allows
# is smaller (i.e it is at most `ulimit -n -H`). 
#
# OoklaServer.workerThreadPool.capacity = 30000

# Thread stack size for worker threads.
#
# OoklaServer.workerThreadPool.stackSizeBytes = 102400

# Enable auto updates (default)
#
# OoklaServer.enableAutoUpdate = true

#####
# IP Tracking / Blocking settings
#####
# Time between garbage collecting ip statistics.
#
# OoklaServer.ipTracking.gcIntervalMinutes = 5

# Max amount of time to keep statistics for a specific ip address after its last connection was recorded.
#
# OoklaServer.ipTracking.maxIdleAgeMinutes = 35

# Size in minutes of the buckets used to collect ip statistics. This is used to keep a 
# sliding window of statistics for an ip when accumulating data. Max number of
# buckets is maxIdleAgeMinutes / slidingWindowBucketLengthMinutes. 
#
# OoklaServer.ipTracking.slidingWindowBucketLengthMinutes = 5

# Number of ip's to include when upload metrics.
#
# OoklaServer.ipTracking.metricTopIpCount = 5
#

# Max concurrent connections allowed for a single ip address. The actual number 
# is at least 50, and at most 10% of OoklaServer.workerThreadPool.capacity.
#
# OoklaServer.ipTracking.maxConnPerIp = 500

# Max connection attempts in a bucket (duration defined above) allowed for a single ip address. The minimum value is
# 200 connections per minute (variable depending on bucket duration).
# When the next bucket is created, the count is reset and connections are allowed again.
#
# OoklaServer.ipTracking.maxConnPerBucketPerIp = 20000

# When set to true requests with an invalid or expired client authentication token are denied.
# Legacy and third-party clients that don't send a token at all will continue to work properly.
OoklaServer.clientAuthToken.denyInvalid = true

# Frame size limit for websocket connections. This is the maximum size of a websocket frame that
# OoklaServer will accept. The default is 5MB. This should be set to a value that is large enough
# for testing, yet small enough to prevent malicious clients from sending large frames that could
# cause the server to run out of memory.
#
# OoklaServer.websocket.frameSizeLimitBytes = 5242880

# Maximum size of all headers in bytes for HTTP(S) requests. Lowers the risk of someone exploiting large requests
# to make the server run out of memory. This limit doesn't include the URL itself.
#
# OoklaServer.http.maxHeadersSize = 65536

# SSL Options
#

# Enable Let's Encrypt certificate generation (default)
#
# OoklaServer.ssl.useLetsEncrypt = true

# To use a custom certificate, create a certificate and private key and set the path to them here:
# (Note, this will disable Let's Encrypt certificate generation)
# openSSL.server.certificateFile = cert.pem
# openSSL.server.privateKeyFile = key.pem

# Restrict openssl server to TLSv1.2 and above
# Options are 1.3, 1.2 (default), 1.1, and 1.0
openSSL.server.minimumTLSProtocol = 1.2

#
# Logging Options
#

# Log to the Console
#
logging.loggers.app.name = Application
logging.loggers.app.channel.class = ConsoleChannel
logging.loggers.app.channel.pattern = %Y-%m-%d %H:%M:%S [%P - %I] [%p] %t
logging.loggers.app.level = information

# Log to files
# See https://docs.pocoproject.org/current/Poco.FileChannel.html for information about FileChannel settings.
# Set rotation to "never" to disable default log rotation. Note that log rotation settings are only supported
# when using the FileChannel class.
#
#logging.loggers.app.name = Application
#logging.loggers.app.channel.class = FileChannel
#logging.loggers.app.channel.pattern = %Y-%m-%d %H:%M:%S [%P - %I] [%p] %t
#logging.loggers.app.channel.path = ${application.dir}/ooklaserver.log
#logging.loggers.app.level = information
#logging.loggers.app.channel.rotation = 10M
#logging.loggers.app.channel.archive = timestamp
#logging.loggers.app.channel.compress = true
#logging.loggers.app.channel.purgeCount = 10

#
# Optional access log for HTTP and Websocket requests
#
# logging.loggers.access.name = AccessLog
# logging.loggers.access.channel.class = FileChannel
# logging.loggers.access.channel.pattern = %[client] - %[session] [%d/%b/%Y:%H:%M:%S %Z] "%t" %[status] %[size] "%[referer]" "%[useragent]"
# logging.loggers.access.channel.path = ${application.dir}/ooklaserver-access.log
# logging.loggers.access.channel.rotation = 10M
# logging.loggers.access.channel.archive = timestamp
# logging.loggers.access.channel.compress = true
# logging.loggers.access.channel.purgeCount = 5

Docker 拉取镜像

docker pull ghcr.io/biaw/ookla-speedtest-server:latest

Docker 创建镜像

docker run -d \
  --name speedtest \
  --restart unless-stopped \
  -p 8080:8080/tcp -p 8080:8080/udp \
  -p 5060:5060/tcp -p 5060:5060/udp \
  -v /root/speedtest/OoklaServer.properties:/opt/ookla/OoklaServer.properties:ro \
  ghcr.io/biaw/ookla-speedtest-server:latest

0

评论区