Wegen kleinschreibung ist nur eine Empfehlung.
ich hatte eine Seite eines Windows Servers auf Linux zu übernehmen - ging über 1 Tag nur wegen Gross/Klein.
übrigens auf dem PC (ich nehm mal an ein Linux) gibts etwelche Tools die helfen Fehler oder Löcher zu finden. Und wenn ein Dienst mal offen ist (sollte ja - für was machen wir dann die Dienste) dann muss man eben einen Login mit Passwort dafür definieren.
nmap <ipAdresse> listet allle offenen Ports auf
zB sieht das so aus:
Starting nmap 3.50 (
http://www.insecure.org/nmap/ ) at 2004-10-17 15:56 CEST
Interesting ports on 193.246.xx.xx:
(The 1652 ports scanned but not shown below are in state: closed)¨
PORT STATE SERVICE
21/tcp open ftp
22/tcp open ssh
80/tcp open http
111/tcp open rpcbind
443/tcp open https
3306/tcp open mysql
10000/tcp open snet-sensor-mgmt
Nmap run completed -- 1 IP address (1 host up) scanned in 1.283 seconds
----------
dann gibt es noch
netstat -tuanp
das zeigt dann die Services die "lauschen: zB so:
Aktive Internetverbindungen (Server und stehende Verbindungen)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:32768 0.0.0.0:* LISTEN 2002/rpc.statd
tcp 0 0 127.0.0.1:32769 0.0.0.0:* LISTEN 2174/xinetd
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 2601/mysqld
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1983/portmap
tcp 0 0 0.0.0.0:10000 0.0.0.0:* LISTEN 2273/perl
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 2337/proftpd: (acce
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 2193/sendmail: acce
tcp 0 0 :::80 :::* LISTEN 2306/httpd
tcp 0 0 :::22 :::* LISTEN 2120/sshd
tcp 0 0 :::443 :::* LISTEN 2306/httpd
tcp 0 20 ::ffff:193.246.200.1:22 ::ffff:193.246.20:19100 VERBUNDEN 2810/1
tcp 0 0 ::ffff:193.246.200.1:22 ::ffff:193.246.20:19101 VERBUNDEN 2881/sshd: root@not
udp 0 0 0.0.0.0:32768 0.0.0.0:* 2002/rpc.statd
udp 0 0 0.0.0.0:906 0.0.0.0:* 2002/rpc.statd
udp 0 0 0.0.0.0:10000 0.0.0.0:* 2273/perl
udp 0 0 0.0.0.0:111 0.0.0.0:* 1983/portmap