Internet connection drops down gradually in LAN connection in Ubuntu 18.10











up vote
0
down vote

favorite












After connecting LAN cable 2-3 minutes later I see a question mark in my LAN icon on the top right corner and then I am unable to browse anything. Videos on YouTube are also starting to buffer. But the download is still continuing. After reconnecting internet, I am able to browse for the next few minutes. I have erased the disk and reinstalled OS (Ubuntu 18.10) but it is still happening. please give me an easy solution so that I can apply it on my own.



lspci



lshw -C network










share|improve this question




























    up vote
    0
    down vote

    favorite












    After connecting LAN cable 2-3 minutes later I see a question mark in my LAN icon on the top right corner and then I am unable to browse anything. Videos on YouTube are also starting to buffer. But the download is still continuing. After reconnecting internet, I am able to browse for the next few minutes. I have erased the disk and reinstalled OS (Ubuntu 18.10) but it is still happening. please give me an easy solution so that I can apply it on my own.



    lspci



    lshw -C network










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      After connecting LAN cable 2-3 minutes later I see a question mark in my LAN icon on the top right corner and then I am unable to browse anything. Videos on YouTube are also starting to buffer. But the download is still continuing. After reconnecting internet, I am able to browse for the next few minutes. I have erased the disk and reinstalled OS (Ubuntu 18.10) but it is still happening. please give me an easy solution so that I can apply it on my own.



      lspci



      lshw -C network










      share|improve this question















      After connecting LAN cable 2-3 minutes later I see a question mark in my LAN icon on the top right corner and then I am unable to browse anything. Videos on YouTube are also starting to buffer. But the download is still continuing. After reconnecting internet, I am able to browse for the next few minutes. I have erased the disk and reinstalled OS (Ubuntu 18.10) but it is still happening. please give me an easy solution so that I can apply it on my own.



      lspci



      lshw -C network







      networking network-manager ethernet






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 23 at 13:59









      Zanna

      49.2k13123234




      49.2k13123234










      asked Nov 23 at 11:30









      user896145

      12




      12






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          I had also a similar problem. I could solve it by turning off IPv6.
          Please add



          net.ipv6.conf.all.disable_ipv6 = 1



          net.ipv6.conf.default.disable_ipv6 = 1



          net.ipv6.conf.lo.disable_ipv6 = 1



          to



          /etc/sysctl.conf



          and then type the following command and press Enter on a command line



          sudo sysctl -p



          Next, please create a new file /etc/rc.local and add these contents



          #!/bin/bash
          # /etc/rc.local

          # Load kernel variables from /etc/sysctl.d
          /etc/init.d/procps restart

          exit 0


          and give the permission to execute to the file



          chmod 755 /etc/rc.local





          share|improve this answer























          • can you please tell me how to do that?
            – user896145
            Nov 23 at 14:05










          • should I write this command in terminal?
            – user896145
            Nov 23 at 14:09










          • should i put # in front of them
            – user896145
            Nov 23 at 14:15










          • No. Please do not write it. Because it means comment out.
            – MR.ROBOT
            Nov 23 at 14:17










          • Did it work? Please tell me more information if it didn't work.
            – MR.ROBOT
            Nov 23 at 14:25











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1095354%2finternet-connection-drops-down-gradually-in-lan-connection-in-ubuntu-18-10%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          I had also a similar problem. I could solve it by turning off IPv6.
          Please add



          net.ipv6.conf.all.disable_ipv6 = 1



          net.ipv6.conf.default.disable_ipv6 = 1



          net.ipv6.conf.lo.disable_ipv6 = 1



          to



          /etc/sysctl.conf



          and then type the following command and press Enter on a command line



          sudo sysctl -p



          Next, please create a new file /etc/rc.local and add these contents



          #!/bin/bash
          # /etc/rc.local

          # Load kernel variables from /etc/sysctl.d
          /etc/init.d/procps restart

          exit 0


          and give the permission to execute to the file



          chmod 755 /etc/rc.local





          share|improve this answer























          • can you please tell me how to do that?
            – user896145
            Nov 23 at 14:05










          • should I write this command in terminal?
            – user896145
            Nov 23 at 14:09










          • should i put # in front of them
            – user896145
            Nov 23 at 14:15










          • No. Please do not write it. Because it means comment out.
            – MR.ROBOT
            Nov 23 at 14:17










          • Did it work? Please tell me more information if it didn't work.
            – MR.ROBOT
            Nov 23 at 14:25















          up vote
          0
          down vote













          I had also a similar problem. I could solve it by turning off IPv6.
          Please add



          net.ipv6.conf.all.disable_ipv6 = 1



          net.ipv6.conf.default.disable_ipv6 = 1



          net.ipv6.conf.lo.disable_ipv6 = 1



          to



          /etc/sysctl.conf



          and then type the following command and press Enter on a command line



          sudo sysctl -p



          Next, please create a new file /etc/rc.local and add these contents



          #!/bin/bash
          # /etc/rc.local

          # Load kernel variables from /etc/sysctl.d
          /etc/init.d/procps restart

          exit 0


          and give the permission to execute to the file



          chmod 755 /etc/rc.local





          share|improve this answer























          • can you please tell me how to do that?
            – user896145
            Nov 23 at 14:05










          • should I write this command in terminal?
            – user896145
            Nov 23 at 14:09










          • should i put # in front of them
            – user896145
            Nov 23 at 14:15










          • No. Please do not write it. Because it means comment out.
            – MR.ROBOT
            Nov 23 at 14:17










          • Did it work? Please tell me more information if it didn't work.
            – MR.ROBOT
            Nov 23 at 14:25













          up vote
          0
          down vote










          up vote
          0
          down vote









          I had also a similar problem. I could solve it by turning off IPv6.
          Please add



          net.ipv6.conf.all.disable_ipv6 = 1



          net.ipv6.conf.default.disable_ipv6 = 1



          net.ipv6.conf.lo.disable_ipv6 = 1



          to



          /etc/sysctl.conf



          and then type the following command and press Enter on a command line



          sudo sysctl -p



          Next, please create a new file /etc/rc.local and add these contents



          #!/bin/bash
          # /etc/rc.local

          # Load kernel variables from /etc/sysctl.d
          /etc/init.d/procps restart

          exit 0


          and give the permission to execute to the file



          chmod 755 /etc/rc.local





          share|improve this answer














          I had also a similar problem. I could solve it by turning off IPv6.
          Please add



          net.ipv6.conf.all.disable_ipv6 = 1



          net.ipv6.conf.default.disable_ipv6 = 1



          net.ipv6.conf.lo.disable_ipv6 = 1



          to



          /etc/sysctl.conf



          and then type the following command and press Enter on a command line



          sudo sysctl -p



          Next, please create a new file /etc/rc.local and add these contents



          #!/bin/bash
          # /etc/rc.local

          # Load kernel variables from /etc/sysctl.d
          /etc/init.d/procps restart

          exit 0


          and give the permission to execute to the file



          chmod 755 /etc/rc.local






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 15 hours ago

























          answered Nov 23 at 13:38









          MR.ROBOT

          11




          11












          • can you please tell me how to do that?
            – user896145
            Nov 23 at 14:05










          • should I write this command in terminal?
            – user896145
            Nov 23 at 14:09










          • should i put # in front of them
            – user896145
            Nov 23 at 14:15










          • No. Please do not write it. Because it means comment out.
            – MR.ROBOT
            Nov 23 at 14:17










          • Did it work? Please tell me more information if it didn't work.
            – MR.ROBOT
            Nov 23 at 14:25


















          • can you please tell me how to do that?
            – user896145
            Nov 23 at 14:05










          • should I write this command in terminal?
            – user896145
            Nov 23 at 14:09










          • should i put # in front of them
            – user896145
            Nov 23 at 14:15










          • No. Please do not write it. Because it means comment out.
            – MR.ROBOT
            Nov 23 at 14:17










          • Did it work? Please tell me more information if it didn't work.
            – MR.ROBOT
            Nov 23 at 14:25
















          can you please tell me how to do that?
          – user896145
          Nov 23 at 14:05




          can you please tell me how to do that?
          – user896145
          Nov 23 at 14:05












          should I write this command in terminal?
          – user896145
          Nov 23 at 14:09




          should I write this command in terminal?
          – user896145
          Nov 23 at 14:09












          should i put # in front of them
          – user896145
          Nov 23 at 14:15




          should i put # in front of them
          – user896145
          Nov 23 at 14:15












          No. Please do not write it. Because it means comment out.
          – MR.ROBOT
          Nov 23 at 14:17




          No. Please do not write it. Because it means comment out.
          – MR.ROBOT
          Nov 23 at 14:17












          Did it work? Please tell me more information if it didn't work.
          – MR.ROBOT
          Nov 23 at 14:25




          Did it work? Please tell me more information if it didn't work.
          – MR.ROBOT
          Nov 23 at 14:25


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1095354%2finternet-connection-drops-down-gradually-in-lan-connection-in-ubuntu-18-10%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to send String Array data to Server using php in android

          Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

          Is anime1.com a legal site for watching anime?