Hallo,
also, es geht hier um mein Netbook, da ich funktionierendes WLan habe und auch die IP per Dhcpcd holen lasse könnt Ihr euch sicher vorstellen das wenn kein Netzwerkkabel angestöpselt ist der Bootvorgang um einiges länger wird was ich nicht will weil ich Kabelgebunden sowieso nicht arbeite.
Das hab ich schon probiert
1. rc-update del net.eth0 default (logisch, damit es schonmal nicht gestartet wird)
2. /etc/conf.d/net geprüft und Zeile für Net.Eth0 auskommentiert (in der Hoffnung das er nicht versucht IP zu holen)
3. geprüft ob Knetworkmanager installiert ist (könnte ja sein das der ins Handwerk pfuscht)
Trotz allem versucht er die IP für ETH0 zu holen, woran kann das noch liegen? Da ich wiedermal nicht weis was Ihr braucht poste ich mal was ich denke ....
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/etc/conf.d/net
# This blank configuration will automatically use DHCP for any net.*
# scripts in /etc/init.d. To create a more complete configuration,
# please review /etc/conf.d/net.example and save your configuration
# in /etc/conf.d/net (this file :]!).
#----------------------------------------------
#---- Konfiguration fuer Lan-Schnittstelle ----
#----------------------------------------------
# config_eth0=( "dhcp" )
#-----------------------------------------------
#---- Konfiguration fuer WLan-Schnittstelle ----
#-----------------------------------------------
modules=( "wpa_supplicant" )
wpa_supplicant_wlan0="-Dwext"
iwconfig_wlan0="mode managed"
preferred_aps=( "ESSID1" "ESSID2" )
|
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=users
update_config=1
network={
ssid="WLAN-SpeedPort_W_700V"
psk="*******"
proto=WPA
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}
|
|
Quellcode
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/etc/dhcpcd.conf
# 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
|
Grüsse, Sven