I checked the status and got this:
sudo systemctl status endlessh
● endlessh.service - Endlessh SSH Tarpit
Loaded: loaded (/etc/systemd/system/endlessh.service; enabled; preset: disabled)
Active: activating (auto-restart) (Result: exit-code) since Mon 2024-11-18 14:46:23 WAT; 3s ago
Invocation: 4c6d6736d7264471afa29a70ebb4b850
Docs: man:endlessh(1)
Process: 51765 ExecStart=/usr/local/bin/endlessh (code=exited, status=226/NAMESPACE)
Main PID: 51765 (code=exited, status=226/NAMESPACE)
Mem peak: 1.9M
CPU: 41ms
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey!
Based on the output that you’ve shared the service is not running and has exited:
Did you install the service by following the steps here:
Based on that
status=226/NAMESPACE
, what you could try is in yourendlessh.service
file, try disabling the namespace feature. You can edit the file with:Look for any lines related to
PrivateNetwork
,ProtectSystem
, or other namespace settings and comment them out (or set them tofalse
). For example, if you seePrivateNetwork=true
, change it toPrivateNetwork=false
.After making changes, reload the systemd configuration and restart Endlessh:
Let me know if this works!
- Bobby