openbsd-ports/net/silc-server/pkg/MESSAGE
brad b1917787cd add silc-server port;
--
silc-server (silcd) is the server for the SILC protocol.

SILC (Secure Internet Live Conferencing) is a protocol which provides
secure conferencing services in the Internet over insecure channel.

From: Jolan Luff <jolan@cryptonomicon.org>
2002-12-16 03:40:02 +00:00

22 lines
721 B
Plaintext

Configuring silc-server for OpenBSD
-----------------------------------
- configuration files are in ${SYSCONFDIR}/silcd
- documentation is installed in ${PREFIX}/share/doc/silcd
- sample configuration files are in ${PREFIX}/share/examples/silcd
As silcd uses the IANA-assigned privileged port of 706, it is highly
recommended to take advantage of the installed silcd user and group.
If you have not already done so, you will need to generate a keypair:
# silcd -C ${SYSCONFDIR}/silcd
# chown silcd:silcd ${SYSCONFDIR}/silcd/silcd.{pub,prv}
Additionally, you may wish to start silcd at system start-up
via the /etc/rc.local script:
if [ -x ${PREFIX}/sbin/silcd ]; then
echo -n ' silcd'; ${PREFIX}/sbin/silcd
fi