Merci pour ta réponse.
Je m'y suis remis ce matin et voilà ce que je trouve dans le everything.log :
-correspondant au démarrage du service network :
Code : Tout sélectionner
Jul 11 07:18:32 localhost dhcpcd[376]: version 5.5.6 starting
Jul 11 07:18:32 localhost dhcpcd[376]: eth0: waiting for carrier
Jul 11 07:18:36 localhost dhcpcd[376]: eth0: carrier acquired
Jul 11 07:18:36 localhost kernel: [ 16.954205] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
Jul 11 07:18:36 localhost dhcpcd[376]: eth0: broadcasting for a lease
Jul 11 07:19:02 localhost dhcpcd[376]: timed out
-lorsque que j'ai lancé dhcpcd eth0 :
Code : Tout sélectionner
Jul 11 07:31:00 localhost dhcpcd[571]: version 5.5.6 starting
Jul 11 07:31:00 localhost dhcpcd[571]: eth0: broadcasting for a lease
Jul 11 07:31:00 localhost dhcpcd[571]: eth0: offered 172.20.1.136 from 172.20.1.25
Jul 11 07:31:00 localhost dhcpcd[571]: eth0: acknowledged 172.20.1.136 from 172.20.1.25
Jul 11 07:31:00 localhost dhcpcd[571]: eth0: checking for 172.20.1.136
Jul 11 07:31:05 localhost smbd[582]: [2012/07/11 07:31:05.529866, 0] printing/print_cups.c:110(cups_connect)
Jul 11 07:31:05 localhost smbd[582]: Unable to connect to CUPS server /var/run/cups/cups.sock:631 - Aucun fichier ou dossier de ce type
Jul 11 07:31:05 localhost smbd[471]: [2012/07/11 07:31:05.530085, 0] printing/print_cups.c:487(cups_async_callback)
Jul 11 07:31:05 localhost smbd[471]: failed to retrieve printer list: NT_STATUS_UNSUCCESSFUL
Jul 11 07:31:06 localhost dhcpcd[571]: eth0: leased 172.20.1.136 for 691200 seconds
Jul 11 07:31:06 localhost dhcpcd[571]: forked to background, child pid 598
Lorsque je lance la commande manuellement, j'ai une réponse immédiate.
Pour info, j'ai réinstallé ifconfig. J'ai aussi essayé de désactivé ipv6 avec les conseils du wiki (français) mais lorsque je lance ifconfig, la carte a toujours une adresse ipv6.
Le serveur dhcp est un serveur windows, probablement le même qui gère le domaine windows. Peut-être que celà induit une configuration spéciale ?
Voici quelques fichiers de confs :
/etc/rc.conf :
Code : Tout sélectionner
#
# /etc/rc.conf - Main Configuration for Arch Linux
#
# See 'man 5 rc.conf' for more details
#
# LOCALIZATION
# ------------
HARDWARECLOCK="UTC"
TIMEZONE="Europe/Paris"
KEYMAP="fr-pc"
CONSOLEFONT="lat9w-16"
CONSOLEMAP=
LOCALE="fr_FR.UTF-8"
DAEMON_LOCALE="yes"
USECOLOR="yes"
# HARDWARE
# --------
MODULES=()
USEDMRAID="no"
USEBTRFS="no"
USELVM="no"
# NETWORKING
# ----------
HOSTNAME="infogene-test"
interface=eth0
address=
NETWORK_PERSIST="no"
# DAEMONS
# -------
#
DAEMONS=(syslog-ng hwclock dbus network crond @sshd @samba @acpid)
/etc/dhcpcd.conf
Code : Tout sélectionner
# A sample configuration for dhcpcd.
# See dhcpcd.conf(5) for details.
# Inform the DHCP server of our hostname for DDNS.
#hostname
# To share the DHCP lease across OSX and Windows a ClientID is needed.
# Enabling this may get a different lease than the kernel DHCP client.
# Some upstream DHCP servers may also require a ClientID, such as FRITZ!Box.
#clientid
# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
# Most distributions have NTP support.
option ntp_servers
# Respect the network MTU.
option interface_mtu
# A ServerID is required by RFC2131.
require dhcp_server_identifier
# A hook script is provided to lookup the hostname if not set by the DHCP
# server, but it should not be run by default.
nohook lookup-hostname
noipv4ll
#désactivation ipv6
noipv6rs
(j'ai essayé de commenté la ligne hostname comme trouvé sur un forum, mais ça n'a en rien changé quoi que ce soit.)
/etc/hosts
Code : Tout sélectionner
# /etc/hosts: static lookup table for host names
#
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost infogene-test
::1 localhost.localdomain localhost
# End of file