SELINUX BASICS

Here i am going to explain the basic configuration of selinux.Through theses steps you can easily administrate
your selinux policies. Here is the simple step of enabling and disabling policies of different application.

In the above video i am enabling the anonymous write for ftp .The first step is to get the Boolean . If you want
to enable something about nfs then you have to type the below command.
 getsebool -a |grep nfs    
for ftp
getsebool -a |grep ftp
 After that you can set the value for Boolean using setsebool command  .For example
setsebool allow_ftpd_anon_write on

The above command will enable anonymous Ftp write through selinux,but it will be a temporary and it will go
back to it initial stage after system restart .For permanent changes ucan use -p along with setsebool
setsebool -p allow_ftpd_anon_write on

These are the basics of selinux  .Thank you all

Related Posts:

  • Configuring ISCSI initiator in Linux Internet Small Computer System Interface is a Storage Area Network (SAN) protocol,It is an Internet Protocol (IP)-based storage networking standard for linking data storage facilities. By carrying SCSI commands over IP ne… Read More
  • TELNET SERVER CONFIGURATION IN CENTOS/RHELNow we are going to Install Telnet server on our Centos 6.2 Server.The following videos will help you in configuring the telnet server Thanks for Watching the video… Read More
  • ENABLE MINIMIZE AND MAXIMIZE IN FEDORA 17Step 1. install gnome-tweek-tool using yum yum install gnome-tweek-tool Step 2. Run gnome tweek tool Step 3. select shell tab Step 4. change the value " arrangement of buttons ontitle bar" from close only to all … Read More
  • ENABLE ROOT LOGIN VIA TELNET in centos/rhelThis video shows how to login as root directly via telnet.For we have to edit the configuration file /etc/securetty and add the entry for terminal which we want to login as root.by defualt TELNET,RSH etc. will not allow root … Read More
  • Root Password Recovery In LinuxSome time will all forget something ,its natural .Here i am going to demonstrate how to reset the  root password in a Linux system with help of some screenshot .This screenshot shows how to … Read More