Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Hey there, your problem has nothing to do with Java, strictly with the default installation of Ubuntu with IP v6 enabled
  2.  
  3. I know because I had the same problem, only it was some portforwarding I was setting up with an SSH session locally.
  4.  
  5. If you look at your NIC with 'ifconfig -a' you'll find you have not only a ipv4 address but an ipv6 one as well.
  6.  
  7. To fix this:
  8. Change the line is /etc/modprobe.d/aliases from:
  9.  
  10. alias net-pf-10 ipv6
  11.  
  12. to
  13.  
  14. alias net-pf-10 off
  15.  
  16. Then, I rebooted and presto, no ipv6 enabled or configured anymore.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement