
Linux PowerPC Server Software
Re: Linux PowerPC Server Software
sshd_config
Code: Select all
AllowUsers amigaone
Re: Linux PowerPC Server Software
anyof = orxeno74 wrote: Thu Jul 23, 2020 12:48 pm Postfix with Dovecot including Sieve Pigeonhole via lda protocol:
![]()
Code: Select all
if anyof (
header :contains "Subject" "SPAM",
header :contains "Subject" "VIRUS"
)
{
discard;
stop;
}
Code: Select all
if allof (
header :contains "Subject" "Application",
header :contains "Subject" "IT"
)
{
redirect "[email protected]";
}
Re: Linux PowerPC Server Software
The ssh-agent is a program you may use together with OpenSSH or similar ssh programs. The ssh-agent provides a secure way of storing the passphrase of the private key. With an active ssh-agent, you don’t need a password for the private key if you connect to an other AmigaOne with the public key authentication.
Re: Linux PowerPC Server Software
Passive mode: The FTP client opens the connection to the FTP server via the server port 21. The server tells the client the server port (1024 - 5000).xeno74 wrote: Wed Feb 12, 2020 4:04 pm openSUSE Tumbleweed PPC64 with iptables and Pure-FTPd in the NAT mode:
![]()
'-N': NAT mode. Force ACTIVE mode: The FTP client opens the connection to the FTP server via the server port 21 (FTPS: 990) and tells the server the port for data transfers. After that the server sends the client the files from port 20 (FTPS: 989) to this port.
Last edited by xeno74 on Thu Jul 30, 2020 11:06 am, edited 2 times in total.
Re: Linux PowerPC Server Software
Passive mode: The FTP client opens the connection to the FTP server via the server port 21. The server tells the client the server port (1024 - 5000).
Re: Linux PowerPC Server Software
For the passive FTP mode:
Code: Select all
iptables -t filter -I INPUT -p tcp --dport 1024: -j ACCEPT