<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: OpenWRT and Plusnet in Tech Help - Software/Hardware etc</title>
    <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450241#M78196</link>
    <description>&lt;P&gt;Here's the full config file. This is how it was by default with just the wan and dsl interfaces replaced with yours...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;config interface 'loopback'&lt;BR /&gt; option ifname 'lo'&lt;BR /&gt; option proto 'static'&lt;BR /&gt; option ipaddr '127.0.0.1'&lt;BR /&gt; option netmask '255.0.0.0'&lt;BR /&gt;&lt;BR /&gt;config globals 'globals'&lt;BR /&gt; option ula_prefix 'fd6e:985a:5989::/48'&lt;BR /&gt;&lt;BR /&gt;config interface 'lan'&lt;BR /&gt; option force_link '1'&lt;BR /&gt; option type 'bridge'&lt;BR /&gt; option proto 'static'&lt;BR /&gt; option ipaddr '192.168.1.1'&lt;BR /&gt; option netmask '255.255.255.0'&lt;BR /&gt; option ip6assign '60'&lt;BR /&gt; option ifname 'eth0.1'&lt;BR /&gt; option macaddr 'f4:f2:6d:bf:f5:33'&lt;BR /&gt;&lt;BR /&gt;config switch&lt;BR /&gt; option name 'switch0'&lt;BR /&gt; option reset '1'&lt;BR /&gt; option enable_vlan '1'&lt;BR /&gt;&lt;BR /&gt;config switch_vlan&lt;BR /&gt; option device 'switch0'&lt;BR /&gt; option vlan '1'&lt;BR /&gt; option ports '0 2 4 5 6t'&lt;BR /&gt;&lt;BR /&gt;config atm-bridge 'atm'&lt;BR /&gt; option vci '32'&lt;BR /&gt; option encaps 'llc'&lt;BR /&gt; option payload 'bridged'&lt;BR /&gt; option vpi '8'&lt;BR /&gt;&lt;BR /&gt;config interface 'wan'&lt;BR /&gt; option ifname 'ptm0.101'&lt;BR /&gt; option proto 'pppoe'&lt;BR /&gt; option username 'usernameremoved'&lt;BR /&gt; option password 'passwordremoved'&lt;BR /&gt; option ipv6 'auto'&lt;BR /&gt;&lt;BR /&gt;config interface 'wan6'&lt;BR /&gt; option ifname '@wan'&lt;BR /&gt; option proto 'dhcpv6'&lt;BR /&gt;&lt;BR /&gt;config dsl 'dsl'&lt;BR /&gt; option annex 'b'&lt;BR /&gt; option xfer_mode 'ptm'&lt;BR /&gt; option line_mode 'vdsl'&lt;/PRE&gt;</description>
    <pubDate>Mon, 19 Jun 2017 18:28:55 GMT</pubDate>
    <dc:creator>FrazUK</dc:creator>
    <dc:date>2017-06-19T18:28:55Z</dc:date>
    <item>
      <title>OpenWRT and Plusnet</title>
      <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1449904#M78170</link>
      <description>&lt;P&gt;I've installed OpenWRT on my TP-Link W9980 which seems to have gone well except I don't have any internet connection. The modem isn't synced/status is down and there's no green LED. I've set up the basic settings from the admin panel (PPP, username/password) and followed the guide here for a device with a built in modem &lt;A href="https://wiki.openwrt.org/doc/howto/internet.connection" target="_blank"&gt;https://wiki.openwrt.org/doc/howto/internet.connection&lt;/A&gt;. The two commands&lt;/P&gt;
&lt;PRE class="code"&gt;uci set network.adsl.fwannex='a'&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="code"&gt;uci set network.adsl.annex='a2p'&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both give an 'invalid argument' error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does anyone here knew how to get OpenWRT setup for vdsl on Plusnet?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2017 18:38:57 GMT</pubDate>
      <guid>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1449904#M78170</guid>
      <dc:creator>FrazUK</dc:creator>
      <dc:date>2017-06-18T18:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: OpenWRT and Plusnet</title>
      <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1449920#M78173</link>
      <description>&lt;P&gt;I've never used the uci commands so not sure exactly how to use them. But the following is the relevant section from my '/etc/config/network' file. If you copy them into yours (overwriting any existing 'dsl' or 'wan' sections) and add your username/password, it should work. Obviously remember to back up the original config file first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;config dsl 'dsl'
        option annex 'b'
        option xfer_mode 'ptm'
        option line_mode 'vdsl'

config interface 'wan'
        option ifname 'ptm0.101'
        option proto 'pppoe'
        option username '&amp;lt;username&amp;gt;'
        option password '&amp;lt;password&amp;gt;'
        option ipv6 'auto'&lt;/PRE&gt;</description>
      <pubDate>Sun, 18 Jun 2017 20:23:42 GMT</pubDate>
      <guid>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1449920#M78173</guid>
      <dc:creator>Krazeh</dc:creator>
      <dc:date>2017-06-18T20:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: OpenWRT and Plusnet</title>
      <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1449927#M78174</link>
      <description>&lt;P&gt;Thanks Krazeh,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've just changed those settings using uci commands but still have no connection. How do you access the files to edit manually?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2017 21:01:12 GMT</pubDate>
      <guid>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1449927#M78174</guid>
      <dc:creator>FrazUK</dc:creator>
      <dc:date>2017-06-18T21:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: OpenWRT and Plusnet</title>
      <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450113#M78188</link>
      <description>&lt;P&gt;OK, I've figured out how to edit the file and I've applied the settings you gave but i still have no sync. Is there something I'm missing? All I've done so far, is install OpenWRT and made these config changes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: The device is a VDSL Modem and Router combo. Is the config you provided for this or for an external modem?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 13:44:16 GMT</pubDate>
      <guid>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450113#M78188</guid>
      <dc:creator>FrazUK</dc:creator>
      <dc:date>2017-06-19T13:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: OpenWRT and Plusnet</title>
      <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450196#M78191</link>
      <description>&lt;P&gt;Can you post the entire contents of your /etc/config/network file? That might point out where something is going wrong.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 16:02:59 GMT</pubDate>
      <guid>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450196#M78191</guid>
      <dc:creator>Krazeh</dc:creator>
      <dc:date>2017-06-19T16:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: OpenWRT and Plusnet</title>
      <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450241#M78196</link>
      <description>&lt;P&gt;Here's the full config file. This is how it was by default with just the wan and dsl interfaces replaced with yours...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;config interface 'loopback'&lt;BR /&gt; option ifname 'lo'&lt;BR /&gt; option proto 'static'&lt;BR /&gt; option ipaddr '127.0.0.1'&lt;BR /&gt; option netmask '255.0.0.0'&lt;BR /&gt;&lt;BR /&gt;config globals 'globals'&lt;BR /&gt; option ula_prefix 'fd6e:985a:5989::/48'&lt;BR /&gt;&lt;BR /&gt;config interface 'lan'&lt;BR /&gt; option force_link '1'&lt;BR /&gt; option type 'bridge'&lt;BR /&gt; option proto 'static'&lt;BR /&gt; option ipaddr '192.168.1.1'&lt;BR /&gt; option netmask '255.255.255.0'&lt;BR /&gt; option ip6assign '60'&lt;BR /&gt; option ifname 'eth0.1'&lt;BR /&gt; option macaddr 'f4:f2:6d:bf:f5:33'&lt;BR /&gt;&lt;BR /&gt;config switch&lt;BR /&gt; option name 'switch0'&lt;BR /&gt; option reset '1'&lt;BR /&gt; option enable_vlan '1'&lt;BR /&gt;&lt;BR /&gt;config switch_vlan&lt;BR /&gt; option device 'switch0'&lt;BR /&gt; option vlan '1'&lt;BR /&gt; option ports '0 2 4 5 6t'&lt;BR /&gt;&lt;BR /&gt;config atm-bridge 'atm'&lt;BR /&gt; option vci '32'&lt;BR /&gt; option encaps 'llc'&lt;BR /&gt; option payload 'bridged'&lt;BR /&gt; option vpi '8'&lt;BR /&gt;&lt;BR /&gt;config interface 'wan'&lt;BR /&gt; option ifname 'ptm0.101'&lt;BR /&gt; option proto 'pppoe'&lt;BR /&gt; option username 'usernameremoved'&lt;BR /&gt; option password 'passwordremoved'&lt;BR /&gt; option ipv6 'auto'&lt;BR /&gt;&lt;BR /&gt;config interface 'wan6'&lt;BR /&gt; option ifname '@wan'&lt;BR /&gt; option proto 'dhcpv6'&lt;BR /&gt;&lt;BR /&gt;config dsl 'dsl'&lt;BR /&gt; option annex 'b'&lt;BR /&gt; option xfer_mode 'ptm'&lt;BR /&gt; option line_mode 'vdsl'&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Jun 2017 18:28:55 GMT</pubDate>
      <guid>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450241#M78196</guid>
      <dc:creator>FrazUK</dc:creator>
      <dc:date>2017-06-19T18:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: OpenWRT and Plusnet</title>
      <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450566#M78206</link>
      <description>&lt;P&gt;&lt;a href="https://community.plus.net/t5/user/viewprofilepage/user-id/31474"&gt;@FrazUK&lt;/a&gt;&amp;nbsp;for reference here is my configuration file (relevant bits) which does have a few differences compared to yours:&lt;/P&gt;
&lt;PRE&gt;config interface 'wan'                            
        option ifname 'ptm0.101'                  
        option proto 'pppoe'                      
        option username 'USERNAME'
        option password 'PASSWORD'           
        option ipv6 'auto'          
        option keepalive '5'        
        option auto '1'                       

config vdsl 'dsl'                               
        option annex 'b'                        
        option firmware '/lib/firmware/vdsl.bin'
        option tone 'av'      
        option xfer_mode 'ptm'
&lt;/PRE&gt;
&lt;P&gt;So looks like the WAN configuration is the same.&amp;nbsp;I can't remember if ATM relates to the VDSL (it's ages since i did this, but I vaguely remember this related to a possible alternative configuration, so guessing it's redundant here).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven't specified line_mode, maybe 'vdsl' is the default. And I've explicitly specified the firmware path, not sure if that has a default. I also can't remember where the firmware came from and whether it had to be manually inserted rather than part of the default binary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So possibly a couple of things to check.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Adam&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 19:29:44 GMT</pubDate>
      <guid>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450566#M78206</guid>
      <dc:creator>adamsutton2101</dc:creator>
      <dc:date>2017-06-20T19:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: OpenWRT and Plusnet</title>
      <link>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450583#M78207</link>
      <description>&lt;P&gt;FrazUK, the only difference between your config and mine appears to be that I have a 'wan_dev' section.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;config device 'wan_dev'
        option name 'ptm0'
        option macaddr '&amp;lt;macaddr&amp;gt;'&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did your original config file have anything similar? You should be able to use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;config device 'wan_dev'
        option name 'ptm0'
        option macaddr 'f4:f2:6d:bf:f5:34'&lt;/PRE&gt;
&lt;P&gt;Add that in and give it a try.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 20:09:19 GMT</pubDate>
      <guid>https://community.plus.net/t5/Tech-Help-Software-Hardware-etc/OpenWRT-and-Plusnet/m-p/1450583#M78207</guid>
      <dc:creator>Krazeh</dc:creator>
      <dc:date>2017-06-20T20:09:19Z</dc:date>
    </item>
  </channel>
</rss>

