dhcpcd
dhcpcd copied to clipboard
regression 10.3.0 fails to acquire DHCPv4
This is copy of #563. As said in https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1121452 dhcpcd stoppeed to acquire IP address. Taking into account #207 I have configured my interfaces as 'manual'. And this worked, but since 10.3.0 it stopped work.
42: uwl5: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether 04:42:1a:54:e5:d1 brd ff:ff:ff:ff:ff:ff
#then
sudo /sbin/wpa_cli -g /run/wpa_supplicant/global interface_add uwl5 /etc/wpa_supplicant/wpa_supplicant.conf
============
42: uwl5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 04:42:1a:54:e5:d1 brd ff:ff:ff:ff:ff:ff
inet6 fe80::642:1aff:fe54:e5d1/64 scope link proto kernel_ll
valid_lft forever preferred_lft forever
============
#why this interface becomes up?
sudo ip link set up dev uwl5
============
42: uwl5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 04:42:1a:54:e5:d1 brd ff:ff:ff:ff:ff:ff
inet6 fe80::642:1aff:fe54:e5d1/64 scope link proto kernel_ll
valid_lft forever preferred_lft forever
============
#address is still not taken
%cat /etc/dhcpcd.conf
hostname
persistent
option rapid_commit
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
option interface_mtu
require dhcp_server_identifier
slaac private
denyinterfaces tun* docker*
noipv4ll
debug
noup
nogateway
When you start wpa_supplicant, it will bring the interface up so it can perform radio scans.
I don't suppose the branch #556 fixes the issue for you?
I need some time compile it - it's my first time.