My Opera is closing 1st of March

M.I.T = Multimedia IT dept.

basic ftpd setup for openbsd

,

0) disable unnessesary daemons in /etc/rc.conf.local.
1) add /sbin/nologin into /etc/shells.
2) fireup the daemon with `/usr/libexec/ftpd -4 -n -D`.
3) batch adding users with the following script:
#!/bin/sh
USERNAME=myuser
PASSWORD=mypassword
HASHED=`encrypt -b 6 $PASSWORD`
useradd -m -d /home/$USERNAME -p $HASHED $USERNAME
echo $USERNAME >> /etc/ftpchroot
4) make ftpd starts at startup in /etc/rc.conf.local:
ftpd_flags="-4 -n -D"
5) Change ftp banners in /etc/motd if needed.

a simple conf for send-only local postfix mailserveradd new disk to openbsd

Write a comment

New comments have been disabled for this post.

February 2014
M T W T F S S
January 2014March 2014
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28