ChinaUnix.net
相关文章推荐:

dhcpd 启动失败

DHCP装好后可以使用,但是有报错。 [root@linuxguan ~]# dhcpd restart No subnet declaration for restart (0.0.0.0). ** Ignoring requests on restart. If this is not what you want, please write a subnet declaration in your dhcpd.conf file for the network segment to which interface restart is attached. ** Not configured to listen on any interfaces! If you did not get this software from ftp...

by guanwg - 网络与硬件 - 2006-07-09 20:36:37 阅读(854) 回复(3)

相关讨论

如果要DHCP在系统启动时就起来,应该怎样设置?而不是每次都要dhcpd才能起来!

by kalie - BSD - 2004-02-02 06:21:43 阅读(700) 回复(1)

AAS、dhcp server均以配置好,无法启动dhcpd,查看syslog提示"unable to bind to port 67" inet.conf文件相关内容如下: bootps dgram/i udp wait root /etc/dhcpd dhcpd services文件相关内容如下: bootps 67/tcp dhcps bootps 67/udp dhcps 请教问题何在??

by dylibin - 其他UNIX - 2003-07-31 16:07:49 阅读(466) 回复(1)

大家请看这是我的配置内容 ddns-update-style interim; ignore client-updates; allow bootp; subnet 192.168.1.8 netmask 255.255.255.0 {   range 192.168.1.11 192.168.1.200;   option routers 192.168.1.101;   option subnet-mask 255.255.255.0;   option domain-name-servers 192.168.1.101;  # option broadcast-address 192.168.1.255;   default-lease-time 8...

by ddnyiy - 服务器架设 - 2006-11-16 22:43:51 阅读(1225) 回复(2)

如何用普通帐户来启动ISC dhcpd? 使用普通帐户启动错误如下: unable to create icmp socket: Operation not permitted icmp socket资源如何打开让普通帐户访问?

by yancoo - 服务器架设 - 2003-11-14 10:31:05 阅读(704) 回复(3)

我用ports安装好了dhcpd。编辑好/usr/loca/etc/dhcpd.conf: [code] default-lease-time 6000; max-lease-time 72000; ddns-update-style ad-hoc; option subnet-mask 255.255.255.0; option broadcast-address 192.168.100.255; option routers 192.168.100.4; option domain-name-servers 202.99.8.1; option domain-name "cctk.lan"; subnet 192.168.100.0 netmask 255.255.255.0 { range 192.168.100.10 192.168.100.250; } ho...

by lihn - BSD - 2004-03-26 23:58:27 阅读(608) 回复(3)

请问如何使用dhcpd对指定的vlan id 下机器 进行分配ip,请问应当如何配置dhcpd.conf? 比如: linux dhcpd接入的switch的trunk, 不同的vlan targs下边接有 多台pc,我想对vlan id 为1000下的设备分配ip为 192.168.10.0-192.168.10.254/24,这样的ip网段,请问如何做到? “shared-network vlan-0” 这个vlan-0是一个名称,并不是针对vlan 0吧?如何才能实现? 请教!

by share_network_0 - 网络技术 - 2009-06-02 17:34:38 阅读(1187) 回复(4)

有个bind+dhcpd的问题,动态 dns。 bind-9.2.1-9 我们的private network 是 B类的:10.190.0.0/16 我们的dhcp是isc dhcp-3.0pl1-26. dhcp server ip : 10.190.17.16/16 而dhcp 向外发放的是 10.190.18.0/16 的ip。 我目前的配置是能够正向动态更新。反向的不行。,总是time out. 是否是由下面的配置引起的? /etc/named.conf zone "17.190.10.in-addr.a...

by ilovecr - 服务器应用 - 2004-11-09 22:04:03 阅读(1077) 回复(10)

ddns-update-style interim; #ignore client-updates; authoritative; subnet 10.190.0.0 netmask 255.255.0.0 { # --- default gateway option routers 10.190.17.3; option subnet-mask 255.255.0.0; # option nis-domain "domain.org"; option domain-name "tnt.com"; option domain-name-servers 10.190.17.16; option time-offset -18000; # Eastern Standard Time # option ntp-servers 192.168.1.1; # optio...

by ilovecr - 服务器应用 - 2004-09-29 11:40:20 阅读(815) 回复(1)

我是上海有线通的用户,动态的ip,用redhat7.2的iptable做伪装。两块网卡。我想对内做个DHCP服务器,那个dhcpd.conf怎么写?一个对内的网段是固定的。另一个是动态的,怎么写? "No subnet declaration for eth1 218.242.*.*" 出错提示如上,这个eth1的ip是动态获得。怎么写啊?

by keosh - - 2003-07-07 17:43:15 阅读(364) 回复(2)

我想用在这样的场合: dhcpd收到客户端请求,响应此请求的同时,运行我定义的一个shell,创建一个依据请求的MAC地址命名的LVM2某分区的快照,同时创建此快照的iscsi-target。

by cyberdna - Shell - 2009-05-19 14:24:07 阅读(907) 回复(2)