Ubuntu Debian (All Linux OS) Bug: WIFI randomly disconnected at 100% Signal no internet System : ubuntu 18.04 LTS Kernel 5.7 amd64 Router openwrt LAN/WIFI: disabled ipv6 dhcp ! Bug: Wifi lost internet connection randomly on 100% Signal beside the Gateway-Router! Problem: No Error Logs, no Kernel Messages Tested: Replaced Mini-PCI WIFI 5/6 Cards various Brands ATH9/Intel no fix!! Replaces Drivers and Power Off Powermanagement of PCI-WIFI! no fix! Solution: edit /etc/sysctl.conf insert: net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 Bug Background Info: dhcp6 daemon got a expire time of IP Address but fails to renew the handshake […]
Tag: ipv6
Debian Bug: Slow user switching at Console (su, sudo, slow ssh logon, slow PC,IPv6 Problems)
Problem: On a Debian Squeeze/Ubuntu with default setup the interaction can be very slow at your Home Network. SSH Logon seems to hang seconds, Browser startup and www browsing could be slow or offer waits Background: IPv6 was implemented on newer OS, but never used at Local Networks (IPv4) cause there are no IPv6 Nameservers!!! Solution: edit with #sudo nano /etc/hosts and comment out IPv6 with # # The following lines are desirable for IPv6 capable hosts #::1 ip6-localhost ip6-loopback #fe00::0 ip6-localnet #ff00::0 ip6-mcastprefix #ff02::1 ip6-allnodes #ff02::2 ip6-allrouters then disable IPv6 on boot for the services and programs with #sudo […]
Ubuntu Lucid Lynx 10.04: Disable IPv6 (dmesg = no IPv6 routers present)
Problem: on default ubuntu lucid lynx setup ipv6 is enabled, dmesg shows boot.log= wlan0: no IPv6 routers present to speed up on a ipv4 network you should disable it. Solution: – run #sudo nano /etc/sysctl.conf add lines: #disable ipv6 net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 -quit save and reboot.. -to test system open terminal and enter #dmesg -the message = wlan0: no IPv6 routers present should not be seen!