DSL connection setup in Ubuntu 16.04
How can I set up my DSL connection on Ubuntu 16.04? The way I set up a DSL connection in Ubuntu 14.04 is not working in Ubuntu 16.04.
16.04 networking dsl
add a comment |
How can I set up my DSL connection on Ubuntu 16.04? The way I set up a DSL connection in Ubuntu 14.04 is not working in Ubuntu 16.04.
16.04 networking dsl
add a comment |
How can I set up my DSL connection on Ubuntu 16.04? The way I set up a DSL connection in Ubuntu 14.04 is not working in Ubuntu 16.04.
16.04 networking dsl
How can I set up my DSL connection on Ubuntu 16.04? The way I set up a DSL connection in Ubuntu 14.04 is not working in Ubuntu 16.04.
16.04 networking dsl
16.04 networking dsl
edited Jan 5 at 8:16
Zanna
50.6k13134241
50.6k13134241
asked Apr 25 '16 at 11:51
sgcsgc
3915
3915
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
I solved my problem through following steps:
- go to terminal
- type
sudo pppoeconf
- it will ask some question, press yes
- when you want to start internet just type
sudo pon dsl-provider
to connect to internet - type this to turn it off
sudo poff
add a comment |
Just run sudo pppoeconf
in terminal.
Then give your username and password in popup windows.
add a comment |
I was having the same problem yesterday, and I tried all the above options but this did not work.
However, today, after comparing the dsl-provider file on my Ubuntu 16.04 computer with the file that has the same name on my Debian 8.8 computer, I noticed that there was an error in the Ubuntu file.
So I fixed the file this way:
# Minimalistic default options file for DSL/PPPoE connections
noipdefault
defaultroute
replacedefaultroute
hide-password
#lcp-echo-interval 30
#lcp-echo-failure 4
noauth
persist
#mtu 1492
#persist
#maxfail 0
#holdoff 20
plugin rp-pppoe.so
nic-enp3s0f1
usepeerdns
user "XXXXXXX"
where XXXXXXX is my mailbox provider.
add a comment |
This tutorial is going to show you how to setup a PPPoE connection in Ubuntu from the terminal.
Open up your terminal and type the following command to set your PPPoE connection.
nmcli con edit type pppoe con-name “YOUR_CONNECTION_NAME”
Enter your DSL account and password provided by your ISP and save your settings in the following commands.
set pppoe.username YOUR_DSL_ACCOUNT_USERNAME
set pppoe.password YOUR_DSL_ACCOUNT_PASSWORD
save
Then it will prompt asking:
Saving the connection with ‘autoconnect=yes’. That might result in immediate activation of the connection.
Do you still want to save? (yes/no).
Type
yes
and quit.
Finally, select DSL connection from the network settings menu to establish the connection.
(Click image to enlarge)
References: https://medium.com/@dineshsonachalam/creating-a-dsl-connection-on-ubuntu-18-04-1-lts-c5b7845beea0
add a comment |
Edit the file:
$ sudo nano /etc/network/interfaces
By adding to it:
auto lo eth0
iface lo loopback eth0 inet dhcp
After restart network-manager:
$ sudo service network-manager restart
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
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%2f762372%2fdsl-connection-setup-in-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
I solved my problem through following steps:
- go to terminal
- type
sudo pppoeconf
- it will ask some question, press yes
- when you want to start internet just type
sudo pon dsl-provider
to connect to internet - type this to turn it off
sudo poff
add a comment |
I solved my problem through following steps:
- go to terminal
- type
sudo pppoeconf
- it will ask some question, press yes
- when you want to start internet just type
sudo pon dsl-provider
to connect to internet - type this to turn it off
sudo poff
add a comment |
I solved my problem through following steps:
- go to terminal
- type
sudo pppoeconf
- it will ask some question, press yes
- when you want to start internet just type
sudo pon dsl-provider
to connect to internet - type this to turn it off
sudo poff
I solved my problem through following steps:
- go to terminal
- type
sudo pppoeconf
- it will ask some question, press yes
- when you want to start internet just type
sudo pon dsl-provider
to connect to internet - type this to turn it off
sudo poff
edited Apr 30 '16 at 21:20
guntbert
9,142133169
9,142133169
answered Apr 28 '16 at 8:43
sgcsgc
3915
3915
add a comment |
add a comment |
Just run sudo pppoeconf
in terminal.
Then give your username and password in popup windows.
add a comment |
Just run sudo pppoeconf
in terminal.
Then give your username and password in popup windows.
add a comment |
Just run sudo pppoeconf
in terminal.
Then give your username and password in popup windows.
Just run sudo pppoeconf
in terminal.
Then give your username and password in popup windows.
answered Apr 25 '16 at 20:58
KrishnaKrishna
298212
298212
add a comment |
add a comment |
I was having the same problem yesterday, and I tried all the above options but this did not work.
However, today, after comparing the dsl-provider file on my Ubuntu 16.04 computer with the file that has the same name on my Debian 8.8 computer, I noticed that there was an error in the Ubuntu file.
So I fixed the file this way:
# Minimalistic default options file for DSL/PPPoE connections
noipdefault
defaultroute
replacedefaultroute
hide-password
#lcp-echo-interval 30
#lcp-echo-failure 4
noauth
persist
#mtu 1492
#persist
#maxfail 0
#holdoff 20
plugin rp-pppoe.so
nic-enp3s0f1
usepeerdns
user "XXXXXXX"
where XXXXXXX is my mailbox provider.
add a comment |
I was having the same problem yesterday, and I tried all the above options but this did not work.
However, today, after comparing the dsl-provider file on my Ubuntu 16.04 computer with the file that has the same name on my Debian 8.8 computer, I noticed that there was an error in the Ubuntu file.
So I fixed the file this way:
# Minimalistic default options file for DSL/PPPoE connections
noipdefault
defaultroute
replacedefaultroute
hide-password
#lcp-echo-interval 30
#lcp-echo-failure 4
noauth
persist
#mtu 1492
#persist
#maxfail 0
#holdoff 20
plugin rp-pppoe.so
nic-enp3s0f1
usepeerdns
user "XXXXXXX"
where XXXXXXX is my mailbox provider.
add a comment |
I was having the same problem yesterday, and I tried all the above options but this did not work.
However, today, after comparing the dsl-provider file on my Ubuntu 16.04 computer with the file that has the same name on my Debian 8.8 computer, I noticed that there was an error in the Ubuntu file.
So I fixed the file this way:
# Minimalistic default options file for DSL/PPPoE connections
noipdefault
defaultroute
replacedefaultroute
hide-password
#lcp-echo-interval 30
#lcp-echo-failure 4
noauth
persist
#mtu 1492
#persist
#maxfail 0
#holdoff 20
plugin rp-pppoe.so
nic-enp3s0f1
usepeerdns
user "XXXXXXX"
where XXXXXXX is my mailbox provider.
I was having the same problem yesterday, and I tried all the above options but this did not work.
However, today, after comparing the dsl-provider file on my Ubuntu 16.04 computer with the file that has the same name on my Debian 8.8 computer, I noticed that there was an error in the Ubuntu file.
So I fixed the file this way:
# Minimalistic default options file for DSL/PPPoE connections
noipdefault
defaultroute
replacedefaultroute
hide-password
#lcp-echo-interval 30
#lcp-echo-failure 4
noauth
persist
#mtu 1492
#persist
#maxfail 0
#holdoff 20
plugin rp-pppoe.so
nic-enp3s0f1
usepeerdns
user "XXXXXXX"
where XXXXXXX is my mailbox provider.
edited Jan 5 at 8:17
Kulfy
4,29651342
4,29651342
answered Jul 9 '17 at 0:00
M. F. Araujo de ResendeM. F. Araujo de Resende
11
11
add a comment |
add a comment |
This tutorial is going to show you how to setup a PPPoE connection in Ubuntu from the terminal.
Open up your terminal and type the following command to set your PPPoE connection.
nmcli con edit type pppoe con-name “YOUR_CONNECTION_NAME”
Enter your DSL account and password provided by your ISP and save your settings in the following commands.
set pppoe.username YOUR_DSL_ACCOUNT_USERNAME
set pppoe.password YOUR_DSL_ACCOUNT_PASSWORD
save
Then it will prompt asking:
Saving the connection with ‘autoconnect=yes’. That might result in immediate activation of the connection.
Do you still want to save? (yes/no).
Type
yes
and quit.
Finally, select DSL connection from the network settings menu to establish the connection.
(Click image to enlarge)
References: https://medium.com/@dineshsonachalam/creating-a-dsl-connection-on-ubuntu-18-04-1-lts-c5b7845beea0
add a comment |
This tutorial is going to show you how to setup a PPPoE connection in Ubuntu from the terminal.
Open up your terminal and type the following command to set your PPPoE connection.
nmcli con edit type pppoe con-name “YOUR_CONNECTION_NAME”
Enter your DSL account and password provided by your ISP and save your settings in the following commands.
set pppoe.username YOUR_DSL_ACCOUNT_USERNAME
set pppoe.password YOUR_DSL_ACCOUNT_PASSWORD
save
Then it will prompt asking:
Saving the connection with ‘autoconnect=yes’. That might result in immediate activation of the connection.
Do you still want to save? (yes/no).
Type
yes
and quit.
Finally, select DSL connection from the network settings menu to establish the connection.
(Click image to enlarge)
References: https://medium.com/@dineshsonachalam/creating-a-dsl-connection-on-ubuntu-18-04-1-lts-c5b7845beea0
add a comment |
This tutorial is going to show you how to setup a PPPoE connection in Ubuntu from the terminal.
Open up your terminal and type the following command to set your PPPoE connection.
nmcli con edit type pppoe con-name “YOUR_CONNECTION_NAME”
Enter your DSL account and password provided by your ISP and save your settings in the following commands.
set pppoe.username YOUR_DSL_ACCOUNT_USERNAME
set pppoe.password YOUR_DSL_ACCOUNT_PASSWORD
save
Then it will prompt asking:
Saving the connection with ‘autoconnect=yes’. That might result in immediate activation of the connection.
Do you still want to save? (yes/no).
Type
yes
and quit.
Finally, select DSL connection from the network settings menu to establish the connection.
(Click image to enlarge)
References: https://medium.com/@dineshsonachalam/creating-a-dsl-connection-on-ubuntu-18-04-1-lts-c5b7845beea0
This tutorial is going to show you how to setup a PPPoE connection in Ubuntu from the terminal.
Open up your terminal and type the following command to set your PPPoE connection.
nmcli con edit type pppoe con-name “YOUR_CONNECTION_NAME”
Enter your DSL account and password provided by your ISP and save your settings in the following commands.
set pppoe.username YOUR_DSL_ACCOUNT_USERNAME
set pppoe.password YOUR_DSL_ACCOUNT_PASSWORD
save
Then it will prompt asking:
Saving the connection with ‘autoconnect=yes’. That might result in immediate activation of the connection.
Do you still want to save? (yes/no).
Type
yes
and quit.
Finally, select DSL connection from the network settings menu to establish the connection.
(Click image to enlarge)
References: https://medium.com/@dineshsonachalam/creating-a-dsl-connection-on-ubuntu-18-04-1-lts-c5b7845beea0
edited Jan 5 at 9:09
karel
58.3k12128146
58.3k12128146
answered Jan 5 at 6:40
Dinesh SonachalamDinesh Sonachalam
11
11
add a comment |
add a comment |
Edit the file:
$ sudo nano /etc/network/interfaces
By adding to it:
auto lo eth0
iface lo loopback eth0 inet dhcp
After restart network-manager:
$ sudo service network-manager restart
add a comment |
Edit the file:
$ sudo nano /etc/network/interfaces
By adding to it:
auto lo eth0
iface lo loopback eth0 inet dhcp
After restart network-manager:
$ sudo service network-manager restart
add a comment |
Edit the file:
$ sudo nano /etc/network/interfaces
By adding to it:
auto lo eth0
iface lo loopback eth0 inet dhcp
After restart network-manager:
$ sudo service network-manager restart
Edit the file:
$ sudo nano /etc/network/interfaces
By adding to it:
auto lo eth0
iface lo loopback eth0 inet dhcp
After restart network-manager:
$ sudo service network-manager restart
answered Apr 28 '16 at 22:17
Artem DerevnyukArtem Derevnyuk
12
12
add a comment |
add a comment |
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.
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%2f762372%2fdsl-connection-setup-in-ubuntu-16-04%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