meine netzwerkkarte eth1 hat keine ip....
hier die ifconfig eth1
Code: Alles auswählen
python:~# ifconfig eth1
eth1 Protokoll:Ethernet Hardware Adresse 00:04:75:DF:53:E2
inet6 Adresse: fe80::204:75ff:fedf:53e2/64 Gültigkeitsbereich:Verbindung
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:28032 errors:0 dropped:0 overruns:0 frame:0
TX packets:30714 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:4 Sendewarteschlangenlänge:1000
RX bytes:3604025 (3.4 MiB) TX bytes:3913356 (3.7 MiB)
Interrupt:217 Basisadresse:0xb800
python:~#
Code: Alles auswählen
python:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.251
netmask 255.255.255.0
auto eth1
iface eth1 inet static
adress 192.168.1.250
netmask 255.255.255.0
auto dsl-provider
iface dsl-provider inet ppp
provider dsl-provider
# please do not modify the following line
pre-up /sbin/ifconfig eth1 up # line maintained by pppoeconf
python:~#
Danke im Vorraus
Marcob