Спасибо за помощь, я его таки запустил!
sudo aptitude install isc-dhcp-server
sudo gedit /etc/default/isc-dhcp-server
Прописал: INTERFACES="eth0"
sudo gedit /etc/dhcp/dhcpd.conf
server-name DERPian;
non-authoritative;
ddns-update-style interim;
ignore client-updates;
subnet 192.168.0.0 netmask 255.255.255.0 {
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option domain-name "localdomain.org";
range 192.168.0.4 192.168.0.10;
option domain-name-servers 192.168.0.1, 8.8.8.8;
option ip-forwarding off;
default-lease-time 43200;
max-lease-time 86400;
host sghdeb {
hardware ethernet 00:13:60:86:04:8b;
fixed-address 192.168.0.3;
option subnet-mask 255.255.255.0;
option host-name "sghdeb";
}
}
sudo gedit /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
allow-hotplug eth1
iface eth1 inet dhcp
allow-hotplug eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
Перезагрузка
sudo service isc-dhcp-server status
alex@DERPian:~$ sudo service isc-dhcp-server status
Status of ISC DHCP server: dhcpd is running.
Как то все это "на ощупь получилось".