Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!
Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.
witam
moj plik konfiguracyjny wyglada prawie tak jak oryginal (pozmieniane niepotrzebne rzeczy zachashowane)
dhcp wywala mi takie bledy w syslogu:
Apr 27 12:19:43 localhost dhcpd: /etc/dhcpd.conf line 3: no option named name-servers
Apr 27 12:19:43 localhost dhcpd: option name-servers 217.
Apr 27 12:19:43 localhost dhcpd: ^
Apr 27 12:19:43 localhost dhcpd: /etc/dhcpd.conf line 4: no option named domain
Apr 27 12:19:43 localhost dhcpd: option domain name
Apr 27 12:19:43 localhost dhcpd: ^
Apr 27 12:19:43 localhost dhcpd: Configuration file errors encountered -- exiting
Apr 27 12:19:43 localhost dhcpd: exiting.
czy wiecie co jest nie tak ?
Offline
Pokaż ten config! Masz błędy składni w linii 3 i 4.
Offline
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.20 192.168.1.40;
option name-servers 217.30.129.149, 217.30.137.200;
option domain name "nowiny.net";
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
max-lease-time 44000;
default-lease-time 43200;
}
host Ukasz
{
hardware ethernet 00:01:29:FD:46:0B;
fixed-address 192.168.1.2;
}
host Adam
{
hardware ethernet 00:30:4F:1B:6C:24;
fixed-address 192.168.1.3;
}
host Chron
{
hardware ethernet 00:14:38:11:BE:B4;
fixed-address 192.168.1.4;
}
host Poter
{
hardware ethernet 00:30:4F:25:80:73;
fixed-address 192.168.1.5;
}
host Michal
{
hardware ethernet 00:00:39:36:BD:82;
fixed-address 192.168.1.6;
}
host Lukasz
{
hardware ethernet 00:00:39:39:40:F0;
fixed-address 192.168.1.7;
}
host Mat
{
hardware ethernet 00:50:8D:7D:4F:76;
fixed-address 192.168.1.8;
}
host Wojtek
{
hardware ethernet 00:13:D3:3B:8D:69;
fixed-address 192.168.1.9;
}
Offline
3 linie zmień na:
option domain-name-servers 2...
a 4 linie:
option domain-name "...
Offline