2

This post worked perfect for 14.04 as well as 14.10. But for 15.04 there seems to be a strange issue. The application starts and gets a tunnel ip addresses but doesn't forward any traffic. The bytes sent stays at around 300 bytes and received is always 0. Any Idea how to solve this?

In case the application closes immediately after opening then make sure you have xterm installed.

Akilesh
  • 233

3 Answers3

3

Seems like the bug is reported at

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1444332

I've tried to downgrade to kernel 3.18 and it works (as a workaround).

Edit:

How to downgrade:

  • Find the kernel packages at http://kernel.ubuntu.com/~kernel-ppa/mainline/ (Here I choose v3.18-vivid).
  • For 64-bits system, download linux-headers-3.18.0-*-generic_*_amd64.deb linux-image-3.18.0-*-generic_*_amd64.deb linux-headers-3.18.0-*_all.deb (For 32-bits, download the ones end with _i386 instead)
  • Install the kernel with sudo dpkg -i linux-headers-3.18.0-*.deb linux-image-3.18.0-*.deb
  • Then, you're able to choose the kernel at grub when rebooting (from the advance options).
  • To set kernel 3.18 as default, you may check Set "older" kernel as default grub entry, which I haven't try yet.

Source: http://ubuntuhandbook.org/index.php/2014/12/install-linux-kernel-3-18-ubuntu/

pishen
  • 148
2

Found it. Looks like this is a Kernel bug in 3.19 kernel which is already identified and fixed.

https://bugzilla.kernel.org/show_bug.cgi?id=90901

Hope Ubuntu pushes out the 3.19.2. (or downgrade to 3.16)

0

No need to install an older kernel version. In my case, I already had an "older kernel" entry in my grub menu (3.16.0-34-generic). Just enter into the advanced menu in grub and select the older version.

Sir_FZ
  • 390