Start kippo on Ubuntu startup
Posted
by
Cory Gagliardi
on Server Fault
See other posts from Server Fault
or by Cory Gagliardi
Published on 2014-05-28T05:11:49Z
Indexed on
2014/05/28
9:32 UTC
Read the original article
Hit count: 336
ubuntu
|ubuntu-14.04
I'm setting up a new Ubuntu 14.04 server and followed these instructions to install kippo (the SSH Honeypot). To run kippo, I do:
su kippo
~/kippo/start.sh
The contents of start.sh is simply:
#!/bin/sh
echo -n "Starting kippo in background..."
authbind --deep twistd -y kippo.tac -l log/kippo.log --pidfile kippo.pid
Which starts up a background process for kippo. What can I do to make this automatically run on startup? Do I need to add a script that calls this in /etc/init.d?
© Server Fault or respective owner