Re: dhcp server returns core dump when i define network with mask 8

2013-07-23 Thread Frank Leonhardt
On 23/07/2013 09:03, jb wrote: s m sam.gh1986 at gmail.com writes: ... subnet 192.0.0.0 netmask 255.0.0.0 { range 192.0.0.1 192.255.255.255; The 'range' denotes IP addresses that can be allocated to clients. The IP 192.255.255.255 is a reserved broadcast address for the network. jb

Re: dhcp server returns core dump when i define network with mask 8

2013-07-23 Thread s m
thanks Frank, 192 is just a sample. if i want to define 125.0.0.0 netmask 255.0.0.0, dhcp server core dump either. you're right, it is better to use just some limited addresses to avoid possible troubles. but i want to run my dhcp server for all possible networks. now my question is: if i define

Re: dhcp server returns core dump when i define network with mask 8

2013-07-23 Thread J . McKeown
Quoting Frank Leonhardt fra...@fjl.co.uk: There are two common ways of defining a subnet mask - one is a dotted quad (e.g. 255.255.255.0) and the other is with a slash and the number of low-order bits - e.g. 192.168.1.0/8. Eight bits here means you get 2^8 addresses (i.e. 256). Don't use

Re: dhcp server returns core dump when i define network with mask 8

2013-07-23 Thread jb
? if yes, why dhcp server works correctly? please help me to clear my mind. regards, SAM Regarding subnets: 192.168.0.0 netmask 255.255.0.0 is equivalent to 192.168.0.0/16 which splits it into a network id 192.168. and host id .0.0 Another example: 192.168.0.0 netmask 255.0.0.0 is equivalent

Re: dhcp server returns core dump when i define network with mask 8

2013-07-23 Thread Frank Leonhardt
On 23/07/2013 13:35, j.mcke...@ru.ac.za wrote: Quoting Frank Leonhardt fra...@fjl.co.uk: There are two common ways of defining a subnet mask - one is a dotted quad (e.g. 255.255.255.0) and the other is with a slash and the number of low-order bits - e.g. 192.168.1.0/8. Eight bits here means

dhcp server returns core dump when i define network with mask 8

2013-07-23 Thread s m
hello all, i have a question about dhcpd in freebsd8.2 . when i define my network like below in dhcpd.conf file, server doesn't run correctly and return core dump this is my dhcpd.conf file: ddns-update-style none; log-facility local7; subnet 192.0.0.0 netmask 255.0.0.0 { range 192.0.0.1

Re: dhcp server returns core dump when i define network with mask 8

2013-07-23 Thread jb
s m sam.gh1986 at gmail.com writes: ... subnet 192.0.0.0 netmask 255.0.0.0 { range 192.0.0.1 192.255.255.255; The 'range' denotes IP addresses that can be allocated to clients. The IP 192.255.255.255 is a reserved broadcast address for the network. jb

ISC dhcp server

2011-10-18 Thread n dhert
isc-dhcp31-server was removes from the ports. The Freebsd Handbook still refers to it... Can a /usr/local/etc/dhcpd.conf configuration file from isc-dhcp31-server, without changealso be used in isc-dhcp42-4.2.2 ? ___ freebsd-questions@freebsd.org mailing

Re: ISC dhcp server

2011-10-18 Thread Erik Nørgaard
On 18/10/2011 08:38, n dhert wrote: isc-dhcp31-server was removes from the ports. The Freebsd Handbook still refers to it... Can a /usr/local/etc/dhcpd.conf configuration file from isc-dhcp31-server, without changealso be used in isc-dhcp42-4.2.2 ? I think so, I use dhcp 4.1 and didn't change

Re: ISC dhcp server

2011-10-18 Thread Andrei Brezan
On 10/18/2011 9:08 AM, Erik Nørgaard wrote: On 18/10/2011 08:38, n dhert wrote: isc-dhcp31-server was removes from the ports. The Freebsd Handbook still refers to it... Can a /usr/local/etc/dhcpd.conf configuration file from isc-dhcp31-server, without changealso be used in isc-dhcp42-4.2.2 ?

Re: ISC dhcp server

2011-10-18 Thread Warren Block
On Tue, 18 Oct 2011, n dhert wrote: isc-dhcp31-server was removes from the ports. The Freebsd Handbook still refers to it... Now fixed. Thanks for mentioning that! Can a /usr/local/etc/dhcpd.conf configuration file from isc-dhcp31-server, without changealso be used in isc-dhcp42-4.2.2 ?

Re: ISC dhcp server

2011-10-18 Thread claudiu vasadi
Then again, one can alway use dhcpd -t to test the configuration file. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: How to get ip address automatically from different dhcp server

2011-08-14 Thread dave jones
:49:42 +0800 dave jones s.dave.jo...@gmail.com wrote: Hi, I cat get an IP address from dhcp server by adding the line in /etc/rc.conf: ifconfig_em0=DHCP If I move my laptop to another place, I have to manually run dhclient em0 to get an IP. Otherwise, it won't get an IP automatically

Re: How to get ip address automatically from different dhcp server

2011-08-12 Thread Christopher J. Ruwe
cat get an IP address from dhcp server by adding the line in /etc/rc.conf: ifconfig_em0=DHCP If I move my laptop to another place, I have to manually run dhclient em0 to get an IP. Otherwise, it won't get an IP automatically. My question is it's possible to get ip address automatically from

Re: How to get ip address automatically from different dhcp server

2011-08-11 Thread dave jones
Hi Christopher, Thanks for your solution. It does help a lot, but there's one problem. For example, DHCP server is not started for some reason and my computer's ethernet cable is plugged. Once dhcp server started, I can't get the IP unless I unplug and then plug the ethernet cable. Do you know

Re: How to get ip address automatically from different dhcp server

2011-07-27 Thread Edgar Rodolfo
2011/7/26, dave jones s.dave.jo...@gmail.com: Hi, I cat get an IP address from dhcp server by adding the line in /etc/rc.conf: ifconfig_em0=DHCP If I move my laptop to another place, I have to manually run dhclient em0 to get an IP. Otherwise, it won't get an IP automatically. My

Re: How to get ip address automatically from different dhcp server

2011-07-27 Thread Christopher J. Ruwe
On Wed, 27 Jul 2011 10:49:42 +0800 dave jones s.dave.jo...@gmail.com wrote: Hi, I cat get an IP address from dhcp server by adding the line in /etc/rc.conf: ifconfig_em0=DHCP If I move my laptop to another place, I have to manually run dhclient em0 to get an IP. Otherwise, it won't

How to get ip address automatically from different dhcp server

2011-07-26 Thread dave jones
Hi, I cat get an IP address from dhcp server by adding the line in /etc/rc.conf: ifconfig_em0=DHCP If I move my laptop to another place, I have to manually run dhclient em0 to get an IP. Otherwise, it won't get an IP automatically. My question is it's possible to get ip address automatically

Re: How to get ip address automatically from different dhcp server

2011-07-26 Thread Adam Vande More
On Tue, Jul 26, 2011 at 9:49 PM, dave jones s.dave.jo...@gmail.com wrote: I cat get an IP address from dhcp server by adding the line in /etc/rc.conf: ifconfig_em0=DHCP If I move my laptop to another place, I have to manually run dhclient em0 to get an IP. Otherwise, it won't get an IP

DHCP server and bridge, mixed w/ some static IP assignments

2010-08-30 Thread Nerius Landys
I'm trying to add some sort of DHCP server functionality to my router box running FreeBSD 7.1. First, let me explain the current network. This is how my rc.conf is currently configured, and everything is running smoothly: gateway_enable=YES hostname=speedy.i ifconfig_fxp2=DHCP # Connecting

microsoft windows help needed (DHCP server problems)

2010-05-10 Thread Aleksandr Miroslav
I'm running FreeBSD 8.0-RELEASE on my work PC. My organization runs largely Windows desktops with a sizable chunk of Mac OS X machines. Whenever a Windows/Mac connects to the Windows-based DHCP server, it not only does the normal DHCP functions (i.e. gets an IP), it also sets the hostname

Re: microsoft windows help needed (DHCP server problems)

2010-05-10 Thread Diego F. Arias R.
On Mon, May 10, 2010 at 1:41 PM, Aleksandr Miroslav alexmiros...@gmail.comwrote: I'm running FreeBSD 8.0-RELEASE on my work PC. My organization runs largely Windows desktops with a sizable chunk of Mac OS X machines. Whenever a Windows/Mac connects to the Windows-based DHCP server

Re: microsoft windows help needed (DHCP server problems)

2010-05-10 Thread Matthew Seaman
server, it not only does the normal DHCP functions (i.e. gets an IP), it also sets the hostname on the Windows server for that IP. i.e. when windows.example.org connects to dhcpserver.example.org, the dhcp server assigns to it 192.168.1.1 AND sets the PTR record for 192.168.1.1

Re: DHCP server

2008-10-29 Thread Svein Halvor Halvorsen
Are you sure you are using the correct command to start the DHCP client? I'm not familiar with Archlinux, but on Debian linux the command you need is dhclient. On the other hand, dhcpd starts the dhcp *server* Yes, I'm sure. Notice the extra c

Re: DHCP server

2008-10-28 Thread Polytropon
program. On the other hand, dhcpd starts the dhcp *server* Correct. -- Polytropon From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

re: DHCP server

2008-10-25 Thread bofh42
On Friday 24 October 2008, Svein Halvor Halvorsen wrote: Hi, I'm not sure if this is an issue with my dhcp server or the client, but since I seem to get troubles with two different clients, I'm thinking it might be the server

DHCP server

2008-10-24 Thread Svein Halvor Halvorsen
Hi, I'm not sure if this is an issue with my dhcp server or the client, but since I seem to get troubles with two different clients, I'm thinking it might be the server: I've got a FreeBSD 7.0-p4 machine running isc-dhcp3-server-3.0.5_2 serving my home network. When my Linux (Archlinux

Re: DHCP server

2008-10-24 Thread Daniel Bye
On Fri, Oct 24, 2008 at 11:43:32AM +0200, Svein Halvor Halvorsen wrote: Hi, I'm not sure if this is an issue with my dhcp server or the client, but since I seem to get troubles with two different clients, I'm thinking it might be the server: I've got a FreeBSD 7.0-p4 machine running

Re: DHCP server

2008-10-24 Thread Wojciech Puchar
a lease, this happens: [EMAIL PROTECTED]:~]$ dhcpcd -n eth0 eth0: dhcpcd 4.0.2 starting eth0: broadcasting for a lease eth0: offered 10.0.0.176 from 10.0.1.1 `mirrorball' what's your netmask? if /24 your dhcp server is misconfigured

Re: DHCP server

2008-10-24 Thread Svein Halvor Halvorsen
Wojciech Puchar wrote: a lease, this happens: [EMAIL PROTECTED]:~]$ dhcpcd -n eth0 eth0: dhcpcd 4.0.2 starting eth0: broadcasting for a lease eth0: offered 10.0.0.176 from 10.0.1.1 `mirrorball' what's your netmask? if /24 your dhcp server

Re: DHCP server

2008-10-24 Thread Svein Halvor Halvorsen
Daniel Bye wrote: On Fri, Oct 24, 2008 at 11:43:32AM +0200, Svein Halvor Halvorsen wrote: Hi, I'm not sure if this is an issue with my dhcp server or the client, but since I seem to get troubles with two different clients, I'm thinking it might be the server: I've got a FreeBSD 7.0-p4

RE: DHCP server

2008-10-24 Thread Bob McConnell
On Behalf Of Svein Halvor Halvorsen Daniel Bye wrote: On Fri, Oct 24, 2008 at 11:43:32AM +0200, Svein Halvor Halvorsen wrote: I'm not sure if this is an issue with my dhcp server or the client, but since I seem to get troubles with two different clients, I'm thinking it might be the server

DHCP server with no persistent storage

2008-05-15 Thread Luke Dean
I'm running FreeBSD on a Soekris net4801. It boots from a read-only flash card, and has no permanent writable storage media - only memory disks. It runs several critical network services for me like DNS, and a firewall. One important service that it does not currently run is a DHCP server

Re: DHCP server with no persistent storage

2008-05-15 Thread Peter Boosten
Quoting Luke Dean [EMAIL PROTECTED]: Will the DHCP server be this trouble-free if I switch my whole network to dynamic IPs? When the DHCP server goes offline, then comes back online, what happens? M0n0wall does it (http://m0n0.ch). I run M0n0 on my 4801 (I'm not using any DHCP

Re: FreeBSD PXE client not getting netmask config from DHCP server

2008-03-26 Thread vincenzo romero
Hello Erik, Thanks for the response. I have followed your recommendation as follows: 1. In effect my dhcpd.conf now looks like this: ddns-update-style interim; ignore client-updates; subnet 192.168.16.0 netmask 255.255.240.0 { option routers 192.168.16.1;

Re: FreeBSD PXE client not getting netmask config from DHCP server

2008-03-26 Thread vincenzo romero
(61.5 MiB) TX bytes:8111327 (7.7 MiB) Interrupt:23 Base address:0x2000 2. However, the FreeBSD server, stubbornly insists towards the 255.255.255.0 subnet Both clients boot against the same DHCP server. Any thoughts? - thanks in advance. On Wed, Mar 26, 2008 at 9:25 AM, vincenzo

FreeBSD PXE client not getting netmask config from DHCP server

2008-03-25 Thread vincenzo romero
Hello all, I wanted to check and test my PXE clients - where I have: - Cent OS 5.1 - PXE/DHCP/TFTP/NFS server with the root-NFS-images - client - FreeBSD 7: uname -a FreeBSD r02s01 7.0-RELEASE FreeBSD 7.0-RELEASE #1: Mon Mar 3 21:52:54 PST 2008 [EMAIL

DHCP Server

2008-02-24 Thread Jaco le Roux
Hi, I am running dhcpd on my FreeBSD machine and have 2 clients that requests an IP address. The one client is connected directly to the same network as the BSD box, the other client is connected via a bridge on the first client. I have a section in my /usr/local/etc/dhcpd.conf to assign a

Re: DHCP Server

2008-02-24 Thread Wojciech Puchar
BSD box, the other client is connected via a bridge on the first client. I have a section in my /usr/local/etc/dhcpd.conf to assign a specific IP to client #1: host myhost { hardware ethernet xx:xx:xx:xx:xx:xx; fixed address 192.168.1.16; } The problem is, both client #1 and #2 get assigned

RE: DHCP Server

2008-02-24 Thread Jaco le Roux
-Original Message- From: Wojciech Puchar [mailto:[EMAIL PROTECTED] Sent: 24 February 2008 08:56 PM To: Jaco le Roux Cc: freebsd-questions@freebsd.org Subject: Re: DHCP Server BSD box, the other client is connected via a bridge on the first client. I have a section in my /usr

DHCP Server V3.0.5 No BPF under chroot. Works normally otherwise.

2007-03-06 Thread Martin McCormick
/dhcpd. I haven't yet gotten it to launch as the chroot'ed version. When one starts it, here is what happens: chroot /usr/local/chroot/dhcpd /usr/local/sbin/dhcpd Internet Systems Consortium DHCP Server V3.0.5 Copyright 2004-2006 Internet Systems Consortium. All rights reserved. For info

Re: DHCP Server V3.0.5 No BPF under chroot. Works normally otherwise.

2007-03-06 Thread Kelly D. Grills
On Tue, Mar 06, 2007 at 07:03:35PM -0600, Martin McCormick wrote: I found some cook-book instructions for running dhcpd in a chroot environment. The article is 4 years old and appears to be set up for FreeBSD5x, but it isn't far off for FreeBSD6.2 which is what I need dhcpd to run on.

DHCP server questions

2007-01-18 Thread Darryl Hoar
Greetings, I am considering modifying my web/email server by adding DHCP server duties to it. Any problems with this idea ? I can reboot the server if I need to without screwing up the clients that already have IP assigned, can't I ? thanks, Darryl

Re: DHCP server questions

2007-01-18 Thread Chuck Swiger
On Jan 18, 2007, at 11:59 AM, Darryl Hoar wrote: I am considering modifying my web/email server by adding DHCP server duties to it. Any problems with this idea ? I can reboot the server if I need to without screwing up the clients that already have IP assigned, can't I ? No, the DHCP

RE: DHCP server questions

2007-01-18 Thread Darryl Hoar
-Original Message- From: Chuck Swiger [mailto:[EMAIL PROTECTED] Sent: Thursday, January 18, 2007 2:28 PM To: [EMAIL PROTECTED] Cc: freebsd-questions@freebsd.org Subject: Re: DHCP server questions On Jan 18, 2007, at 11:59 AM, Darryl Hoar wrote: I am considering modifying my web

Re: DHCP server questions

2007-01-18 Thread Jay Chandler
Darryl Hoar wrote: Thanks Chuck. I do grok that rebooting is only really needed for new kernel installs. Just making network design decisions and want to avoid those Oh, crap moments. -Darryl I haven't found too many mutually exclusive services on Unix. In theory, if we did away with

Installing DHCP server in a jail

2006-11-06 Thread freebsd
Hi, I would like to install a DHCP server in a jail. Is this possible? I am not sure as the DHCP server should be listening to broadcasts on the network with a certain content (DHCP_DISCOVER if I am not mistaken). I am currently running 5.4 but will be upgrading to 6.2 if released. Furthermore

Installing DHCP server in a jail

2006-11-06 Thread freebsd
Hi, I would like to install a DHCP server in a jail. Is this possible? I am not sure as the DHCP server should be listening to broadcasts on the network with a certain content (DHCP_DISCOVER if I am not mistaken). I am currently running 5.4 but will be upgrading to 6.2 if released. Furthermore

Installing DHCP server in a jail

2006-11-06 Thread Gelsema, P \(Patrick\) - FreeBSD
Hi, I would like to install a DHCP server in a jail. Is this possible? I am not sure as the DHCP server should be listening to broadcasts on the network with a certain content (DHCP_DISCOVER if I am not mistaken). I am currently running 5.4 but will be upgrading to 6.2 if released. Furthermore

Re: Installing DHCP server in a jail

2006-11-06 Thread Anders Troback
On Mon, 6 Nov 2006 19:24:48 +0100 (CET) Gelsema, P \(Patrick\) - FreeBSD [EMAIL PROTECTED] wrote: Hi, I would like to install a DHCP server in a jail. Is this possible? I am not sure as the DHCP server should be listening to broadcasts on the network with a certain content (DHCP_DISCOVER

dhcp server on multiple interfaces.

2005-11-14 Thread BSD Mail
Hello everyone, I'm configuring a gateway machine with 3 network interfaces int_ext (rl0) will obtained a real static IP from a public dhcp server. int_dmz (fxp0) 10.0.1.1/24 http://10.0.1.1/24 both internal networks will need a dhcp server to assign them the right subnet int_lan (xl0) 10.0.0.1

Re: dhcp server on multiple interfaces.

2005-11-14 Thread Yance Kowara
that the DHCPD box is also your nameserver } ###END DHCPD.CONF --- BSD Mail [EMAIL PROTECTED] wrote: Hello everyone, I'm configuring a gateway machine with 3 network interfaces int_ext (rl0) will obtained a real static IP from a public dhcp server. int_dmz (fxp0) 10.0.1.1

RE: DHCP Server Offline.

2005-07-16 Thread Paul Hamilton
@freebsd.org Subject: Re: DHCP Server Offline. I Found out the Problem, The /var partation is full. How do i find out where is taking up all the space? Thanks From: Ean Kingston [EMAIL PROTECTED] To: freebsd-questions@freebsd.org CC: [EMAIL PROTECTED] Subject: Re: DHCP Server Offline. Date: Fri, 15 Jul

DHCP Server Offline.

2005-07-15 Thread Stephan Weaver
Hello folks, I have a Stand Alone FreeBSD Firewall / Nat / Dhcp Server. Everything seems to work fine, up until this morning. Users seem to complain they could not get on the network anymore. Further investigation revealed the dhcp server could not be contacted. Further more, only some

Re: DHCP Server Offline.

2005-07-15 Thread Ean Kingston
On July 15, 2005 10:11 am, Stephan Weaver wrote: Hello folks, I have a Stand Alone FreeBSD Firewall / Nat / Dhcp Server. Everything seems to work fine, up until this morning. Users seem to complain they could not get on the network anymore. Further investigation revealed the dhcp server

Re: DHCP Server Offline.

2005-07-15 Thread Stephan Weaver
I Found out the Problem, The /var partation is full. How do i find out where is taking up all the space? Thanks From: Ean Kingston [EMAIL PROTECTED] To: freebsd-questions@freebsd.org CC: [EMAIL PROTECTED] Subject: Re: DHCP Server Offline. Date: Fri, 15 Jul 2005 10:18:09 -0400 On July 15

Re: DHCP Server Offline.

2005-07-15 Thread David van Geyn
up all the space? Thanks From: Ean Kingston [EMAIL PROTECTED] To: freebsd-questions@freebsd.org CC: [EMAIL PROTECTED] Subject: Re: DHCP Server Offline. Date: Fri, 15 Jul 2005 10:18:09 -0400 On July 15, 2005 10:11 am, Stephan Weaver wrote: Hello folks, I have a Stand Alone FreeBSD Firewall

Testing a DHCP server without jeopardizing my IP configuration?

2005-05-30 Thread Rob
server. Although the gateway still functions as a gateway, the DHCP server might not be handing out IP numbers anymore (I suspect that the dhclients of the Windows PCs are desperately hanging on to their old IP numbers, although already expired). I want to communicate with the DHCP server from my

Re: Testing a DHCP server without jeopardizing my IP configuration?

2005-05-30 Thread Tomas Quintero
On 5/30/05, Rob [EMAIL PROTECTED] wrote: Is there a way to test the DHCP server, without running dhclient and thus without losing my FreeBSD system's IP configuration? I'm just throwing a random idea out here, I have no clue if it'd actually work, but what about putting an alias in your

Re: Testing a DHCP server without jeopardizing my IP configuration?

2005-05-30 Thread Libor Seidl
Is there a way to test the DHCP server, without running dhclient and thus without losing my FreeBSD system's IP configuration? Hi, try dhcping from ports (net/dhcping). Read carrefully man pages, the idea of operation was not clear at first look (for me :-) but it works. Bodlin

DHCP server performance

2005-03-16 Thread Darryl Hoar
Greetings, I want to setup a DHCP server on my internal (private 192.168.1.X) network. I already have a Freebsd machine on the network as a webserver. Should I dedicate an entire machine to being a DHCP server ? Or will the load be minimal and I can put the DHCP server functionality on my

Re: DHCP server performance

2005-03-16 Thread Jerry McAllister
Greetings, I want to setup a DHCP server on my internal (private 192.168.1.X) network. I already have a Freebsd machine on the network as a webserver. Should I dedicate an entire machine to being a DHCP server ? Or will the load be minimal and I can put the DHCP server functionality

Re: DHCP server performance

2005-03-16 Thread Charles Swiger
On Mar 16, 2005, at 1:03 PM, Darryl Hoar wrote: Should I dedicate an entire machine to being a DHCP server ? Or will the load be minimal and I can put the DHCP server functionality on my webserver ? A DHCP server is very lightweight, and you can run one on a machine used for other tasks just

PopTop (pptp) and DHCP Server

2004-08-17 Thread Michel Schwab
Hi, I have a question and how a can sovled my problem. Installed form the Port: - POPTOP - DHCP Server Now, i have a external connection with PPTP (poptop) in the freebsd i see tun0 active, that very good. But now send the end of the tunnel hardware (a AccessPoint whith dhcp relay) DHCP Request

two nics, one dhcp server

2004-05-25 Thread dave
Hello, I've got a machine that i need to give two separate addresses to using two nics, both of which are 3c905's, working fine under 5.2.1. I've got lines in rc.conf set so they both get their addresses via dhcp, however this isn't working. Having both cards in the box neither gets an IP,

Re: two nics, one dhcp server

2004-05-25 Thread Chuck Swiger
, singley they work fine. Cabling is working, and i'm out of ideas as to what to try. The subject implies that you are connecting both NICs to the same subnet. The simple answer is that this won't work-- it's not useful. A more complex answer is that you could configure the DHCP server to give

configuring freebsd dhcp server/router to listen on device

2004-04-08 Thread Anthony Philipp
Hello, Im trying to move away from my linksys wireless router and move onto an old Pentium 200 Mhz I have. It will be the gateway between my modem and my network. I installed isc-dhcp3 on the box and took the sample dhcp.conf file in the freebsd handbook. I edited this file to suite my needs

RE: configuring freebsd dhcp server/router to listen on device

2004-04-08 Thread JJB
Sent: Thursday, April 08, 2004 3:42 PM To: [EMAIL PROTECTED] Subject: configuring freebsd dhcp server/router to listen on device Hello, Im trying to move away from my linksys wireless router and move onto an old Pentium 200 Mhz I have. It will be the gateway between my modem and my network. I

DHCP Server Question

2004-03-23 Thread JP
Hello All-- I have successfully set up my DHCP server on FreeBSD 5.2 but have a question. I only want my DHCP server to hand out IPs to known MAC addresses entered into dhcpd.conf how can I do this? I don't care of the same IP is always handed out to the same card. Thanks, JP

Re: DHCP Server Question

2004-03-23 Thread Charles Swiger
I have successfully set up my DHCP server on FreeBSD 5.2 but have a question. I only want my DHCP server to hand out IPs to known MAC addresses entered into dhcpd.conf how can I do this? Create entries which look like this: host linksys { hardware ethernet 00:20:78:d2:03:05; fixed-address

Re: DHCP Server Question

2004-03-23 Thread JP
So I would remove the range entry? Thanks, JP --- Charles Swiger [EMAIL PROTECTED] wrote: I have successfully set up my DHCP server on FreeBSD 5.2 but have a question. I only want my DHCP server to hand out IPs to known MAC addresses entered into dhcpd.conf how can I do

Re: DHCP Server Question

2004-03-23 Thread Charles Swiger
for someone who might have a small home network and wants to staticly assign IPs using DHCP on a FreeBSD host in a way that closely resembles the network configuration one would get simply by using the out-of-box network config using one of those Linksys broadband routers as the DHCP server. ] -- -Chuck

How can I do this on DHCP server ?

2004-03-20 Thread Supote Leelasupphakorn
Hi list, I've set up a DHCP server but I'd like to know which address (from address pool) hasn't assigned to any machine. Is there command line to accomplish this. PS. I use ISC-DHCP v.3 installed from ports. TIA, Pote

Re: Is it feisable to do a Firewall'ed DHCP server?

2004-02-27 Thread Ryan Merrick
Dragoncrest wrote: I'm looking to take an old P120 with 128m of ram and turn it into a lan DHCP server. The thing is, the guys who will be pulling DHCP addresses are cream of the crop computer users who really know their way around. So I plan to have all network services (minus DHCP of course

Is it feisable to do a Firewall'ed DHCP server?

2004-02-26 Thread Dragoncrest
I'm looking to take an old P120 with 128m of ram and turn it into a lan DHCP server. The thing is, the guys who will be pulling DHCP addresses are cream of the crop computer users who really know their way around. So I plan to have all network services (minus DHCP of course) turned off and I

Using FreeBSD as a DHCP server

2003-12-30 Thread stan
I need to use a STABLE machine for a DHCP server. Man -k and looking in /etc/defaults/rc.conf don't seem to point me to the server side of this protocol. Do I need to add a port? If so what's the best one? -- They that would give up essential liberty for temporary safety deserve neither

Re: Using FreeBSD as a DHCP server

2003-12-30 Thread Andrew L. Gould
On Tuesday 30 December 2003 09:17 am, stan wrote: I need to use a STABLE machine for a DHCP server. Man -k and looking in /etc/defaults/rc.conf don't seem to point me to the server side of this protocol. Do I need to add a port? If so what's the best one? Use /usr/ports/net/isc-dhcp3. It's

DHCP-server - suggestions?

2003-11-26 Thread a
Hi, I'm about to set up a DHCP-server. In the ports-coll I found these: Port: isc-dhcp3-3.0.1.r12 Info: ISC Dynamic Host Configuration Protocol client and server code Port: wide-dhcp-1.4.0.6_2 Info: Dynamic Host Configuration Protocol, WIDE Implementation Any suggestions / experience

Re: DHCP-server - suggestions?

2003-11-26 Thread Jon Mercer
Been using the ISC DHCP server for years now. No problems to report, and not too onerous to set up. Also allows you to do dynamic updates to the ISC BIND port as well. Jon On Wed, 2003-11-26 at 15:13, [EMAIL PROTECTED] wrote: Hi, I'm about to set up a DHCP-server. In the ports-coll I found

Re: DHCP-server - suggestions?

2003-11-26 Thread Lowell Gilbert
[EMAIL PROTECTED] writes: I'm about to set up a DHCP-server. In the ports-coll I found these: Port: isc-dhcp3-3.0.1.r12 Info: ISC Dynamic Host Configuration Protocol client and server code Port: wide-dhcp-1.4.0.6_2 Info: Dynamic Host Configuration Protocol, WIDE Implementation

Re: DHCP-server - suggestions?

2003-11-26 Thread Chris Howells
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, On Wednesday 26 November 2003 15:13, [EMAIL PROTECTED] wrote: Port: isc-dhcp3-3.0.1.r12 Info: ISC Dynamic Host Configuration Protocol client and server code I use this and it's fine; the configuration file is easy to understand, and it

Re: DHCP Server learning name servers since server itself is dhcp'd??

2003-03-09 Thread Lowell Gilbert
IAccounts [EMAIL PROTECTED] writes: Alternatively is there a way to dynamically tell BIND to get it's forwarders list from /etc/resolv.conf? This could be done pretty much the same way. I thought I'd done it on my system, but as I look at named.conf, I don't seem to have ever

Re: DHCP Server learning name servers since server itself isdhcp'd??

2003-03-08 Thread IAccounts
Alternatively is there a way to dynamically tell BIND to get it's forwarders list from /etc/resolv.conf? This could be done pretty much the same way. I thought I'd done it on my system, but as I look at named.conf, I don't seem to have ever finished the shell script to auto-generate the

Re: DHCP Server learning name servers since server itself is dhcp'd??

2003-03-08 Thread Mikko Työläjärvi
On Sat, 8 Mar 2003, IAccounts wrote: Alternatively is there a way to dynamically tell BIND to get it's forwarders list from /etc/resolv.conf? Here is a shell script snippet that I use on my laptop. It gets called from make_resolv_conf() in /etc/dhclient-enter-hooks, where I make sure not

Re: DHCP Server learning name servers since server itself is dhcp'd??

2003-03-08 Thread David Kelly
containing the values given by the DHCP server. Something like this is all it takes to keep it from changing your resolv.conf: #!/bin/sh make_resolv_conf() { } Naturally, one could expand my null'ed make_resolv_conf() to 1) verify DNS servers have changed, and 2) write them in /etc/namedb

Re: DHCP Server learning name servers since server itself is dhcp'd??

2003-03-07 Thread Lowell Gilbert
on the gateway and configure DHCP to send it's own IP as the nameserver to use, but I was wondering if there is a way to have the dhcp server get the name server values from say /etc/resolv.conf? You should be able to do that by writing a dhclient hook (see the manual for dhclient-script(8) for info), but I

DHCP Server learning name servers since server itself is dhcp'd??

2003-03-07 Thread Philip Hallstrom
as the nameserver to use, but I was wondering if there is a way to have the dhcp server get the name server values from say /etc/resolv.conf? Alternatively is there a way to dynamically tell BIND to get it's forwarders list from /etc/resolv.conf? thanks! -philip To Unsubscribe: send mail to [EMAIL

DHCP server

2002-11-13 Thread Jonas Fornander
I want to install a DHCP server on 4.7. In the Latest/packages I can only find the following packages that refers to dhcp: dhcpconf dhcpdump dchping (?) Is any of those the server? If not, which package is the server? Jonas Fornander Netwood Communications,LLC To Unsubscribe: send mail

Re: DHCP server

2002-11-13 Thread Matthew Seaman
On Wed, Nov 13, 2002 at 12:15:06AM -0800, Jonas Fornander wrote: I want to install a DHCP server on 4.7. In the Latest/packages I can only find the following packages that refers to dhcp: dhcpconf dhcpdump dchping (?) Is any of those the server? If not, which package is the server

Resolving IP through cablemodem DHCP server

2002-09-22 Thread Bert Hiddink [Bendoo]
Hello, I have a LAN which looks like this: Internet --- Cablemodem--- Router with DHCP-service --- 2 Winboxes, 1 Freebsd box I have 4.6.2. release installed on the FreeBSD box. The router has an DHCP service and IP's are dynamicly assigned to the 3 machines within my LAN. However, when I

Re: Resolving IP through cablemodem DHCP server

2002-09-22 Thread Mark Hannon
Bert Hiddink [Bendoo] wrote: Hello, I have a LAN which looks like this: Internet --- Cablemodem--- Router with DHCP-service --- 2 Winboxes, 1 Freebsd box I have 4.6.2. release installed on the FreeBSD box. The router has an DHCP service and IP's are dynamicly assigned to the 3