heute habe ich einen weiteren Server bekommen und habe mich mal direkt an die Installation gemacht. Da der Server ein verschlüsseltes System haben soll musste ich die Installation mittels debootstrap vornehmen. Also ab in den Rescue Modus und los gehts.
Hier mal die Installation https://nopaste.linux-dev.org/?1171925
Nach der Installation und dem Reboot von der Festplatte haben wir schonmal einen Ping.
Code: Alles auswählen
dmant@raspberry:~ $ ping -c 4 -w 4 XXX.XXX.101.56
PING XXX.XXX.101.56 (XXX.XXX.101.56) 56(84) bytes of data.
64 bytes from XXX.XXX.101.56: icmp_seq=1 ttl=53 time=21.6 ms
64 bytes from XXX.XXX.101.56: icmp_seq=2 ttl=53 time=21.7 ms
64 bytes from XXX.XXX.101.56: icmp_seq=3 ttl=53 time=22.2 ms
64 bytes from XXX.XXX.101.56: icmp_seq=4 ttl=53 time=21.4 ms
--- XXX.XXX.101.56 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3004ms
rtt min/avg/max/mdev = 21.445/21.778/22.257/0.330 ms
Code: Alles auswählen
dmant@raspberry:~ $ nmap XXX.XXX.101.56
Starting Nmap 7.40 ( https://nmap.org ) at 2018-01-11 11:49 UTC
Nmap scan report for ns3108622.ip-XXX-XXX-101.eu (XXX.XXX.101.56)
Host is up (0.022s latency).
Not shown: 998 closed ports
PORT STATE SERVICE
22/tcp open ssh
445/tcp filtered microsoft-ds
Nmap done: 1 IP address (1 host up) scanned in 3.52 seconds
Code: Alles auswählen
dmant@raspberry:~ $ ssh -i .ssh/id_rsa root@XXX.XXX.101.56
The authenticity of host 'XXX.XXX.101.56 (XXX.XXX.101.56)' can't be established.
RSA key fingerprint is SHA256:30hKQH3PuQN0Die7M6LQsHjbxxqvMo6XXXXXXXXXXXX.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'XXX.XXX.101.56' (RSA) to the list of known hosts.
BusyBox v1.22.1 (Debian 1:1.22.0-9+deb8u1) built-in shell (ash)
Enter 'help' for a list of built-in commands.
~ #
Code: Alles auswählen
/lib/cryptsetup/askpass "passphrase: " > /lib/cryptsetup/passfifo
Code: Alles auswählen
dmant@raspberry:~ $ ping -c 4 -w 4 XXX.XXX.101.56
PING XXX.XXX.101.56 (XXX.XXX.101.56) 56(84) bytes of data.
64 bytes from XXX.XXX.101.56: icmp_seq=1 ttl=53 time=21.7 ms
64 bytes from XXX.XXX.101.56: icmp_seq=2 ttl=53 time=21.5 ms
64 bytes from XXX.XXX.101.56: icmp_seq=3 ttl=53 time=21.7 ms
64 bytes from XXX.XXX.101.56: icmp_seq=4 ttl=53 time=21.5 ms
--- XXX.XXX.101.56 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3004ms
rtt min/avg/max/mdev = 21.523/21.625/21.718/0.171 ms
Code: Alles auswählen
dmant@raspberry:~ $ nmap XXX.XXX.101.56
Starting Nmap 7.40 ( https://nmap.org ) at 2018-01-11 11:56 UTC
Nmap scan report for ns3108622.ip-XXX-XXX-101.eu (XXX.XXX.101.56)
Host is up (0.022s latency).
Not shown: 999 closed ports
PORT STATE SERVICE
445/tcp filtered microsoft-ds
Nmap done: 1 IP address (1 host up) scanned in 3.50 seconds
Vielleicht kann mir jemand von euch weiter helfen.