Questions tagged [dhcp]

The Dynamic Host Configuration Protocol (DHCP) is an auto configuration protocol used on IP networks.

The Dynamic Host Configuration Protocol (DHCP) is an auto configuration protocol used on IP networks and an extension of the Bootstrap Protocol.

DHCP allows for computers to be configured automatically to communicate with each other over an IP network without the need for setup by a network administrator.

It keeps track of the computers connected to the network with a central database and prevents two computers from accidentally being configured with the same IP address.

784 questions
-1
votes
3 answers

Arduino Millis on the LCD

I want to display the millis on the LCD 16x2, but the problem is that counter does not start from zero after I have added MySQL insert code. Actually, sometimes the connection to the server starts after 4 sec, 40 sec, and sometimes 79 sec. The type…
-1
votes
1 answer

Create a local wireless without internet

I would like to create a local wireless without internet. I would like to have the possibility to connect 50 clients and access to a website using a domain name. That means, I need a DNS and DHCP. I sreach on internet an I found a way to achieve…
Aaleks
  • 4,283
  • 5
  • 31
  • 39
-1
votes
1 answer

DD-WRT: Command-line to get DHCP-lease time not expired clients

This is an example of my Buffalo WHR-HP-G54 router (with DD-WRT installed) connected devices showing: Active (transmitting) wireless clients. Clients whose DHCP Lease Time has not expired (configured to 180 minutes in my case). As I use to enter…
Sopalajo de Arrierez
  • 3,543
  • 4
  • 34
  • 52
-1
votes
3 answers

Set from static IP to DHCP on Windows 8 using command line

My computer is Windows 8. I used command line to set static IP address by netsh interface ipv4 set address name="Wired Ethernet Connection" source=static address=1.1.1.1 mask=1.1.1.1 gateway=1.1.1.1 And static DNS by netsh interface ipv4 add…
dibery
  • 2,760
  • 4
  • 16
  • 25
-1
votes
2 answers

Raspberry Pi configured for static IP also gets a DHCP IP

I've configured my Raspberry Pi for static IP. My /etc/network/interfaces looks like this: auto lo iface lo inet loopback auto eth0 allow-hotplug eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 network 192.168.1.0 broadcast…
OZ1SEJ
  • 399
  • 1
  • 5
  • 14
-1
votes
1 answer

Best way to add support for a new subnet

I currently have a network where all of the clients are served 192.168.0.0 subnet addresses with a subnet mask of 255.255.255.0. Since I am running out of addresses to serve within that subnet, I would like clients to start being served 192.168.4.0…
TreHoffman
  • 78
  • 1
  • 11
-1
votes
2 answers

In general How to find out whether client has assigned static Ip or it is dhcp client

I have retrieved IP, subnet and broadcast using ioctl() system call. can anyone help me to find out whether client is static or dhcp?? I am asking about in general and using system call. it is all about client instead of interface.
Ravi Bhushan
  • 253
  • 3
  • 17
-1
votes
1 answer

How to configure DHCP server on two interfaces with same Subnet mask

I am using FreeBSD server 10.1. I have 3 Interfaces re0, re1, wlan0. I attached the Internet cable on re0 and configure dhcpd_iface as wlan0. so that any devices that are connecting with my wifi can get the IP address. Now I want any devices that is…
user229957
  • 27
  • 1
  • 4
-1
votes
1 answer

where does the DHCP options information send by the DHCP Server will be stored in the linux machine?

I have a fedora core machine. My server is sending the DHCP option "43" ("Vendor Specific Information"). I am using DHCLIENT. Before DHCP server sends the option "43", I'm sending the option 60 ("Vendor class Id") through dhclient. My question is…
dexterous
  • 6,422
  • 12
  • 51
  • 99
-1
votes
1 answer

DHCP server issues

I have server running DHCP as well as DNS. The network series is 10.241.0.1 to 10.241.0.105 Questions: Q: if I want the DHCP server to offer IP addresses in the network of 10.241.1.1, is it possible or do I need to put the DHCP server in the network…
krrish
  • 353
  • 3
  • 15
-1
votes
1 answer

PHP - Parse sections between braces from text file

I have the DHCP lease file from my pfSense as a text file and I need to parse some data from this using PHP. To give an example, here is how the file looks like: lease 192.168.15.13 { starts 3 2014/11/12 23:51:05; ends 4 2014/11/13 00:06:06; cltt 3…
Lukas
  • 55
  • 1
  • 1
  • 3
-1
votes
1 answer

dhcpv6 returning bad subnet

I have IPv6 on a linux machine and my network and it works. Now I want to set up DHCP for it. I set up the isc-dhcp-server and configured the subnet. Another linux machine (both debian 7) acts as test-client and gets the IP, but not in the range…
-1
votes
1 answer

DHCP assigns 2 IP's to 1 mac address..

hopefully someone can help me. I have a DHCPD/PXE Server that seems to be assigning 2 IP addresses for the same mac address. I need computers getting assigned ip addresses to be sequential I have tried "allow duplicates;" and "deny duplicates;" I…
John
  • 55
  • 1
  • 10
-1
votes
1 answer

OpenSUSE 13.1 openvpn

So I need to setup a openvpn connection for my work to get access to services etc. I used to work with a OpenSuse Virtual Machine to get things done, but now i set up a vagrant environment (https://github.com/tcdev0/openSUSE-13.1-vagrant-ansible)…
tcdev0
  • 1
  • 4
-1
votes
1 answer

what is boot image in the DHCP

I read in the e.comer book that in dhcp the dhcp allow a computee to negotiate to find a boot image and to do so the host fills in field boot file name with the request and dhcp server does not send an image I realy can not understand a single…