Re: Linux PowerPC Server Software
Posted: Thu Oct 14, 2021 11:19 am
Support Forum
https://forum.hyperion-entertainment.com/
https://forum.hyperion-entertainment.com/viewtopic.php?t=4390
Code: Select all
# Default rc.local for void; add your custom commands here.
#
# This is run by runit in stage 2 before the services are executed
# (see /etc/runit/2).
iptables -t filter -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -t filter -A OUTPUT -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
iptables -t filter -A INPUT -i lo -j ACCEPT
iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -P FORWARD DROP
Code: Select all
docker run --name freeipa-server2 --sysctl net.ipv6.conf.all.disable_ipv6=0 --hostname freeipa-server2.a-eon.tld --dns=192.168.178.21 -p 53:53/udp -p 53:53 -p 80:80 -p 443:443 -p 389:389 -p 636:636 -p 88:88 -p 464:464 -p 88:88/udp -p 464:464/udp -p 123:123/udp -v /Users/christian/freeipa-server-container-data:/data:Z freeipa/freeipa-server:centos-8
Code: Select all
ipa-client-install --no-ntp --no-nis --domain=a-eon.tld --realm=A-EON.TLD
Code: Select all
ipa-replica-install --setup-ca --setup-dns --no-forwarders
Code: Select all
DEVICE=ens33
BOOTPROTO=none
ONBOOT=yes
PREFIX=24
IPADDR=192.168.178.102
GATEWAY=192.168.178.1
DNS1=192.168.178.21
DNS2=192.168.178.1
Code: Select all
net.ipv6.conf.ens33.disable_ipv6 = 1