Hi,
I m trying to use the older version of Networkmanager i.e 0.9.4, because of dependency on version of libc(2.15) running in my board.
Intention is to assign ipv6 address to one interface(eth3) using dhcpv6, but I always see that dhclient -4 is getting invoked.
cat /etc/NetworkManager/NetworkManager.conf
[main]
plugins=ifupdown,keyfile
dns=dnsmasq
[ifupdown]
managed=true
[keyfile]
unmanaged-devices=interface-name:eth0;interface-name:eth4;interface-name:eth3;interface-name:eth0.2;interface-name:eth0.4;interface-name:eth0.5;interface-name:eth0.9
unmanaged-devices=mac:00:99:88:77:92:d0;mac:00:11:22:33:44:66;mac:00:77:88:99:11:22
cat /etc/network/interfaces
auto eth3
iface eth3 inet6 dhcp
accept_ra 0
autoconf 0
With this configuration, I see that always dhclient -4 is getting invoked, but expectation is dhclient -6 should be invoked.
Any suggestions to get this working
Regards,
Sriram