Настроил FreeBSD как точку доступа.
ifconfig wi0 ssid my_net channel 11 media DS/11Mbps mediaopt hostap up stationname "FreeBSD AP"
Прописал на wi0 адрес
ifconfig wi0 10.173.10.1 netmask 255.255.255.240
Написал конфиг для dhcpd
server-identifier router.domain.ru;
option domain-name "domain.ru";
option domain-name-servers 192.168.1.1, 192.168.1.2;
option netbios-name-servers 10.173.10.1, router.domain.ru;
option netbios-node-type 8;
ddns-update-style none;
subnet 10.173.10.0 netmask 255.255.255.240 {
option routers 10.173.10.1;
option subnet-mask 255.255.255.240;
option broadcast-address 10.173.10.15;
range 10.173.10.2 10.173.10.14;
}
Пытаюсь запустить его и получаю облом
-bash-2.05b# dhcpd wi0
Internet Software Consortium DHCP Server V3.0.1rc12
Copyright 1995-2003 Internet Software Consortium.
All rights reserved.
For info, please visit http://www.isc.org/products/DHCP
Wrote 0 leases to leases file.
wi0: not found
If you did not get this software from ftp.isc.org, please
get the latest from ftp.isc.org and install that before
requesting help.
If you did get this software from ftp.isc.org and have not
yet read the README, please read it before requesting help.
If you intend to request help from the dhcp-server@isc.org
mailing list, please read the section on the README about
submitting bug reports and requests for help.
Please do not under any circumstances send requests for
help directly to the authors of this software - please
send them to the appropriate mailing list as described in
the README file.
exiting.
-bash-2.05b#
Почему он может писать что wi0: not found ?? Я в легком шоке, и гугль молчит =)