Connecting to Plusnet With OpenWrt

I have just received a BT Home Hub 5 pre-installed with OpenWrt 18.06.4 r7808-ef686b7292.

There is little to no help online, or on these forums on how to set up the connection using the built-in DSL interface. Well, unless you already know how to do it.

So the question is: Is there a simple set of step by step instructions or youtube, that will guide me through setting up my OpenWrt router utilising the built-in DSL/VDSL interface using PPPoE and then allowing me to connect to the Wifi to get internet connectivity?

I have googled so many things that my head is now spinning

Help ... Please :slight_smile:

I have long left DSL hell, so I have no idea how to solve your problem. But the ISP page on the OpenWRT wiki looks promising. Have you checked the UK section? There is a section for BT VSDL.

Thanks for the reply

But these tell me nothing

Do you actually need to be a fully qualified Network engineer to use this software?

Who is your ISP? What country?

plusnet England

Right. To follow the wiki, you at least need some generic Linux/Unix knowledge, so that you can log in with SSH, edit files and run commands. And yes, networking knowledge will absolutely make things easier.

It seems like luci (the web interface) should have options to set up ADSL, which combined with the BT-specific instructions should make it possible to set up your modem through the GUI. But since I don't have that sort of hardware I can't help you. Hopefully someone with similar hardware will find this thread. You could also try to post a question in the forum where the wiki instruction is taken from.

You should also know that 18.06 is fairly old and will be out of security patch support as soon as 20.0x is out, which is hopefully... any year now.

Edit: Ah, BT Home hub, but not BT? That may complicate things.

Why will it make it complicated?

What you need to figure out is the settings required by plusnet.

Their web page says you need pppoe with vlan tag 101

https://www.plus.net/help/broadband/broadband-connection-settings/

This doesn't help you with the modulation setting but you might try what they suggest for BT at the wiki site mentioned above.

My recommendation is flash the latest release of OpenWrt first. This gives you a known good starting point.

From the site mentioned, for BT broadband place this in your /etc/config/network

config dsl 'dsl'
    option annex 'b'
    option tone 'a'

config interface 'wan'
    option ifname 'dsl0.101'
    option proto 'pppoe'
    option ipv6 '1' 
    option mtu '1500'
    option username ''
    option password ''

insert your real username and password

Plusnet configuration is trivial. I was with them until last year. No VLAN needed.

config interface 'wan'
        option proto 'pppoe'
        option ifname 'eth0'
        option username 'username'
        option password 'password'

1

Using the internal modem I think it is pppoa not pppoe.

You were using an external modem. Here the OP is trying to use the internal modem

I'll look and see if I have a backup of the modem settings. I'm 90% sure it's Annex A

Thank you!

Annex A. VLAN ID 101.

And you need to specify the username in the format yourusername@plusdsl.net

I was using a Draytek Vigor 130. Here's the settings I used on the modem which confirms VL:AN ID 101. My modem was set in bridge mode and it passed through the PPPOE connection to the Openwrt

Thank you all so much

In the examples page it was saying to use Annex B.

That has solved the issues I can not get on the interweb via DSL interface on the re-flashed BT home hub.

So just for reference for anyone looking for the solution to connect to Plusnet with open Wrt router.

1)goto Network>interfaces- then click on "Edit" or click on the "WAN" tab

  1. In the "DSL" section enter the following settings

  2. Annex: Annex A + L + M(all)

  3. Tone: A43C + J43 + A43

  4. Encapsulation mode:PTM/EFM(Packet Transfer mode)

  5. DSL line mode: VDSL

  6. Downstream SNR offset: 0.0 dB

  7. Leave the rest as default and click on "Save and Apply"

  8. click on "Edit" or click on the "WAN" tab again

  9. Click on the "Physical settings tab"

  10. From the drop-down scroll to the bottom of the drop-down and in custom enter

  11. dsl0.101

  12. Click on save and apply

  13. click on "Edit" or click on the "WAN" tab again

  14. Select PPPoE protocol from the drop-down...

  15. at this point you may have click on switch protocols to initialise the new protocol

  16. Enter your user-name and password

  17. Click on save and apply

  18. You should now be able to access the Internet via your router

  19. You may also need to setup your wifi interface

Check "OpenWrt/LEDE Installation Guide for BT Home Hub 5A" from https://openwrt.ebilan.co.uk/viewtopic.php?f=7&t=266, it's a rather detailed description especially with UK ISPs in mind.

Yes I have seen that page

I cannot follow it, it is. jumping from one link to another. it's just too confusing

I'll stick to my step by step method

But thank you for the input