weewx, Interceptor, WS-2902A, Skipping Data and Parse Errors

736 views
Skip to first unread message

G Hammer

unread,
Jun 20, 2018, 11:04:17 AM6/20/18
to weewx-user
I have a WS-2902A and am using the Interceptor driver to sniff data from it.
I'm not posting to any service via weewx, just archiving and creating a website for my server.
Things are looking better, but I still have a few issues.

First, the value for rainrate are incorrectly shown, 300" an hour isn't a good value for example. I tried setting the StdWXCalculate to hardware vs prefer_hardware but then get this type of error in the syslog:
 
Jun 19 21:59:28 WiAP weewx[27947]: interceptor: MainThread: skipping rain measurement of 0.16: no last rain

How can I get the proper value created?

Next up is Wind Max. This always shows a value for MPH but N/A for direction. The data should be available as both the current wind and the Vector Average show direction.

Finally, is there a way to only sniff the data heading to WU or Ambient instead of all data on port 80 from the 2902A?
I get many of these and while I don't think they impact anything, it does make it harder to go through the logs.

Jun 20 09:39:14 WiAP weewx[10868]: interceptor: MainThread: parse failed for stationtype=AMBWeatherV4.0.2&PASSKEY=DUMMYDATADUMMYDATADUMMYDATADATAD&dateutc=2018-06-20+13:39:00&winddir=169&windspeedmph=1.8&windgustmph=2.2&maxdailygust=3.4&tempf=69.1&hourlyrainin=0.00&eventrainin=0.00&dailyrainin=0.00&weeklyrainin=0.87&monthlyrainin=0.87&totalrainin=0.87&baromrelin=29.89&baromabsin=29.48&humidity=61&tempinf=73.4&humidityin=51&uv=3&solarradiation=299.23 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266#015#012#015#012: time data '2018-06-20+13:39:00' does not match format '%Y-%m-%d %H:%M:%S'

That particular data looks like it would be complete, but it is not usable via the Interceptor at this time. Any way to have it be used vs the WU data?


Thanks for any insight, I love the idea of having the data and making it available on the web without WU or others. Plus, the historical data gathering is great.

Andy Kerekes

unread,
Jun 20, 2018, 11:23:15 PM6/20/18
to weewx...@googlegroups.com
How did you get the 2902 to work on weewx? I have been trying for months.

--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

G Hammer

unread,
Jun 21, 2018, 9:45:09 AM6/21/18
to weewx-user
Where are you having a problem? Installing weewx on Linux, getting the data to be read, something else?
Let me know and I'll see if I can help.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.

galfert

unread,
Jul 1, 2018, 9:07:12 PM7/1/18
to weewx-user
I have a 2902A also and I was going add an ObserverIP in order to make weeWx work.

mwall

unread,
Jul 6, 2018, 12:58:44 AM7/6/18
to weewx-user


On Wednesday, June 20, 2018 at 11:04:17 AM UTC-4, G Hammer wrote:

Jun 19 21:59:28 WiAP weewx[27947]: interceptor: MainThread: skipping rain measurement of 0.16: no last rain

How can I get the proper value created?

this is normal.  the rain delta cannot be calculated until two samples have been received.

 
Next up is Wind Max. This always shows a value for MPH but N/A for direction. The data should be available as both the current wind and the Vector Average show direction.

if the station reports wind gust but does not report a direction for wind gust, then there is nothing to report.  weewx will not fabricate data.

 
Finally, is there a way to only sniff the data heading to WU or Ambient instead of all data on port 80 from the 2902A?

try interceptor v0.40.  it should parse both ambient weather and wu packets.

G Hammer

unread,
Jul 6, 2018, 5:01:07 PM7/6/18
to weewx-user
Thanks for the information.

I installed the latest version available on GitHub, but still get the error/ignored on the AW data. I looked at interceptor.py on GitHub and it shows version 0.39
DRIVER_VERSION = '0.39'
DRIVER_NAME = 'Interceptor'

Again, not a huge deal as it does not affect the reporting.

mwall

unread,
Jul 6, 2018, 8:38:43 PM7/6/18
to weewx-user


On Friday, July 6, 2018 at 5:01:07 PM UTC-4, G Hammer wrote:
I installed the latest version available on GitHub, but still get the error/ignored on the AW data. I looked at interceptor.py on GitHub and it shows version 0.39
DRIVER_VERSION = '0.39'
DRIVER_NAME = 'Interceptor'

Again, not a huge deal as it does not affect the reporting.

sorry about that.  i forgot to bump the version in interceptor.py.  it is now 0.40, and has been tagged.

could you post the log messages about ignored data or parse failures?

i should probably add an option to recognize only aw data or wu data, not both...

m

G Hammer

unread,
Jul 6, 2018, 9:47:24 PM7/6/18
to weewx-user
Here is an entry:
Jul  6 21:44:10 WiAP weewx[14797]: interceptor: MainThread: parse failed for stationtype=AMBWeatherV4.0.2&PASSKEY=DDDDDDD&dateutc=2018-07-07+01:43:57&winddir=71&windspeedmph=1.3&windgustmph=2.2&maxdailygust=17.2&tempf=68.2&hourlyrainin=0.00&eventrainin=0.08&dailyrainin=0.08&weeklyrainin=0.08&monthlyrainin=0.08&totalrainin=3.97&baromrelin=30.11&baromabsin=29.69&humidity=59&tempinf=75.7&humidityin=46&uv=0&solarradiation=0.00 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266#015#012#015#012: invalid literal for float(): 0.00 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266



mwall

unread,
Jul 7, 2018, 5:40:54 AM7/7/18
to weewx-user


On Friday, July 6, 2018 at 9:47:24 PM UTC-4, G Hammer wrote:

Here is an entry:
Jul  6 21:44:10 WiAP weewx[14797]: interceptor: MainThread: parse failed for stationtype=AMBWeatherV4.0.2&PASSKEY=DDDDDDD&dateutc=2018-07-07+01:43:57&winddir=71&windspeedmph=1.3&windgustmph=2.2&maxdailygust=17.2&tempf=68.2&hourlyrainin=0.00&eventrainin=0.08&dailyrainin=0.08&weeklyrainin=0.08&monthlyrainin=0.08&totalrainin=3.97&baromrelin=30.11&baromabsin=29.69&humidity=59&tempinf=75.7&humidityin=46&uv=0&solarradiation=0.00 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266#015#012#015#012: invalid literal for float(): 0.00 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266



please post a few of them - that one is not at all like the previous example you posted.

m

G Hammer

unread,
Jul 7, 2018, 5:09:00 PM7/7/18
to weewx-user
I'm running the new version of Interceptor so could be the difference. Here are some additional log entries.

Jul  7 17:03:18 WiAP weewx[1601]: interceptor: MainThread: parse failed for stationtype=AMBWeatherV4.0.2&PASSKEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&dateutc=2018-07-07+21:02:57&winddir=85&windspeedmph=0.2&windgustmph=1.1&maxdailygust=11.4&tempf=78.6&hourlyrainin=0.00&eventrainin=0.00&dailyrainin=0.00&weeklyrainin=0.08&monthlyrainin=0.08&totalrainin=3.97&baromrelin=30.26&baromabsin=29.85&humidity=37&tempinf=74.7&humidityin=47&uv=5&solarradiation=518.33 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266#015#012#015#012: invalid literal for float(): 518.33 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266

Jul  7 17:04:10 WiAP weewx[1601]: interceptor: MainThread: parse failed for stationtype=AMBWeatherV4.0.2&PASSKEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&dateutc=2018-07-07+21:03:57&winddir=85&windspeedmph=0.0&windgustmph=0.0&maxdailygust=11.4&tempf=78.8&hourlyrainin=0.00&eventrainin=0.00&dailyrainin=0.00&weeklyrainin=0.08&monthlyrainin=0.08&totalrainin=3.97&baromrelin=30.27&baromabsin=29.86&humidity=36&tempinf=74.7&humidityin=47&uv=5&solarradiation=516.62 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266#015#012#015#012: invalid literal for float(): 516.62 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266

Jul  7 17:05:10 WiAP weewx[1601]: interceptor: MainThread: parse failed for stationtype=AMBWeatherV4.0.2&PASSKEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&dateutc=2018-07-07+21:04:57&winddir=84&windspeedmph=0.0&windgustmph=0.0&maxdailygust=11.4&tempf=79.3&hourlyrainin=0.00&eventrainin=0.00&dailyrainin=0.00&weeklyrainin=0.08&monthlyrainin=0.08&totalrainin=3.97&baromrelin=30.27&baromabsin=29.85&humidity=38&tempinf=74.7&humidityin=47&uv=5&solarradiation=516.62 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266#015#012#015#012: invalid literal for float(): 516.62 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266


Andy Kerekes

unread,
Jul 24, 2018, 5:40:49 PM7/24/18
to weewx...@googlegroups.com
Hello!!!  

My name is Andy... is there any way you can tell me how you got your ws-2902 working on weewx as I have been trying the past 6 months to get weewx to see my 2902 or point me in the right direction please. Thank you in advance

Andy

G Hammer

unread,
Jul 24, 2018, 8:20:14 PM7/24/18
to weewx-user
Hi Andy,

There are only two ways to get the data from the 2902 to weewx. One involves your router and is not the method I chose. The other is to configure a linux/rapsberry box into an AP and use that for the 2902 connection to the internet. Then, you are able to sniff the packets from the 2902 with the Interceptor driver and presto, weewx is active.

The router method is actually less involved, but, I have several boxes laying about and thought I'd put one to good use.

What sort of router do you have? Do you have a linux machine that could be pressed into service? A Pi?

Let me know, I'd be happy to help. Kindly open a new thread though instead of using this one as it is not about installing.

Andy Kerekes

unread,
Jul 28, 2018, 2:29:41 AM7/28/18
to weewx...@googlegroups.com
Hello!!!

Sorry I missed this msg. I have two asus routers... rt-ac88u and rt-ac66u. I also have several rpi's... 3b and 3b+'s. Yes I also have been trying to go the rpi weewx way skipping the router and storing to the pi sql file as back up if possible. 

My understanding is there is a problem if trying to us apache server? Any help would be greatly appreciated. 


G Hammer

unread,
Jul 29, 2018, 9:10:40 PM7/29/18
to weewx-user
Did you need any other data/logs?


On Saturday, July 7, 2018 at 5:40:54 AM UTC-4, mwall wrote:

G Hammer

unread,
Aug 30, 2018, 8:42:57 AM8/30/18
to weewx-user
Hopefully the error with the AW data can be corrected and perhaps the option to select AW or WU data.


On Friday, July 6, 2018 at 8:38:43 PM UTC-4, mwall wrote:

G Hammer

unread,
Sep 20, 2018, 9:39:26 AM9/20/18
to weewx-user
Here is a log entry. If this can't be fixed, how to disable logging of this?

Sep 20 09:37:00 ftp weewx[14703]: interceptor: MainThread: parse failed for stationtype=AMBWeatherV4.0.2&PASSKEY=FA310E64197518BEBBFBD194638A64F7&dateutc=2018-09-20+13:36:27&winddir=93&windspeedmph=0.2&windgustmph=1.1&maxdailygust=4.5&tempf=60.8&hourlyrainin=0.00&eventrainin=0.00&dailyrainin=0.01&weeklyrainin=3.48&monthlyrainin=7.36&totalrainin=23.07&baromrelin=30.35&baromabsin=29.80&humidity=84&tempinf=70.9&humidityin=67&uv=1&solarradiation=150.47 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266#015#012#015#012: invalid literal for float(): 150.47 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266

Sep 20 09:38:30 ftp weewx[14703]: interceptor: MainThread: parse failed for stationtype=AMBWeatherV4.0.2&PASSKEY=FA310E64197518BEBBFBD194638A64F7&dateutc=2018-09-20+13:38:29&winddir=83&windspeedmph=0.0&windgustmph=0.0&maxdailygust=4.5&tempf=61.2&hourlyrainin=0.00&eventrainin=0.00&dailyrainin=0.01&weeklyrainin=3.48&monthlyrainin=7.36&totalrainin=23.07&baromrelin=30.35&baromabsin=29.80&humidity=83&tempinf=71.1&humidityin=67&uv=2&solarradiation=177.75 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266#015#012#015#012: invalid literal for float(): 177.75 HTTP/1.1#015#012Host: api.ambientweather.net#015#012Connection: close#015#012User-Agent: ESP8266




On Saturday, July 7, 2018 at 5:40:54 AM UTC-4, mwall wrote:

Scott Grayban

unread,
Dec 31, 2018, 4:57:23 PM12/31/18
to weewx-user
I just got my WS-2902A in today and want to get it work with weeWX.

The PI way if you can help me out.

mwall

unread,
Jan 1, 2019, 2:10:01 AM1/1/19
to weewx-user
On Monday, December 31, 2018 at 4:57:23 PM UTC-5, Scott Grayban wrote:
I just got my WS-2902A in today and want to get it work with weeWX.

The PI way if you can help me out.

are there any WS2902A owners using the weewx-interceptor driver who could put together a 'howto' page on the weewx wiki for this?

the weewx-interceptor readme contains many different examples, but no step-by-step recipes.  i'm afraid i do not have time or resources to spell out the details for every possible configuration, and i do not have the hardware to verify a recipe for the specific case of WS2902A with raspberry pi.

WILWetter25

unread,
Jan 1, 2019, 5:17:32 AM1/1/19
to weewx-user
I will write a detailed Plan how to: in one hour

Scott Grayban

unread,
Jan 1, 2019, 5:55:42 AM1/1/19
to weewx-user
Thank's... I'll read it when I wake up...

WILWetter25

unread,
Jan 1, 2019, 6:37:28 AM1/1/19
to weewx-user
First you have to to set up the Raspberry, that you can use it like a wireless router.
1. Connect the raspbbery via LAN with your internet-router.
2. Install raspbian.
3. Create a network with RaspAP
3.1 use the command: wget -q https://git.io/voEUQ -O /tmp/raspap && bash /tmp/raspap to install RaspAP
3.2 Go to the webgui with the IP: 10.3.141.1 in your Browser.
3.3 Log in with the username: "admin" and the password "secret"
Info: the First Network is running with the SSID "raspi-webgui" with the password "ChangeMe".
3.4 for security you should change the SSID and your password like you want.

Then connect the weatherstation with the Network
1. Download the Ambient Tool from Play Store
2. Connect the weatherstation with this Network.
Info: the steps how are explained in the App.

Install weewx
1 use These commands to Install weewx
1.1 wget -qO - http://weewx.com/keys.html | sudo apt-key add -
1.2 wget -qO - http://weewx.com/apt/weewx.list | sudo tee /etc/apt/sources.list.d/weewx.list
1.3 sudo apt-get update
1.4 sudo apt-get install weewx
1.5 follow the installation steps. Choose the Driver "Simulator"

Install the Interceptor Driver:
1. Install python libpcap with: sudo apt-get install python-libpcap
2. Download the Driver: wget -O weewx-interceptor.zip https://github.com/matthewwall/weewx-interceptor/archive/master.zip
3. Install the driver: sudo wee_extension --install weewx-interceptor-master.zip
Info: Sometimes the Name is changed in interceptor-master.zip or master.zip. The best way: Look in your Downloads folder there is the correct name of the File. Then you have may change the command.
4. Reconfigure the weewx.conf File
With "sudo wee_config --reconfigure --" and "driver=user.interceptor --no-prompt"

Configure the weewx.conf-file

At the end of the File, in the [Interceptor] section. Or should be Look like this:

[Interceptor]

driver = user.interceptor

device_type = observer

mode = sniff

iface = wlan0

pcap_filter = src 10.3.141.136 and dst port 80

Info: the IP could be changed. If you dont know your IP: Go to the Ambient Tool in your Smartphone and Look to connected divices.

At Last restart weewx with sudo etc/init.d/weewx stop and etc/init.d/weewx start

I think thats all.

If you have question Just ask :)

Happy New Year to all :)

G Hammer

unread,
Jan 1, 2019, 3:00:16 PM1/1/19
to weewx-user
Thank you very much.
Any chance you could paste this into the wiki?
Much easier to find there going forward.

WILWetter25

unread,
Jan 1, 2019, 3:14:40 PM1/1/19
to weewx-user
Sure I can Post it on a Wiki :) is there a Wiki for this? :)

G Hammer

unread,
Jan 1, 2019, 3:16:39 PM1/1/19
to weewx-user
There is and it is quite useful.

Scott Grayban

unread,
Jan 1, 2019, 4:32:50 PM1/1/19
to weewx-user
Can I make a current PI I use to become the PI AP without breaking it ? I'm assuming yes so long as it has wired internet. ?

WILWetter25

unread,
Jan 1, 2019, 4:43:45 PM1/1/19
to weewx-user
Sure Just follow my steps, I have posted :)

And I will look when I can Post it on a wiki. Sometime in the next days :)

Scott Grayban

unread,
Jan 1, 2019, 4:46:41 PM1/1/19
to weewx-user
Hmmm it wants to install Lighthttpd..... I'll have to remove that so it doesn't break my apache install that I need. Might want to mention that in the instructions when you post on the WIKI.

WILWetter25

unread,
Jan 1, 2019, 5:00:06 PM1/1/19
to weewx-user
There are another ways to create a AP. If you dont want to use RaspAP you could try this:


https://www.elektronik-kompendium.de/sites/raspberry-pi/2002171.htm

But its in German :)

Scott Grayban

unread,
Jan 1, 2019, 5:01:53 PM1/1/19
to weewx-user
That's ok I speak and write German. I'll look at that.

WILWetter25

unread,
Jan 1, 2019, 5:14:38 PM1/1/19
to weewx-user
I will Show two ways on Wiki. One with RaspAP and with hostapd :)

G Hammer

unread,
Jan 1, 2019, 5:17:32 PM1/1/19
to weewx...@googlegroups.com
I used hostapd because it didn’t affect other services, and for my machine, made configuration easier. 

On Tue, Jan 1, 2019 at 5:14 PM WILWetter25 <flightge...@gmail.com> wrote:
I will Show two ways on Wiki. One with RaspAP and with hostapd :)

--
You received this message because you are subscribed to a topic in the Google Groups "weewx-user" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-user/6ihvgtwnEGo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.

Scott Grayban

unread,
Jan 1, 2019, 5:19:31 PM1/1/19
to weewx-user
So let's say in my case I already am using weewx but I want to change my WS, which I did buy a new Ambient, and I don't want to lose any data from the previous WS. All I need to do is change out the driver and add the right settings for Observer correct?

I am assuming I will have to move the existing weewx to the PI I have the AP on correct ?

WILWetter25

unread,
Jan 1, 2019, 5:41:18 PM1/1/19
to weewx-user
Ich würde weewx stoppen
Das Netzwerk nach RaspAP oder Hostapd erstellen
Anschließend die Wetterstation mit dem Netzwerk verbinden, danach den interceptor Treiber installieren. Danach die Weewx.conf Datei überarbeiten (wie in der Anleitung). Aber darauf achten, dass beim Treiber "Simulator" steht!
Und danach weewx neu starten. Anschließend sollte es funktionieren. Ich habe das leider noch nicht selbst ausprobieren können.
Leider habe ich in den nächsten Tagen nicht so viel Zeit um noch was ausprobieren :)

Scott Grayban

unread,
Jan 1, 2019, 6:08:56 PM1/1/19
to weewx-user
Danke !

WILWetter25

unread,
Jan 1, 2019, 7:38:24 PM1/1/19
to weewx-user
Kein Problem!

Scott Grayban

unread,
Jan 2, 2019, 7:18:16 AM1/2/19
to weewx-user
For the life of me I can not figure out how to change my WiFi settings in the Ambient Tool. I have search google and went through every menu item in Ambient Tool and not a thing mentions how to do this.

Anyone got a pointer for this ?

On Tuesday, January 1, 2019 at 4:38:24 PM UTC-8, WILWetter25 wrote:
Kein Problem!

WILWetter25

unread,
Jan 2, 2019, 7:25:53 AM1/2/19
to weewx-user
1. Connect to the New Network with your Mobile Phone.
2. Press Wind and Alarm -> the WiFi Symbol should start flash.
3. Open Ambient Tool
-> Add Device -> Next -> Next -> Add Router -> Press Add -> and thats it :)
Message has been deleted

G Hammer

unread,
Jan 2, 2019, 7:48:33 AM1/2/19
to weewx...@googlegroups.com
Use awnet app

On Wed, Jan 2, 2019 at 7:47 AM Scott Grayban <sgra...@gmail.com> wrote:
I did that but M-B never showed. All I see is M-A and there is nothing I can find to get that to M-B

--

G Hammer

unread,
Jan 2, 2019, 7:49:43 AM1/2/19
to weewx...@googlegroups.com
Touch Wind and Alarm and keep touching them until it beeps and flashes M-B

On Wed, Jan 2, 2019 at 7:47 AM Scott Grayban <sgra...@gmail.com> wrote:
I did that but M-B never showed. All I see is M-A and there is nothing I can find to get that to M-B

On Wednesday, January 2, 2019 at 4:25:53 AM UTC-8, WILWetter25 wrote:

--

Scott Grayban

unread,
Jan 2, 2019, 7:55:29 AM1/2/19
to weewx-user
I got it....... Now I got a new problem

Jan  2 04:52:57 raspberrypi weewx[9586]: interceptor: MainThread: driver version is 0.45
Jan  2 04:52:57 raspberrypi weewx[9586]: interceptor: MainThread: device type: observer
Jan  2 04:52:57 raspberrypi weewx[9586]: interceptor: MainThread: sensor map: None
Jan  2 04:52:57 raspberrypi weewx[9586]: interceptor: MainThread: mode is sniff
Jan  2 04:52:57 raspberrypi weewx[9586]: interceptor: MainThread: sniff iface=wlan0 promiscuous=0
Jan  2 04:52:57 raspberrypi weewx[9586]: interceptor: MainThread: sniff filter 'src 10.3.141.62 and dst port 80'
Jan  2 04:52:57 raspberrypi weewx[9586]: import of driver failed: wlan0: That device is not up (<type 'exceptions.Exception'>)
Jan  2 04:52:57 raspberrypi weewx[9586]: engine: Unable to load driver: wlan0: That device is not up

I guess the pi that is running weewx can't connect to 10.3.141.62 - the RaspAP is running on a different PI

G Hammer

unread,
Jan 2, 2019, 7:58:29 AM1/2/19
to weewx...@googlegroups.com
ifconfig command
See what you have both for a name of the interface and the IP assigned to it. 

Scott Grayban

unread,
Jan 2, 2019, 8:01:04 AM1/2/19
to weewx-user
On the PI running weewx
# ifconfig 
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.0.4  netmask 255.255.255.0  broadcast 192.168.0.255
        inet6 2001:470:1f00:3480::2  prefixlen 64  scopeid 0x0<global>
        inet6 fe80::ba27:ebff:febb:1a44  prefixlen 64  scopeid 0x20<link>
        ether b8:27:eb:bb:1a:44  txqueuelen 1000  (Ethernet)
        RX packets 66790  bytes 29042616 (27.6 MiB)
        RX errors 0  dropped 1378  overruns 0  frame 0
        TX packets 21027  bytes 4829399 (4.6 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 8060  bytes 475705 (464.5 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 8060  bytes 475705 (464.5 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

On the PI running RaspAP

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.0.36  netmask 255.255.255.0  broadcast 192.168.0.255
        inet6 fe80::abf0:3ba2:3065:d02e  prefixlen 64  scopeid 0x20<link>
        inet6 2602:3f:e686:a600:bb58:3afe:8b5f:1567  prefixlen 64  scopeid 0x0<global>
        inet6 fd00::f2f1:5e67:5f6a:1cee  prefixlen 64  scopeid 0x0<global>
        inet6 2602:3f:e686:a600:f18d:81e3:8118:214c  prefixlen 64  scopeid 0x0<global>
        inet6 fd00::fff:43f6:90d4:c8d8  prefixlen 64  scopeid 0x0<global>
        ether b8:27:eb:21:f1:98  txqueuelen 1000  (Ethernet)
        RX packets 39861  bytes 20878633 (19.9 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 3634  bytes 2689800 (2.5 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 93  bytes 179941 (175.7 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 93  bytes 179941 (175.7 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.3.141.1  netmask 255.255.255.0  broadcast 10.3.141.255
        inet6 fe80::e7af:2847:23b3:c7c8  prefixlen 64  scopeid 0x20<link>
        ether 32:9c:a0:48:75:29  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 60  bytes 8395 (8.1 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

G Hammer

unread,
Jan 2, 2019, 8:59:00 AM1/2/19
to weewx-user
wlan0 shows UP, so that's odd.
Have you tried restarting the Pi?

Also, this has run far from the thread topic. Open a new thread for further setup questions.

Scott Grayban

unread,
Jan 2, 2019, 9:12:13 AM1/2/19
to weewx-user
Posted to new thread.... have your laugh at me........ :P
Reply all
Reply to author
Forward
0 new messages