mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-05 11:39:24 +01:00
2f51b51152
Tests that DHCP using IWD's internal netconfig functions properly. The actual IP address assignment is not verified, but since IWD does not signal the connection as successful unless DHCP succeeds we can assume it was successful by checking that the device is connected. The process of actually starting dhcpd and configuring the interfaces is quite simple so it was left in the autotest itself. If (or when) more tests require IP capabilities (p2p, FILS, etc) this could be moved into test-runner itself and be made common. The reason I did not put it in there now is a) because this is the only test and b) more complex DHCP cases are likely to develop and may require more than this simplistic setup (like multiple APs/interfaces)
17 lines
439 B
ISCdhcpd
17 lines
439 B
ISCdhcpd
default-lease-time 600; # 10 minutes
|
|
max-lease-time 7200; # 2 hours
|
|
|
|
option broadcast-address 192.168.1.255;
|
|
option routers 192.168.1.254;
|
|
option subnet-mask 255.255.255.0;
|
|
|
|
subnet 192.168.1.0 netmask 255.255.255.0
|
|
{
|
|
option routers 192.168.1.1;
|
|
option subnet-mask 255.255.255.0;
|
|
option domain-name-servers 192.168.1.1;
|
|
interface wln0;
|
|
range 192.168.1.10 192.168.1.20;
|
|
range 192.168.1.100 192.168.1.200;
|
|
}
|