• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[gelöst]debian linux von lan auf wlan umstellen

mampfi

Hacker
Hab einen Notebook Fujitso Esprimo

Und bisher nen LAN-Router, der durch eine FritzBox WLAN 3170 ersetzt wurde (Neuer Telefon-DSL-Anbieter)

Jetzt möche ich beim Notebook auf WLAN umstellen.

Was muss ich machen?

/etc/network/interfaces.

allow-hotplug eth0
iface eth0 inet static
address 192.168.1.30
netmask 255.255.255.0
gateway 192.168.1.1
broadcast 192.168.1.255


Welche Ausgaben soll ich posten? lspci? ifconfig?
 
OP
M

mampfi

Hacker
Gebe zu, war auch in anderem Forum unterwegs, zwischen linux und linux gibts aber wohl keine Konkurrenz:

Geschichte funzt jetzt.

Erkenntnis poste ich natürlich:

interfaces:

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
##Lan
auto eth0
iface eth0 inet dhcp
test missing-cable
pre-up echo No link present.
pre-up false



##Wireless
auto wlan0
iface wlan0 inet static
address 192.168.1.30
netmask 255.255.255.0
gateway 192.168.1.1
wpa-driver wext
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

wpa_supplicant:

# allow frontend (e.g., wpa_cli) to be used by all users in 'wheel' group

##### wpa_supplicant.conf von debian_forum/catdog

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel
#
# home network; allow all valid ciphers
network={
ssid="Zahlhaas"
scan_ssid=1
key_mgmt=WPA-PSK
psk="xxxx"
}
 
Oben