4293cf5945
Merge in DNS/adguard-home from 4358-fix-stats to master Updates #4358. Updates #4342. Squashed commit of the following: commit 5683cb304688ea639e5ba7f219a7bf12370211a4 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Aug 4 18:20:54 2022 +0300 stats: rm races test commit 63dd67650ed64eaf9685b955a4fdf3c0067a7f8c Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Aug 4 17:13:36 2022 +0300 stats: try to imp test commit 59a0f249fc00566872db62e362c87bc0c201b333 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Aug 4 16:38:57 2022 +0300 stats: fix nil ptr deref commit 7fc3ff18a34a1d0e0fec3ca83a33f499ac752572 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Apr 7 16:02:51 2022 +0300 stats: fix races finally, imp tests commit c63f5f4e7929819fe79b3a1e392f6b91cd630846 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Aug 4 00:56:49 2022 +0300 aghhttp: add register func commit 61adc7f0e95279c1b7f4a0c0af5ab387ee461411 Merge: edbdb2d4 |
||
---|---|---|
.. | ||
bitset_test.go | ||
bitset.go | ||
broadcast_bsd_test.go | ||
broadcast_bsd.go | ||
broadcast_others_test.go | ||
broadcast_others.go | ||
conn_unix_test.go | ||
conn_unix.go | ||
db.go | ||
dhcpd_test.go | ||
dhcpd.go | ||
helpers.go | ||
http_test.go | ||
http.go | ||
iprange_test.go | ||
iprange.go | ||
options_unix_test.go | ||
options_unix.go | ||
os_windows.go | ||
README.md | ||
routeradv_test.go | ||
routeradv.go | ||
server.go | ||
v4_test.go | ||
v4.go | ||
v6_test.go | ||
v6.go | ||
v46_windows.go | ||
v46.go |
DHCP server
Contents:
Test setup with Virtual Box
To set up a test environment for DHCP server you need:
- Linux host machine
- Virtual Box
- Virtual machine (guest OS doesn't matter)
Configure client
-
Install Virtual Box and run the following command to create a Host-Only network:
$ VBoxManage hostonlyif create
You can check its status by
ip a
command.You can also set up Host-Only network using Virtual Box menu:
File -> Host Network Manager...
-
Create your virtual machine and set up its network:
VM Settings -> Network -> Host-only Adapter
-
Start your VM, install an OS. Configure your network interface to use DHCP and the OS should ask for a IP address from our DHCP server.
-
To see the current IP address on client OS you can use
ip a
command on Linux oripconfig
on Windows. -
To force the client OS to request an IP from DHCP server again, you can use
dhclient
on Linux oripconfig /release
on Windows.
Configure server
-
Edit server configuration file 'AdGuardHome.yaml', for example:
dhcp: enabled: true interface_name: vboxnet0 dhcpv4: gateway_ip: 192.168.56.1 subnet_mask: 255.255.255.0 range_start: 192.168.56.2 range_end: 192.168.56.2 lease_duration: 86400 icmp_timeout_msec: 1000 options: [] dhcpv6: range_start: 2001::1 lease_duration: 86400 ra_slaac_only: false ra_allow_slaac: false
-
Start the server
./AdGuardHome
There should be a message in log which shows that DHCP server is ready:
[info] DHCP: listening on 0.0.0.0:67