triglav 0.2.0

High-performance multi-path networking tool with intelligent uplink management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
//! Beautiful CLI interface for Triglav.

use std::net::SocketAddr;
use std::path::PathBuf;

use clap::{Args, Parser, Subcommand, ValueEnum};

/// Triglav - High-performance multi-path VPN
#[derive(Parser, Debug)]
#[command(
    name = "triglav",
    author,
    version,
    about = "High-performance multi-path VPN with intelligent uplink management",
    long_about = r#"
Triglav is a sophisticated multi-path VPN that provides:

  - True virtual network interface (TUN) for transparent tunneling
  - Encrypted, redundant connections across multiple network interfaces
  - Intelligent uplink selection based on real-time quality metrics
  - Automatic failover and bandwidth aggregation
  - ECMP-aware flow routing for connection consistency

QUICK START:
  Server:  triglav server --generate-key
  Client:  triglav tun <key> --full-tunnel
  Legacy:  triglav connect <key> --socks 1080

For more information, visit https://github.com/triglav/triglav
"#
)]
#[command(propagate_version = true)]
pub struct Cli {
    /// Configuration file path
    #[arg(short, long, global = true)]
    pub config: Option<PathBuf>,

    /// Log level (trace, debug, info, warn, error)
    #[arg(short, long, global = true, default_value = "info")]
    pub log_level: String,

    /// Output format
    #[arg(long, global = true, default_value = "text")]
    pub format: OutputFormat,

    /// Disable colored output
    #[arg(long, global = true)]
    pub no_color: bool,

    #[command(subcommand)]
    pub command: Commands,
}

/// Available commands
#[derive(Subcommand, Debug)]
pub enum Commands {
    /// Start the Triglav server
    Server(ServerArgs),

    /// Start TUN tunnel (recommended - true VPN mode)
    Tun(TunArgs),

    /// Connect to a Triglav server (legacy proxy mode)
    Connect(ConnectArgs),

    /// Generate a new key pair
    Keygen(KeygenArgs),

    /// Show status and statistics
    Status(StatusArgs),

    /// Manage uplinks
    Uplink(UplinkArgs),

    /// Run diagnostics
    Diagnose(DiagnoseArgs),

    /// Benchmark connection
    Benchmark(BenchmarkArgs),

    /// Generate shell completions
    Completions(CompletionsArgs),

    /// Show example configuration
    Config(ConfigArgs),
}

/// Server command arguments
#[derive(Args, Debug)]
pub struct ServerArgs {
    /// Listen addresses (can be specified multiple times)
    #[arg(short, long, default_value = "0.0.0.0:7443")]
    pub listen: Vec<SocketAddr>,

    /// Path to key file
    #[arg(short, long)]
    pub key: Option<PathBuf>,

    /// Generate new key if not exists
    #[arg(long)]
    pub generate_key: bool,

    /// Print client connection key and exit
    #[arg(long)]
    pub print_key: bool,

    /// Maximum concurrent connections
    #[arg(long, default_value = "10000")]
    pub max_connections: usize,

    /// Enable TCP fallback
    #[arg(long, default_value = "true")]
    pub tcp_fallback: bool,

    /// Daemonize (run in background)
    #[arg(short, long)]
    pub daemon: bool,

    /// PID file path (for daemon mode)
    #[arg(long)]
    pub pid_file: Option<PathBuf>,
}

/// TUN tunnel command arguments (recommended mode)
#[derive(Args, Debug)]
pub struct TunArgs {
    /// Server key (tg1_...)
    pub key: String,

    /// Network interfaces to use (can be specified multiple times)
    #[arg(short, long)]
    pub interface: Vec<String>,

    /// Auto-discover network interfaces
    #[arg(long, default_value = "true")]
    pub auto_discover: bool,

    /// TUN device name (e.g., tun0, utun3)
    #[arg(long, default_value = "tg0")]
    pub tun_name: String,

    /// Tunnel IPv4 address
    #[arg(long, default_value = "10.0.85.1")]
    pub ipv4: String,

    /// Tunnel IPv6 address (optional)
    #[arg(long)]
    pub ipv6: Option<String>,

    /// Route all traffic through tunnel (full VPN mode)
    #[arg(long)]
    pub full_tunnel: bool,

    /// Specific routes to tunnel (can be specified multiple times)
    #[arg(long)]
    pub route: Vec<String>,

    /// Exclude routes from tunnel (can be specified multiple times)
    #[arg(long)]
    pub exclude: Vec<String>,

    /// Use tunnel for DNS queries
    #[arg(long)]
    pub dns: bool,

    /// Upstream DNS servers (used with --dns)
    #[arg(long, default_value = "1.1.1.1:53")]
    pub dns_server: Vec<String>,

    /// Scheduling strategy
    #[arg(long, default_value = "adaptive")]
    pub strategy: SchedulingStrategy,

    /// Enable verbose output
    #[arg(short, long)]
    pub verbose: bool,

    /// Stay in foreground (don't daemonize)
    #[arg(short, long)]
    pub foreground: bool,
}

/// Connect command arguments (legacy proxy mode)
#[derive(Args, Debug)]
pub struct ConnectArgs {
    /// Server key (tg1_...)
    pub key: String,

    /// Network interfaces to use (can be specified multiple times)
    #[arg(short, long)]
    pub interface: Vec<String>,

    /// Auto-discover network interfaces
    #[arg(long)]
    pub auto_discover: bool,

    /// Local SOCKS5 proxy port
    #[arg(long)]
    pub socks: Option<u16>,

    /// Local HTTP proxy port
    #[arg(long)]
    pub http_proxy: Option<u16>,

    /// Stay in foreground (don't daemonize)
    #[arg(short, long)]
    pub foreground: bool,

    /// Scheduling strategy
    #[arg(long, default_value = "adaptive")]
    pub strategy: SchedulingStrategy,

    /// Enable verbose connection info
    #[arg(short, long)]
    pub verbose: bool,
}

/// Keygen command arguments
#[derive(Args, Debug)]
pub struct KeygenArgs {
    /// Output path for the key
    #[arg(short, long)]
    pub output: Option<PathBuf>,

    /// Server addresses to encode in key
    #[arg(short, long)]
    pub address: Vec<SocketAddr>,

    /// Show key in QR code
    #[arg(long)]
    pub qr: bool,

    /// Key format
    #[arg(long = "key-format", default_value = "base64")]
    pub key_format: KeyFormat,
}

/// Status command arguments
#[derive(Args, Debug, Clone)]
pub struct StatusArgs {
    /// Show detailed statistics
    #[arg(short, long)]
    pub detailed: bool,

    /// Watch mode (continuous updates)
    #[arg(short, long)]
    pub watch: bool,

    /// Update interval for watch mode (seconds)
    #[arg(long, default_value = "1")]
    pub interval: u64,

    /// Show JSON output
    #[arg(long)]
    pub json: bool,
}

/// Uplink management arguments
#[derive(Args, Debug)]
pub struct UplinkArgs {
    #[command(subcommand)]
    pub command: UplinkCommands,
}

/// Uplink subcommands
#[derive(Subcommand, Debug)]
pub enum UplinkCommands {
    /// List all uplinks
    List,
    /// Add a new uplink
    Add {
        /// Interface name
        #[arg(short, long)]
        interface: String,
        /// Weight for load balancing
        #[arg(short, long, default_value = "100")]
        weight: u32,
    },
    /// Remove an uplink
    Remove {
        /// Uplink ID or interface name
        id: String,
    },
    /// Show uplink details
    Show {
        /// Uplink ID or interface name
        id: String,
    },
    /// Enable an uplink
    Enable {
        /// Uplink ID or interface name
        id: String,
    },
    /// Disable an uplink
    Disable {
        /// Uplink ID or interface name
        id: String,
    },
}

/// Diagnose command arguments
#[derive(Args, Debug)]
pub struct DiagnoseArgs {
    /// Run full diagnostics
    #[arg(short, long)]
    pub full: bool,

    /// Test specific interface
    #[arg(short, long)]
    pub interface: Option<String>,

    /// Check connectivity to server
    #[arg(long)]
    pub connectivity: bool,

    /// Measure MTU
    #[arg(long)]
    pub mtu: bool,
}

/// Benchmark command arguments
#[derive(Args, Debug)]
pub struct BenchmarkArgs {
    /// Server key
    pub key: String,

    /// Duration in seconds
    #[arg(short, long, default_value = "10")]
    pub duration: u64,

    /// Number of parallel streams
    #[arg(short, long, default_value = "4")]
    pub streams: u32,

    /// Direction (upload, download, both)
    #[arg(long, default_value = "both")]
    pub direction: BenchmarkDirection,
}

/// Completions command arguments
#[derive(Args, Debug)]
pub struct CompletionsArgs {
    /// Shell to generate completions for
    pub shell: Shell,
}

/// Config command arguments
#[derive(Args, Debug)]
pub struct ConfigArgs {
    /// Print example server config
    #[arg(long)]
    pub server: bool,

    /// Print example client config
    #[arg(long)]
    pub client: bool,

    /// Output path
    #[arg(short, long)]
    pub output: Option<PathBuf>,
}

/// Output format
#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum OutputFormat {
    Text,
    Json,
    Table,
}

/// Scheduling strategy
#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum SchedulingStrategy {
    /// Weighted round-robin
    Wrr,
    /// Lowest latency
    Latency,
    /// Lowest loss
    Loss,
    /// Adaptive (recommended)
    Adaptive,
    /// Redundant (send on all)
    Redundant,
    /// Primary with backup
    PrimaryBackup,
}

impl From<SchedulingStrategy> for crate::multipath::SchedulingStrategy {
    fn from(s: SchedulingStrategy) -> Self {
        match s {
            SchedulingStrategy::Wrr => Self::WeightedRoundRobin,
            SchedulingStrategy::Latency => Self::LowestLatency,
            SchedulingStrategy::Loss => Self::LowestLoss,
            SchedulingStrategy::Adaptive => Self::Adaptive,
            SchedulingStrategy::Redundant => Self::Redundant,
            SchedulingStrategy::PrimaryBackup => Self::PrimaryBackup,
        }
    }
}

/// Key format
#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum KeyFormat {
    Base64,
    Hex,
}

/// Benchmark direction
#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum BenchmarkDirection {
    Upload,
    Download,
    Both,
}

/// Shell for completions
#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum Shell {
    Bash,
    Zsh,
    Fish,
    PowerShell,
}