Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


davidcole

6029 posts

Uber Geek

Trusted

#181318 10-Oct-2015 15:56
Send private message

Got my shiny new ufb connection this morning was hoping is just be able to plug in my gargoyle router and off I go (wr1043nd v2).

Alas no.

I'd tried manually putting on vlan tagging and tired both dhcp and PPPoE connections. To no avail.

Ive now tried putting the hg630 into bridge mode as per the instructions on their site. They give the PPPoE settings as user@xtrabb.co.nz and password of password. These differ from what I had on adsl (password was different).

But no matter what I do I can't get the gargoyle to connect.

How should it work?
Ont to gargoyle wan with dhcp set? And manually vlan 10 tag?

Or should I work the hg630 in bridge then be able to connect gargoyle in PPPoE mode?

Incidentally tied connecting a Windows machine directly via PPPoE and neither password seemed to work either.




Previously known as psycik

Home Assistant: Gigabyte AMD A8 Brix, Home Assistant with Aeotech ZWave Controller, Raspberry PI, Wemos D1 Mini, Zwave, Shelly Humidity and Temperature sensors
Media:Chromecast v2, ATV4 4k, ATV4, HDHomeRun Dual
Server
Host Plex Server 3x3TB, 4x4TB using MergerFS, Samsung 850 evo 512 GB SSD, Proxmox Server with 1xW10, 2xUbuntu 22.04 LTS, Backblaze Backups, usenetprime.com fastmail.com Sharesies Trakt.TV Sharesight 


Create new topic
michaelmurfy
meow
13240 posts

Uber Geek

Moderator
ID Verified
Trusted
Lifetime subscriber

  #1403573 10-Oct-2015 17:28
Send private message

You'll need to connect via PPPoE on VLAN 10 - ensure that a username (user@xtrabb.co.nz) and a password are present. A common mistake is putting a "service" name in which doesn't work, leave this blank. There isn't a need to use the HG630 to achieve this.




Michael Murphy | https://murfy.nz
Referral Links: Quic Broadband (use R122101E7CV7Q for free setup)

Are you happy with what you get from Geekzone? Please consider supporting us by subscribing.
Opinions are my own and not the views of my employer.




davidcole

6029 posts

Uber Geek

Trusted

  #1403579 10-Oct-2015 17:45
Send private message

michaelmurfy: You'll need to connect via PPPoE on VLAN 10 - ensure that a username (user@xtrabb.co.nz) and a password are present. A common mistake is putting a "service" name in which doesn't work, leave this blank. There isn't a need to use the HG630 to achieve this.


So I should be able to go ont directly to gargoyle wan port. User name as posted. Was the password if password correct as per their settings?

As per here? https://www.spark.co.nz/help/internet-data/equipment/huawei/hg630b-gateway/setup-bridge-mode-huawei-hg630b/

I had a password of Spark1 written down.

I had the following for van tagging
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'

config interface 'lan'
option ifname 'eth1'
option type 'bridge'
option proto 'static'
option netmask '255.255.255.0'
option ipaddr '192.168.1.1'
option dns '8.8.8.8 8.8.4.4'

config interface 'wan'
option ifname 'eth0.10'
option proto 'dhcp'
option dns '8.8.8.8 8.8.4.4'
option peerdns '0'

config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'

config switch_vlan
option device 'switch0'
option vlan '1'
option ports '0 1 2 3 4'

config switch_vlan
option device 'switch0'
option vlan '10'
option ports '5t 6t'


In the /etc/config/network but had no joy.





Previously known as psycik

Home Assistant: Gigabyte AMD A8 Brix, Home Assistant with Aeotech ZWave Controller, Raspberry PI, Wemos D1 Mini, Zwave, Shelly Humidity and Temperature sensors
Media:Chromecast v2, ATV4 4k, ATV4, HDHomeRun Dual
Server
Host Plex Server 3x3TB, 4x4TB using MergerFS, Samsung 850 evo 512 GB SSD, Proxmox Server with 1xW10, 2xUbuntu 22.04 LTS, Backblaze Backups, usenetprime.com fastmail.com Sharesies Trakt.TV Sharesight 


  #1403580 10-Oct-2015 17:46
Send private message

password doesnt matter as long as its not blank



sbiddle
30853 posts

Uber Geek

Retired Mod
Trusted
Biddle Corp
Lifetime subscriber

  #1403582 10-Oct-2015 17:53
Send private message

You definitely need to use PPPoE, but anything will work as a username and password as Spark use port based auth.


DarkShadow
1647 posts

Uber Geek


  #1403583 10-Oct-2015 18:02
Send private message

davidcole:

Incidentally tied connecting a Windows machine directly via PPPoE and neither password seemed to work either.


If you want to do this, you will need to set VLAN tagging 10 in your network card's driver settings.

Also, can you confirm what is the color of the lights you see on the ONT?

BarTender
3606 posts

Uber Geek

ID Verified
Trusted
Lifetime subscriber

  #1403664 10-Oct-2015 21:45
Send private message

Jase2985: password doesnt matter as long as its not blank


That used to matter, but it doesn't anymore after recent upgrades.

PPPoE (not DHCP as that won't work!) on VLAN 10 and preferably a username of something (doesn't even need an @ symbol in there) and a password of something. "a" for both username and password is fine.

Your switch config is all wrong: https://forum.openwrt.org/viewtopic.php?id=32650
and http://wiki.openwrt.org/doc/uci/network/switch for some reference

 

config 'switch_vlan'

 

option 'vlan' '1'

 

option 'ports' '1 2 3 4 5t'

 

 

config 'switch_vlan'

 

option 'vlan' '10'

 

option 'ports' '0t 5t'

 

config 'interface'  'wan'

 

option 'ifname' 'eth0.10'

 

option 'proto' 'pppoe'

 

option 'username' 'spark'

 

option 'password' 'spark'

 


Then plug into port 0 which is the WAN port on your router. The main thing is having the system switch interface (5t) on both sides. Otherwise the internal vlan can't route to the router.

I suspect with your config if you assigned a static IP on the wan side you wouldn't be able to ping that IP from any internal device.



davidcole

6029 posts

Uber Geek

Trusted

  #1403665 10-Oct-2015 21:46
Send private message

DarkShadow:
davidcole:

Incidentally tied connecting a Windows machine directly via PPPoE and neither password seemed to work either.


If you want to do this, you will need to set VLAN tagging 10 in your network card's driver settings.

Also, can you confirm what is the color of the lights you see on the ONT?


I'm assuming the ONT is going as I can plug in the supplied modem and the internet all goes.  But jesus they're nasty, I don't know how you're supposed to reference local machines as there's no local name resolution.




Previously known as psycik

Home Assistant: Gigabyte AMD A8 Brix, Home Assistant with Aeotech ZWave Controller, Raspberry PI, Wemos D1 Mini, Zwave, Shelly Humidity and Temperature sensors
Media:Chromecast v2, ATV4 4k, ATV4, HDHomeRun Dual
Server
Host Plex Server 3x3TB, 4x4TB using MergerFS, Samsung 850 evo 512 GB SSD, Proxmox Server with 1xW10, 2xUbuntu 22.04 LTS, Backblaze Backups, usenetprime.com fastmail.com Sharesies Trakt.TV Sharesight 


 
 
 

Cloud spending continues to surge globally, but most organisations haven’t made the changes necessary to maximise the value and cost-efficiency benefits of their cloud investments. Download the whitepaper From Overspend to Advantage now.
davidcole

6029 posts

Uber Geek

Trusted

  #1403668 10-Oct-2015 21:48
Send private message

BarTender:
Jase2985: password doesnt matter as long as its not blank


That used to matter, but it doesn't anymore after recent upgrades.

PPPoE (not DHCP as that won't work!) on VLAN 10 and preferably a username of something (doesn't even need an @ symbol in there) and a password of something. "a" for both username and password is fine.

Your switch config is all wrong: https://forum.openwrt.org/viewtopic.php?id=32650
and http://wiki.openwrt.org/doc/uci/network/switch for some reference

 

config 'switch_vlan'

 

option 'vlan' '1'

 

option 'ports' '1 2 3 4 5t'

 

 

config 'switch_vlan'

 

option 'vlan' '10'

 

option 'ports' '0t 5t'

 

config 'interface'  'wan'

 

option 'ifname' 'eth0.10'

 

option 'proto' 'pppoe'

 

option 'username' 'spark'

 

option 'password' 'spark'

 


Then plug into port 0 which is the WAN port on your router. The main thing is having the system switch interface (5t) on both sides. Otherwise the internal vlan can't route to the router.

I suspect with your config if you assigned a static IP on the wan side you wouldn't be able to ping that IP from any internal device.




Ta will give that a go tomorrow.

Luckiy I've actually got 2 gargoyle capable routers so I can switch them in and out.  Just takes a bit for the dhcp to work....the gargoyle is nicely setup, the hg630b just sets them randomly in order.





Previously known as psycik

Home Assistant: Gigabyte AMD A8 Brix, Home Assistant with Aeotech ZWave Controller, Raspberry PI, Wemos D1 Mini, Zwave, Shelly Humidity and Temperature sensors
Media:Chromecast v2, ATV4 4k, ATV4, HDHomeRun Dual
Server
Host Plex Server 3x3TB, 4x4TB using MergerFS, Samsung 850 evo 512 GB SSD, Proxmox Server with 1xW10, 2xUbuntu 22.04 LTS, Backblaze Backups, usenetprime.com fastmail.com Sharesies Trakt.TV Sharesight 


davidcole

6029 posts

Uber Geek

Trusted

  #1403709 11-Oct-2015 08:50
Send private message

hmm no joy there.  As far as I can tell the LAN light on the ont never changes colour, but flashes on traffic.

When mine connected there's a couple of bursts (seems to be sending traffic only) and the router lists no wan.

Plug the proper and off it goes.

Seems to be no way that I know of debugging the connection.

Any other ideas?




Previously known as psycik

Home Assistant: Gigabyte AMD A8 Brix, Home Assistant with Aeotech ZWave Controller, Raspberry PI, Wemos D1 Mini, Zwave, Shelly Humidity and Temperature sensors
Media:Chromecast v2, ATV4 4k, ATV4, HDHomeRun Dual
Server
Host Plex Server 3x3TB, 4x4TB using MergerFS, Samsung 850 evo 512 GB SSD, Proxmox Server with 1xW10, 2xUbuntu 22.04 LTS, Backblaze Backups, usenetprime.com fastmail.com Sharesies Trakt.TV Sharesight 


DarkShadow
1647 posts

Uber Geek


  #1403798 11-Oct-2015 11:45
Send private message

davidcole: hmm no joy there.  As far as I can tell the LAN light on the ont never changes colour, but flashes on traffic.

When mine connected there's a couple of bursts (seems to be sending traffic only) and the router lists no wan.


The correct lights are as follows:
Power Green
Optical Green
Lan1 Orange or Green (either is fine, it shouldn't be chaging color)

As it works if you just use HG630b, we can conclude the fibre is working fine. Any problems would be with the router settings, probably the VLAN part.

numfarr
329 posts

Ultimate Geek


  #1403932 11-Oct-2015 18:03
Send private message

davidcole: hmm no joy there.  As far as I can tell the LAN light on the ont never changes colour, but flashes on traffic.

When mine connected there's a couple of bursts (seems to be sending traffic only) and the router lists no wan.

Plug the proper and off it goes.

Seems to be no way that I know of debugging the connection.

Any other ideas?

You can debug the connection using logread to see the ppd log messages, upping the log level to verbose if necessary. See this guide:
http://wiki.openwrt.org/doc/howto/log.messages

If you get the log message "timeout waiting for PAD0 packets" or similar, this is probably incorrect VLAN configuration.

The switch config posted on the thread looks about the same as my working one with Gargoyle on a TP-Link WR1043ND. You can check what the loaded configuration is with the command "swconfig dev switch0 show".

Also if you change something on the Gargoyle Connection/Basic page, it will rewrite the etc/config/network file, losing your edits.

davidcole

6029 posts

Uber Geek

Trusted

  #1403934 11-Oct-2015 18:08
Send private message

numfarr:
davidcole: hmm no joy there.  As far as I can tell the LAN light on the ont never changes colour, but flashes on traffic.

When mine connected there's a couple of bursts (seems to be sending traffic only) and the router lists no wan.

Plug the proper and off it goes.

Seems to be no way that I know of debugging the connection.

Any other ideas?

You can debug the connection using logread to see the ppd log messages, upping the log level to verbose if necessary. See this guide:
http://wiki.openwrt.org/doc/howto/log.messages

If you get the log message "timeout waiting for PAD0 packets" or similar, this is probably incorrect VLAN configuration.

The switch config posted on the thread looks about the same as my working one with Gargoyle on a TP-Link WR1043ND. You can check what the loaded configuration is with the command "swconfig dev switch0 show".

Also if you change something on the Gargoyle Connection/Basic page, it will rewrite the etc/config/network file, losing your edits.


Do you have v1.8 hardware or 2.1?

I've got one of each, and have managed to get neither working.





Previously known as psycik

Home Assistant: Gigabyte AMD A8 Brix, Home Assistant with Aeotech ZWave Controller, Raspberry PI, Wemos D1 Mini, Zwave, Shelly Humidity and Temperature sensors
Media:Chromecast v2, ATV4 4k, ATV4, HDHomeRun Dual
Server
Host Plex Server 3x3TB, 4x4TB using MergerFS, Samsung 850 evo 512 GB SSD, Proxmox Server with 1xW10, 2xUbuntu 22.04 LTS, Backblaze Backups, usenetprime.com fastmail.com Sharesies Trakt.TV Sharesight 


numfarr
329 posts

Ultimate Geek


  #1403937 11-Oct-2015 18:32
Send private message

Yes mine is v1.8 hardware, with Gargoyle v1.8.0. Also I am on Slingshot not Spark, but it uses the same VLAN.

davidcole

6029 posts

Uber Geek

Trusted

  #1403938 11-Oct-2015 18:35
Send private message

numfarr: Yes mine is v1.8 hardware, with Gargoyle v1.8.0. Also I am on Slingshot not Spark, but it uses the same VLAN.


Can you post your ful config for me (minus any pppoe credentials)




Previously known as psycik

Home Assistant: Gigabyte AMD A8 Brix, Home Assistant with Aeotech ZWave Controller, Raspberry PI, Wemos D1 Mini, Zwave, Shelly Humidity and Temperature sensors
Media:Chromecast v2, ATV4 4k, ATV4, HDHomeRun Dual
Server
Host Plex Server 3x3TB, 4x4TB using MergerFS, Samsung 850 evo 512 GB SSD, Proxmox Server with 1xW10, 2xUbuntu 22.04 LTS, Backblaze Backups, usenetprime.com fastmail.com Sharesies Trakt.TV Sharesight 


numfarr
329 posts

Ultimate Geek


  #1404035 11-Oct-2015 22:19
Send private message

davidcole:
numfarr: Yes mine is v1.8 hardware, with Gargoyle v1.8.0. Also I am on Slingshot not Spark, but it uses the same VLAN.


Can you post your ful config for me (minus any pppoe credentials)
Sure, I put it in http://pastebin.com/x20CViky . The DNS addresses are for OpenDNS, you probably don't want that.

Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.