Ich spiele nur mit Apache und habe es zum Laufen gebracht , das heißt, ich kann eine Verbindung zum Server herstellen, indem ich zu IPv6 navigiere http://127.0.0.1
und http://192.168.1.5
es NICHT ausführe
Dies ist jedoch das Ergebnis von netstat
$ sudo service apache2 status
* apache2 is running
$ netstat -an | grep :80
tcp6 0 0 :::80 :::* LISTEN
$ wget 127.0.0.1
--2014-06-26 01:32:15-- http://127.0.0.1/
Connecting to 127.0.0.1:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 11510 (11K) [text/html]
Saving to: ‘index.html’
100%[=====================================================================================================>] 11,510 --.-K/s in 0s
2014-06-26 01:32:15 (161 MB/s) - ‘index.html’ saved [11510/11510]
Ich hatte erwartet, dass es auf einem normalen TCP zuhört, was es eindeutig tut!?
Bearbeiten:
$ netstat -a | grep LISTEN
tcp 0 0 localhost:ipp *:* LISTEN
tcp 0 0 localhost:mysql *:* LISTEN
tcp6 0 0 ip6-localhost:ipp [::]:* LISTEN
tcp6 0 0 [::]:https [::]:* LISTEN
tcp6 0 0 [::]:http [::]:* LISTEN
Edit2: Warum die Abwahl? Was fehlt mir kann jemand ausarbeiten?
netstat -p
?