nanoFramework.Iot.Device.DhcpServer 1.2.507

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package nanoFramework.Iot.Device.DhcpServer --version 1.2.507
NuGet\Install-Package nanoFramework.Iot.Device.DhcpServer -Version 1.2.507
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Iot.Device.DhcpServer" Version="1.2.507" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.Iot.Device.DhcpServer --version 1.2.507
#r "nuget: nanoFramework.Iot.Device.DhcpServer, 1.2.507"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install nanoFramework.Iot.Device.DhcpServer as a Cake Addin
#addin nuget:?package=nanoFramework.Iot.Device.DhcpServer&version=1.2.507

// Install nanoFramework.Iot.Device.DhcpServer as a Cake Tool
#tool nuget:?package=nanoFramework.Iot.Device.DhcpServer&version=1.2.507

DHCP Server

This binding offers simple and efficient DHCP capabilities. It is following the RFC2131 and does implement the minimum set to offer decent DHCP capabilities.

Reference

Usage

You simply create a server, set the DHCP address and the mask.

DhcpServer dhcpserver = new DhcpServer();
// Give the captive portal URL. Note: this is experimental and as RFC is new, only works on a limited number of devices.
dhcpserver.CaptivePortalUrl = "http://192.168.4.1";
// Starts the serveur with the DHCP server address (should be the device address) and the mask.
dhcpserver.Start(IPAddress.Parse(new IPAddress(new byte[] {192, 168, 4, 1}), new IPAddress(new byte[] { 255, 255, 255, 0 })));

By default the time to leave is set to 1200 seconds, you adjust it.

Also note that the server will smartly manage the IP addresses and will give the preference to any device if it's available or if the device had it before. It will also clean the bails to make sure there is always enough space available.

While you can use this simple and efficient server in a real network, it remains for simple usage and is not recommended in production.

Information on the sample

The sample is a complete example on how to use this DHCP server to provide IP addresses to a phone or a PC you'll connect to the .NET nanoFramework device to setup the Wireless configuration it has to connect to.

Limitations

  • This server does only support the basic flow. It does not support advanced flow with Renew and Release.
  • While you can specify the mask you want, internally, the server only support mask C. So it will allocate 253 addresses maximum.
  • While the Captive Portal option is supported from the latest RFC8910, only few OS and mobile phones supports it today. It is still experimental.
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on nanoFramework.Iot.Device.DhcpServer:

Package Downloads
MakoIoT.Device.Services.ConfigurationManager

Configuration mode manager for MAKO-IoT

MakoIoT.Device.Services.WiFi.AP

WiFi Access Point library for MAKO-IoT

MakoIoT.Device.Services.ConfigurationApi

REST API for configuration with MAKO-IoT

MakoIoT.Device.Platform.LocalConfig

MAKO-IoT Platform local configuration library. On-device web server, WiFi AP

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on nanoFramework.Iot.Device.DhcpServer:

Repository Stars
nanoframework/Samples
🍬 Code samples from the nanoFramework team used in testing, proof of concepts and other explorational endeavours
Version Downloads Last updated
1.2.507 439 4/15/2024
1.2.454 1,671 1/31/2024
1.2.450 442 1/27/2024
1.2.443 526 1/19/2024
1.2.407 3,268 11/10/2023
1.2.378 930 10/11/2023
1.2.300 2,094 5/26/2023
1.2.284 571 5/12/2023
1.2.268 158 5/3/2023
1.2.174 923 12/28/2022
1.2.124 447 11/5/2022
1.2.112 388 10/25/2022
1.2.89 481 10/11/2022
1.2.85 369 10/8/2022
1.2.66 395 9/22/2022
1.2.60 432 9/16/2022
1.2.6 439 8/4/2022
1.2.1 363 8/2/2022