Mam Debiana który jest podłączony do lokalnej sieci która wygląda mniej więcej tak:
Internet
|
|
router z dhcp i dns
|
|
switch
komp1 komp2 debian
Chciałem podłączyć komputer (by miał dostęp do internetu) do Debiana za pomocą drugiej sieciówki (eth1) ze skrosowanym kablem, na którym by było dhcp. Skorzystałem z tego poradnika:
http://night.jogger.pl/2007/10/14/mala- ... tem-linux/
Oczywiście skonfigurowany wg. moich potrzeb.
dhcp.conf wygląda tak:
Kod: Zaznacz cały
subnet 10.0.0.0 netmask 255.255.255.0
{
range 10.0.0.3 10.0.0.254;
option domain-name-servers 192.168.1.1;
option routers 10.0.0.1;
option subnet-mask 255.255.255.0;
option broadcast-address 10.0.0.255;
host lap
{
hardware ethernet (tutaj mój mac);
fixed-address 10.0.1.2;
}
}
mam:
Kod: Zaznacz cały
INTERFACES="eth1"
Kod: Zaznacz cały
# 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
allow-hotplug eth0
iface eth0 inet dhcp
allow-hotplug eth1
iface eth1 inet static
address 10.0.0.1
mask 255.255.255.0
W syslogu mam coś takiego:
Kod: Zaznacz cały
Apr 12 18:53:33 lnx dhcpd: No subnet declaration for eth1 (0.0.0.0).
Apr 12 18:53:33 lnx dhcpd: ** Ignoring requests on eth1. If this is not what
Apr 12 18:53:33 lnx dhcpd: you want, please write a subnet declaration
Apr 12 18:53:33 lnx dhcpd: in your dhcpd.conf file for the network segment
Apr 12 18:53:33 lnx dhcpd: to which interface eth1 is attached. **
Apr 12 18:53:33 lnx dhcpd:
Apr 12 18:53:33 lnx dhcpd:
Apr 12 18:53:33 lnx dhcpd: Not configured to listen on any interfaces!
Kod: Zaznacz cały
auto lo
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet dhcp
allow-hotplug eth1
iface eth1 inet static
address 10.0.0.1
mask 255.255.255.0
Byłbym wdzięczny za jakąkolwiek pomoc.
Pozdrawiam i z góry dziękuje za pomoc :->