Je joue juste avec Apache et je l'ai fait fonctionner, c'est-à-dire que je peux me connecter au serveur en naviguant vers http://127.0.0.1
et que http://192.168.1.5
je n'exécute pas IPv6
Pourtant, c'est le résultat de 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]
Je m'attendais à le voir écouter sur un TCP régulier, ce qu'il fait clairement!?
Éditer:
$ 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: Pourquoi le vote négatif ? Qu'est-ce qui me manque, quelqu'un peut-il élaborer?
netstat -p
?