You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conduit Console ManagerConduit Console is a robust, terminal-based management dashboard for the Psiphon Conduit volunteer proxy node.This tool provides a native "Console" experience for server administrators, offering real-time status reports, action logs, and easier management of the Conduit service without needing complex manual commands.
📖 UsageOnce installed, simply run the script to enter the main dashboard:
24
-
./conduit-console.sh
25
-
From the menu, you can access:Start/Stop the Conduit service.View Live Logs.Check Total Status (Connections/Bandwidth).Generate Action Reports.🤝 Credits & AcknowledgementsThis project is an independent management tool built upon the shoulders of giants. Special thanks to the core developers and the open-source community:ssmirr/conduit: The core Conduit server implementation. This project wraps the functionality provided by ssmirr's incredible work.SamNet-dev/conduit-manager: Inspiration for the management structure and automation flows.
26
-
⚖️ LicenseThis project is licensed under the MIT License. See the LICENSE file for details.Disclaimer: This tool is not officially affiliated with Psiphon Inc.
27
-
It is a community-driven manager for the volunteer Conduit network.
22
+
chmod +x conduit-optimizer.sh
23
+
```
24
+
25
+
### Basic Usage (Default Mode)
26
+
Automatically sets **Docker to PRI 10** (High) and **Native to PRI 15** (Medium-High).
27
+
```bash
28
+
sudo ./conduit-optimizer.sh
29
+
```
30
+
31
+
### Custom Usage (CLI Arguments)
32
+
You can manually set the target Priority (Range 5-20).
33
+
*Lower value = Higher Priority in manual input? No, we follow Linux PRI logic:*
34
+
***10**: Very High Priority (Nice -10)
35
+
***20**: Normal Priority (Nice 0)
36
+
37
+
```bash
38
+
# Example: Set Docker to PRI 10 and Native to PRI 18 (almost normal)
39
+
sudo ./conduit-optimizer.sh -dock 10 -srv 18
40
+
41
+
# Example: Skip Docker, only optimize Service to PRI 5 (Maximum Power)
42
+
sudo ./conduit-optimizer.sh -dock 0 -srv 5
43
+
44
+
# Get Help
45
+
./conduit-optimizer.sh -h
46
+
```
47
+
48
+
## 📜 Latest Release Notes (1.5.0)
49
+
## ?? Release v1.5.0: CLI & Custom Priorities
50
+
#
51
+
**Key Changes:**
52
+
***New CLI Args:** Added `-dock` and `-srv` to set custom target priorities manually.
53
+
***Logic Update:** Inputs now map to Linux PRI column (Target 10 = Nice -10).
54
+
***Verbose Mode:** Added `-v` for detailed output logging.
55
+
***Help Menu:** Added `-h` for quick usage guide.
56
+
***Safety Range:** Inputs restricted to 5-20 (0 to skip).
0 commit comments