Page 7 of 38

Re: Linux PowerPC Server Software

Posted: Mon May 25, 2020 5:33 am
by xeno74
xeno74 wrote: Sat May 23, 2020 2:52 pm BIND8 and BIND9 with TSIG:

Image
The NS-RR (Name Server Resource Record) is wrong. Nevertheless it works. Strange.

Correct record:

Code: Select all

homelinux.net.  1800  IN  NS  dns01.homelinux.net.

Re: Linux PowerPC Server Software

Posted: Mon May 25, 2020 10:00 am
by xeno74
Zone transfers to old BIND servers: transfer-format one-answer;

/etc/bind/named.conf.options

Code: Select all

options {
        directory "/var/cache/bind";
        dnssec-validation auto;
        transfer-format one-answer;
        auth-nxdomain no;    # conform to RFC1035
        listen-on-v6 { any; };
        listen-on port 53 { 192.168.178.60; };
        allow-query { any; };
};

Re: Linux PowerPC Server Software

Posted: Tue May 26, 2020 2:05 pm
by xeno74
BIND with TSIG:

Image

Image

Re: Linux PowerPC Server Software

Posted: Wed May 27, 2020 12:44 pm
by xeno74
Apache with configuration:

Image

Re: Linux PowerPC Server Software

Posted: Thu May 28, 2020 12:14 pm
by xeno74
Apache part2:

Image

Re: Linux PowerPC Server Software

Posted: Thu May 28, 2020 9:22 pm
by xeno74
xeno74 wrote: Tue May 26, 2020 2:05 pm BIND with TSIG:
Image
Oh dear, the A record is wrong. OK, the zone transfer with TSIG works though without any problems.

Re: Linux PowerPC Server Software

Posted: Fri May 29, 2020 2:43 am
by xeno74
BIND and Apache:

Image

Re: Linux PowerPC Server Software

Posted: Mon Jun 01, 2020 5:58 am
by xeno74
Netcat:

Webserver with Netcat:

Code: Select all

while true; do { echo -e 'HTTP/1.1 200 OK\r\n'; \

Code: Select all

cat file name; } | nc -l -p 8080; done
Getting a website with Netcat:

Code: Select all

 printf "GET / HTTP/1.0\r\n\r\n" | nc www.google.com 80

Re: Linux PowerPC Server Software

Posted: Tue Jun 02, 2020 3:13 pm
by xeno74
Redirects with Netcat and Apache:

Image

Re: Linux PowerPC Server Software

Posted: Mon Jun 08, 2020 3:16 pm
by xeno74
Apache with mod_ssl (HTTPS):

Image