Linux PowerPC Server Software

AmigaOne X1000 platform specific issues related to Linux only.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post by xeno74 »

DHCP server:

Image

Image
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post by xeno74 »

xeno74 wrote: Thu May 28, 2020 11:14 am 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.
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post 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.
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post 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
Last edited by xeno74 on Wed Oct 13, 2021 1:58 pm, edited 1 time in total.
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post by xeno74 »

Samba with the hosts allow option:

Image
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post by xeno74 »

Dovecot IMAP and POP3 server on a X5000/40:

Image
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post by xeno74 »

Dovecot IMAP and POP3 server with TLS:

Image

Image
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post by xeno74 »

Dovecot with Postfix:

Image

Access to Dovecot and Postfix with SimpleMail:

Image
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post by xeno74 »

Simple Authentication and Security Layer (SASL) for the SMTP authentication with Postfix:

Image
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
User avatar
xeno74
Posts: 9349
Joined: Fri Mar 23, 2012 7:58 am

Re: Linux PowerPC Server Software

Post by xeno74 »

Apache mod_authz_core:

Image
http://www.amigalinux.org
http://www.supertuxkart-amiga.de

Running Linux on AmigaONEs can require some tinkering.
Post Reply