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
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
These are the basics of selinux .Thank you all
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 examplesetsebool 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