Hi,

Following your recommendations,

I undid the eth0 eth1 bridge. Now *ifconfig* outputs,

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.2.84  netmask 255.255.255.0  broadcast 192.168.2.255
        inet6 fe80::694d:c93b:286f:c350  prefixlen 64  scopeid 0x20<link>
        ether b8:27:eb:67:2c:6d  txqueuelen 1000  (Ethernet)
        RX packets 159284  bytes 19187801 (18.2 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 150740  bytes 41546975 (39.6 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

eth1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 169.254.80.11  netmask 255.255.0.0  broadcast 169.254.255.255
        inet6 fe80::c16b:c23f:9402:d6c9  prefixlen 64  scopeid 0x20<link>
        ether 00:0e:c6:bc:dc:9e  txqueuelen 1000  (Ethernet)
        RX packets 123209  bytes 8012410 (7.6 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 70624  bytes 8820947 (8.4 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

*nslookup gateway.weather.oregonscientific.com 192.168.2.84* outputs,
Server:       192.168.2.84
Address:    192.168.2.84#53

Name:     gateway.weather.oregonscientific.com
Address: 192.168.2.84

Then, DNS server at the Raspberry Pi works well.

I installed the DHCP server and configured the private network using the 
Raspberry Pi as DNS server,

*sudo apt-get install isc-dhcp-server*

I modified the* /etc/default/isc-dhcp-server*,

INTERFACESv4="eth1"

And I modified the */etc/dhcpd/dhcpd.conf*,

option domain-name "weather";
option domain-name-servers 192.168.2.84;

subnet 169.254.80.0 netmask 255.255.255.0 {
  range 169.254.80.2 169.254.80.5;
  option domain-name-servers 192.168.2.84;
  option domain-name "station.weather";
  option routers 192.168.2.84;
  option broadcast-address 169.254.80.255;
  default-lease-time 600;
  max-lease-time 7200;
}

Then, LW301 adopted the new IP address 169.254.80.2.

To test all the new configurations I stopped the lighttpd server and 
configured weewx to listen at port 80,

[Interceptor]
    # This section is for the network traffic interceptor driver.

    # The driver to use:
    driver = user.interceptor

    # Specify the hardware device to capture.  Options include:
    #   acurite-bridge - acurite internet bridge, smarthub, or access
    #   observer - fine offset WH2600/HP1000/HP1003, ambient WS2902
    #   lw30x - oregon scientific LW301/LW302
    #   lacrosse-bridge - lacrosse GW1000U/C84612 internet bridge
    #   wu-client - any hardware that uses the weather underground protocol
    device_type = lw30x
    port = 80
    address = 169.254.80.11

The output of *sudo tail -f /var/log/syslog | tee /var/tmp/mylog* is,

Mar 21 20:10:00 raspberrypi systemd[1]: Starting LSB: weewx weather 
system...
Mar 21 20:10:00 raspberrypi weewx[9303]: engine: Initializing weewx version 
3.9.1
Mar 21 20:10:00 raspberrypi weewx[9303]: engine: Using Python 2.7.13 
(default, Sep 26 2018, 18:42:22) #012[GCC 6.3.0 20170516]
Mar 21 20:10:00 raspberrypi weewx[9303]: engine: Platform 
Linux-4.14.79-v7+-armv7l-with-debian-9.6
Mar 21 20:10:00 raspberrypi weewx[9303]: engine: Locale is 'ca_ES.UTF-8'
Mar 21 20:10:00 raspberrypi weewx[9303]: engine: pid file is 
/var/run/weewx.pid
Mar 21 20:10:00 raspberrypi weewx[9292]: Starting weewx weather system: 
weewx.
Mar 21 20:10:00 raspberrypi systemd[1]: Started LSB: weewx weather system.
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Using configuration file 
/etc/weewx/weewx.conf
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Debug is 1
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Initializing engine
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading station type 
Interceptor (user.interceptor)
Mar 21 20:10:00 raspberrypi weewx[9307]: interceptor: MainThread: driver 
version is 0.45
Mar 21 20:10:00 raspberrypi weewx[9307]: interceptor: MainThread: device 
type: lw30x
Mar 21 20:10:00 raspberrypi weewx[9307]: interceptor: MainThread: sensor 
map: None
Mar 21 20:10:00 raspberrypi weewx[9307]: interceptor: MainThread: mode is 
listen
Mar 21 20:10:00 raspberrypi weewx[9307]: interceptor: MainThread: listen on 
169.254.80.11:80
Mar 21 20:10:00 raspberrypi weewx[9307]: interceptor: ServerThread: start 
tcp server
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.engine.StdTimeSynch
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.engine.StdTimeSynch
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.engine.StdConvert
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: StdConvert target unit is 
0x1
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.engine.StdConvert
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.engine.StdCalibrate
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.engine.StdCalibrate
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.engine.StdQC
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.engine.StdQC
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.wxservices.StdWXCalculate
Mar 21 20:10:00 raspberrypi weewx[9307]: wxcalculate: The following values 
will be calculated: barometer=prefer_hardware, windchill=prefer_hardware, 
dewpoint=prefer_hardware, appTemp=prefer_hardware, 
rainRate=prefer_hardware, windrun=prefer_hardware, 
heatindex=prefer_hardware, maxSolarRad=prefer_hardware, 
humidex=prefer_hardware, pressure=prefer_hardware, 
inDewpoint=prefer_hardware, ET=prefer_hardware, altimeter=prefer_hardware, 
cloudbase=prefer_hardware
Mar 21 20:10:00 raspberrypi weewx[9307]: wxcalculate: The following 
algorithms will be used for calculations: altimeter=aaNOAA, maxSolarRad=RS
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.wxservices.StdWXCalculate
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.engine.StdArchive
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Archive will use data 
binding wx_binding
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Record generation will be 
attempted in 'hardware'
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Using archive interval of 
300 seconds (specified in weewx configuration)
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Use LOOP data in hi/low 
calculations: 1
Mar 21 20:10:00 raspberrypi weewx[9307]: manager: Daily summary version is 
2.0
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Using binding 'wx_binding' 
to database 'weewx.sdb'
Mar 21 20:10:00 raspberrypi weewx[9307]: manager: Starting backfill of 
daily summaries
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.engine.StdArchive
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.restx.StdStationRegistry
Mar 21 20:10:00 raspberrypi weewx[9307]: restx: StationRegistry: 
Registration not requested.
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.restx.StdStationRegistry
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.restx.StdWunderground
Mar 21 20:10:00 raspberrypi weewx[9307]: restx: Wunderground: Posting not 
enabled.
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.restx.StdWunderground
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.restx.StdPWSweather
Mar 21 20:10:00 raspberrypi weewx[9307]: restx: PWSweather: Posting not 
enabled.
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.restx.StdPWSweather
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.restx.StdCWOP
Mar 21 20:10:00 raspberrypi weewx[9307]: restx: CWOP: Posting not enabled.
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.restx.StdCWOP
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.restx.StdWOW
Mar 21 20:10:00 raspberrypi weewx[9307]: restx: WOW: Posting not enabled.
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.restx.StdWOW
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.restx.StdAWEKAS
Mar 21 20:10:00 raspberrypi weewx[9307]: restx: AWEKAS: Posting not enabled.
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.restx.StdAWEKAS
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.engine.StdPrint
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.engine.StdPrint
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Loading service 
weewx.engine.StdReport
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Finished loading service 
weewx.engine.StdReport
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Starting up weewx version 
3.9.1
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Station does not support 
reading the time
Mar 21 20:10:00 raspberrypi weewx[9307]: engine: Starting main packet loop.
Mar 21 20:10:10 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:10:20 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:10:28 raspberrypi dhcpd[3882]: DHCPDISCOVER from 
00:0e:c6:bc:dc:9e (raspberrypi) via eth1
Mar 21 20:10:29 raspberrypi dhcpd[3882]: DHCPOFFER on 169.254.80.3 to 
00:0e:c6:bc:dc:9e (raspberrypi) via eth1
Mar 21 20:10:30 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:10:40 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:10:50 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:11:00 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:11:10 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:11:20 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:11:30 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:11:33 raspberrypi dhcpd[3882]: DHCPDISCOVER from 
00:0e:c6:bc:dc:9e (raspberrypi) via eth1
Mar 21 20:11:34 raspberrypi dhcpd[3882]: DHCPOFFER on 169.254.80.3 to 
00:0e:c6:bc:dc:9e (raspberrypi) via eth1
Mar 21 20:11:40 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue
Mar 21 20:11:50 raspberrypi weewx[9307]: interceptor: MainThread: empty 
queue

And the output of *sudo tcpdump -i eth1 -s 0 -v -n ether host 
00:04:A3:91:5C:9D* (MAC address of the LW301) is,

20:17:32.277475 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:32.277562 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:32.278680 IP (tos 0x0, ttl 100, id 4352, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6233 > 192.168.2.84.53: 2366+ A? 
static.oregonscientific.com. (45)
20:17:32.279500 IP (tos 0x0, ttl 64, id 46052, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6233: 2366 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:17:32.282633 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:32.282678 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:32.283474 IP (tos 0x0, ttl 100, id 4353, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2108 > 123.1.185.73.80: Flags [S], cksum 0x42e5 (correct), 
seq 332533200, win 100, options [mss 536], length 0
20:17:33.283643 IP (tos 0x0, ttl 100, id 4354, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2108 > 123.1.185.73.80: Flags [S], cksum 0x42e5 (correct), 
seq 332533200, win 100, options [mss 536], length 0
20:17:35.283792 IP (tos 0x0, ttl 100, id 4355, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2108 > 123.1.185.73.80: Flags [S], cksum 0x42e5 (correct), 
seq 332533200, win 100, options [mss 536], length 0
20:17:37.278337 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:37.278416 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:37.279535 IP (tos 0x0, ttl 100, id 4356, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6234 > 192.168.2.84.53: 2367+ A? 
static.oregonscientific.com. (45)
20:17:37.280368 IP (tos 0x0, ttl 64, id 46337, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6234: 2367 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:17:37.283494 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:37.283529 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:37.284354 IP (tos 0x0, ttl 100, id 4357, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2109 > 123.1.185.73.80: Flags [S], cksum 0x6b87 (correct), 
seq 1594071547, win 100, options [mss 536], length 0
20:17:38.284638 IP (tos 0x0, ttl 100, id 4358, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2109 > 123.1.185.73.80: Flags [S], cksum 0x6b87 (correct), 
seq 1594071547, win 100, options [mss 536], length 0
20:17:40.284849 IP (tos 0x0, ttl 100, id 4359, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2109 > 123.1.185.73.80: Flags [S], cksum 0x6b87 (correct), 
seq 1594071547, win 100, options [mss 536], length 0
20:17:42.279221 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:42.279305 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:42.280414 IP (tos 0x0, ttl 100, id 4360, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6235 > 192.168.2.84.53: 2368+ A? 
static.oregonscientific.com. (45)
20:17:42.281248 IP (tos 0x0, ttl 64, id 46426, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6235: 2368 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:17:42.284375 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:42.284413 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:42.285233 IP (tos 0x0, ttl 100, id 4361, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2110 > 123.1.185.73.80: Flags [S], cksum 0x485e (correct), 
seq 2760275872, win 100, options [mss 536], length 0
20:17:43.285673 IP (tos 0x0, ttl 100, id 4362, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2110 > 123.1.185.73.80: Flags [S], cksum 0x485e (correct), 
seq 2760275872, win 100, options [mss 536], length 0
20:17:45.285838 IP (tos 0x0, ttl 100, id 4363, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2110 > 123.1.185.73.80: Flags [S], cksum 0x485e (correct), 
seq 2760275872, win 100, options [mss 536], length 0
20:17:47.280311 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:47.280394 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:47.281503 IP (tos 0x0, ttl 100, id 4364, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6236 > 192.168.2.84.53: 2369+ A? 
static.oregonscientific.com. (45)
20:17:47.282340 IP (tos 0x0, ttl 64, id 46786, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6236: 2369 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:17:47.285454 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:47.285492 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:47.286301 IP (tos 0x0, ttl 100, id 4365, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2111 > 123.1.185.73.80: Flags [S], cksum 0x71c6 (correct), 
seq 2026732016, win 100, options [mss 536], length 0
20:17:47.315821 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
169.254.80.2 tell 169.254.80.11, length 28
20:17:47.316764 ARP, Ethernet (len 6), IPv4 (len 4), Reply 169.254.80.2 
is-at 00:04:a3:91:5c:9d, length 46
20:17:48.286776 IP (tos 0x0, ttl 100, id 4366, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2111 > 123.1.185.73.80: Flags [S], cksum 0x71c6 (correct), 
seq 2026732016, win 100, options [mss 536], length 0
20:17:50.286899 IP (tos 0x0, ttl 100, id 4367, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2111 > 123.1.185.73.80: Flags [S], cksum 0x71c6 (correct), 
seq 2026732016, win 100, options [mss 536], length 0
20:17:52.281429 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:52.281512 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:52.282631 IP (tos 0x0, ttl 100, id 4368, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6237 > 192.168.2.84.53: 2370+ A? 
static.oregonscientific.com. (45)
20:17:52.283460 IP (tos 0x0, ttl 64, id 46828, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6237: 2370 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:17:52.286592 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:52.286637 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:52.287451 IP (tos 0x0, ttl 100, id 4369, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2112 > 123.1.185.73.80: Flags [S], cksum 0xb1f3 (correct), 
seq 2588153931, win 100, options [mss 536], length 0
20:17:53.287733 IP (tos 0x0, ttl 100, id 4370, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2112 > 123.1.185.73.80: Flags [S], cksum 0xb1f3 (correct), 
seq 2588153931, win 100, options [mss 536], length 0
20:17:55.287974 IP (tos 0x0, ttl 100, id 4371, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2112 > 123.1.185.73.80: Flags [S], cksum 0xb1f3 (correct), 
seq 2588153931, win 100, options [mss 536], length 0
20:17:57.282349 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:57.282440 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:57.283529 IP (tos 0x0, ttl 100, id 4372, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6238 > 192.168.2.84.53: 2371+ A? 
static.oregonscientific.com. (45)
20:17:57.284354 IP (tos 0x0, ttl 64, id 46966, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6238: 2371 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:17:57.287482 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:17:57.287525 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:17:57.288341 IP (tos 0x0, ttl 100, id 4373, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2113 > 123.1.185.73.80: Flags [S], cksum 0x2063 (correct), 
seq 261567624, win 100, options [mss 536], length 0
20:17:58.288581 IP (tos 0x0, ttl 100, id 4374, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2113 > 123.1.185.73.80: Flags [S], cksum 0x2063 (correct), 
seq 261567624, win 100, options [mss 536], length 0
20:18:00.288912 IP (tos 0x0, ttl 100, id 4375, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2113 > 123.1.185.73.80: Flags [S], cksum 0x2063 (correct), 
seq 261567624, win 100, options [mss 536], length 0
20:18:02.283471 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:02.283551 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:02.284667 IP (tos 0x0, ttl 100, id 4376, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6239 > 192.168.2.84.53: 2372+ A? 
static.oregonscientific.com. (45)
20:18:02.285501 IP (tos 0x0, ttl 64, id 47144, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6239: 2372 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:02.288635 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:02.288674 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:02.289484 IP (tos 0x0, ttl 100, id 4377, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2114 > 123.1.185.73.80: Flags [S], cksum 0xe2e7 (correct), 
seq 1651121967, win 100, options [mss 536], length 0
20:18:03.289672 IP (tos 0x0, ttl 100, id 4378, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2114 > 123.1.185.73.80: Flags [S], cksum 0xe2e7 (correct), 
seq 1651121967, win 100, options [mss 536], length 0
20:18:05.289980 IP (tos 0x0, ttl 100, id 4379, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2114 > 123.1.185.73.80: Flags [S], cksum 0xe2e7 (correct), 
seq 1651121967, win 100, options [mss 536], length 0
20:18:07.284712 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:07.284815 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:07.285895 IP (tos 0x0, ttl 100, id 4380, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6240 > 192.168.2.84.53: 2373+ A? 
static.oregonscientific.com. (45)
20:18:07.286742 IP (tos 0x0, ttl 64, id 47543, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6240: 2373 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:07.289837 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:07.289877 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:07.290714 IP (tos 0x0, ttl 100, id 4381, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2115 > 123.1.185.73.80: Flags [S], cksum 0xfd88 (correct), 
seq 2881993519, win 100, options [mss 536], length 0
20:18:08.290862 IP (tos 0x0, ttl 100, id 4382, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2115 > 123.1.185.73.80: Flags [S], cksum 0xfd88 (correct), 
seq 2881993519, win 100, options [mss 536], length 0
20:18:10.291166 IP (tos 0x0, ttl 100, id 4383, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2115 > 123.1.185.73.80: Flags [S], cksum 0xfd88 (correct), 
seq 2881993519, win 100, options [mss 536], length 0
20:18:12.285479 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:12.285568 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:12.286669 IP (tos 0x0, ttl 100, id 4384, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6241 > 192.168.2.84.53: 2374+ A? 
static.oregonscientific.com. (45)
20:18:12.287510 IP (tos 0x0, ttl 64, id 48014, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6241: 2374 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:12.290634 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:12.290683 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:12.291481 IP (tos 0x0, ttl 100, id 4385, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2116 > 123.1.185.73.80: Flags [S], cksum 0x427f (correct), 
seq 3838917934, win 100, options [mss 536], length 0
20:18:13.291611 IP (tos 0x0, ttl 100, id 4386, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2116 > 123.1.185.73.80: Flags [S], cksum 0x427f (correct), 
seq 3838917934, win 100, options [mss 536], length 0
20:18:15.291849 IP (tos 0x0, ttl 100, id 4387, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2116 > 123.1.185.73.80: Flags [S], cksum 0x427f (correct), 
seq 3838917934, win 100, options [mss 536], length 0
20:18:16.216729 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:16.216813 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:16.218087 IP (tos 0x0, ttl 100, id 4388, offset 0, flags [none], 
proto UDP (17), length 82)
    169.254.80.2.6242 > 192.168.2.84.53: 2375+ A? 
gateway.weather.oregonscientific.com. (54)
20:18:16.218724 IP (tos 0x0, ttl 64, id 48183, offset 0, flags [none], 
proto UDP (17), length 160)
    192.168.2.84.53 > 169.254.80.2.6242: 2375* 1/1/2 
gateway.weather.oregonscientific.com. A 192.168.2.84 (132)
20:18:16.221479 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:16.221534 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:16.222407 IP (tos 0x0, ttl 100, id 4389, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2117 > 192.168.2.84.80: Flags [S], cksum 0x3f8e (correct), 
seq 3092110676, win 256, options [mss 536], length 0
20:18:16.222470 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2117: Flags [R.], cksum 0x549b 
(correct), seq 0, ack 3092110677, win 0, length 0
20:18:17.222936 IP (tos 0x0, ttl 100, id 4390, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2117 > 192.168.2.84.80: Flags [S], cksum 0x3f8e (correct), 
seq 3092110676, win 256, options [mss 536], length 0
20:18:17.223048 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2117: Flags [R.], cksum 0x549b 
(correct), seq 0, ack 1, win 0, length 0
20:18:17.286989 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:17.287060 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:17.288233 IP (tos 0x0, ttl 100, id 4391, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6243 > 192.168.2.84.53: 2376+ A? 
static.oregonscientific.com. (45)
20:18:17.289060 IP (tos 0x0, ttl 64, id 48276, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6243: 2376 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:17.292462 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:17.292497 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:17.293389 IP (tos 0x0, ttl 100, id 4392, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2118 > 123.1.185.73.80: Flags [S], cksum 0x6d23 (correct), 
seq 1736937426, win 100, options [mss 536], length 0
20:18:18.293470 IP (tos 0x0, ttl 100, id 4393, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2118 > 123.1.185.73.80: Flags [S], cksum 0x6d23 (correct), 
seq 1736937426, win 100, options [mss 536], length 0
20:18:19.541394 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:19.541474 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:19.542751 IP (tos 0x0, ttl 100, id 4394, offset 0, flags [none], 
proto UDP (17), length 82)
    169.254.80.2.6244 > 192.168.2.84.53: 2377+ A? 
gateway.weather.oregonscientific.com. (54)
20:18:19.543399 IP (tos 0x0, ttl 64, id 48472, offset 0, flags [none], 
proto UDP (17), length 160)
    192.168.2.84.53 > 169.254.80.2.6244: 2377* 1/1/2 
g.weather.oregonscientific.com. A 192.168.2.84 (132)
20:18:19.546151 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:19.546204 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:19.547064 IP (tos 0x0, ttl 100, id 4395, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2119 > 192.168.2.84.80: Flags [S], cksum 0x567d (correct), 
seq 565206273, win 256, options [mss 536], length 0
20:18:19.547125 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2119: Flags [R.], cksum 0x6b8a 
(correct), seq 0, ack 565206274, win 0, length 0
20:18:20.293908 IP (tos 0x0, ttl 100, id 4396, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2118 > 123.1.185.73.80: Flags [S], cksum 0x6d23 (correct), 
seq 1736937426, win 100, options [mss 536], length 0
20:18:20.547443 IP (tos 0x0, ttl 100, id 4397, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2119 > 192.168.2.84.80: Flags [S], cksum 0x567d (correct), 
seq 565206273, win 256, options [mss 536], length 0
20:18:20.547564 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2119: Flags [R.], cksum 0x6b8a 
(correct), seq 0, ack 1, win 0, length 0
20:18:22.287946 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:22.288037 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:22.289111 IP (tos 0x0, ttl 100, id 4398, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6245 > 192.168.2.84.53: 2378+ A? 
static.oregonscientific.com. (45)
20:18:22.289924 IP (tos 0x0, ttl 64, id 48488, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6245: 2378 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:22.293078 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:22.293115 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:22.293948 IP (tos 0x0, ttl 100, id 4399, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2120 > 123.1.185.73.80: Flags [S], cksum 0xc442 (correct), 
seq 287411991, win 100, options [mss 536], length 0
20:18:23.294260 IP (tos 0x0, ttl 100, id 4400, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2120 > 123.1.185.73.80: Flags [S], cksum 0xc442 (correct), 
seq 287411991, win 100, options [mss 536], length 0
20:18:25.294560 IP (tos 0x0, ttl 100, id 4401, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2120 > 123.1.185.73.80: Flags [S], cksum 0xc442 (correct), 
seq 287411991, win 100, options [mss 536], length 0
20:18:27.288928 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:27.289010 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:27.290127 IP (tos 0x0, ttl 100, id 4402, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6246 > 192.168.2.84.53: 2379+ A? 
static.oregonscientific.com. (45)
20:18:27.290954 IP (tos 0x0, ttl 64, id 48812, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6246: 2379 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:27.294100 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:27.294145 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:27.294946 IP (tos 0x0, ttl 100, id 4403, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2121 > 123.1.185.73.80: Flags [S], cksum 0xe201 (correct), 
seq 2781732010, win 100, options [mss 536], length 0
20:18:28.295057 IP (tos 0x0, ttl 100, id 4404, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2121 > 123.1.185.73.80: Flags [S], cksum 0xe201 (correct), 
seq 2781732010, win 100, options [mss 536], length 0
20:18:30.295169 IP (tos 0x0, ttl 100, id 4405, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2121 > 123.1.185.73.80: Flags [S], cksum 0xe201 (correct), 
seq 2781732010, win 100, options [mss 536], length 0
20:18:32.289792 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:32.289865 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:32.290987 IP (tos 0x0, ttl 100, id 4406, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6247 > 192.168.2.84.53: 2380+ A? 
static.oregonscientific.com. (45)
20:18:32.291837 IP (tos 0x0, ttl 64, id 49002, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6247: 2380 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:32.294953 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:32.294994 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:32.295819 IP (tos 0x0, ttl 100, id 4407, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2122 > 123.1.185.73.80: Flags [S], cksum 0xfb4a (correct), 
seq 96953191, win 100, options [mss 536], length 0
20:18:32.365818 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
169.254.80.2 tell 169.254.80.11, length 28
20:18:32.366596 ARP, Ethernet (len 6), IPv4 (len 4), Reply 169.254.80.2 
is-at 00:04:a3:91:5c:9d, length 46
20:18:33.296055 IP (tos 0x0, ttl 100, id 4408, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2122 > 123.1.185.73.80: Flags [S], cksum 0xfb4a (correct), 
seq 96953191, win 100, options [mss 536], length 0
20:18:34.220059 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:34.220143 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:34.221410 IP (tos 0x0, ttl 100, id 4409, offset 0, flags [none], 
proto UDP (17), length 82)
    169.254.80.2.6248 > 192.168.2.84.53: 2381+ A? 
gateway.weather.oregonscientific.com. (54)
20:18:34.222047 IP (tos 0x0, ttl 64, id 49058, offset 0, flags [none], 
proto UDP (17), length 160)
    192.168.2.84.53 > 169.254.80.2.6248: 2381* 1/1/2 
gateway.weather.oregonscientific.com. A 192.168.2.84 (132)
20:18:34.224777 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:34.224813 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:34.225698 IP (tos 0x0, ttl 100, id 4410, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2123 > 192.168.2.84.80: Flags [S], cksum 0x0182 (correct), 
seq 858366079, win 256, options [mss 536], length 0
20:18:34.225753 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2123: Flags [R.], cksum 0x168f 
(correct), seq 0, ack 858366080, win 0, length 0
20:18:35.226059 IP (tos 0x0, ttl 100, id 4411, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2123 > 192.168.2.84.80: Flags [S], cksum 0x0182 (correct), 
seq 858366079, win 256, options [mss 536], length 0
20:18:35.226182 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2123: Flags [R.], cksum 0x168f 
(correct), seq 0, ack 1, win 0, length 0
20:18:35.296542 IP (tos 0x0, ttl 100, id 4412, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2122 > 123.1.185.73.80: Flags [S], cksum 0xfb4a (correct), 
seq 96953191, win 100, options [mss 536], length 0
20:18:37.290929 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:37.291018 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:37.292088 IP (tos 0x0, ttl 100, id 4413, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6249 > 192.168.2.84.53: 2382+ A? 
static.oregonscientific.com. (45)
20:18:37.292915 IP (tos 0x0, ttl 64, id 49340, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6249: 2382 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:37.296079 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:37.296141 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:37.296915 IP (tos 0x0, ttl 100, id 4414, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2124 > 123.1.185.73.80: Flags [S], cksum 0x8768 (correct), 
seq 3187613455, win 100, options [mss 536], length 0
20:18:38.297064 IP (tos 0x0, ttl 100, id 4415, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2124 > 123.1.185.73.80: Flags [S], cksum 0x8768 (correct), 
seq 3187613455, win 100, options [mss 536], length 0
20:18:40.297285 IP (tos 0x0, ttl 100, id 4416, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2124 > 123.1.185.73.80: Flags [S], cksum 0x8768 (correct), 
seq 3187613455, win 100, options [mss 536], length 0
20:18:41.372686 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:41.372786 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:41.374061 IP (tos 0x0, ttl 100, id 4417, offset 0, flags [none], 
proto UDP (17), length 82)
    169.254.80.2.6250 > 192.168.2.84.53: 2383+ A? 
gateway.weather.oregonscientific.com. (54)
20:18:41.374695 IP (tos 0x0, ttl 64, id 49512, offset 0, flags [none], 
proto UDP (17), length 160)
    192.168.2.84.53 > 169.254.80.2.6250: 2383* 1/1/2 
gateway.weather.oregonscientific.com. A 192.168.2.84 (132)
20:18:41.377470 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:41.377517 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:41.378405 IP (tos 0x0, ttl 100, id 4418, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2125 > 192.168.2.84.80: Flags [S], cksum 0x35b3 (correct), 
seq 4124289441, win 256, options [mss 536], length 0
20:18:41.378460 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2125: Flags [R.], cksum 0x4ac0 
(correct), seq 0, ack 4124289442, win 0, length 0
20:18:42.292328 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:42.292409 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:42.293551 IP (tos 0x0, ttl 100, id 4419, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6251 > 192.168.2.84.53: 2384+ A? 
static.oregonscientific.com. (45)
20:18:42.294368 IP (tos 0x0, ttl 64, id 49597, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6251: 2384 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:42.297794 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:42.297832 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:42.298698 IP (tos 0x0, ttl 100, id 4420, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2126 > 123.1.185.73.80: Flags [S], cksum 0xd182 (correct), 
seq 1314276508, win 100, options [mss 536], length 0
20:18:42.378981 IP (tos 0x0, ttl 100, id 4421, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2125 > 192.168.2.84.80: Flags [S], cksum 0x35b3 (correct), 
seq 4124289441, win 256, options [mss 536], length 0
20:18:42.379121 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2125: Flags [R.], cksum 0x4ac0 
(correct), seq 0, ack 1, win 0, length 0
20:18:43.299406 IP (tos 0x0, ttl 100, id 4422, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2126 > 123.1.185.73.80: Flags [S], cksum 0xd182 (correct), 
seq 1314276508, win 100, options [mss 536], length 0
20:18:45.299903 IP (tos 0x0, ttl 100, id 4423, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2126 > 123.1.185.73.80: Flags [S], cksum 0xd182 (correct), 
seq 1314276508, win 100, options [mss 536], length 0
20:18:47.293328 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:47.293408 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:47.294509 IP (tos 0x0, ttl 100, id 4424, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6252 > 192.168.2.84.53: 2385+ A? 
static.oregonscientific.com. (45)
20:18:47.295333 IP (tos 0x0, ttl 64, id 49957, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6252: 2385 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:47.298490 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:47.298539 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:47.299342 IP (tos 0x0, ttl 100, id 4425, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2127 > 123.1.185.73.80: Flags [S], cksum 0xff14 (correct), 
seq 1021257856, win 100, options [mss 536], length 0
20:18:48.299645 IP (tos 0x0, ttl 100, id 4426, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2127 > 123.1.185.73.80: Flags [S], cksum 0xff14 (correct), 
seq 1021257856, win 100, options [mss 536], length 0
20:18:50.299990 IP (tos 0x0, ttl 100, id 4427, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2127 > 123.1.185.73.80: Flags [S], cksum 0xff14 (correct), 
seq 1021257856, win 100, options [mss 536], length 0
20:18:52.294276 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:52.294359 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:52.295457 IP (tos 0x0, ttl 100, id 4428, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6253 > 192.168.2.84.53: 2386+ A? 
static.oregonscientific.com. (45)
20:18:52.296372 IP (tos 0x0, ttl 64, id 50400, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6253: 2386 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:52.299416 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:52.299463 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:52.300271 IP (tos 0x0, ttl 100, id 4429, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2128 > 123.1.185.73.80: Flags [S], cksum 0x354a (correct), 
seq 208020163, win 100, options [mss 536], length 0
20:18:53.300562 IP (tos 0x0, ttl 100, id 4430, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2128 > 123.1.185.73.80: Flags [S], cksum 0x354a (correct), 
seq 208020163, win 100, options [mss 536], length 0
20:18:55.301019 IP (tos 0x0, ttl 100, id 4431, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2128 > 123.1.185.73.80: Flags [S], cksum 0x354a (correct), 
seq 208020163, win 100, options [mss 536], length 0
20:18:57.295254 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:57.295336 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:57.296421 IP (tos 0x0, ttl 100, id 4432, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6254 > 192.168.2.84.53: 2387+ A? 
static.oregonscientific.com. (45)
20:18:57.297251 IP (tos 0x0, ttl 64, id 50871, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6254: 2387 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:18:57.300388 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:18:57.300437 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:18:57.301232 IP (tos 0x0, ttl 100, id 4433, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2129 > 123.1.185.73.80: Flags [S], cksum 0x7ef0 (correct), 
seq 450742948, win 100, options [mss 536], length 0
20:18:58.301382 IP (tos 0x0, ttl 100, id 4434, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2129 > 123.1.185.73.80: Flags [S], cksum 0x7ef0 (correct), 
seq 450742948, win 100, options [mss 536], length 0
20:19:00.301636 IP (tos 0x0, ttl 100, id 4435, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2129 > 123.1.185.73.80: Flags [S], cksum 0x7ef0 (correct), 
seq 450742948, win 100, options [mss 536], length 0
20:19:02.296153 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:02.296242 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:02.297335 IP (tos 0x0, ttl 100, id 4436, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6255 > 192.168.2.84.53: 2388+ A? 
static.oregonscientific.com. (45)
20:19:02.298158 IP (tos 0x0, ttl 64, id 51136, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6255: 2388 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:19:02.301294 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:02.301332 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:02.302163 IP (tos 0x0, ttl 100, id 4437, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2130 > 123.1.185.73.80: Flags [S], cksum 0xcc4a (correct), 
seq 1319061895, win 100, options [mss 536], length 0
20:19:03.302414 IP (tos 0x0, ttl 100, id 4438, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2130 > 123.1.185.73.80: Flags [S], cksum 0xcc4a (correct), 
seq 1319061895, win 100, options [mss 536], length 0
20:19:05.302815 IP (tos 0x0, ttl 100, id 4439, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2130 > 123.1.185.73.80: Flags [S], cksum 0xcc4a (correct), 
seq 1319061895, win 100, options [mss 536], length 0
20:19:07.297254 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:07.297349 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:07.298384 IP (tos 0x0, ttl 100, id 4440, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6256 > 192.168.2.84.53: 2389+ A? 
static.oregonscientific.com. (45)
20:19:07.299250 IP (tos 0x0, ttl 64, id 51296, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6256: 2389 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:19:07.302339 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:07.302390 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:07.303201 IP (tos 0x0, ttl 100, id 4441, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2131 > 123.1.185.73.80: Flags [S], cksum 0x73b7 (correct), 
seq 454834, win 100, options [mss 536], length 0
20:19:08.303639 IP (tos 0x0, ttl 100, id 4442, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2131 > 123.1.185.73.80: Flags [S], cksum 0x73b7 (correct), 
seq 454834, win 100, options [mss 536], length 0
20:19:10.304150 IP (tos 0x0, ttl 100, id 4443, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2131 > 123.1.185.73.80: Flags [S], cksum 0x73b7 (correct), 
seq 454834, win 100, options [mss 536], length 0
20:19:12.298234 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:12.298322 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:12.299431 IP (tos 0x0, ttl 100, id 4444, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6257 > 192.168.2.84.53: 2390+ A? 
static.oregonscientific.com. (45)
20:19:12.300275 IP (tos 0x0, ttl 64, id 51495, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6257: 2390 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:19:12.303420 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:12.303472 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:12.304263 IP (tos 0x0, ttl 100, id 4445, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2132 > 123.1.185.73.80: Flags [S], cksum 0x9b0e (correct), 
seq 2148419922, win 100, options [mss 536], length 0
20:19:13.304625 IP (tos 0x0, ttl 100, id 4446, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2132 > 123.1.185.73.80: Flags [S], cksum 0x9b0e (correct), 
seq 2148419922, win 100, options [mss 536], length 0
20:19:13.767724 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:13.767806 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:13.769109 IP (tos 0x0, ttl 100, id 4447, offset 0, flags [none], 
proto UDP (17), length 82)
    169.254.80.2.6258 > 192.168.2.84.53: 2391+ A? 
gateway.weather.oregonscientific.com. (54)
20:19:13.769769 IP (tos 0x0, ttl 64, id 51589, offset 0, flags [none], 
proto UDP (17), length 160)
    192.168.2.84.53 > 169.254.80.2.6258: 2391* 1/1/2 
gateway.weather.oregonscientific.com. A 192.168.2.84 (132)
20:19:13.772513 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:13.772561 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:13.773404 IP (tos 0x0, ttl 100, id 4448, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2133 > 192.168.2.84.80: Flags [S], cksum 0x3c6c (correct), 
seq 2176063232, win 256, options [mss 536], length 0
20:19:13.773482 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2133: Flags [R.], cksum 0x5179 
(correct), seq 0, ack 2176063233, win 0, length 0
20:19:14.773869 IP (tos 0x0, ttl 100, id 4449, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2133 > 192.168.2.84.80: Flags [S], cksum 0x3c6c (correct), 
seq 2176063232, win 256, options [mss 536], length 0
20:19:14.773990 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP 
(6), length 40)
    192.168.2.84.80 > 169.254.80.2.2133: Flags [R.], cksum 0x5179 
(correct), seq 0, ack 1, win 0, length 0
20:19:15.305229 IP (tos 0x0, ttl 100, id 4450, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2132 > 123.1.185.73.80: Flags [S], cksum 0x9b0e (correct), 
seq 2148419922, win 100, options [mss 536], length 0
20:19:17.299505 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:17.299588 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:17.300694 IP (tos 0x0, ttl 100, id 4451, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6259 > 192.168.2.84.53: 2392+ A? 
static.oregonscientific.com. (45)
20:19:17.301516 IP (tos 0x0, ttl 64, id 51671, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6259: 2392 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:19:17.304673 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:17.304712 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:17.305540 IP (tos 0x0, ttl 100, id 4452, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2134 > 123.1.185.73.80: Flags [S], cksum 0xfa84 (correct), 
seq 1250959192, win 100, options [mss 536], length 0
20:19:17.315809 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
169.254.80.2 tell 169.254.80.11, length 28
20:19:17.316709 ARP, Ethernet (len 6), IPv4 (len 4), Reply 169.254.80.2 
is-at 00:04:a3:91:5c:9d, length 46
20:19:18.305713 IP (tos 0x0, ttl 100, id 4453, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2134 > 123.1.185.73.80: Flags [S], cksum 0xfa84 (correct), 
seq 1250959192, win 100, options [mss 536], length 0
20:19:20.305840 IP (tos 0x0, ttl 100, id 4454, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2134 > 123.1.185.73.80: Flags [S], cksum 0xfa84 (correct), 
seq 1250959192, win 100, options [mss 536], length 0
20:19:22.300546 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:22.300633 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:22.301739 IP (tos 0x0, ttl 100, id 4455, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6260 > 192.168.2.84.53: 2393+ A? 
static.oregonscientific.com. (45)
20:19:22.302561 IP (tos 0x0, ttl 64, id 52147, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6260: 2393 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:19:22.305708 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:22.305764 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:22.306561 IP (tos 0x0, ttl 100, id 4456, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2135 > 123.1.185.73.80: Flags [S], cksum 0x327b (correct), 
seq 4128848855, win 100, options [mss 536], length 0
20:19:23.307002 IP (tos 0x0, ttl 100, id 4457, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2135 > 123.1.185.73.80: Flags [S], cksum 0x327b (correct), 
seq 4128848855, win 100, options [mss 536], length 0
20:19:25.307293 IP (tos 0x0, ttl 100, id 4458, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2135 > 123.1.185.73.80: Flags [S], cksum 0x327b (correct), 
seq 4128848855, win 100, options [mss 536], length 0
20:19:27.301472 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:27.301554 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:27.302659 IP (tos 0x0, ttl 100, id 4459, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6261 > 192.168.2.84.53: 2394+ A? 
static.oregonscientific.com. (45)
20:19:27.303487 IP (tos 0x0, ttl 64, id 52289, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6261: 2394 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:19:27.306651 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:27.306700 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:27.307516 IP (tos 0x0, ttl 100, id 4460, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2136 > 123.1.185.73.80: Flags [S], cksum 0x2695 (correct), 
seq 3133833995, win 100, options [mss 536], length 0
20:19:28.307916 IP (tos 0x0, ttl 100, id 4461, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2136 > 123.1.185.73.80: Flags [S], cksum 0x2695 (correct), 
seq 3133833995, win 100, options [mss 536], length 0
20:19:30.308249 IP (tos 0x0, ttl 100, id 4462, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2136 > 123.1.185.73.80: Flags [S], cksum 0x2695 (correct), 
seq 3133833995, win 100, options [mss 536], length 0
20:19:32.302434 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:32.302521 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:32.303701 IP (tos 0x0, ttl 100, id 4463, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6262 > 192.168.2.84.53: 2395+ A? 
static.oregonscientific.com. (45)
20:19:32.304556 IP (tos 0x0, ttl 64, id 52290, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6262: 2395 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:19:32.307596 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:32.307644 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:32.308450 IP (tos 0x0, ttl 100, id 4464, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2137 > 123.1.185.73.80: Flags [S], cksum 0x6c4a (correct), 
seq 1052031339, win 100, options [mss 536], length 0
20:19:33.308779 IP (tos 0x0, ttl 100, id 4465, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2137 > 123.1.185.73.80: Flags [S], cksum 0x6c4a (correct), 
seq 1052031339, win 100, options [mss 536], length 0
20:19:35.308991 IP (tos 0x0, ttl 100, id 4466, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2137 > 123.1.185.73.80: Flags [S], cksum 0x6c4a (correct), 
seq 1052031339, win 100, options [mss 536], length 0
20:19:37.303530 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:37.303611 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:37.304722 IP (tos 0x0, ttl 100, id 4467, offset 0, flags [none], 
proto UDP (17), length 73)
    169.254.80.2.6263 > 192.168.2.84.53: 2396+ A? 
static.oregonscientific.com. (45)
20:19:37.305528 IP (tos 0x0, ttl 64, id 52624, offset 0, flags [none], 
proto UDP (17), length 279)
    192.168.2.84.53 > 169.254.80.2.6263: 2396 1/5/2 
static.oregonscientific.com. A 123.1.185.73 (251)
20:19:37.308706 ARP, Ethernet (len 6), IPv4 (len 4), Request who-has 
192.168.2.84 (ff:ff:ff:ff:ff:ff) tell 169.254.80.2, length 46
20:19:37.308745 ARP, Ethernet (len 6), IPv4 (len 4), Reply 192.168.2.84 
is-at 00:0e:c6:bc:dc:9e, length 28
20:19:37.309562 IP (tos 0x0, ttl 100, id 4468, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2138 > 123.1.185.73.80: Flags [S], cksum 0x1551 (correct), 
seq 140330683, win 100, options [mss 536], length 0
20:19:38.309862 IP (tos 0x0, ttl 100, id 4469, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2138 > 123.1.185.73.80: Flags [S], cksum 0x1551 (correct), 
seq 140330683, win 100, options [mss 536], length 0
20:19:40.310106 IP (tos 0x0, ttl 100, id 4470, offset 0, flags [none], 
proto TCP (6), length 44)
    169.254.80.2.2138 > 123.1.185.73.80: Flags [S], cksum 0x1551 (correct), 
seq 140330683, win 100, options [mss 536], length 0

*http://www.silent-gardens.com/blog/shark-hunt-lw301/* explains how LW301 
sends data from sensors. People say that only redirecting 
gateway.weather.oregonscientific.com to the Raspberry Pi works and 2 users 
in this group said that they succeded redirecting at the router. I can't do 
this at the router, but I don't understand why it doesn't work.

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to