Displaying 2 results from an estimated 2 matches for "fixdialinserv".
Did you mean:
fixdialinserver
2010 Mar 19
0
How to disable selinux protection interfering with pppd? I tried audit2allow, but policy does not load. Is there an seboolean?
...n this system, it accepts dial-in connections, logs people
in over ssh/sftp.
I had selinux disabled on this system originally, but I recently
enabled it, and selinux
is blocking this pppd service.
"audit2allow -M" has generated the following policy based on AVC
denial messages:
module fixdialinserver 1.0;
require {
type pppd_t;
type shadow_t;
type chkpwd_exec_t;
class file { read execute };
class netlink_audit_socket create;
}
#============= pppd_t ==============
allow pppd_t chkpwd_exec_t:file execute;
allow pppd_t self:netlink_audit_socket create;
a...
2010 May 05
0
pppd does not work if SELinux is turned on.
...people
> in over ssh/sftp.
>
> I had selinux disabled on this system originally, but I recently
> enabled it, and selinux
> is blocking this pppd service.
>
> "audit2allow -M" has generated the following policy based on AVC
> denial messages:
>
>
> module fixdialinserver 1.0;
>
> require {
> ? ? ? ?type pppd_t;
> ? ? ? ?type shadow_t;
> ? ? ? ?type chkpwd_exec_t;
> ? ? ? ?class file { read execute };
> ? ? ? ?class netlink_audit_socket create;
> }
>
> #============= pppd_t ==============
> allow pppd_t chkpwd_exec_t:file execute;...