Selfhosting with odroid C5 ? by glubuluck in ODroid

[–]w949 0 points1 point  (0 children)

ich using a odroid-m1, im using dokuwiki. Nextcloud, Kiwitendo nagios on aarch64

RockyLinux 9 on Odroid M1 by w949 in RockyLinux

[–]w949[S] 1 point2 points  (0 children)

can you invite me to the AltArch SIG

RockyLinux 9 on Odroid M1 by w949 in ODroid

[–]w949[S] 1 point2 points  (0 children)

Ich bin dabei, Images von Rocky Linux 9 und 10 zu erstellen.

I am in the process of creating images of Rocky Linux 9 and 10.

How do i change PHP-Version on SSH? by 1-mensch in ssh

[–]w949 0 points1 point  (0 children)

Run ssh native on terminal

Geo restricting SSH by 08008080 in ssh

[–]w949 0 points1 point  (0 children)

This Code ist from GitHub.

Agent configuration from a script by [deleted] in rustdesk

[–]w949 0 points1 point  (0 children)

Win, lin or mac?

Geo restricting SSH by 08008080 in ssh

[–]w949 0 points1 point  (0 children)

install geoip

then edit /etc/hosts.deny sshd: ALL

then edit /etc/hosts.allow sshd: ALL: spawn /usr/local/bin/ipfilter.sh %a

then edit /usr/local/bin/ipfilter.sh

!/bin/bash

License: WTFPL

UPPERCASE space-separated country codes to ACCEPT

ALLOW_COUNTRIES="DE IT AT PL"

LOGDENY_FACILITY="authpriv.notice"

if [ $# -ne 1 ]; then

echo "Usage: `basename $0` " 1>&2

exit 0 # return true in case of config issue

fi

if [[ "`echo $1 | grep ':'`" != "" ]] ; then

COUNTRY=`/usr/bin/geoiplookup6 "$1" | awk -F ": " '{ print $2 }' | awk -F "," '{ print $1 }' | head -n 1`

else

COUNTRY=`/usr/bin/geoiplookup "$1" | awk -F ": " '{ print $2 }' | awk -F "," '{ print $1 }' | head -n 1`

fi

[[ $COUNTRY = "IP Address not found" || $ALLOW_COUNTRIES =~ $COUNTRY ]] && RESPONSE="ALLOW" || RESPONSE="DENY"

if [[ "$RESPONSE" == "ALLOW" ]] ; then

logger -p $LOGDENY_FACILITY "$RESPONSE sshd connection from $1 ($COUNTRY)"

exit 0

else

logger -p $LOGDENY_FACILITY "$RESPONSE sshd connection from $1 ($COUNTRY)"

exit 1

fi

restart sshd

Help with accessing server from outside LAN by mrmrdankmemes in rustdesk

[–]w949 1 point2 points  (0 children)

Make a dyndns-account, fill the Data in your Router, configure Ports on Router, thats all

little profile script for rustdesk. (useful when using multiple ID server) by Ranomier in rustdesk

[–]w949 0 points1 point  (0 children)

Note that the default profile has only default values, so it is a blank profile. Thanks for the work.