i386/124364: Kernel panic with pf + bridge

Vladimir Shapkin tolchek at mail.ru
Fri Jun 6 22:00:08 UTC 2008


>Number:         124364
>Category:       i386
>Synopsis:       Kernel panic with pf + bridge
>Confidential:   no
>Severity:       critical
>Priority:       medium
>Responsible:    freebsd-i386
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jun 06 22:00:07 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Vladimir Shapkin
>Release:        FreeBSD 6.3 Release
>Organization:
Artezio
>Environment:
FreeBSD 6.3-RELEASE #0: Thu Jun  5 23:26:14 MSD 2008
    root at home.net:/usr/src/sys/i386/compile/MY
>Description:
Hi.
I have a networking problem.
My users want to play a lan game over internet (DungeonSiege2). There are couples of computers on each side. The first of computers in each pair is used as a network gateway for another, others are game client and game server respectively. Gateways establishes tunnel connection over internet. The network can be schematically displayed in the following way:
1. First network 192.168.2.0, second network 192.168.1.0 connected over bridge.
2. ADSL network.
[windows machine](192.168.2.3) <-> [(192.168.2.2)rl0 (FreeBSD 6.3) bridge0 <-> gif0(10.0.0.11) <-> tun0(88.147.xx.xx)] <-- adsl --> [(88.147.xx.xx)ng0 <--> (10.0.0.12)gif0 <--> bridge0 (FreeBSD 6.2) rl0(192.168.1.2)] <-> [(192.168.1.3)windows machine]

Windows machine 192.168.2.3 starts game server (DungeonSiege2), windows machine 192.168.1.3 connects to 192.168.2.3, In few seconds the kernel panic happens on FreeBSD 6.3 machine, while FreeBSD 6.2 machine works perfectly. With pf off no kernel panic appears. The situation repeats for kernel from liveCD (i.e. kernel panic happens with pf on).
Data to help solve the problem:
ifconfig:
rl0: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1500
	options=8<VLAN_MTU>
	inet 192.168.2.2 netmask 0xffffff00 broadcast 192.168.2.255
	ether 00:50:22:8e:96:d2
	media: Ethernet autoselect (100baseTX <full-duplex>)
	status: active
pfsync0: flags=0<> mtu 2020
	syncpeer: 224.0.0.240 maxupd: 128
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
	inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3 
	inet6 ::1 prefixlen 128 
	inet 127.0.0.1 netmask 0xff000000 
pflog0: flags=141<UP,RUNNING,PROMISC> mtu 33208
tun0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1500
	inet 88.147.218.178 --> 88.147.128.128 netmask 0xffffffff 
	Opened by PID 418
tun1: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1492
	inet 88.147.212.140 --> 88.147.128.128 netmask 0xffffffff 
	Opened by PID 431
gif0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1280
	tunnel inet 88.147.212.140 --> 88.147.149.141
	inet 10.0.0.11 --> 10.0.0.12 netmask 0xffffffff 
bridge0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
	ether 6a:ee:8a:b7:d6:b5
	id 00:00:00:00:00:00 priority 32768 hellotime 2 fwddelay 15
	maxage 20 holdcnt 6 proto stp maxaddr 100 timeout 1200
	root id 00:00:00:00:00:00 priority 32768 ifcost 0 port 0
	member: gif0 flags=143<LEARNING,DISCOVER,AUTOEDGE,AUTOPTP>
	member: rl0 flags=143<LEARNING,DISCOVER,AUTOEDGE,AUTOPTP>

netstat -rn:
Routing tables

Internet:
Destination        Gateway            Flags    Refs      Use  Netif Expire
default            tun0               US          0        6   tun0
10.0.0.12          10.0.0.11          UH          0        0   gif0
64.12/16           tun1               US          0       39   tun1
78.29.64/18        tun1               US          0        0   tun1
88.147.128/17      tun1               US          0      107   tun1
127.0.0.1          127.0.0.1          UH          0      172    lo0
192.168.1/29       6a:ee:8a:b7:d6:b5  US          0        0 bridge
192.168.2          link#1             UC          0        0    rl0
192.168.2.3        00:50:bf:60:f5:a3  UHLW        1       50    rl0   1118
205.188.0/16       tun1               US          0       35   tun1

Internet6:
Destination                       Gateway                       Flags      Netif Expire
::1                               ::1                           UHL         lo0
fe80::%lo0/64                     fe80::1%lo0                   U           lo0
fe80::1%lo0                       link#3                        UHL         lo0
ff01:3::/32                       fe80::1%lo0                   UC          lo0
ff01:5::/32                       link#5                        UC         tun0
ff01:6::/32                       link#6                        UC         tun1
ff02::%lo0/32                     fe80::1%lo0                   UC          lo0
ff02::%tun0/32                    link#5                        UC         tun0
ff02::%tun1/32                    link#6                        UC         tun1

tunnel create script:
#!/bin/sh

case $1 in
    [Ss][Tt][Aa][Rr][Tt] )

        ifconfig | grep gif0 > /dev/null
        if [ $? -ne 0 ] ; then

            echo "Creating tunnel..."
            ifconfig gif0 create tunnel steclo.homeip.net 88.147.149.141
            ifconfig gif0 inet 10.0.0.11 10.0.0.12 netmask 0xffffffff
            ifconfig bridge0 create addm rl0 addm gif0 up
            route add 192.168.1/29 -iface bridge0
            pfctl -a tunnel -f rules.tunnel
        else
            echo "Tunnel already created"
        fi
        ;;
    *)
        ifconfig | grep gif0 > /dev/null
        if [ $? -eq 0 ] ; then
            echo "Tunnel is destroyed"
            pfctl -a tunnel -Fa
            route delete 192.168.1/29
            ifconfig gif0 destroy
            ifconfig bridge0 destroy
        fi
        ;;
esac

rules.tunnel:
if_br="bridge0"
if_int="rl0"
if_ovr="tun1"

table <lannet> persist file "/etc/pf/lan.net"
games="{192.168.2.3 192.168.1.3}"
pass on $if_ovr inet proto etherip
pass on $if_int inet from <lannet> \
	to 255.255.255.255
pass on $if_int inet from $games to $games
# Bridge
block on $if_br
pass on $if_br from $games to $games keep state
pass on $if_br inet from $games to 255.255.255.255

kernel configuration:
machine			i386
cpu			I686_CPU
ident			Kernel_20_Mar_2008

# Cpu options
makeoptions		DEBUG=-g

# Global options
maxusers        64

options         MAXDSIZ=(1024UL*1024*1024)
options         MAXSSIZ=(128UL*1024*1024)
options         DFLDSIZ=(1024UL*1024*1024)
options 		SCHED_4BSD		# 4BSD scheduler
options         COMPAT_43               # Compatible with BSD 4.3 [KEEP THIS!]
options         COMPAT_FREEBSD4         # Compatible with FreeBSD4
options         COMPAT_FREEBSD5         # Compatible with FreeBSD5
options 		PREEMPTION		# Enable kernel thread preemption
options 		KTRACE			# ktrace(1) support
options         SYSVSHM                 # SYSV-style shared memory
options         SYSVMSG                 # SYSV-style message queues
options         SYSVSEM                 # SYSV-style semaphores

#sched_yeld warning clear
options			_KPOSIX_PRIORITY_SCHEDULING

options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
options         ADAPTIVE_GIANT          # Giant mutex is adaptive.
options         AUDIT                   # Security event auditing

# CPU frequency control
device          cpufreq

# Bus support.
device          eisa
device          pci

# Floppy drives
device          fdc

# ATA and ATAPI devices
device          ata
device          atadisk         # ATA disk drives
device          ataraid         # ATA RAID drives
device          atapifd         # ATAPI floppy drives
device          atapicd         # ATAPI CDROM drives
device          atapist         # ATAPI tape drives
options         ATA_STATIC_ID   # Static device numbering
device          atapicam        # emulate ATAPI devices as SCSI ditto via CAM

# SCSI device options

device          scbus           #base SCSI code
device          da              #SCSI direct access devices (aka disks)
device          pass            # Passthrough device (direct SCSI access)

# USB support
device          uhci            # UHCI PCI->USB interface
device          ohci            # OHCI PCI->USB interface
device          ehci            # EHCI PCI->USB interface (USB 2.0)
device          usb             # USB Bus (required)
device          umass           # Disks/Mass storage - Requires scbus and da

# Disk quotas are supported when this option is enabled.
options 		QUOTA			#enable disk quotas

# atkbdc0 controls both the keyboard and the PS/2 mouse
device          atkbdc          # AT keyboard controller
device          atkbd           # AT keyboard
device          psm             # PS/2 mouse
device          kbdmux          # keyboard multiplexer
device          vga             # VGA video card driver
device          splash          # Splash screen and screen saver support

# The following option probably won't work with the LCD displays.
options         VGA_WIDTH90             # support 90 column modes
options		VESA

# Add suspend/resume support for the i8254.
device          pmtimer

# NETWORKING OPTIONS

# Protocol families:
#  Only the INET (Internet) family is officially supported in FreeBSD.

options         INET                    #Internet communications protocols
options 		INET6					# IPv6 communications protocols

options         PPP_BSDCOMP             #PPP BSD-compress support
options         PPP_DEFLATE             #PPP zlib/deflate/gzip support

# Pseudo devices.
device          bpf                     #Berkeley packet filter
device          loop            # Network loopback
device          random          # Entropy device
device          ether           # Ethernet support
device          sl              # Kernel SLIP
device          ppp             # Kernel PPP
device          tun             # Packet tunnel.
device          pty             # Pseudo-ttys (telnet etc)
device          md              # Memory "disks"
device          gif             # IPv6 and IPv4 tunneling
device          faith           # IPv6-to-IPv4 relaying (translation)
device          firmware        # firmware assist module

# FireWall
device			pf				#PF OpenBSD packet-filter firewall
device			pflog			#logging support interface for PF
device			pfsync			#synchronization interface for PF

options         ALTQ
options         ALTQ_CBQ        # Class Bases Queueing
options         ALTQ_RED        # Random Early Detection
options         ALTQ_RIO        # RED In/Out
options         ALTQ_HFSC       # Hierarchical Packet Scheduler
options         ALTQ_CDNR       # Traffic conditioner
options         ALTQ_PRIQ       # Priority Queueing
options         ALTQ_NOPCC      # Required for SMP build
options         FFS                     # Berkeley Fast Filesystem
options         SOFTUPDATES             # Enable FFS soft updates support
options         UFS_ACL                 # Support for access control lists
options         UFS_DIRHASH             # Improve performance on big directories
options         MD_ROOT                 # MD is a potential root device

device          miibus
device          rl              # RealTek 8129/8139

# Kernel side iconv library
options         LIBICONV

# The syscons console driver (sco color console compatible).
device          sc
options         MAXCONS=16              # number of virtual consoles
text mode
options         SC_HISTORY_SIZE=1000     # number of history buffer lines
options         SC_PIXEL_MODE           # add support for the raster text mode

# Sound drivers
device          sound
device          snd_ich

info.1:
Dump header from device /dev/ad0s1b
  Architecture: i386
  Architecture Version: 2
  Dump Length: 133758976B (127 MB)
  Blocksize: 512
  Dumptime: Fri Jun  6 00:12:06 2008
  Hostname: home.net
  Magic: FreeBSD Kernel Dump
  Version String: FreeBSD 6.3-RELEASE #0: Thu Jun  5 23:26:14 MSD 2008
    root at home.net:/usr/src/sys/i386/compile/MY
  Panic String: page fault
  Dump Parity: 2787431283
  Bounds: 1
  Dump Status: good

kernel dump:
GNU gdb 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-marcel-freebsd".

Unread portion of the kernel message buffer:


Fatal trap 12: page fault while in kernel mode
fault virtual address	= 0xc
fault code		= supervisor read, page not present
instruction pointer	= 0x20:0xc0598310
stack pointer	        = 0x28:0xc7ff6a08
frame pointer	        = 0x28:0xc7ff6a3c
code segment		= base 0x0, limit 0xfffff, type 0x1b
			= DPL 0, pres 1, def32 1, gran 1
processor eflags	= interrupt enabled, resume, IOPL = 0
current process		= 23 (irq5: pcm0 rl0)
trap number		= 12
panic: page fault
Uptime: 24m49s
Dumping 127 MB (2 chunks)
  chunk 0: 1MB (159 pages) ... ok
  chunk 1: 127MB (32496 pages) (CTRL-C to abort)  111 (CTRL-C to abort)  (CTRL-C to abort)  95 79 63 47 31 15

#0  doadump () at pcpu.h:165
165		__asm __volatile("movl %%fs:0,%0" : "=r" (td));
(kgdb) list
160	static __inline struct thread *
161	__curthread(void)
162	{
163		struct thread *td;
164	
165		__asm __volatile("movl %%fs:0,%0" : "=r" (td));
166		return (td);
167	}
168	#define	curthread (__curthread())
169	
(kgdb) backtrace
#0  doadump () at pcpu.h:165
#1  0xc05536cc in boot (howto=260) at ../../../kern/kern_shutdown.c:409
#2  0xc0553a19 in panic (fmt=0xc071a57e "%s")
    at ../../../kern/kern_shutdown.c:565
#3  0xc06fc4cc in trap_fatal (frame=0xc7ff69c8, eva=0)
    at ../../../i386/i386/trap.c:838
#4  0xc06fc1a2 in trap_pfault (frame=0xc7ff69c8, usermode=0, eva=12)
    at ../../../i386/i386/trap.c:745
#5  0xc06fbd5f in trap (frame=
      {tf_fs = -939589624, tf_es = -1066860504, tf_ds = -1034682328, tf_edi = 194, tf_esi = 0, tf_ebp = -939562436, tf_isp = -939562508, tf_ebx = -1041337280, tf_edx = 20, tf_ecx = 1492, tf_eax = -1041312768, tf_trapno = 12, tf_err = 0, tf_eip = -1067875568, tf_cs = 32, tf_eflags = 590338, tf_esp = -1052520120, tf_ss = -1052520120}) at ../../../i386/i386/trap.c:435
#6  0xc06eb06a in calltrap () at ../../../i386/i386/exception.s:139
#7  0xc0598310 in m_copym (m=0x0, off0=1492, len=1472, wait=1)
    at ../../../kern/uipc_mbuf.c:403
#8  0xc060fdf1 in ip_fragment (ip=0xc1eed4d0, m_frag=0xc7ff6aec, 
    mtu=-1041337280, if_hwassist_flags=0, sw_csum=1)
    at ../../../netinet/ip_output.c:978
#9  0xc060fa3a in ip_output (m=0xc1eed400, opt=0xc1eed4d0, ro=0xc217eeb0, 
    flags=0, imo=0x0, inp=0x0) at ../../../netinet/ip_output.c:807
#10 0xc0607329 in in_gif_output (ifp=0xc1e60c00, family=1492, m=0xc1eed400)
    at ../../../netinet/in_gif.c:231
#11 0xc05e7795 in gif_output (ifp=0xc1e60c00, m=0xc204d700, dst=0xc20f1150, 
    rt=0x0) at ../../../net/if_gif.c:461
#12 0xc05e7522 in gif_start (ifp=0xc1e60c00) at ../../../net/if_gif.c:358
#13 0xc252316f in ?? ()
#14 0xc1e60c00 in ?? ()
#15 0x00000000 in ?? ()
#16 0xc252b463 in ?? ()
#17 0x00000675 in ?? ()
#18 0x00000000 in ?? ()
#19 0x18010000 in ?? ()
#20 0x00000000 in ?? ()
#21 0x000004fc in ?? ()
#22 0xc7ff6bec in ?? ()
#23 0xc2523c74 in ?? ()
#24 0xc248e400 in ?? ()
#25 0xc1e60c00 in ?? ()
#26 0x00000000 in ?? ()
#27 0x00000002 in ?? ()
#28 0x00000000 in ?? ()
#29 0xc2061002 in ?? ()
#30 0xc1e60800 in ?? ()
#31 0xc1e60c00 in ?? ()
#32 0xc1e59800 in ?? ()
#33 0xc2532600 in ?? ()
#34 0xc7ff6c2c in ?? ()
#35 0xc2524530 in ?? ()
#36 0xc248e400 in ?? ()
#37 0xc248f400 in ?? ()
#38 0xc204d700 in ?? ()
#39 0x00000807 in ?? ()
#40 0x00000060 in ?? ()
#41 0xc05dbe60 in bpf_tap_new () at ../../../net/bpf.c:1214
(kgdb) up
#1  0xc05536cc in boot (howto=260) at ../../../kern/kern_shutdown.c:409
409			doadump();
(kgdb) up
#2  0xc0553a19 in panic (fmt=0xc071a57e "%s")
    at ../../../kern/kern_shutdown.c:565
565		boot(bootopt);
(kgdb) up
#3  0xc06fc4cc in trap_fatal (frame=0xc7ff69c8, eva=0)
    at ../../../i386/i386/trap.c:838
838			panic("%s", trap_msg[type]);
(kgdb) up
#4  0xc06fc1a2 in trap_pfault (frame=0xc7ff69c8, usermode=0, eva=12)
    at ../../../i386/i386/trap.c:745
745			trap_fatal(frame, eva);
(kgdb) up
#5  0xc06fbd5f in trap (frame=
      {tf_fs = -939589624, tf_es = -1066860504, tf_ds = -1034682328, tf_edi = 194, tf_esi = 0, tf_ebp = -939562436, tf_isp = -939562508, tf_ebx = -1041337280, tf_edx = 20, tf_ecx = 1492, tf_eax = -1041312768, tf_trapno = 12, tf_err = 0, tf_eip = -1067875568, tf_cs = 32, tf_eflags = 590338, tf_esp = -1052520120, tf_ss = -1052520120}) at ../../../i386/i386/trap.c:435
435				(void) trap_pfault(&frame, FALSE, eva);
(kgdb) up
#6  0xc06eb06a in calltrap () at ../../../i386/i386/exception.s:139
139		call	trap
Current language:  auto; currently asm
(kgdb) up
#7  0xc0598310 in m_copym (m=0x0, off0=1492, len=1472, wait=1)
    at ../../../kern/uipc_mbuf.c:403
403			m = m->m_next;
Current language:  auto; currently c
(kgdb) up
#8  0xc060fdf1 in ip_fragment (ip=0xc1eed4d0, m_frag=0xc7ff6aec, 
    mtu=-1041337280, if_hwassist_flags=0, sw_csum=1)
    at ../../../netinet/ip_output.c:978
978			m->m_next = m_copy(m0, off, len);
(kgdb) up
#9  0xc060fa3a in ip_output (m=0xc1eed400, opt=0xc1eed4d0, ro=0xc217eeb0, 
    flags=0, imo=0x0, inp=0x0) at ../../../netinet/ip_output.c:807
807		error = ip_fragment(ip, &m, ifp->if_mtu, ifp->if_hwassist, sw_csum);
(kgdb) up
#10 0xc0607329 in in_gif_output (ifp=0xc1e60c00, family=1492, m=0xc1eed400)
    at ../../../netinet/in_gif.c:231
231		error = ip_output(m, NULL, &sc->gif_ro, 0, NULL, NULL);
(kgdb) up
#11 0xc05e7795 in gif_output (ifp=0xc1e60c00, m=0xc204d700, dst=0xc20f1150, 
    rt=0x0) at ../../../net/if_gif.c:461
461			error = in_gif_output(ifp, af, m);
(kgdb) up
#12 0xc05e7522 in gif_start (ifp=0xc1e60c00) at ../../../net/if_gif.c:358
358			gif_output(ifp, m, sc->gif_pdst, NULL);
(kgdb) up
#13 0xc252316f in ?? ()
(kgdb) up

....

(kgdb) up
#40 0x00000060 in ?? ()
(kgdb) up
#41 0xc05dbe60 in bpf_tap_new () at ../../../net/bpf.c:1214
1214	}
(kgdb) up
(kgdb) list
1209					catchpacket(d, pkt, pktlen, slen, bcopy, &tv);
1210			}
1211			BPFD_UNLOCK(d);
1212		}
1213		BPFIF_UNLOCK(bp);
1214	}
1215	
1216	/*
1217	 * Copy data from an mbuf chain into a buffer.  This code is derived
1218	 * from m_copydata in sys/uipc_mbuf.c.
(kgdb) quit

dmesg:
Copyright (c) 1992-2008 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
	The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 6.3-RELEASE #0: Thu Jun  5 23:26:14 MSD 2008
    root at home.net:/usr/src/sys/i386/compile/MY
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Intel Celeron (863.00-MHz 686-class CPU)
  Origin = "GenuineIntel"  Id = 0x686  Stepping = 6
  Features=0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE>
real memory  = 134152192 (127 MB)
avail memory = 117432320 (111 MB)
Security auditing service present
BSM auditing present
kbd1 at kbdmux0
acpi0: <IntelR AWRDACPI> on motherboard
acpi0: Power Button (fixed)
Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0
cpu0: <ACPI CPU> on acpi0
acpi_throttle0: <ACPI CPU Throttling> on cpu0
acpi_button0: <Power Button> on acpi0
acpi_button1: <Sleep Button> on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff,0x4000-0x40f7 on acpi0
pci0: <ACPI PCI bus> on pcib0
pcib1: <PCI-PCI bridge> at device 1.0 on pci0
pci1: <PCI bus> on pcib1
nvidia0: <GeForce2 MX/MX 400> mem 0xdc000000-0xdcffffff,0xd0000000-0xd7ffffff irq 7 at device 0.0 on pci1
nvidia0: [GIANT-LOCKED]
pcib2: <ACPI PCI-PCI bridge> at device 30.0 on pci0
pci2: <ACPI PCI bus> on pcib2
rl0: <RealTek 8139 10/100BaseTX> port 0x9000-0x90ff mem 0xdf000000-0xdf0000ff irq 5 at device 2.0 on pci2
miibus0: <MII bus> on rl0
rlphy0: <RealTek internal media interface> on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
rl0: Ethernet address: 00:50:22:8e:96:d2
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel ICH2 UDMA100 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf000-0xf00f at device 31.1 on pci0
ata0: <ATA channel 0> on atapci0
ata1: <ATA channel 1> on atapci0
uhci0: <Intel 82801BA/BAM (ICH2) USB controller USB-A> port 0xb000-0xb01f irq 9 at device 31.2 on pci0
uhci0: [GIANT-LOCKED]
usb0: <Intel 82801BA/BAM (ICH2) USB controller USB-A> on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)
uhci1: <Intel 82801BA/BAM (ICH2) USB controller USB-B> port 0xb400-0xb41f irq 3 at device 31.4 on pci0
uhci1: [GIANT-LOCKED]
usb1: <Intel 82801BA/BAM (ICH2) USB controller USB-B> on uhci1
usb1: USB revision 1.0
uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
pcm0: <Intel ICH2 (82801BA)> port 0xb800-0xb8ff,0xbc00-0xbc3f irq 5 at device 31.5 on pci0
pcm0: <Avance Logic ALC200 AC97 Codec>
acpi_tz0: <Thermal Zone> on acpi0
atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0: <PS/2 Mouse> irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model IntelliMouse, device ID 3
pmtimer0 on isa0
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
Timecounter "TSC" frequency 863004043 Hz quality 800
Timecounters tick every 1.000 msec
ad0: 38166MB <Seagate ST340014A 3.06> at ata0-master UDMA100
acd0: CDRW <NEC CD-RW NR-9100A/1.12> at ata1-slave UDMA33
Trying to mount root from ufs:/dev/ad0s1a
bridge0: Ethernet address: 6a:ee:8a:b7:d6:b5
rl0: promiscuous mode enabled
bridge0: promiscuous mode enabled
bridge0: promiscuous mode disabled
bridge0: promiscuous mode enabled
bridge0: promiscuous mode disabled

tcpdump -n -e -vvv -i bridge0 (end of log), in attach.
tcpdump -e -n -vvv -i rl0 (end of log), in attach.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

tcpdump -n -e -vvv -i bridge0:
22:06:39.294532 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1832, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6600: [udp sum ok] UDP, length 8
22:06:39.294719 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1833, offset 0, flags [none], proto: UDP (17), length: 38) 192.168.1.3.1052 > 192.168.2.3.6500: [udp sum ok] UDP, length 10
22:06:39.295150 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 137: (tos 0x0, ttl 128, id 1834, offset 0, flags [none], proto: UDP (17), length: 123) 192.168.1.3.41010 > 192.168.2.3.41010: UDP, length 95
22:06:39.297158 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 571: (tos 0x0, ttl 128, id 30507, offset 0, flags [none], proto: UDP (17), length: 557) 192.168.2.3.6500 > 192.168.1.3.1052: UDP, length 529
22:06:39.320283 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30508, offset 0, flags [none], proto: UDP (17), length: 32) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 4
22:06:40.325172 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1845, offset 0, flags [none], proto: UDP (17), length: 29) 192.168.1.3.41010 > 192.168.2.3.41010: [udp sum ok] UDP, length 1
22:06:40.349629 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30515, offset 0, flags [none], proto: UDP (17), length: 29) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 1
22:06:40.870018 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1850, offset 0, flags [none], proto: UDP (17), length: 45) 192.168.1.3.2351 > 192.168.2.3.2302: [udp sum ok] UDP, length 17
22:06:41.351448 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1855, offset 0, flags [none], proto: UDP (17), length: 29) 192.168.1.3.41010 > 192.168.2.3.41010: [udp sum ok] UDP, length 1
22:06:41.384064 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30516, offset 0, flags [none], proto: UDP (17), length: 29) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 1
22:06:41.667398 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 138: (tos 0x0, ttl 128, id 1864, offset 0, flags [none], proto: UDP (17), length: 124) 192.168.1.3.41010 > 192.168.2.3.41010: UDP, length 96
22:06:41.686717 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30517, offset 0, flags [none], proto: UDP (17), length: 32) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 4
22:06:41.709918 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 74: (tos 0x0, ttl 128, id 1867, offset 0, flags [none], proto: ICMP (1), length: 60) 192.168.1.3 > 192.168.2.3: ICMP 192.168.1.3 udp port 41010 unreachable, length 40
	(tos 0x0, ttl 128, id 30517, offset 0, flags [none], proto: UDP (17), length: 32) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 4
22:07:15.671257 00:19:5b:c1:4c:f1 > 01:00:5e:00:00:01, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 373, offset 0, flags [DF], proto: IGMP (2), length: 28) 192.168.2.10 > 224.0.0.1: igmp query v2 [max resp time 10]
22:07:16.337253 00:50:bf:60:f5:a3 > 01:00:5e:00:00:02, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30521, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 224.0.0.2: igmp v2 report 224.0.0.2
22:07:16.337301 00:50:bf:60:f5:a3 > 01:00:5e:7f:ff:fa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30522, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 239.255.255.250: igmp v2 report 239.255.255.250
22:07:26.893456 00:18:82:2f:87:79 > 00:13:49:4c:f0:cf, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Service-Name] [Host-Uniq 0x81361AE8] [AC-Name "me60"]
22:07:26.933570 00:18:82:2f:87:79 > 00:13:49:4c:f0:cf, ethertype PPPoE D (0x8863), length 60: PPPoE PADS [ses 0x2b8e] [Service-Name] [Host-Uniq 0x81361AE8]
22:09:21.302915 00:19:5b:c1:4c:f1 > 01:00:5e:00:00:01, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 374, offset 0, flags [DF], proto: IGMP (2), length: 28) 192.168.2.10 > 224.0.0.1: igmp query v2 [max resp time 10]
22:09:21.847146 00:50:bf:60:f5:a3 > 01:00:5e:00:00:02, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30552, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 224.0.0.2: igmp v2 report 224.0.0.2
22:09:21.847184 00:50:bf:60:f5:a3 > 01:00:5e:7f:ff:fa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30553, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 239.255.255.250: igmp v2 report 239.255.255.250
22:09:39.269952 00:18:82:2f:87:79 > 00:13:49:c0:d3:d2, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Service-Name] [Host-Uniq 0x821A96D8] [AC-Name "me60"]
22:09:39.310284 00:18:82:2f:87:79 > 00:13:49:c0:d3:d2, ethertype PPPoE D (0x8863), length 60: PPPoE PADS [ses 0x24c3] [Service-Name] [Host-Uniq 0x821A96D8]
22:10:20.297067 00:18:82:2f:87:79 > 00:1d:60:d5:30:3b, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Service-Name] [Host-Uniq "1000"] [AC-Name "me60"]
22:11:26.933014 00:19:5b:c1:4c:f1 > 01:00:5e:00:00:01, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 375, offset 0, flags [DF], proto: IGMP (2), length: 28) 192.168.2.10 > 2


tcpdump -e -n -vvv -i rl0:
22:06:39.290912 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1825, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6593: [udp sum ok] UDP, length 8
22:06:39.291154 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1826, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6594: [udp sum ok] UDP, length 8
22:06:39.291244 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31391, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:39.291446 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1827, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6595: [udp sum ok] UDP, length 8
22:06:39.291743 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31392, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:39.291932 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1828, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6596: [udp sum ok] UDP, length 8
22:06:39.292706 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31393, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:39.292747 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31394, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:39.292919 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1829, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6597: [udp sum ok] UDP, length 8
22:06:39.293153 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1830, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6598: [udp sum ok] UDP, length 8
22:06:39.294037 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31395, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:39.294071 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31396, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:39.294114 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31398, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:39.294289 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1831, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6599: [udp sum ok] UDP, length 8
22:06:39.294521 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1832, offset 0, flags [none], proto: UDP (17), length: 36) 192.168.1.3.1062 > 255.255.255.255.6600: [udp sum ok] UDP, length 8
22:06:39.294773 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1833, offset 0, flags [none], proto: UDP (17), length: 38) 192.168.1.3.1052 > 192.168.2.3.6500: [udp sum ok] UDP, length 10
22:06:39.294999 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 181: PPPoE  [ses 0x1826] IP (0x0021), length 161: (tos 0x0, ttl  26, id 31399, offset 0, flags [none], proto: unknown (97), length: 159) 88.147.149.141 > 88.147.235.60:  etherip 139
22:06:39.295176 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 137: (tos 0x0, ttl 128, id 1834, offset 0, flags [none], proto: UDP (17), length: 123) 192.168.1.3.41010 > 192.168.2.3.41010: UDP, length 95
22:06:39.297152 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 571: (tos 0x0, ttl 128, id 30507, offset 0, flags [none], proto: UDP (17), length: 557) 192.168.2.3.6500 > 192.168.1.3.1052: UDP, length 529
22:06:39.297355 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 615: PPPoE  [ses 0x1826] IP (0x0021), length 595: (tos 0x0, ttl  30, id 59684, offset 0, flags [none], proto: unknown (97), length: 593) 88.147.235.60 > 88.147.149.141:  etherip 573
22:06:39.320270 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30508, offset 0, flags [none], proto: UDP (17), length: 32) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 4
22:06:39.320521 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  30, id 59685, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.235.60 > 88.147.149.141:  etherip 62
22:06:40.036688 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 70: PPPoE  [ses 0x1826] IP (0x0021), length 50: (tos 0x0, ttl 127, id 48180, offset 0, flags [DF], proto: TCP (6), length: 48) 88.147.234.203.4608 > 88.147.235.60.135: S, cksum 0xea0e (correct), 1276294715:1276294715(0) win 64800 <mss 1440,nop,nop,sackOK>
22:06:40.324954 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31430, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:40.325209 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1845, offset 0, flags [none], proto: UDP (17), length: 29) 192.168.1.3.41010 > 192.168.2.3.41010: [udp sum ok] UDP, length 1
22:06:40.349619 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30515, offset 0, flags [none], proto: UDP (17), length: 29) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 1
22:06:40.349846 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  30, id 59686, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.235.60 > 88.147.149.141:  etherip 62
22:06:40.869791 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31438, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:40.870055 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1850, offset 0, flags [none], proto: UDP (17), length: 45) 192.168.1.3.2351 > 192.168.2.3.2302: [udp sum ok] UDP, length 17
22:06:40.931567 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 70: PPPoE  [ses 0x1826] IP (0x0021), length 50: (tos 0x0, ttl 127, id 39586, offset 0, flags [DF], proto: TCP (6), length: 48) 88.147.225.79.3476 > 88.147.235.60.135: S, cksum 0x684d (correct), 283869452:283869452(0) win 64800 <mss 1440,nop,nop,sackOK>
22:06:41.351225 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 31450, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:06:41.351483 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 1855, offset 0, flags [none], proto: UDP (17), length: 29) 192.168.1.3.41010 > 192.168.2.3.41010: [udp sum ok] UDP, length 1
22:06:41.384054 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30516, offset 0, flags [none], proto: UDP (17), length: 29) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 1
22:06:41.384281 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  30, id 59687, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.235.60 > 88.147.149.141:  etherip 62
22:06:41.667163 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 182: PPPoE  [ses 0x1826] IP (0x0021), length 162: (tos 0x0, ttl  26, id 31458, offset 0, flags [none], proto: unknown (97), length: 160) 88.147.149.141 > 88.147.235.60:  etherip 140
22:06:41.667435 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 138: (tos 0x0, ttl 128, id 1864, offset 0, flags [none], proto: UDP (17), length: 124) 192.168.1.3.41010 > 192.168.2.3.41010: UDP, length 96
22:06:41.686707 00:50:bf:60:f5:a3 > 00:11:09:66:0f:e3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30517, offset 0, flags [none], proto: UDP (17), length: 32) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 4
22:06:41.686932 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  30, id 59688, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.235.60 > 88.147.149.141:  etherip 62
22:06:41.709743 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 118: PPPoE  [ses 0x1826] IP (0x0021), length 98: (tos 0x0, ttl  26, id 31460, offset 0, flags [none], proto: unknown (97), length: 96) 88.147.149.141 > 88.147.235.60:  etherip 76
22:06:41.709955 00:11:09:66:0f:e3 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 74: (tos 0x0, ttl 128, id 1867, offset 0, flags [none], proto: ICMP (1), length: 60) 192.168.1.3 > 192.168.2.3: ICMP 192.168.1.3 udp port 41010 unreachable, length 40
	(tos 0x0, ttl 128, id 30517, offset 0, flags [none], proto: UDP (17), length: 32) 192.168.2.3.41010 > 192.168.1.3.41010: [udp sum ok] UDP, length 4
22:06:43.796593 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 70: PPPoE  [ses 0x1826] IP (0x0021), length 50: (tos 0x0, ttl 127, id 39905, offset 0, flags [DF], proto: TCP (6), length: 48) 88.147.225.79.3476 > 88.147.235.60.135: S, cksum 0x684d (correct), 283869452:283869452(0) win 64800 <mss 1440,nop,nop,sackOK>
22:06:49.319784 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 70: PPPoE  [ses 0x1826] IP (0x0021), length 50: (tos 0x0, ttl 127, id 48748, offset 0, flags [DF], proto: TCP (6), length: 48) 88.147.234.203.1380 > 88.147.235.60.445: S, cksum 0x02fe (correct), 1296934775:1296934775(0) win 64800 <mss 1440,nop,nop,sackOK>
22:06:52.210607 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 70: PPPoE  [ses 0x1826] IP (0x0021), length 50: (tos 0x0, ttl 127, id 48934, offset 0, flags [DF], proto: TCP (6), length: 48) 88.147.234.203.1380 > 88.147.235.60.445: S, cksum 0x02fe (correct), 1296934775:1296934775(0) win 64800 <mss 1440,nop,nop,sackOK>
22:07:01.597178 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 84, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0954 0008
	  Magic-Num 0x010060ee
22:07:01.597366 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 84, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a54 0008
	  Magic-Num 0x77e3a456
22:07:02.634432 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30520, offset 0, flags [DF], proto: TCP (6), length: 46) 192.168.2.3.2502 > 192.168.2.2.3128: P, cksum 0xce77 (correct), 2116:2122(6) ack 6138 win 65535
22:07:02.634892 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 68: PPPoE  [ses 0x1826] IP (0x0021), length 48: (tos 0x0, ttl  64, id 59689, offset 0, flags [DF], proto: TCP (6), length: 46) 88.147.235.60.63551 > 205.188.12.125.5190: P, cksum 0x72df (correct), 2116:2122(6) ack 6138 win 65535
22:07:02.734317 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59690, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x8433 (correct), 6138:6138(0) ack 2122 win 65535
22:07:02.846202 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 56483, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xe89a (correct), 6138:6138(0) ack 2122 win 16384
22:07:15.671176 00:19:5b:c1:4c:f1 > 01:00:5e:00:00:01, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 373, offset 0, flags [DF], proto: IGMP (2), length: 28) 192.168.2.10 > 224.0.0.1: igmp query v2 [max resp time 10]
22:07:16.337170 00:50:bf:60:f5:a3 > 01:00:5e:00:00:02, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30521, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 224.0.0.2: igmp v2 report 224.0.0.2
22:07:16.337281 00:50:bf:60:f5:a3 > 01:00:5e:7f:ff:fa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30522, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 239.255.255.250: igmp v2 report 239.255.255.250
22:07:26.893440 00:18:82:2f:87:79 > 00:13:49:4c:f0:cf, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Service-Name] [Host-Uniq 0x81361AE8] [AC-Name "me60"]
22:07:26.933561 00:18:82:2f:87:79 > 00:13:49:4c:f0:cf, ethertype PPPoE D (0x8863), length 60: PPPoE PADS [ses 0x2b8e] [Service-Name] [Host-Uniq 0x81361AE8]
22:07:31.600033 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 85, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0955 0008
	  Magic-Num 0x010060ee
22:07:31.600223 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 85, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a55 0008
	  Magic-Num 0x77e3a456
22:07:45.278794 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 287: PPPoE  [ses 0x1826] IP (0x0021), length 267: (tos 0x0, ttl 100, id 12067, offset 0, flags [DF], proto: TCP (6), length: 265) 205.188.12.125.5190 > 88.147.235.60.63551: P 6138:6363(225) ack 2122 win 16384
22:07:45.279182 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 279: (tos 0x0, ttl  64, id 59691, offset 0, flags [DF], proto: TCP (6), length: 265) 192.168.2.2.3128 > 192.168.2.3.2502: P 6138:6363(225) ack 2122 win 65535
22:07:45.378258 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59692, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x27ba (correct), 2122:2122(0) ack 6363 win 65535
22:07:45.417667 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30535, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x8433 (correct), 2122:2122(0) ack 6363 win 65310
22:07:46.322287 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 206: PPPoE  [ses 0x1826] IP (0x0021), length 186: (tos 0x0, ttl 124, id 15465, offset 0, flags [none], proto: UDP (17), length: 184) 88.147.186.59.3730 > 88.147.235.60.24852: UDP, length 156
22:07:46.334849 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 287: PPPoE  [ses 0x1826] IP (0x0021), length 267: (tos 0x0, ttl 100, id 14284, offset 0, flags [DF], proto: TCP (6), length: 265) 205.188.12.125.5190 > 88.147.235.60.63551: P 6363:6588(225) ack 2122 win 16384
22:07:46.335192 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 279: (tos 0x0, ttl  64, id 59693, offset 0, flags [DF], proto: TCP (6), length: 265) 192.168.2.2.3128 > 192.168.2.3.2502: P 6363:6588(225) ack 2122 win 65535
22:07:46.435086 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59694, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x26d9 (correct), 2122:2122(0) ack 6588 win 65535
22:07:46.524229 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30536, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x8433 (correct), 2122:2122(0) ack 6588 win 65085
22:07:57.487678 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 98: PPPoE  [ses 0x1826] IP (0x0021), length 78: (tos 0x10, ttl  64, id 59695, offset 0, flags [none], proto: UDP (17), length: 76) 88.147.235.60.123 > 212.193.32.15.123: NTPv4, length 48
	Client, Leap indicator:  (0), Stratum 0, poll 9s, precision -19
	Root Delay: 0.166610, Root dispersion: 0.337142, Reference-ID: (unspec)
	  Reference Timestamp:  3421677431.977854555 (2008/06/05 21:57:11)
	  Originator Timestamp: 3421677819.462275716 (2008/06/05 22:03:39)
	  Receive Timestamp:    3421677819.511317170 (2008/06/05 22:03:39) [|ntp]
22:07:57.500194 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 98: PPPoE  [ses 0x1826] IP (0x0021), length 78: (tos 0x0, ttl  60, id 0, offset 0, flags [DF], proto: UDP (17), length: 76) 212.193.32.15.123 > 88.147.235.60.123: NTPv4, length 48
	Server, Leap indicator:  (0), Stratum 3, poll 9s, precision -20
	Root Delay: 0.153030, Root dispersion: 0.062164, Reference-ID: 212.57.153.17
	  Reference Timestamp:  3421677998.056570996 (2008/06/05 22:06:38)
	  Originator Timestamp: 3421678077.487392343 (2008/06/05 22:07:57)
	  Receive Timestamp:    3421678077.435721733 (2008/06/05 22:07:57) [|ntp]
22:07:59.640988 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30537, offset 0, flags [DF], proto: TCP (6), length: 46) 192.168.2.3.2502 > 192.168.2.2.3128: P, cksum 0xce70 (correct), 2122:2128(6) ack 6588 win 65085
22:07:59.641413 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 68: PPPoE  [ses 0x1826] IP (0x0021), length 48: (tos 0x0, ttl  64, id 59696, offset 0, flags [DF], proto: TCP (6), length: 46) 88.147.235.60.63551 > 205.188.12.125.5190: P, cksum 0x7116 (correct), 2122:2128(6) ack 6588 win 65535
22:07:59.740934 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59697, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x826b (correct), 6588:6588(0) ack 2128 win 65535
22:07:59.849809 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 42531, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xe6d2 (correct), 6588:6588(0) ack 2128 win 16384
22:08:01.603392 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 86, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0956 0008
	  Magic-Num 0x010060ee
22:08:01.603596 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 86, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a56 0008
	  Magic-Num 0x77e3a456
22:08:31.604284 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 87, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0957 0008
	  Magic-Num 0x010060ee
22:08:31.604477 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 87, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a57 0008
	  Magic-Num 0x77e3a456
22:08:46.068476 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 202: PPPoE  [ses 0x1826] IP (0x0021), length 182: (tos 0x0, ttl 124, id 18549, offset 0, flags [none], proto: UDP (17), length: 180) 88.147.186.59.3817 > 88.147.235.60.24852: UDP, length 152
22:08:56.644403 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30550, offset 0, flags [DF], proto: TCP (6), length: 46) 192.168.2.3.2502 > 192.168.2.2.3128: P, cksum 0xce69 (correct), 2128:2134(6) ack 6588 win 65085
22:08:56.644845 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 68: PPPoE  [ses 0x1826] IP (0x0021), length 48: (tos 0x0, ttl  64, id 59698, offset 0, flags [DF], proto: TCP (6), length: 46) 88.147.235.60.63551 > 205.188.12.125.5190: P, cksum 0x710f (correct), 2128:2134(6) ack 6588 win 65535
22:08:56.744408 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59699, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x8265 (correct), 6588:6588(0) ack 2134 win 65535
22:08:56.855725 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 27495, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xe6cc (correct), 6588:6588(0) ack 2134 win 16384
22:09:01.605925 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 88, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0958 0008
	  Magic-Num 0x010060ee
22:09:01.606109 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 88, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a58 0008
	  Magic-Num 0x77e3a456
22:09:04.175803 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 98: PPPoE  [ses 0x1826] IP (0x0021), length 78: (tos 0x0, ttl 100, id 42496, offset 0, flags [DF], proto: TCP (6), length: 76) 205.188.12.125.5190 > 88.147.235.60.63551: P 6588:6624(36) ack 2134 win 16384
22:09:04.176208 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 90: (tos 0x0, ttl  64, id 59700, offset 0, flags [DF], proto: TCP (6), length: 76) 192.168.2.2.3128 > 192.168.2.3.2502: P, cksum 0xe38d (correct), 6588:6624(36) ack 2134 win 65535
22:09:04.276011 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59701, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x26a9 (correct), 2134:2134(0) ack 6624 win 65535
22:09:04.282438 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30551, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x8427 (correct), 2134:2134(0) ack 6624 win 65049
22:09:21.302837 00:19:5b:c1:4c:f1 > 01:00:5e:00:00:01, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 374, offset 0, flags [DF], proto: IGMP (2), length: 28) 192.168.2.10 > 224.0.0.1: igmp query v2 [max resp time 10]
22:09:21.847064 00:50:bf:60:f5:a3 > 01:00:5e:00:00:02, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30552, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 224.0.0.2: igmp v2 report 224.0.0.2
22:09:21.847167 00:50:bf:60:f5:a3 > 01:00:5e:7f:ff:fa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30553, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 239.255.255.250: igmp v2 report 239.255.255.250
22:09:31.607387 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 89, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0959 0008
	  Magic-Num 0x010060ee
22:09:31.607571 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 89, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a59 0008
	  Magic-Num 0x77e3a456
22:09:35.196584 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 98: PPPoE  [ses 0x1826] IP (0x0021), length 78: (tos 0x0, ttl 100, id 41032, offset 0, flags [DF], proto: TCP (6), length: 76) 205.188.12.125.5190 > 88.147.235.60.63551: P 6624:6660(36) ack 2134 win 16384
22:09:35.196979 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 90: (tos 0x0, ttl  64, id 59702, offset 0, flags [DF], proto: TCP (6), length: 76) 192.168.2.2.3128 > 192.168.2.3.2502: P, cksum 0x3144 (correct), 6624:6660(36) ack 2134 win 65535
22:09:35.296817 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59703, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x2685 (correct), 2134:2134(0) ack 6660 win 65535
22:09:35.330259 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30554, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x8427 (correct), 2134:2134(0) ack 6660 win 65013
22:09:39.269935 00:18:82:2f:87:79 > 00:13:49:c0:d3:d2, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Service-Name] [Host-Uniq 0x821A96D8] [AC-Name "me60"]
22:09:39.310274 00:18:82:2f:87:79 > 00:13:49:c0:d3:d2, ethertype PPPoE D (0x8863), length 60: PPPoE PADS [ses 0x24c3] [Service-Name] [Host-Uniq 0x821A96D8]
22:09:39.501861 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 202: (tos 0x0, ttl 128, id 30555, offset 0, flags [DF], proto: TCP (6), length: 188) 192.168.2.3.2502 > 192.168.2.2.3128: P 2134:2282(148) ack 6660 win 65013
22:09:39.502285 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 210: PPPoE  [ses 0x1826] IP (0x0021), length 190: (tos 0x0, ttl  64, id 59704, offset 0, flags [DF], proto: TCP (6), length: 188) 88.147.235.60.63551 > 205.188.12.125.5190: P 2134:2282(148) ack 6660 win 65535
22:09:39.601862 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59705, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x8189 (correct), 6660:6660(0) ack 2282 win 65535
22:09:39.727499 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 271: PPPoE  [ses 0x1826] IP (0x0021), length 251: (tos 0x0, ttl 100, id 50169, offset 0, flags [DF], proto: TCP (6), length: 249) 205.188.12.125.5190 > 88.147.235.60.63551: P 6660:6869(209) ack 2282 win 16384
22:09:39.727895 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 263: (tos 0x0, ttl  64, id 59706, offset 0, flags [DF], proto: TCP (6), length: 249) 192.168.2.2.3128 > 192.168.2.3.2502: P 6660:6869(209) ack 2282 win 65535
22:09:39.826940 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59707, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x2520 (correct), 2282:2282(0) ack 6869 win 65535
22:09:39.856907 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30556, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x8393 (correct), 2282:2282(0) ack 6869 win 64804
22:09:39.958329 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 162: PPPoE  [ses 0x1826] IP (0x0021), length 142: (tos 0x0, ttl 100, id 50693, offset 0, flags [DF], proto: TCP (6), length: 140) 205.188.12.125.5190 > 88.147.235.60.63551: P 6869:6969(100) ack 2282 win 16384
22:09:39.958655 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 154: (tos 0x0, ttl  64, id 59708, offset 0, flags [DF], proto: TCP (6), length: 140) 192.168.2.2.3128 > 192.168.2.3.2502: P 6869:6969(100) ack 2282 win 65535
22:09:40.057898 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59709, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x24bc (correct), 2282:2282(0) ack 6969 win 65535
22:09:40.158690 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30557, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x8393 (correct), 2282:2282(0) ack 6969 win 64704
22:09:46.718445 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 312: PPPoE  [ses 0x1826] IP (0x0021), length 292: (tos 0x0, ttl 100, id 64377, offset 0, flags [DF], proto: TCP (6), length: 290) 205.188.12.125.5190 > 88.147.235.60.63551: P 6969:7219(250) ack 2282 win 16384
22:09:46.718831 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 304: (tos 0x0, ttl  64, id 59710, offset 0, flags [DF], proto: TCP (6), length: 290) 192.168.2.2.3128 > 192.168.2.3.2502: P 6969:7219(250) ack 2282 win 65535
22:09:46.733712 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 154: (tos 0x0, ttl 128, id 30558, offset 0, flags [DF], proto: TCP (6), length: 140) 192.168.2.3.2502 > 192.168.2.2.3128: P 2282:2382(100) ack 7219 win 64454
22:09:46.734107 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 162: PPPoE  [ses 0x1826] IP (0x0021), length 142: (tos 0x0, ttl  64, id 59711, offset 0, flags [DF], proto: TCP (6), length: 140) 88.147.235.60.63551 > 205.188.12.125.5190: P 2282:2382(100) ack 7219 win 65535
22:09:46.833412 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59712, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x7ef6 (correct), 7219:7219(0) ack 2382 win 65535
22:09:46.976342 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 64870, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xe35d (correct), 7219:7219(0) ack 2382 win 16384
22:09:53.269771 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 320: PPPoE  [ses 0x1826] IP (0x0021), length 300: (tos 0x0, ttl 100, id 12396, offset 0, flags [DF], proto: TCP (6), length: 298) 205.188.12.125.5190 > 88.147.235.60.63551: P 7219:7477(258) ack 2382 win 16384
22:09:53.270183 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 312: (tos 0x0, ttl  64, id 59713, offset 0, flags [DF], proto: TCP (6), length: 298) 192.168.2.2.3128 > 192.168.2.3.2502: P 7219:7477(258) ack 2382 win 65535
22:09:53.277895 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 154: (tos 0x0, ttl 128, id 30559, offset 0, flags [DF], proto: TCP (6), length: 140) 192.168.2.3.2502 > 192.168.2.2.3128: P 2382:2482(100) ack 7477 win 64196
22:09:53.278288 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 162: PPPoE  [ses 0x1826] IP (0x0021), length 142: (tos 0x0, ttl  64, id 59714, offset 0, flags [DF], proto: TCP (6), length: 140) 88.147.235.60.63551 > 205.188.12.125.5190: P 2382:2482(100) ack 7477 win 65535
22:09:53.377118 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59715, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x7d90 (correct), 7477:7477(0) ack 2482 win 65535
22:09:53.499822 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 12910, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xe1f7 (correct), 7477:7477(0) ack 2482 win 16384
22:09:53.647954 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30560, offset 0, flags [DF], proto: TCP (6), length: 46) 192.168.2.3.2502 > 192.168.2.2.3128: P, cksum 0xcd03 (correct), 2482:2488(6) ack 7477 win 64196
22:09:53.648392 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 68: PPPoE  [ses 0x1826] IP (0x0021), length 48: (tos 0x0, ttl  64, id 59716, offset 0, flags [DF], proto: TCP (6), length: 46) 88.147.235.60.63551 > 205.188.12.125.5190: P, cksum 0x6c30 (correct), 2482:2488(6) ack 7477 win 65535
22:09:53.748044 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59717, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x7d8a (correct), 7477:7477(0) ack 2488 win 65535
22:09:53.865213 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 13629, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xe1f1 (correct), 7477:7477(0) ack 2488 win 16384
22:10:01.608391 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 90, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 095a 0008
	  Magic-Num 0x010060ee
22:10:01.608588 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 90, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a5a 0008
	  Magic-Num 0x77e3a456
22:10:01.869298 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 206: PPPoE  [ses 0x1826] IP (0x0021), length 186: (tos 0x0, ttl 124, id 22463, offset 0, flags [none], proto: UDP (17), length: 184) 88.147.186.59.3919 > 88.147.235.60.24852: UDP, length 156
22:10:20.297051 00:18:82:2f:87:79 > 00:1d:60:d5:30:3b, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Service-Name] [Host-Uniq "1000"] [AC-Name "me60"]
22:10:31.609685 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 91, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 095b 0008
	  Magic-Num 0x010060ee
22:10:31.609862 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 91, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a5b 0008
	  Magic-Num 0x77e3a456
22:10:50.651604 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30583, offset 0, flags [DF], proto: TCP (6), length: 46) 192.168.2.3.2502 > 192.168.2.2.3128: P, cksum 0xccfc (correct), 2488:2494(6) ack 7477 win 64196
22:10:50.652032 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 68: PPPoE  [ses 0x1826] IP (0x0021), length 48: (tos 0x0, ttl  64, id 59718, offset 0, flags [DF], proto: TCP (6), length: 46) 88.147.235.60.63551 > 205.188.12.125.5190: P, cksum 0x6c29 (correct), 2488:2494(6) ack 7477 win 65535
22:10:50.750844 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59719, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x7d84 (correct), 7477:7477(0) ack 2494 win 65535
22:10:50.864580 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 63700, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xe1eb (correct), 7477:7477(0) ack 2494 win 16384
22:11:01.611766 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 92, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 095c 0008
	  Magic-Num 0x010060ee
22:11:01.611945 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 92, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a5c 0008
	  Magic-Num 0x77e3a456
22:11:07.932766 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 224: (tos 0x0, ttl 128, id 30584, offset 0, flags [DF], proto: TCP (6), length: 210) 192.168.2.3.2502 > 192.168.2.2.3128: P 2494:2664(170) ack 7477 win 64196
22:11:07.933198 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 232: PPPoE  [ses 0x1826] IP (0x0021), length 212: (tos 0x0, ttl  64, id 59720, offset 0, flags [DF], proto: TCP (6), length: 210) 88.147.235.60.63551 > 205.188.12.125.5190: P 2494:2664(170) ack 7477 win 65535
22:11:08.032479 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59721, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x7cda (correct), 7477:7477(0) ack 2664 win 65535
22:11:08.160180 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 271: PPPoE  [ses 0x1826] IP (0x0021), length 251: (tos 0x0, ttl 100, id 33604, offset 0, flags [DF], proto: TCP (6), length: 249) 205.188.12.125.5190 > 88.147.235.60.63551: P 7477:7686(209) ack 2664 win 16384
22:11:08.160580 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 263: (tos 0x0, ttl  64, id 59722, offset 0, flags [DF], proto: TCP (6), length: 249) 192.168.2.2.3128 > 192.168.2.3.2502: P 7477:7686(209) ack 2664 win 65535
22:11:08.260551 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59723, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x2071 (correct), 2664:2664(0) ack 7686 win 65535
22:11:08.305057 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30585, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x7c09 (correct), 2664:2664(0) ack 7686 win 65535
22:11:08.675870 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 162: PPPoE  [ses 0x1826] IP (0x0021), length 142: (tos 0x0, ttl 100, id 34729, offset 0, flags [DF], proto: TCP (6), length: 140) 205.188.12.125.5190 > 88.147.235.60.63551: P 7686:7786(100) ack 2664 win 16384
22:11:08.676224 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 154: (tos 0x0, ttl  64, id 59724, offset 0, flags [DF], proto: TCP (6), length: 140) 192.168.2.2.3128 > 192.168.2.3.2502: P 7686:7786(100) ack 2664 win 65535
22:11:08.775473 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59725, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x200d (correct), 2664:2664(0) ack 7786 win 65535
22:11:08.808016 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30586, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x7c09 (correct), 2664:2664(0) ack 7786 win 65435
22:11:17.149864 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 202: PPPoE  [ses 0x1826] IP (0x0021), length 182: (tos 0x0, ttl 124, id 26214, offset 0, flags [none], proto: UDP (17), length: 180) 88.147.186.59.4020 > 88.147.235.60.24852: UDP, length 152
22:11:18.392040 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 327: PPPoE  [ses 0x1826] IP (0x0021), length 307: (tos 0x0, ttl 100, id 54648, offset 0, flags [DF], proto: TCP (6), length: 305) 205.188.12.125.5190 > 88.147.235.60.63551: P 7786:8051(265) ack 2664 win 16384
22:11:18.392446 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 319: (tos 0x0, ttl  64, id 59726, offset 0, flags [DF], proto: TCP (6), length: 305) 192.168.2.2.3128 > 192.168.2.3.2502: P 7786:8051(265) ack 2664 win 65535
22:11:18.395288 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 154: (tos 0x0, ttl 128, id 30587, offset 0, flags [DF], proto: TCP (6), length: 140) 192.168.2.3.2502 > 192.168.2.2.3128: P 2664:2764(100) ack 8051 win 65170
22:11:18.395669 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 162: PPPoE  [ses 0x1826] IP (0x0021), length 142: (tos 0x0, ttl  64, id 59727, offset 0, flags [DF], proto: TCP (6), length: 140) 88.147.235.60.63551 > 205.188.12.125.5190: P 2664:2764(100) ack 8051 win 65535
22:11:18.494681 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59728, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x7a38 (correct), 8051:8051(0) ack 2764 win 65535
22:11:18.622043 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 55085, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xde9f (correct), 8051:8051(0) ack 2764 win 16384
22:11:25.189524 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 209: (tos 0x0, ttl 128, id 30588, offset 0, flags [DF], proto: TCP (6), length: 195) 192.168.2.3.2502 > 192.168.2.2.3128: P 2764:2919(155) ack 8051 win 65170
22:11:25.189973 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 217: PPPoE  [ses 0x1826] IP (0x0021), length 197: (tos 0x0, ttl  64, id 59729, offset 0, flags [DF], proto: TCP (6), length: 195) 88.147.235.60.63551 > 205.188.12.125.5190: P 2764:2919(155) ack 8051 win 65535
22:11:25.289135 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59730, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x799d (correct), 8051:8051(0) ack 2919 win 65535
22:11:25.412918 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 271: PPPoE  [ses 0x1826] IP (0x0021), length 251: (tos 0x0, ttl 100, id 3409, offset 0, flags [DF], proto: TCP (6), length: 249) 205.188.12.125.5190 > 88.147.235.60.63551: P 8051:8260(209) ack 2919 win 16384
22:11:25.413307 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 263: (tos 0x0, ttl  64, id 59731, offset 0, flags [DF], proto: TCP (6), length: 249) 192.168.2.2.3128 > 192.168.2.3.2502: P 8051:8260(209) ack 2919 win 65535
22:11:25.513220 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59732, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x1d34 (correct), 2919:2919(0) ack 8260 win 65535
22:11:25.607018 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30589, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x7b0a (correct), 2919:2919(0) ack 8260 win 64961
22:11:25.640793 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 162: PPPoE  [ses 0x1826] IP (0x0021), length 142: (tos 0x0, ttl 100, id 3863, offset 0, flags [DF], proto: TCP (6), length: 140) 205.188.12.125.5190 > 88.147.235.60.63551: P 8260:8360(100) ack 2919 win 16384
22:11:25.641129 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 154: (tos 0x0, ttl  64, id 59733, offset 0, flags [DF], proto: TCP (6), length: 140) 192.168.2.2.3128 > 192.168.2.3.2502: P 8260:8360(100) ack 2919 win 65535
22:11:25.740168 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59734, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x1cd0 (correct), 2919:2919(0) ack 8360 win 65535
22:11:25.808195 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30590, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x7b0a (correct), 2919:2919(0) ack 8360 win 64861
22:11:26.932934 00:19:5b:c1:4c:f1 > 01:00:5e:00:00:01, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 375, offset 0, flags [DF], proto: IGMP (2), length: 28) 192.168.2.10 > 224.0.0.1: igmp query v2 [max resp time 10]
22:11:27.899240 00:50:bf:60:f5:a3 > 01:00:5e:00:00:02, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30591, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 224.0.0.2: igmp v2 report 224.0.0.2
22:11:27.899345 00:50:bf:60:f5:a3 > 01:00:5e:7f:ff:fa, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl   1, id 30592, offset 0, flags [none], proto: IGMP (2), length: 32, options ( RA (148) len 4 )) 192.168.2.3 > 239.255.255.250: igmp v2 report 239.255.255.250
22:11:28.411511 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 70: PPPoE  [ses 0x1826] IP (0x0021), length 50: (tos 0x0, ttl 127, id 27495, offset 0, flags [DF], proto: TCP (6), length: 48) 88.147.182.254.3533 > 88.147.235.60.135: S, cksum 0x84fb (correct), 1071472516:1071472516(0) win 64800 <mss 1440,nop,nop,sackOK>
22:11:28.962269 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 320: PPPoE  [ses 0x1826] IP (0x0021), length 300: (tos 0x0, ttl 100, id 10566, offset 0, flags [DF], proto: TCP (6), length: 298) 205.188.12.125.5190 > 88.147.235.60.63551: P 8360:8618(258) ack 2919 win 16384
22:11:28.962668 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 312: (tos 0x0, ttl  64, id 59735, offset 0, flags [DF], proto: TCP (6), length: 298) 192.168.2.2.3128 > 192.168.2.3.2502: P 8360:8618(258) ack 2919 win 65535
22:11:28.965851 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 154: (tos 0x0, ttl 128, id 30593, offset 0, flags [DF], proto: TCP (6), length: 140) 192.168.2.3.2502 > 192.168.2.2.3128: P 2919:3019(100) ack 8618 win 64603
22:11:28.966219 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 162: PPPoE  [ses 0x1826] IP (0x0021), length 142: (tos 0x0, ttl  64, id 59736, offset 0, flags [DF], proto: TCP (6), length: 140) 88.147.235.60.63551 > 205.188.12.125.5190: P 2919:3019(100) ack 8618 win 65535
22:11:29.000096 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 98: PPPoE  [ses 0x1826] IP (0x0021), length 78: (tos 0x0, ttl 100, id 10639, offset 0, flags [DF], proto: TCP (6), length: 76) 205.188.12.125.5190 > 88.147.235.60.63551: P 8618:8654(36) ack 2919 win 16384
22:11:29.000421 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 90: (tos 0x0, ttl  64, id 59737, offset 0, flags [DF], proto: TCP (6), length: 76) 192.168.2.2.3128 > 192.168.2.3.2502: P, cksum 0xa5ee (correct), 8618:8654(36) ack 3019 win 65535
22:11:29.099592 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59738, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x1b46 (correct), 3019:3019(0) ack 8654 win 65535
22:11:29.184419 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30594, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x7aa6 (correct), 3019:3019(0) ack 8654 win 64567
22:11:29.187603 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 11092, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xdb45 (correct), 8654:8654(0) ack 3019 win 16384
22:11:29.795229 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 98: PPPoE  [ses 0x1826] IP (0x0021), length 78: (tos 0x0, ttl 100, id 12463, offset 0, flags [DF], proto: TCP (6), length: 76) 205.188.12.125.5190 > 88.147.235.60.63551: P 8654:8690(36) ack 3019 win 16384
22:11:29.795600 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 90: (tos 0x0, ttl  64, id 59739, offset 0, flags [DF], proto: TCP (6), length: 76) 192.168.2.2.3128 > 192.168.2.3.2502: P, cksum 0x9ff5 (correct), 8654:8690(36) ack 3019 win 65535
22:11:29.895356 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59740, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x1b22 (correct), 3019:3019(0) ack 8690 win 65535
22:11:29.989142 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30595, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x7aa6 (correct), 3019:3019(0) ack 8690 win 64531
22:11:30.020698 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 98: PPPoE  [ses 0x1826] IP (0x0021), length 78: (tos 0x0, ttl 100, id 12963, offset 0, flags [DF], proto: TCP (6), length: 76) 205.188.12.125.5190 > 88.147.235.60.63551: P 8690:8726(36) ack 3019 win 16384
22:11:30.021015 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 90: (tos 0x0, ttl  64, id 59741, offset 0, flags [DF], proto: TCP (6), length: 76) 192.168.2.2.3128 > 192.168.2.3.2502: P, cksum 0x9df3 (correct), 8690:8726(36) ack 3019 win 65535
22:11:30.120383 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59742, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x1afe (correct), 3019:3019(0) ack 8726 win 65535
22:11:30.190335 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30596, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x7aa6 (correct), 3019:3019(0) ack 8726 win 64495
22:11:31.313797 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 98: PPPoE  [ses 0x1826] IP (0x0021), length 78: (tos 0x0, ttl 100, id 15585, offset 0, flags [DF], proto: TCP (6), length: 76) 205.188.12.125.5190 > 88.147.235.60.63551: P 8726:8762(36) ack 3019 win 16384
22:11:31.314193 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 90: (tos 0x0, ttl  64, id 59743, offset 0, flags [DF], proto: TCP (6), length: 76) 192.168.2.2.3128 > 192.168.2.3.2502: P, cksum 0x95c3 (correct), 8726:8762(36) ack 3019 win 65535
22:11:31.364254 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 70: PPPoE  [ses 0x1826] IP (0x0021), length 50: (tos 0x0, ttl 127, id 28040, offset 0, flags [DF], proto: TCP (6), length: 48) 88.147.182.254.3533 > 88.147.235.60.135: S, cksum 0x84fb (correct), 1071472516:1071472516(0) win 64800 <mss 1440,nop,nop,sackOK>
22:11:31.366251 00:18:82:2f:87:79 > 00:73:05:16:74:f0, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Service-Name] [AC-Name "me60"]
22:11:31.414058 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59744, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x1ada (correct), 3019:3019(0) ack 8762 win 65535
22:11:31.414470 00:18:82:2f:87:79 > 00:73:05:16:74:f0, ethertype PPPoE D (0x8863), length 60: PPPoE PADS [ses 0x19ac] [Service-Name]
22:11:31.498049 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30597, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x7aa6 (correct), 3019:3019(0) ack 8762 win 64459
22:11:31.612857 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Request (0x09), id 93, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 095d 0008
	  Magic-Num 0x010060ee
22:11:31.613002 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 60: PPPoE  [ses 0x1826] LCP (0xc021), length 10: LCP, Echo-Reply (0x0a), id 93, length 10
	encoded length 8 (=Option(s) length 4)
	0x0000:  c021 0a5d 0008
	  Magic-Num 0x77e3a456
22:11:41.246923 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  26, id 45619, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.149.141 > 88.147.235.60:  etherip 62
22:11:41.247173 00:11:09:66:0f:e3 > ff:ff:ff:ff:ff:ff, ethertype ARP (0x0806), length 60: arp who-has 192.168.1.2 tell 192.168.1.3
22:11:41.474595 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 375: PPPoE  [ses 0x1826] IP (0x0021), length 355: (tos 0x0, ttl 100, id 36740, offset 0, flags [DF], proto: TCP (6), length: 353) 205.188.12.125.5190 > 88.147.235.60.63551: P 8762:9075(313) ack 3019 win 16384
22:11:41.474959 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 367: (tos 0x0, ttl  64, id 59745, offset 0, flags [DF], proto: TCP (6), length: 353) 192.168.2.2.3128 > 192.168.2.3.2502: P 8762:9075(313) ack 3019 win 65535
22:11:41.494254 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 154: (tos 0x0, ttl 128, id 30598, offset 0, flags [DF], proto: TCP (6), length: 140) 192.168.2.3.2502 > 192.168.2.2.3128: P 3019:3119(100) ack 9075 win 64146
22:11:41.494713 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 162: PPPoE  [ses 0x1826] IP (0x0021), length 142: (tos 0x0, ttl  64, id 59746, offset 0, flags [DF], proto: TCP (6), length: 140) 88.147.235.60.63551 > 205.188.12.125.5190: P 3019:3119(100) ack 9075 win 65535
22:11:41.593990 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59747, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x74d5 (correct), 9075:9075(0) ack 3119 win 65535
22:11:41.713540 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 37228, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xd93c (correct), 9075:9075(0) ack 3119 win 16384
22:11:47.655472 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30599, offset 0, flags [DF], proto: TCP (6), length: 46) 192.168.2.3.2502 > 192.168.2.2.3128: P, cksum 0xc473 (correct), 3119:3125(6) ack 9075 win 64146
22:11:47.655894 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 68: PPPoE  [ses 0x1826] IP (0x0021), length 48: (tos 0x0, ttl  64, id 59748, offset 0, flags [DF], proto: TCP (6), length: 46) 88.147.235.60.63551 > 205.188.12.125.5190: P, cksum 0x636e (correct), 3119:3125(6) ack 9075 win 65535
22:11:47.754798 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl  64, id 59749, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.2.3128 > 192.168.2.3.2502: ., cksum 0x74cf (correct), 9075:9075(0) ack 3125 win 65535
22:11:47.875873 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl 100, id 49879, offset 0, flags [DF], proto: TCP (6), length: 40) 205.188.12.125.5190 > 88.147.235.60.63551: ., cksum 0xd936 (correct), 9075:9075(0) ack 3125 win 16384
22:11:49.366571 00:18:82:2f:87:79 > 00:14:2b:08:61:61, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Host-Uniq 0x78D30010] [Service-Name] [AC-Name "me60"]
22:11:49.406916 00:18:82:2f:87:79 > 00:14:2b:08:61:61, ethertype PPPoE D (0x8863), length 60: PPPoE PADS [ses 0xee] [Service-Name] [Host-Uniq 0x78D30010]
22:11:52.922794 00:18:82:2f:87:79 > 00:1d:60:d5:33:79, ethertype PPPoE D (0x8863), length 60: PPPoE PADO [Service-Name] [Host-Uniq "1000"] [AC-Name "me60"]
22:11:58.164136 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 340: PPPoE  [ses 0x1826] IP (0x0021), length 320: (tos 0x0, ttl 100, id 5574, offset 0, flags [DF], proto: TCP (6), length: 318) 205.188.12.125.5190 > 88.147.235.60.63551: P 9075:9353(278) ack 3125 win 16384
22:11:58.164530 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype IPv4 (0x0800), length 332: (tos 0x0, ttl  64, id 59750, offset 0, flags [DF], proto: TCP (6), length: 318) 192.168.2.2.3128 > 192.168.2.3.2502: P 9075:9353(278) ack 3125 win 65535
22:11:58.263896 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 62: PPPoE  [ses 0x1826] IP (0x0021), length 42: (tos 0x0, ttl  64, id 59751, offset 0, flags [DF], proto: TCP (6), length: 40) 88.147.235.60.63551 > 205.188.12.125.5190: ., cksum 0x1821 (correct), 3125:3125(0) ack 9353 win 65535
22:11:58.356376 00:50:bf:60:f5:a3 > ff:ff:ff:ff:ff:ff, ethertype ARP (0x0806), length 60: arp who-has 192.168.2.2 tell 192.168.2.3
22:11:58.356521 00:50:22:8e:96:d2 > 00:50:bf:60:f5:a3, ethertype ARP (0x0806), length 60: arp reply 192.168.2.2 is-at 00:50:22:8e:96:d2
22:11:58.356606 00:50:bf:60:f5:a3 > 00:50:22:8e:96:d2, ethertype IPv4 (0x0800), length 60: (tos 0x0, ttl 128, id 30600, offset 0, flags [DF], proto: TCP (6), length: 40) 192.168.2.3.2502 > 192.168.2.2.3128: ., cksum 0x73b9 (correct), 3125:3125(0) ack 9353 win 65535
22:11:58.356794 00:50:22:8e:96:d2 > 00:18:82:2f:87:79, ethertype PPPoE S (0x8864), length 104: PPPoE  [ses 0x1826] IP (0x0021), length 84: (tos 0x0, ttl  30, id 59752, offset 0, flags [none], proto: unknown (97), length: 82) 88.147.235.60 > 88.147.149.141:  etherip 62
22:11:58.663293 00:18:82:2f:87:79 > 00:50:22:8e:96:d2, ethertype PPPoE S (0x8864), length 340: PPPoE  [ses 0x1826] IP (0x0021), length 3

>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-i386 mailing list