Red Hat® Certified Engineer (RHCE®) is a
Red Hat Certified System Administrator (RHCSA) who possesses additional
skills, knowledge, and abilities required of a senior system
administrator responsible for Red Hat Enterprise Linux® systems.
An RHCE is capable of:
Configuring static routes, packet filtering, and network address translation.
Setting kernel runtime parameters.
Configuring an Internet Small Computer System Interface (iSCSI) initiator.
Producing and delivering reports on system utilization.
Using shell scripting to automate system maintenance tasks.
Configuring system logging, including remote logging.
Configuring a system to provide networking services, including HTTP/HTTPS, File Transfer Protocol(FTP), network file system (NFS), server message block (SMB), Simple Mail Transfer Protocol (SMTP), secure shell (SSH) and Network Time Protocol (NTP).
Configure FTP access on your system
CMD:
First install FTP packages in your system
Edit hosts.deny file for deny particular domain
Restart FTP service after change in configuration file
Add a ftp service in chkconfig
An RHCE is capable of:
Configuring static routes, packet filtering, and network address translation.
Setting kernel runtime parameters.
Configuring an Internet Small Computer System Interface (iSCSI) initiator.
Producing and delivering reports on system utilization.
Using shell scripting to automate system maintenance tasks.
Configuring system logging, including remote logging.
Configuring a system to provide networking services, including HTTP/HTTPS, File Transfer Protocol(FTP), network file system (NFS), server message block (SMB), Simple Mail Transfer Protocol (SMTP), secure shell (SSH) and Network Time Protocol (NTP).
Configure FTP access on your system
CMD:
First install FTP packages in your system
root@linuxstorages:~#yum install vsftpd* -y
Edit hosts.deny file for deny particular domain
root@linuxstorages:~#vim /etc/hosts.deny
ADD following line in this file
vsftpd: ALL EXCEPT *.linuxstoraages.com
:wq!
Restart FTP service after change in configuration file
root@linuxstorages:~#service vsftpd restart
Add a ftp service in chkconfig
root@linuxstorages:~#chkconfig vsftpd on
if yum command is not working then how to configure FTP access,please post other option to configure FTP without using YUM command....
ReplyDeleteYes
ReplyDelete