[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

RE: Netzwerk startet nicht mehr automatisch



Hi,

eth0 hab ich zwar, aber wird nicht benutzt. Bei den anderen Konfigurationen hab ich die eth0 auch nicht in Betrieb.

Heiko

-----Original Message-----
From: Christian Knorr [mailto:chris@knorrc.de] 
Sent: Thursday, January 17, 2008 9:58 AM
To: debian-user-german@lists.debian.org
Subject: Re: Netzwerk startet nicht mehr automatisch

Am Donnerstag 17 Januar 2008 07:33:01 schrieb Heiko.Schack@ggrz-hagen.nrw.de:
> Hi,
>
> auf vielfachen Wunsch doch noch eine Config von mir. Wie gesagt, auf den
> anderen Servern (alles Etch) läuft es.
>
>
> # The loopback network interface
> auto lo
> iface lo inet loopback
>
> # The primary network interface
> allow-hotplug eth2
...
> allow-hotplug eth3
...
> allow-hotplug eth1
...

Wo ist eth0? Das ist normaler Weise die erste NIC.
Zum Vergleich, meine (da gibt's aber auch kein eth0, wegen XEN):

dom0:~# cat /etc/network/interfaces

auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth2
iface eth2 inet static
     up ifconfig eth2 promisc up

# intern is the interface to the internal lan
auto intern
iface intern inet static
        address 192.168.188.10
        netmask 255.255.255.0
        network 192.168.188.0
        broadcast 192.168.188.255
        gateway 192.168.188.1
        # dns-* options are implemented by the resolvconf package, if 
installed
        dns-nameservers 192.168.188.1
        bridge_ports eth2
        bridge_fd 1
        bridge_stp off
        bridge_hello 1


# eth1 -> extern
allow-hotplug eth1
iface eth1 inet manual
  up ifconfig eth1 0.0.0.0 promisc up

auto extern
iface extern inet manual
  bridge_ports eth1
  bridge_fd 1
  bridge_stp off
  bridge_hello 1


# eth3 -> wlan
allow-hotplug eth3
iface eth3 inet manual
  up ifconfig eth3 0.0.0.0 promisc up

auto wlan
iface wlan inet manual
  bridge_ports eth3
  bridge_fd 1
  bridge_stp off
  bridge_hello 1


# dmz
auto dmz
iface dmz inet manual
  pre-up brctl addbr dmz
  up ifconfig dmz 0.0.0.0 promisc up
  bridge_fd 1
  bridge_stp off
  bridge_hello 1
  down ifconfig dmz down
  post-down brctl delbr dmz

Hier eine Config einer domU, diesmal mit eth0:

# cat /etc/network/interfaces
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
        address 192.168.188.30
        netmask 255.255.255.0
        network 192.168.188.0
        gateway 192.168.188.1

> Lg
>
> Heiko
Chris......


Reply to: