95428a6d3a
This patch adds the Ostiary package to the repository. I've tested this on the latest build (revision 31158). Installation, un-installation and ostiaryd.init script all seem to work correctly. A bit of background, Ostiary has a similar purpose to Port Knocking but uses a different implementation that removes the possibility of replay attacks. Not everyone will view it as suitable for their needs, but for me combined with ssh I feel it is more than sufficient. I suppose for the super paranoid admin, the perfect system would be a package that uses the approach of port knocking via a closed port that is combined with an ostiary style signature challenge. Anyhow, I have created quickstart documentation for the server and client at "http://wiki.openwrt.org/doc/howto/ostiary.server" and "http://wiki.openwrt.org/doc/howto/ostiary.client". Signed-off-by: Desmond Hokin <Salander@gmx.u> git-svn-id: svn://svn.openwrt.org/openwrt/packages@33167 3c298f89-4303-0410-b956-a3cf2f4a3e73
28 lines
501 B
Bash
28 lines
501 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2008-2012 OpenWrt.org
|
|
|
|
START=85
|
|
MYSERVICE=ostiaryd
|
|
|
|
|
|
start() {
|
|
echo starting $MYSERVICE...
|
|
/usr/bin/$MYSERVICE
|
|
sleep 1
|
|
echo done
|
|
}
|
|
|
|
stop() {
|
|
|
|
if ps ax | grep -v grep | grep -v rc.common | grep $MYSERVICE> /dev/null
|
|
then
|
|
echo "stopping $MYSERVICE..."
|
|
pkill -9 $MYSERVICE
|
|
sleep 1
|
|
echo done
|
|
else
|
|
echo "$MYSERVICE is not running"
|
|
fi
|
|
}
|
|
|