Page 8 of 37

Re: Linux PowerPC Server Software

Posted: Fri Jun 19, 2020 1:40 pm
by xeno74
DHCP server:

Image

Image

Re: Linux PowerPC Server Software

Posted: Tue Jun 23, 2020 2:59 pm
by xeno74
xeno74 wrote: Thu May 28, 2020 12:14 pm Apache part2:

Image
Order allow,deny tells your web server that the Allow rules are processed before the Deny rules. If the client does not match the Allow rule or it does match the Deny rule, then the client will be denied access.

Order deny, allow means that the deny rules are processed before the allow rules. If the client does not match the deny rule or it does match the allow rule, then it will be granted access.

Examples:

Code: Select all

<Directory "/www">
Order Allow,Deny
Deny from all
Allow from all
</Directory>
In this case, your client would be denied access. Why? Because Apache first evaluates the Allow directive rules and then the Deny directive rules, so Allow from all would be executed first and then the Deny from all would take place.

Code: Select all

<Directory "/www">
Order Deny,Allow
Deny from all
Allow from all
</Directory>
The configuration above would result in your client being allowed access because the Deny from all rule would be processed first and the Allow from all rule would be processed second. Now, let's get more specific. The following example could be used for specialized and restricted servers, for example some kind of intranet site.

Code: Select all

<Directory "/www">
Order Deny,Allow
Deny from all
Allow from example.com
</Directory>
This is a bit expanded application of the Order directive. This configuration would restrict everyone from accessing the /www directory but hosts in the example.com domain. Abc.example.com would be allowed access, www.myexample.com would be restricted. Now, let's say you want to do the opposite. You want to restrict someone from some specific domain (perhaps someone who is attacking your web site) and allow everyone else.

Code: Select all

 <Directory "/www">
Order Allow,Deny
Allow from all
Deny from www.myexample.com
</Directory>
The configuration provided above would give access to everyone and restrict all hosts from the www.myexample.com domain.

Re: Linux PowerPC Server Software

Posted: Fri Jun 26, 2020 5:22 pm
by xeno74
DHCP server part2:

Image

Image

For dhcpd with the "deny unknown-clients" option in "/etc/dhcp/dhcpd.conf" it isn't important the hostname but the hardware ethernet address is important.

Re: Linux PowerPC Server Software

Posted: Sat Jul 04, 2020 3:14 pm
by xeno74
Hi All,

I have compiled the RC3 of kernel 5.8 with NFS v4 support for testing.

Download: linux-image-5.8-rc3-X1000_X5000_nfs4.tar.gz

Screenshot of a NFSv4 client on a X1000 connected to a NFS v4 server on a X5000/40 administered from a X5000/20:

Image

Cheers,
Christian

Re: Linux PowerPC Server Software

Posted: Sun Jul 05, 2020 12:21 pm
by xeno74
Samba with the hosts allow option:

Image

Re: Linux PowerPC Server Software

Posted: Fri Jul 10, 2020 12:12 pm
by xeno74
Dovecot IMAP and POP3 server on a X5000/40:

Image

Re: Linux PowerPC Server Software

Posted: Sat Jul 11, 2020 7:17 pm
by xeno74
Dovecot IMAP and POP3 server with TLS:

Image

Image

Re: Linux PowerPC Server Software

Posted: Tue Jul 14, 2020 4:13 pm
by xeno74
Dovecot with Postfix:

Image

Access to Dovecot and Postfix with SimpleMail:

Image

Re: Linux PowerPC Server Software

Posted: Thu Jul 16, 2020 12:54 pm
by xeno74
Simple Authentication and Security Layer (SASL) for the SMTP authentication with Postfix:

Image

Re: Linux PowerPC Server Software

Posted: Fri Jul 17, 2020 7:46 pm
by xeno74
Apache mod_authz_core:

Image