From owner-freebsd-net@FreeBSD.ORG Tue Aug 6 07:29:47 2013 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3D464D2E for ; Tue, 6 Aug 2013 07:29:47 +0000 (UTC) (envelope-from sam.gh1986@gmail.com) Received: from mail-la0-x22e.google.com (mail-la0-x22e.google.com [IPv6:2a00:1450:4010:c03::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BAF672CB2 for ; Tue, 6 Aug 2013 07:29:46 +0000 (UTC) Received: by mail-la0-f46.google.com with SMTP id eh20so30290lab.33 for ; Tue, 06 Aug 2013 00:29:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=q608yii2mmbrAroqp3lQUjRbdevYvePqMUSqtFRhBnI=; b=FRb/N1P1bWmWQ4n+kssGB6WSnQP0mjV1ZS8TNWXhHpmqr4hGUgEPx2TgAQaB1Obu7X m3JEwNO38RXHHwou4lh0kXHyQAKxdO4p2hi7Iw/yHWHKoeMO/mi/DsfCXiiPk8fV+DHS Oq2ZVRBJVVLmoyXay7KCubNLAKBBAlBDhrm+tuWICWTOhWft8AXlo19Td0mR8AMQsoH5 rBe9LQqYLZO5YzQy79aRuYK8+g7YfdpG4e5Sts1Sp9T4g2kBurOrtuyeRw3uPFbliRuZ 3ULQf3kG1nFhfeDn66Qsl/4IZcpJ/pA/SkvizkFlBQAvxM9Le7HDo4VYqp8LwpqdBBhW Y+hQ== MIME-Version: 1.0 X-Received: by 10.152.9.37 with SMTP id w5mr10360laa.23.1375774184685; Tue, 06 Aug 2013 00:29:44 -0700 (PDT) Received: by 10.112.147.230 with HTTP; Tue, 6 Aug 2013 00:29:44 -0700 (PDT) Date: Tue, 6 Aug 2013 11:59:44 +0430 Message-ID: Subject: how define network with mask 8 for dhcp server? From: s m To: freebsd-net@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Aug 2013 07:29:47 -0000 hello all, i have a problem with dhcp server. i want to define network with mask 8 and use all network address which are possible. i know it is strange but for some experimental purpose, i want to do it. this is my dhcpd.conf file: subnet 192.0.0.0 netmask 255.0.0.0 { range 192.0.0.1 192.255.255.254; } but dhcp server return core dump and can not work with this configuration. please let me know what is correct configuration in order to use all possible ip addressed in a network with mask 8? thanks in advance, SAM