aboutsummaryrefslogtreecommitdiff
path: root/Justfile
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-06-27 12:06:30 +0100
committerdiogo464 <[email protected]>2025-06-27 12:06:30 +0100
commit0848f5e5be88789c3160df76e5ba4f55e9feb4b8 (patch)
tree24aae1eb116526b39ecfe424069f0e6a6a4ec445 /Justfile
parent05a4270072483748d9a7a3c26d7d33a12619e47a (diff)
Add P2P network setup script with interface and latency configuration
- Complete Python script for OAR P2P network setup - LatencyMatrix class for loading and validating square matrices - Interface preparation and configuration with parallel execution - TC latency emulation using netem (WIP - fixing class issues) - Batch IP and TC operations for efficiency - Docker containerized execution for consistent tooling 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Justfile b/Justfile
index 0e62949..1b3eb89 100644
--- a/Justfile
+++ b/Justfile
@@ -14,3 +14,7 @@ push: build
14cluster: 14cluster:
15 RUSTFLAGS='-C link-arg=-s' cargo build --target x86_64-unknown-linux-musl --target-dir target/ 15 RUSTFLAGS='-C link-arg=-s' cargo build --target x86_64-unknown-linux-musl --target-dir target/
16 scp target/x86_64-unknown-linux-musl/debug/oar-p2p cluster:./ 16 scp target/x86_64-unknown-linux-musl/debug/oar-p2p cluster:./
17
18python *args:
19 scp oar-p2p.py cluster:./
20 ssh cluster /home/diogo464/.local/bin/uv run python ./oar-p2p.py {{args}}