xbianonpi / xbian

XBMC on Raspberry Pi, Bleeding Edge
https://xbian.org
GNU General Public License v3.0
294 stars 44 forks source link

Army of dhclients #779

Open matega opened 8 years ago

matega commented 8 years ago

Hardware: Raspberry Pi 2 XBian version: 2015-10-17, 2015-10-10 Special: Running from external hard drive, BTRFS compression=lzo Network connection is through the Ethernet jack on the board

The problem

I upgraded to the latest image about a week ago. (This should be the 2015-10-10 version, although I can't be sure.) From then on, a new instance of dhclient started about every 2 minutes, to the point of them consuming all the RAM and the OOM killer killing other processes. A reboot doesn't help. Since then I reinstalled the whole system to the 2015-10-17 version (I replaced the HDD under the whole thing, and as the update screwed up my /etc/fstab, I suspected that this too could be an update artifact), but the problem persisted.

ps -ef output: a lot of these:root (pid) 1 0 17:07 ? 00:00:00 dhclient -v -pf /run/dhclient.eth0.pid -lf /var/lib/dhcp/dhclient.eth0.leases eth0

Installed packages

The standard ones, plus the following and their dependencies:

I was stumped (I didn't edit any DHCP-related config files even before the upgrade), so I read a lot of dmesg, but I found no mention of dhclient. I also installed rsyslog and looked into /var/log/syslog, but apart from each dhclient happily announcing its birth and getting the same (static) lease, I couldn't find anything related to the issue. I've made a cronjob to pkill dhclient every hour, so it's ugly but stable.

mk01 commented 8 years ago

@matega

no idea on this. this can be anything (dhcp server changed, isc-dhcp-client pkg changed ...). for now remove isc-dhcp-client (what XBian preinstalls by default as safe option). XBian contains lightweight own dhcp client, which will be used after you remove isc-dhcp-client. DL isc-dhcp-client deb pkg as contingency you won't get ip, and try restarting eth0 - like this:

sudo -s
cd /tmp
apt-get download isc-dhcp-client
apt-get remove isc-dhcp-client
ifdown --force eth0; ifup eth0

if all well, let's discuss again in a month or so... (maybe something will come up) if you don't get IP, configure manually and try (installing via apt-get install xxx any other dhcp client - udhcpd, dhcpcd5 ... you can configure eth0 manually with:

ip a add IP/NETMASK dev eth0
ip r add default via IPOFGW dev eth0

if you don't know the data, install back isc-dhcp-client, ifdown/ifup eth0 and try the others. ...

Spekkie commented 8 years ago

I'm also having this issue, though I thought it was due to openVPN or SSH... Since the pi ran fine overnight and as soon as I started logging in using SSH over openVPN (to circumvent the dynamic IP of my parents connection) to update xbian for the openVPN crashing KODI issue, the dhclients started to stack until the point where the ssh connection was kicked out and I was locked out of my pi... Problem is the pi is stationed at my parents house to provide backups to my server, so when I'm locked out it's hard to get back in since one of my folks need to power cycle the pi...

I'll try removing the dhcp client, but in my case it can get really tricky if I get locked out and have to manually restart the interface, since I would need to go over to my parents house...

mk01 commented 8 years ago

@Spekkie

that's why one should use (exactly as written before - one line)

ifdown --force eth0; ifup eth0

sure there is risk of eth0 no comming up, then change that for:

ifdown --force eth0; ifup eth0 || { ip a add IP/NETMASK dev eth0; ip r add default via IPOFGW dev eth0; }

still there is never 100% assurance of success. but currently we can't help more.

Spekkie commented 8 years ago

@mk01 removing the isc-dhcp-client package seems to have fixed the issue for me, however a reboot was the easiest way to get rid of the remaining dhclient processes...

mk01 commented 8 years ago

@Spekkie thanks for info

matega commented 8 years ago

Thanks for your reply. Unfortunately I don't have physical access to my Pi now, but I'll try this once I get there.