Install and Configure Primary (Master) BIND DNS Server – RHEL 6 – CentOS 6

Install and Configure Primary (Master) BIND DNS Server – RHEL 6 – CentOS 6

Red Hat - CentOS - Fedora, Video Tutorials
BIND DNS Server is a widely used DNS Server. Because domain names are alphabetic, they are easier to remember. So if we will browse the Internet we don’t need to remember IP addresses. For example, the domain name www.yourdomain.com might translate to 192.168.0.1. This video tutorial will show you how to setup and configure Primary (Master) BIND DNS Server on RHEL 6.x  or CentOS 6.x: Install BIND Configure BIND Create primary DNS zone for linuxlab.local domain Add NS, A, MX records to zone Steps: 1. Install BIND yum install bind 2. Enable named service chkconfig named on 3. Edit /etc/named.conf 4. Start named ( BIND) service service named start 5.Edit /etc/named.conf 6. Copy /var/named/named.localhost cp named.localhost linuxlab.local 7. Edit /var/named/linuxlab.local $TTL 1D @ IN SOA ns1.linuxlab.local. hostmaster.linuxlab.local. ( 0 ; serial 1D…
Read More
Install and Configure VSFTPD FTP Server – RHEL 6 – CentOS 6

Install and Configure VSFTPD FTP Server – RHEL 6 – CentOS 6

Red Hat - CentOS - Fedora, Video Tutorials
When you think of transferring files, you probably think of the File Transfer Protocol (FTP) because it has been around for so long. While simple to use, FTP has become obsolete because it lacks the ability for secure file transfers. vsftpd (Very Secure File Transport Protocol Daemon) is a secure, fast FTP server for Unix/Linux systems. Steps: 1. Install vsftpd yum install vsftpd 2. Enable vsftpd service chkconfig vsftpd on 3. Start vsftpd service service vsftpd start 4. Check ftp port netstat -ntl | grep 21 5. Test ftp server access FTP server is running and anonymous access is enabled by default 6. Disable anonymous access Edit /etc/vsftd/vsftpd.conf anonymous_enable=NO 7. Enable dual logging dual_log_enable=YES It created /var/log/vsftpd.log file which uses vsftpd log format 8. Enable server time for display of…
Read More
Install and Configure Secondary (Slave) BIND DNS Server – RHEL 6 – CentOS 6

Install and Configure Secondary (Slave) BIND DNS Server – RHEL 6 – CentOS 6

Red Hat - CentOS - Fedora, Video Tutorials
After we have installed BIND as a master DNS server (centos01) (as explained in my recent video), we can now set up a secondary DNS server (centos02) with BIND on CentOS. centos02 acts as a backup if there are problems with centos01. This tutorial will show you how to setup and configure Secondary (Slave) BIND DNS Server on RHEL 6.x or CentOS 6.x Note: centos01.linuxlab.local is Primary (Master) DNS server for linuxlab.local domain We'll make centos02.linuxlab.local ( 192.168.0.22) as secondary dns server for linuxlab.local domain Steps: 1. Define centos02 as Name Server in the primary zone 2. Install bind on other server 3. Configure /etc/named.conf on centos02 (secondary dns server) 4. Allow zone transfer to only our secondary dns server in primary dns server allow-transfer { 192.168.0.22; }; 5. start…
Read More
How to Enable SSL Support for VSFTPD – RHEL 6 – CentOS 6

How to Enable SSL Support for VSFTPD – RHEL 6 – CentOS 6

Red Hat - CentOS - Fedora, Video Tutorials
FTP, or file transfer protocol, was a popular way to transfer files between local and remote computers in the past. Traditional FTP is rather insecure. When you login, your username and password are transmitted in clear text, raising the possibility of your credentials being sniffed. If you still want to use FTP instead of a more secure alternative like SFTP, which uses the SSH protocol to implement file transfers, you can secure it somewhat by configuring FTP to use SSL. You can quite easily configure your vsftpd server to use OpenSSL encryption, so that usernames & password, and even data files, are encrypted during transfer. It takes just a few simple steps. Steps: 1. Check whether the latest mod_ssl installed locate mod_ssl 2. Install the latest mod_ssl via yum yum…
Read More