DHCP - Server BUG... | docsis.org

You are here

DHCP - Server BUG...

3 posts / 0 new
Last post
taip
DHCP - Server BUG...

Hello,
The problem is that any client inadvertently or intentionally put cable which runs from the modem. Rather than add it to the WAN port of the LAN insert automatically consequently they begin to transmit DHCP in the system, which consequently most modems remain in status: 0.0.0.0 DHCP offer.

I tried to solve this problem but without success, I wish that someone with you to help.

With respect ....

taip
Config...

#
# DHCP Server Configuration file for bridge mode CMTS
#

authoritative;
option domain-name "localdomain";
option domain-name-servers 82.114.64.3,82.114.64.4;
option time-servers 192.53.103.108;
ddns-update-style none;
min-lease-time 3600;
default-lease-time 3600;
max-lease-time 3600;
log-facility local6;

class "cm" {
# match if (
# (binary-to-ascii(16, 8, ":", substring(hardware, 1, 3)) = "0:13:71") or
# (binary-to-ascii(16, 8, ":", substring(hardware, 1, 3)) = "0:13:72")
# );

match if substring(option vendor-class-identifier,0,6) = "docsis";

# log(info, option vendor-class-identifier );
# log(info, binary-to-ascii(16, 8, ":", substring(hardware, 1, 6)) );
}

shared-network cm-cpe {
subnet 10.190.0.0 netmask 255.255.240.0 {
option routers 10.190.15.254;
}
subnet 10.15.0.0 netmask 255.255.240.0 {
option routers 10.15.0.1;
pool {
deny members of "cm";
range dynamic-bootp 10.15.0.2 10.15.15.250;
}
}

mbowe
You could pop something like

You could pop something like this into your cm config file :

SnmpMibObject docsDevFilterIpDefault.0 Integer 2; /* accept */

SnmpMibObject docsDevFilterIpIfIndex.1 Integer 1 ;
SnmpMibObject docsDevFilterIpDirection.1 Integer 1; /* inbound */
SnmpMibObject docsDevFilterIpProtocol.1 Integer 17 ; /* UDP */
SnmpMibObject docsDevFilterIpSourcePortLow.1 Integer 67 ; /* bootp server */
SnmpMibObject docsDevFilterIpSourcePortHigh.1 Integer 67 ;
SnmpMibObject docsDevFilterIpDestPortLow.1 Integer 68 ; /* bootp client */
SnmpMibObject docsDevFilterIpDestPortHigh.1 Integer 68 ;
SnmpMibObject docsDevFilterIpStatus.1 Integer 4; /* createAndGo */

Log in or register to post comments