nntp-proxy
High-throughput NNTP proxy written in Rust. It lets multiple NNTP clients share multiple backend servers while keeping connection limits, backend auth, routing, TLS, cache behavior, and live metrics in one place.
Features
- Hybrid routing by default: starts efficient and switches to stateful mode when a client needs group context.
- Health-aware backend selection with weighted round-robin or least-loaded selection.
- Per-backend TLS, backend authentication, connection limits, keep-alives, and tiering.
- Plain NNTP listener only for clients; intended for trusted LAN/VPN/segmented-network deployment rather than direct internet exposure.
- Optional article-body caching plus lightweight availability tracking.
- Backend availability is tracked when the configured cache capacity can hold the fixed availability index;
[cache].store_article_bodiesis false by default and only controls whether full article bodies are cached too. - Current cached-response writer benches generate ARTICLE hits in 94.23 ns mean, with HEAD/BODY/STAT derived hits all under 80 ns mean.
- Current single-connection local socket benches measured 366.6 MB/s mean for 788 KiB memory-cache hits and 349.9 MB/s mean for metadata-only cache misses.
- Current 100GiB cache-miss e2e spot checks measured 4712.73 MiB/s mean at
1/1/1and 10019.26 MiB/s mean at4/8/8; the direct-upstream baseline was 11307.07 MiB/s on the same system. - Allocation-conscious hot paths: borrowed request slices, lazy reusable buffer pools, and allocation-free cache key lookup in the steady state.
- Optional terminal dashboard with persisted metrics across restarts.
- TOML config, environment-based backend configuration, and CLI overrides.
Runtime Binary
nntp-proxyis the runtime executable.- The same binary can run headless or with the terminal dashboard via
--ui headlessor--ui tui. - Headless mode can also publish the dashboard state over websocket with
--tui-listen 127.0.0.1:8120(IP:PORT). This must be a different socket from the main NNTP listener and must stay on a loopback address. - A separate terminal can attach read-only with
--ui tui --tui-attach 127.0.0.1:8120(IP:PORT). This also stays loopback-only. - Article caching is configured via
[cache]; there is no separate cache-only executable. - Client-facing connections are plain NNTP only. The proxy does not terminate inbound TLS or offer a TLS listening mode.
Quick Start
Build:
Create a minimal config.toml:
[[]]
= "news.example.com"
= 119
= "Primary"
= "backend-user"
= "backend-pass"
= 10
Run the proxy:
To launch the dashboard-enabled UI, use the same nntp-proxy binary with --ui tui.
To run headless and expose a remote dashboard:
To attach a terminal client to that dashboard:
Connect a client to localhost:8119 unless you changed [proxy].port.
Routing
routing.mode controls how client sessions use backend connections:
hybrid: default. Stateless commands use pooled per-command routing until a stateful command appears; then the session switches to a dedicated backend connection.stateful: one client session maps to one backend connection for the session lifetime.per-command: each supported command can use a different backend; group-context commands are rejected.
Per-command mode supports message-ID based requests such as:
ARTICLE <message-id@example.com>BODY <message-id@example.com>HEAD <message-id@example.com>STAT <message-id@example.com>LIST,HELP,DATE,CAPABILITIES
Per-command mode rejects commands that depend on selected group or current article state:
GROUPNEXTLASTLISTGROUPARTICLE <number>HEAD <number>BODY <number>STAT <number>XOVEROVERXHDRHDR
Use hybrid unless every client is known to be message-ID only.
Configuration
Example configs:
Canonical section order is general to specific:
[proxy]: listen address, threads, logging, stats path.[routing]: routing mode, backend selection, adaptive availability precheck.[memory]: socket buffers and pooled transport/capture buffers.[cache]: article cache behavior, cache TTL, availability persistence, disk spillover.[health_check]: backend health probe interval, timeout, and failure threshold.[client_auth]and[[client_auth.users]]: credentials accepted from clients.[[servers]]: concrete backend servers.
Complete Shape
[]
= "0.0.0.0"
= 8119
= 1
= true
= "warn"
# stats_file = "/var/lib/nntp-proxy/stats.json"
[]
= "hybrid"
= "least-loaded"
= false
[]
= 16777216
= 16777216
= 741376
= 50
= 790528
= 16
[]
= "256mb"
= 3600
= true
# Optional article-body disk cache.
[]
= "/var/cache/nntp-proxy/articles"
= "10gb"
= "lz4"
= 4
[]
= 30
= 5
= 3
[]
= "200 NNTP proxy ready"
[[]]
= "reader"
= "reader-password"
[[]]
= "news.example.com"
= 563
= "Primary"
= "backend-user"
= "backend-pass"
= 20
= 0
= true
= true
= 60
Cache vs Memory
[cache] controls article and availability storage:
store_article_bodies = falseis the default. Set it totruefor full article-body caching.- The proxy keeps backend availability tracking in the availability index either way.
[cache.disk]is optional and stores article bodies evicted from the memory cache; it only applies whenstore_article_bodies = true.availability_index_pathpersists the availability-only index across restarts whenstore_article_bodies = false.
[memory] controls transport memory, not article storage:
- TCP socket send/receive buffer sizes.
- Main pooled streaming buffer size and count.
- Capture buffer size and count for cache ingest and response assembly.
If you are tuning RAM use, check both sections: [cache] for stored article bodies and [memory] for transport/buffer pools.
Backend Servers
Common server fields:
| Field | Required | Default | Notes |
|---|---|---|---|
host |
yes | - | Backend hostname or IP. |
port |
yes | - | 119 for plain NNTP, 563 for NNTPS. |
name |
yes | - | Friendly name used in logs and the TUI. |
username |
no | - | Backend auth username. |
password |
no | - | Backend auth password. |
max_connections |
no | 10 | Pool limit for this backend. |
tier |
no | 0 | Lower tiers are preferred; higher tiers get longer cache TTL. |
use_tls |
no | false | Enable TLS to this backend. |
tls_verify_cert |
no | true | Keep true in production. |
tls_cert_path |
no | - | Additional PEM CA certificate. |
connection_keepalive |
no | - | Send DATE on idle backend connections every N seconds. |
replacement_cooldown |
no | 30 | Wait this many seconds before replacing a connection removed after backend error; set 0 to disable. |
health_check_max_per_cycle |
no | 10 | Maximum connections to check per health-check cycle. |
health_check_pool_timeout |
no | 2 | Seconds to wait when acquiring a connection for health checking. |
compress |
no | auto | RFC 8054 backend COMPRESS DEFLATE: omit to auto-detect, true to require, false to disable. |
compress_level |
no | 1 | DEFLATE level 0-9; higher improves ratio at higher CPU cost. |
backend_idle_timeout |
no | 600 | Clear idle backend connections after this many seconds of proxy-wide inactivity; set 0 to disable. |
The proxy currently supports up to 8 backend servers because article availability uses a compact bitset.
Tiering
Lower tiers are tried first. Higher tiers are fallbacks and get exponentially longer cache retention:
[[]]
= "primary.example.com"
= 119
= "Primary"
= 0
[[]]
= "archive.example.com"
= 119
= "Archive"
= 10
With a 1 hour base cache TTL:
| Tier | Effective TTL |
|---|---|
| 0 | 1 hour |
| 1 | 2 hours |
| 5 | 32 hours |
| 10 | about 43 days |
This keeps primary-server results fresh while avoiding repeated expensive lookups against backup or archive servers.
TLS
TLS support is for outbound backend connections only. nntp-proxy does not provide a TLS listener for inbound client connections; it is meant to sit behind trusted-network boundaries such as a LAN, VPN, or segmented internal network.
For NNTPS backends:
[[]]
= "secure.news.example.com"
= 563
= "Secure"
= true
= true
For private CAs, add tls_cert_path. The custom certificate is added to the system trust store, not used as a replacement.
Do not set tls_verify_cert = false in production.
Health Checks
[health_check] controls proxy-level backend health probing:
| Field | Default | Notes |
|---|---|---|
interval |
30 | Seconds between health check cycles. |
timeout |
5 | Seconds before a health check times out. |
unhealthy_threshold |
3 | Consecutive failures before marking a backend unhealthy. |
Each server can also tune health-check pool behavior with health_check_max_per_cycle and health_check_pool_timeout, and can enable idle keep-alives with connection_keepalive.
Client Auth
Client auth is optional. When configured, clients authenticate to the proxy; backend credentials remain per-server.
[]
= "200 NNTP proxy ready"
[[]]
= "reader"
= "reader-password"
Performance Notes
The current hot paths are designed to avoid avoidable heap work:
- Current cached-response writer benches generate ARTICLE hits in 94.23 ns mean, with HEAD/BODY/STAT derived hits all under 80 ns mean.
- Current single-connection local socket benches measured 366.6 MB/s mean for 788 KiB memory-cache hits and 349.9 MB/s mean for metadata-only cache misses.
- Current 100GiB cache-miss e2e spot checks measured 4712.73 MiB/s mean at
1/1/1and 10019.26 MiB/s mean at4/8/8; the direct-upstream baseline was 11307.07 MiB/s on the same system. - On an Apple M1 with 16 GiB RAM, the same 100GiB cache-miss e2e shapes measured 3208.73 MiB/s mean at
1/1/1and 3856.64 MiB/s mean at4/8/8; the direct-upstream baseline was 7557.08 MiB/s. - Backend request forwarding uses parsed request slices instead of rebuilding command strings.
- The main I/O and capture buffer pools allocate buffers lazily on first use and then reuse them.
- Buffer acquisition is allocation-free after warmup while the configured pools have capacity; exhaustion intentionally falls back to allocating and logs that fact.
- Article-cache lookup uses borrowed
&strkeys againstArc<str>cache keys, avoiding per-lookup key allocation.
Current cached-response writer benches:
| Cached response | Mean time |
|---|---|
| ARTICLE from cached ARTICLE | 94.23 ns |
| HEAD from cached ARTICLE | 78.26 ns |
| BODY from cached ARTICLE | 77.34 ns |
| STAT from cached ARTICLE | 56.77 ns |
| Availability-only entry returns no payload | 3.408 ns |
| Missing entry returns no payload | 3.480 ns |
Current single-connection local socket roundtrip benches:
| Path | Article size | Mean MB/s |
|---|---|---|
| Backend roundtrip | 64 KiB | 31.04 |
| Backend roundtrip | 768 KiB | 338.3 |
| Backend roundtrip | 788 KiB | 350.2 |
| Backend roundtrip | 1536 KiB | 596.5 |
| Memory-cache hit | 64 KiB | 31.33 |
| Memory-cache hit | 768 KiB | 329.5 |
| Memory-cache hit | 788 KiB | 366.6 |
| Memory-cache hit | 1536 KiB | 694.0 |
| Metadata-only cache miss | 64 KiB | 31.01 |
| Metadata-only cache miss | 768 KiB | 340.1 |
| Metadata-only cache miss | 788 KiB | 349.9 |
| Metadata-only cache miss | 1536 KiB | 620.2 |
Current cache-miss end-to-end release checks use:
nntpbench client -> nntp-proxy -> nntpbench server
100GiB spot checks:
| Platform | Socket buffers | Direct upstream | Proxy 1/1/1 mean |
Proxy 4/8/8 mean |
|---|---|---|---|---|
| Ryzen 9 5950X | 16 MiB | 11307.07 MiB/s | 4712.73 MiB/s | 10019.26 MiB/s |
| Apple M1, 16 GiB RAM | OS-default Darwin | 7557.08 MiB/s | 3208.73 MiB/s | 3856.64 MiB/s |
10GiB default-matrix highlights:
| Platform | Best overall | Best one-proxy-thread row | Smallest fast shape |
|---|---|---|---|
| Ryzen 9 5950X | 8/8/4 at 11004.94 MiB/s |
1/2/16 at 6235.59 MiB/s |
1/1/1 at 4797.65 MiB/s |
| Apple M1, 16 GiB RAM | 2/2/4 at 6004.22 MiB/s |
1/2/16 at 5404.49 MiB/s |
1/1/1 at 3699.32 MiB/s |
Practical guidance: most installs should start with 1/1/n: one proxy thread,
one client-facing connection shape, and n backends for however many providers
the operator pays for. Then benchmark each provider repeatedly to find the right
backend connection count. Bigger is not always better, and the best backend
connection count can vary by provider.
See release benchmarks for the complete per-platform tables, backend sweeps, and notes.
This is not an unconditional "zero allocations everywhere" claim. TLS handshakes, connection setup, logging, metrics snapshots, pool exhaustion, and oversized capture buffers can allocate. The steady-state forwarding/cache-hit path is the part intentionally kept allocation-free where the configured pools are sized correctly.
CLI
Common flags:
| Flag | Environment | Values / default | Meaning |
|---|---|---|---|
--config <FILE> |
NNTP_PROXY_CONFIG |
Default: config.toml |
Config file path. |
--ui <MODE> |
NNTP_PROXY_UI |
headless or tui; default: headless |
Selects how the single nntp-proxy binary runs: plain server logging or the terminal dashboard. |
--tui-listen <IP:PORT> |
NNTP_PROXY_TUI_LISTEN |
IP:PORT |
Bind the dashboard websocket publisher to a loopback socket address in headless mode. |
--tui-attach <IP:PORT> |
NNTP_PROXY_TUI_ATTACH |
IP:PORT |
Connect the read-only TUI client to a dashboard websocket on a loopback socket address. |
--host <HOST> |
NNTP_PROXY_HOST |
Default from config; otherwise 0.0.0.0 |
Override [proxy].host. |
--port <PORT> |
NNTP_PROXY_PORT |
Default from config; otherwise 8119 |
Override [proxy].port. |
--routing-mode <MODE> |
NNTP_PROXY_ROUTING_MODE |
hybrid, stateful, or per-command; default from config |
Override [routing].mode. |
--backend-selection <STRATEGY> |
NNTP_PROXY_BACKEND_SELECTION |
least-loaded or weighted-round-robin; default from config |
Override [routing].backend_selection. |
--article-cache-capacity <SIZE> |
NNTP_PROXY_ARTICLE_CACHE_CAPACITY |
Example: 64mb, 256mb, 1gb; default from config |
Override [cache].article_cache_capacity. |
--article-cache-ttl <SECONDS> |
NNTP_PROXY_ARTICLE_CACHE_TTL_SECS |
Integer seconds; default from config | Override [cache].article_cache_ttl_secs. |
--store-article-bodies <BOOL> |
NNTP_PROXY_STORE_ARTICLE_BODIES |
true or false; default from config |
Override [cache].store_article_bodies. |
--threads <N> |
NNTP_PROXY_THREADS |
0 for CPU cores; otherwise integer; default from config |
Override [proxy].threads. |
Examples:
CLI flags override config file values.
UI selection is separate from --routing-mode: routing mode controls backend session behavior, while UI options control whether nntp-proxy runs headless or with the dashboard.
--no-tui remains accepted as a hidden compatibility alias for headless mode, but --ui headless / --ui tui is the documented interface.
Environment-Based Backend Configuration
Indexed NNTP_SERVER_N_* variables can configure backends without a TOML server list, which is useful in containers.
NNTP_SERVER_0_HOST=news.example.com \
NNTP_SERVER_0_PORT=119 \
NNTP_SERVER_0_NAME=Primary \
NNTP_SERVER_0_USERNAME=user \
NNTP_SERVER_0_PASSWORD=pass \
Server variables are contiguous: NNTP_SERVER_0_HOST, then NNTP_SERVER_1_HOST, and so on. Scanning stops at the first missing host index.
If a config file exists and NNTP_SERVER_* variables are set, the server list from the environment overrides the file's [[servers]] entries. Other config sections still come from the file plus CLI overrides.
Docker
Build:
Run with environment variables:
The repository also includes docker-compose.yml.
Do not hardcode provider credentials in compose files. Use environment substitution or secrets.
Development
Use the included Nix shell if desired:
Build the packaged binary with Nix:
For NixOS, the flake exports nixosModules.default, which adds a
services.nntp-proxy module. It can either use an existing config.toml, or
render one from services.nntp-proxy.settings. A separate
services.nntp-proxy.credentialsFile can provide secret backend/client
passwords at runtime, and services.nntp-proxy.tuiListen can expose the
loopback-only websocket dashboard for an attached TUI:
{
inputs.nntp-proxy.url = "github:mjc/nntp-proxy";
outputs = { nixpkgs, nntp-proxy, ... }: {
nixosConfigurations.proxy = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
nntp-proxy.nixosModules.default
{
services.nntp-proxy = {
enable = true;
openFirewall = true;
credentialsFile = "/var/lib/nntp-proxy/credentials.toml";
tuiListen = "127.0.0.1:8120";
settings = {
proxy.port = 8119;
routing.mode = "hybrid";
servers = [
{
host = "news.example.com";
port = 563;
name = "Primary";
use_tls = true;
tls_verify_cert = true;
max_connections = 20;
}
];
};
};
}
];
};
};
}
Attach from another terminal with:
Example credentials overlay:
[[]]
= "Primary"
= "backend-user"
= "backend-pass"
[[]]
= "reader"
= "reader-password"
Common checks:
Use cargo test for doctests, exact test filtering, or debugging with -- --nocapture.
Manual smoke test:
Troubleshooting
Port already in use:
Backend auth failures:
- Check
usernameandpasswordunder the matching[[servers]]entry. - Test direct connectivity to the provider.
- Look at logs for backend response codes.
Stateful commands rejected:
- You are probably using
routing.mode = "per-command". - Use
routing.mode = "hybrid"orrouting.mode = "stateful"for normal newsreader behavior.
TLS failures:
- Keep
tls_verify_cert = true. - Check system CA certificates.
- Add
tls_cert_pathfor private CA deployments.
Unexpected memory use:
[cache].store_article_bodiesand[cache].article_cache_capacitycontrol article-body memory.[memory]controls socket buffers and buffer pools.- Disk cache capacity is under
[cache.disk], only applies whenstore_article_bodies = true, and should be backed by SSD/NVMe for best results.
License
MIT