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.


networking network-manager ethernet
add a comment |
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.


networking network-manager ethernet
add a comment |
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.


networking network-manager ethernet
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.


networking network-manager ethernet
networking network-manager ethernet
edited Nov 23 at 13:59
Zanna
49.2k13123234
49.2k13123234
asked Nov 23 at 11:30
user896145
12
12
add a comment |
add a comment |
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
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
|
show 15 more comments
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
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
|
show 15 more comments
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
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
|
show 15 more comments
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
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
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
|
show 15 more comments
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
|
show 15 more comments
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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