亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

Chinaunix

標(biāo)題: FreeBSD 下的DHCP.... [打印本頁]

作者: Intranet    時間: 2009-08-07 11:57
標(biāo)題: FreeBSD 下的DHCP....

#./configure
#make
#make install
...

Aug  6 17:48:07  dhcpd: No subnet declaration for start (no IPv4 addresses).
Aug  6 17:48:07  dhcpd: ** Ignoring requests on start.  If this is not what
Aug  6 17:48:07  dhcpd:    you want, please write a subnet declaration
Aug  6 17:48:07  dhcpd:    in your dhcpd.conf file for the network segment
Aug  6 17:48:07  dhcpd:    to which interface start is attached. **
Aug  6 17:48:07  dhcpd:
Aug  6 17:48:07  dhcpd: Not configured to listen on any interfaces!

原因:啟動服務(wù)需指定監(jiān)聽網(wǎng)卡,如下:
dhcpd xl0

開機自動啟動dhcpd服務(wù):

/usr/local/sbin/dhcpd xl0  加入到/etc/rc.local的最后.

文檔:
/etc/dhcpd.conf
/var/db/dhcp/dhcpd.leases

# dhcpd.conf
option domain-name "panabit.szx.hecny.com";
option domain-name-servers 192.168.1.7,202.96.134.133;
option routers 192.168.1.3;
default-lease-time 600;
max-lease-time 7200;
log-facility local7;
subnet 192.168.1.0 netmask 255.255.255.0 {
  range 192.168.1.100 192.168.1.250;option domain-name-servers 192.168.1.7,202.96.134.133;
}
host mis1 {hardware ethernet 00:0E:1F:51:CC:90;fixed-address 192.168.1.18;
           option domain-name-servers 192.168.1.7,202.96.134.133;

本文來自ChinaUnix博客,如果查看原文請點:http://blog.chinaunix.net/u/30/showart_2020564.html
作者: Intranet    時間: 2009-08-08 17:26
這么神奇。。。。
在blog里發(fā)的東西會自動轉(zhuǎn)發(fā)過來。。。






歡迎光臨 Chinaunix (http://72891.cn/) Powered by Discuz! X3.2