November 2014
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930

Categories

November 2014
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930

BIND CHROOT CENTOS 7

BIND (Berkeley Internet Name Daemon) also known as NAMED is the most widely used DNS server in the internet. This tutorial will descibes how we can run BIND in a chroot jail, the process is simply unable to see any part of the filesystem outside the jail. For example, in this post, i will setting […]

VSFTP CENTOS 7

mkdir -p /ftpserver/open mkdir -p /ftpserver/private

yum -y install ftp vsftpd

[root@keeplive ~]# rpm -qf /usr/bin/db_load libdb-utils-5.3.21-17.el7_0.1.x86_64

echo opentest > /ftpserver/open/open.txt

echo ftptest > /tmp/ftptest1.txt

touch /ftpserver/open/webapp.txt

[root@keeplive ~]# rpm -qc vsftpd /etc/logrotate.d/vsftpd /etc/pam.d/vsftpd /etc/vsftpd/ftpusers /etc/vsftpd/user_list /etc/vsftpd/vsftpd.conf [root@keeplive ~]#

vi /etc/vsftpd/vftpuser.txt alice P@ssw0rd jack P@ssw0rd tom P@ssw0rd

db_load -T -t hash -f /etc/vsftpd/vftpuser.txt /etc/vsftpd/vftpuser.db

[root@keeplive […]