<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.w9cr.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bryan</id>
	<title>W9CR - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.w9cr.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bryan"/>
	<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php/Special:Contributions/Bryan"/>
	<updated>2026-08-19T12:03:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.4</generator>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Junos_Evo&amp;diff=8503</id>
		<title>Junos Evo</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Junos_Evo&amp;diff=8503"/>
		<updated>2026-07-30T09:52:34Z</updated>

		<summary type="html">&lt;p&gt;Bryan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Page on Juniper OS Evolved (Junos EVO)&lt;br /&gt;
&lt;br /&gt;
Basically juniper laid an egg with this os, and there's very little testing.  I think AI would be better. &lt;br /&gt;
&lt;br /&gt;
I'm using this on the QFX5130-48c, which is slightly different than the 5130-32CD, but is still Trident Based.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Unable to filter number of MACs = &lt;br /&gt;
&lt;br /&gt;
QFX5130 can't limit MACs learned on a port.&lt;br /&gt;
&lt;br /&gt;
I had to build a script that monitors this and shuts down a port if a limit is exceeded.   [https://github.com/W9CR/qfx5130-mac_limit Link to Github]&lt;br /&gt;
&lt;br /&gt;
What's even more fail is the QFX has a mac learning log, but it's not stored on disk or put into syslog.  This means you can't chain an event from it, so the script has to just poll in a loop.  This is just fail.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX9&amp;gt; show ethernet-switching mac-learning-log&lt;br /&gt;
Wed Jul 29 11:07:56 vlan_name TEST-VLAN+2240 mac 0c:c4:7a:d2:ed:c7 was learned on et-0/0/46.2240 with flags: 0x2001f&lt;br /&gt;
Wed Jul 29 11:08:14 vlan_name TEST-VLAN+2240 mac 00:00:00:00:01:80 was added to vtep-58.32769 with flags: 0x2413f&lt;br /&gt;
Wed Jul 29 11:08:14 vlan_name TEST-VLAN+2240 mac 0c:c4:7a:28:b3:74 was learned on vtep-58.32769 with flags: 0x2001f&lt;br /&gt;
Wed Jul 29 11:13:08 vlan_name TEST-VLAN+2240 mac 00:00:00:00:01:80 was deleted with flags: 0x51a0&lt;br /&gt;
Wed Jul 29 11:13:08 vlan_name TEST-VLAN+2240 mac 0c:c4:7a:28:b3:74 was deleted with flags: 0x1080&lt;br /&gt;
Wed Jul 29 11:13:13 vlan_name TEST-VLAN+2240 mac 00:00:00:00:01:80 was added to vtep-58.32769 with flags: 0x2413f&lt;br /&gt;
Wed Jul 29 11:13:13 vlan_name TEST-VLAN+2240 mac 0c:c4:7a:28:b3:74 was learned on vtep-58.32769 with flags: 0x2001f&lt;br /&gt;
Wed Jul 29 11:16:55 vlan_name TEST-VLAN+2240 mac 00:00:00:00:01:80 was deleted with flags: 0x51a0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Unable to filter per port at L2 =&lt;br /&gt;
&lt;br /&gt;
In the service provider interface configuration putting an interface into a mac-vrf EVPN context, there's no way to apply a firewall filter on a per interface basis.   Since the config doesn't have 'family ethernet-switching' there's no way to apply a filter per interface. &lt;br /&gt;
&lt;br /&gt;
In this example config, unit 2240 is untagged, as the port's native vlan is 2240.  This also isn't illustrated well in Juniper docs. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX9&amp;gt; show configuration interfaces et-0/0/46&lt;br /&gt;
description &amp;quot;Fink xg1&amp;quot;;&lt;br /&gt;
flexible-vlan-tagging;&lt;br /&gt;
native-vlan-id 2240;&lt;br /&gt;
speed 10g;&lt;br /&gt;
mtu 9004;&lt;br /&gt;
encapsulation flexible-ethernet-services;&lt;br /&gt;
unit 100 {&lt;br /&gt;
    vlan-id 100;&lt;br /&gt;
    family inet {&lt;br /&gt;
        address 10.0.0.1/30;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
unit 2240 {&lt;br /&gt;
    description TEST-LAN;&lt;br /&gt;
    encapsulation vlan-bridge;&lt;br /&gt;
    vlan-id 2240;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What does work is filtering on the input to the service vlan.  This works as each interface in the service is filtered into before being bridged in the service. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX9# show routing-instances MGMT-SVC| display inheritance no-comments&lt;br /&gt;
/* instance is MAC-VRF, this is default for QFX and supports vlans*/&lt;br /&gt;
instance-type mac-vrf;&lt;br /&gt;
protocols {&lt;br /&gt;
    evpn {&lt;br /&gt;
        encapsulation vxlan;&lt;br /&gt;
        default-gateway advertise;&lt;br /&gt;
        /* allow all vxlan vni's defined under vlans in this service */&lt;br /&gt;
        extended-vni-list all;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
description MGMT-SVC-EVPN;&lt;br /&gt;
/* source interface is lo0.0 and ipv6 */&lt;br /&gt;
vtep-source-interface lo0.0 inet6;&lt;br /&gt;
switch-options {&lt;br /&gt;
    mac-ip-table-size {&lt;br /&gt;
        5000;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
/* needs to be vlan-aware, just default and has a per vlan bridging table */&lt;br /&gt;
service-type vlan-aware;&lt;br /&gt;
/* RD here is the router ID with the ID as defined */&lt;br /&gt;
route-distinguisher 149.112.184.226:2200;&lt;br /&gt;
/* note that interfaces shouldn't be defined here, only at the VLAN level */&lt;br /&gt;
/* the base interfaces should always be in the TBAX EVPN instance */&lt;br /&gt;
vrf-target target:10475:2200;&lt;br /&gt;
/* define vlans in this */&lt;br /&gt;
vlans {&lt;br /&gt;
    MGMT-VLAN {&lt;br /&gt;
        vlan-id 2200;&lt;br /&gt;
        l3-interface irb.2200;&lt;br /&gt;
        forwarding-options {&lt;br /&gt;
            /* Filter here is needed to prevent stuff across the Service*/&lt;br /&gt;
            /* note you can ignore this not found error, it's here, just EVO things! */&lt;br /&gt;
            filter {&lt;br /&gt;
                input MGMT-LAN-FILTER; ## reference 'MGMT-LAN-FILTER' not found&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
        switch-options {&lt;br /&gt;
            /* set the mac-ip table to 10x what is expected /*&lt;br /&gt;
            mac-ip-table-size {&lt;br /&gt;
            5000;&lt;br /&gt;
            }&lt;br /&gt;
            mac-move-limit {&lt;br /&gt;
            2;&lt;br /&gt;
            packet-action shutdown;&lt;br /&gt;
            }&lt;br /&gt;
            /* enable mac-stats */&lt;br /&gt;
            mac-statistics;&lt;br /&gt;
        }&lt;br /&gt;
        /* define the VNI's in this, and they must be unique */&lt;br /&gt;
        vxlan {&lt;br /&gt;
            vni 692200;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= VXLAN encapsulation doesn't work =&lt;br /&gt;
In prior than 24.x Junos the '[https://www.juniper.net/documentation/us/en/software/junos/multicast-l2/topics/topic-map/layer-2-forwarding-tables.html PFE UFT Profiles]' Tunnels still worked in the LPM profile just not at scale.   Since this is only a few tunnels, it worked.  At some point they &amp;quot;fixed&amp;quot; this without telling anyone.  There is no notice in the release notes about this.  What's worse is the router give no notice when configuring tunnel protocols with lpm-profile enabled.  Looking at BGP, routeing tables and forwarding tables, it looks correct, even the evpn proxy arp works.  Looking at the interface between routers everything is there; other than VXLAN. &lt;br /&gt;
&lt;br /&gt;
The only notice is a pfe error in the logs as below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Jul 27 14:12:24  TAMSFLDE-QFX7 evo-pfemand[1256]: [t:1256] [Error] Nexthop: Failed to creae underlay Nh = 5007in Nh = 9671&lt;br /&gt;
Jul 27 14:12:24  TAMSFLDE-QFX7 evo-pfemand[1256]: RAISE_OBJECT_ERROR: Object with guid=579822173966 from app=l2ald-agent on node=re0 objtype=Nexthop reported with error=unknown&lt;br /&gt;
Jul 27 14:12:24  TAMSFLDE-QFX7 evo-pfemand[1256]: [t:1256] [Error] Nexthop:  NhAck: Send Error TPA: nhId:9671, type: 19 error: unknown&lt;br /&gt;
Jul 27 14:12:24  TAMSFLDE-QFX7 evo-pfemand[1256]: [t:1256] [Error] Nexthop: Failed to creae underlay Nh = 5007in Nh = 9671&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Juniper doesn't publish this on their site for the QFX5130-48c.  It's significantly different than the 32-CD version. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; show pfe uft-profile-info&lt;br /&gt;
SENT: Ukern command: show evo-pfemand uft profile-info&lt;br /&gt;
==============================================================================&lt;br /&gt;
                   PFE UFT Profiles&lt;br /&gt;
==============================================================================&lt;br /&gt;
                default-profile  lpm-profile  host-profile  host-acl-profile&lt;br /&gt;
==============================================================================&lt;br /&gt;
IPV4-host       32K              32K          98K           98K&lt;br /&gt;
IPV4-lpm        340K             725K         32K           32K&lt;br /&gt;
IPV6-host       16K              16K          49K           49K&lt;br /&gt;
IPV6-lpm        174K             386K         18K           18K&lt;br /&gt;
L2-mac          32K              32K          96K           96K&lt;br /&gt;
FP-compression  20K              0            0             20K&lt;br /&gt;
ARP-overlay     32K              64K          32K           32K&lt;br /&gt;
ARP-underlay    32K              0            32K           32K&lt;br /&gt;
L3-mcast v4     16K              16K          30K           48K&lt;br /&gt;
L3-mcast v6     8K               8K           16K           24K&lt;br /&gt;
Tunnels         Supported        No support   Supported     Supported&lt;br /&gt;
==============================================================================&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enabling another profile will resolve this issue.  &lt;br /&gt;
&lt;br /&gt;
= Software verification PFE crash = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I did 'request system software rollback' which stages and verifies a rollback.  This caused the PFE to reboot, and all sessions to bounce.  This shouldn't happen. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; request system software rollback Read from remote host 23.149.104.25: Operation timed out&lt;br /&gt;
Connection to 23.149.104.25 closed.&lt;br /&gt;
client_loop: send disconnect: Broken pipe&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''WTF Juniper; do better.''' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MKUltra:~ bryan$ ssh qfx7&lt;br /&gt;
Last login: Tue Jul 28 12:35:23 2026 from 108.191.164.198&lt;br /&gt;
--- JUNOS 25.4R1.13-EVO Linux (none) 5.15.164-10.22.33.18-yocto-standard-juniper-17155-g5adff1d6d404 #1 SMP PREEMPT Tue Oct 28&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; request system software rollback Starting software rollback to default rollback version&lt;br /&gt;
Software rollback in progress...&lt;br /&gt;
reø: Validating current config for rollback version junos-evo-install-qfx-ms-x86-64-25.2R1-S2.3-EVO&lt;br /&gt;
reø: Validation passed for version junos-evo-install-qfx-ms-x86-64-25.2R1-S2.3-EVO&lt;br /&gt;
reø: Copying current config to rollback version&lt;br /&gt;
reø: Boot version is now 'junos-evo-install-qfx-ms-x86-64-25.2R1-S2.3-EV0'&lt;br /&gt;
reD: Rollback Done. Next Boot version is now &amp;quot;junos-evo-install-qfx-ms-x86-64-25.2R1-S2.3-EVO'. Must reboot now to activate.&lt;br /&gt;
reø: Syncing nodes&lt;br /&gt;
re0: All nodes synced&lt;br /&gt;
Software rollback succeeded.&lt;br /&gt;
NOTICE :&lt;br /&gt;
'pending' rollback version will be activated at next reboot...&lt;br /&gt;
WARNING: Configuration changes made after this point will not be validated.&lt;br /&gt;
WARNING: Target image will be booted with the latest configuration. Changing configuration now may be risky.&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; request system reboot&lt;br /&gt;
The entire system (all nodes) will reboot causing traffic loss, do you wish to continue? [yes, nol (no) yes&lt;br /&gt;
*** System&lt;br /&gt;
shutdown message from root@TAMSFLDE-QFX7 ***&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= PFE shell is broken =&lt;br /&gt;
&lt;br /&gt;
Debugging issues sometimes mean you need to get into the PFE shell.  That doesn't work anymore in newer EVO releases.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; start shell pfe network fpc0&lt;br /&gt;
VTY skipped for Evo-Qfx.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For now it seems you can get to this via the shell command 'cli-pfe'&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; start shell&lt;br /&gt;
[vrf:none] bryan@TAMSFLDE-QFX7:~$ cli-pfe&lt;br /&gt;
bryan@TAMSFLDE-QFX7:pfe&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Main_Page&amp;diff=8502</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Main_Page&amp;diff=8502"/>
		<updated>2026-07-30T09:25:47Z</updated>

		<summary type="html">&lt;p&gt;Bryan: /* Miscellaneous */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''W9CR info site'''&lt;br /&gt;
&lt;br /&gt;
This is a small collection of stuff about hacking various radios.  Right now it's mostly about the [[Quantar]] series of radios.&lt;br /&gt;
&lt;br /&gt;
I expect to have some info on the [[AstroTac]] receiver and [[ASTRO-TAC|Comparators]] as well.  &lt;br /&gt;
&lt;br /&gt;
I've added some details on the [[PDR 3500|PDR3500 Transportable Repeater]] too.  &lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
*[[Special:Categories|Categories]] - A listing of all categories on this wiki&lt;br /&gt;
----&lt;br /&gt;
= Radios/Electronics =&lt;br /&gt;
&lt;br /&gt;
*Information on the [[MTR Repeater|MTR2000 repeater]] I've messed with a while back.  These are a &amp;quot;Quantar-lite&amp;quot;, and kinda suck.  I've recently added how to update them to the latest firmware. &lt;br /&gt;
*There is some information on the [[Uniden MRS904]] repeater converting it for amateur use.&lt;br /&gt;
*Motorola [[Waris|Waris]] modifications and tech info.  This covers the entire Waris line, HT/CDM/Pro/GP/GM/MTM700/EX/PR/CP &lt;br /&gt;
*[[Motorola R2001D|Motorola R2001A/B/C/D communication service monitor information and manuals]]&lt;br /&gt;
*[[Hamtronics 220 repeater]] notes&lt;br /&gt;
*[[Telewave]] antenna patterns for radio mobile.&lt;br /&gt;
*[[XTS 2500]] notes on programing for the 900 MHz Ham band.&lt;br /&gt;
*[[XTL Radio]] info on the XTL 2500/5000 mobile radios &lt;br /&gt;
*[[EF_Johnson]] some notes and programing info on the EF Johnson 5100 and 5300 radios&lt;br /&gt;
*[[Yaesu FT-51]] Info on modification and service manual&lt;br /&gt;
*[[Kenwood Manuals|Kenwood Service Manuals]] - Kenwood service manuals I've scanned&lt;br /&gt;
*[[:Category:Kenwood Manuals| Kenwood Manual Category]]&lt;br /&gt;
*[[:Category:Yaesu|Yaesu Category]]&lt;br /&gt;
*[[Harris Falcon]]&lt;br /&gt;
*[[DMR IDs]] - Thoughts on the ham DMR ID fiasco. &lt;br /&gt;
*[[Trasnmitter Combiners]] - notes on transmitter combiners I've worked with and general theory.&lt;br /&gt;
*[[2020 Ram 1500 Radio Install|2020 Ram 1500 Eco Diesel Radio Install]] - Work in progress about how I installed radios in my truck.&lt;br /&gt;
*[[BreezeACCESS|BreezeACCESS FHSS radios]] - work in progress about how to repurpose the BreezeCOM/Alvarion BreezeACCESS II/900/V radios and convert the SU to AU.  This was the top of the line wireless ISP gear circa 1998-2004.&lt;br /&gt;
*[[:Category:Astro_Saber/Spectra|Astro Saber/XTS/Spectra category and notes]]&lt;br /&gt;
*[[:Category:SABER|Motorola Saber Radio category]]&lt;br /&gt;
*[[Transmitter Fingerprinting]] Info on various Transmitter Fingerprinting Implementations.&lt;br /&gt;
*[[QST Metaverse &amp;amp; Furries Cover|QST November 2023 Furry Fandom Cover idiocy]]&lt;br /&gt;
*[[Logbook of The World (LOTW) Cyberattack|ARRL Logbook of The World (LOTW) Cyberattack notes]]&lt;br /&gt;
&lt;br /&gt;
= Computers/Networking =&lt;br /&gt;
*[[Cisco 3945|Cisco 3945 Notes on changing fans to be quieter]]&lt;br /&gt;
*[[HamWAN Remote Site|HamWAN remote]], a way to link into HamWAN Tampa via VPN using cheap routers.&lt;br /&gt;
*[[:Category:Inmarsat|Inmarsat Docs]] Found online&lt;br /&gt;
&lt;br /&gt;
*[[Radio Channel Logger|Radio Channel Logger]], a low cost multi-channel logging recorder, with transcription.  Suitable for radio or telephony applications.&lt;br /&gt;
&lt;br /&gt;
= Allstar =&lt;br /&gt;
*[[Dahdi dummy|dahdi_dummy for AllStarLink 1.01 and HamVoIP theft of code.]]&lt;br /&gt;
*[[AllStarLink, Inc.|Information about the take over of AllStarLink, Inc.]]&lt;br /&gt;
== Todd Lesser ==&lt;br /&gt;
*[[Todd Lesser|Todd Lesser of San Diego, CA and his company North County Communication, Inc.]] is known to engage in fraudulent telecom billing via his sex chat lines.  Has several judgements against him and and his companies in [[Todd_Lesser#San_Diego_County|California]] and [[Todd_Lesser#West_Virginia|West Virginia]].  His company has also lost a case in [[Todd_Lesser#New_York|New York]] and was denied a petition for review by the [[Todd_Lesser#United_States_Supreme_Court|US Supreme Court]].&lt;br /&gt;
&lt;br /&gt;
= Documents and Standards =&lt;br /&gt;
*[[R56 - Standards and Guidelines for Communication Sites]]&lt;br /&gt;
&lt;br /&gt;
= Miscellaneous =&lt;br /&gt;
*[[TEOTWAWKI]] - This might be useful for regular and irregular forces.&lt;br /&gt;
&lt;br /&gt;
* [[Ken Bryant|Ken Bryant, K1DMR of North Georgia Communications doesn't want you to see this]]&lt;br /&gt;
&lt;br /&gt;
* [[Goatse.cx Mirrors|List of Goatse Mirrrors]]&lt;br /&gt;
&lt;br /&gt;
* [[Junos Evo]] - Juniper OS Evolved issued&lt;br /&gt;
&lt;br /&gt;
= Useful Links = &lt;br /&gt;
&lt;br /&gt;
[https://www.penpapernomographic.com/ High Quality PDF Smith Charts]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
----&lt;br /&gt;
*Total pages on this wiki: {{NUMBEROFPAGES}}&lt;br /&gt;
*Total articles on this wiki: {{NUMBEROFARTICLES}}&lt;br /&gt;
*Total files on this wiki: {{NUMBEROFFILES}}&lt;br /&gt;
*Total edits of this wiki: {{NUMBEROFEDITS}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://wiki.w9cr.net/sitemap.xml sitemap]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Junos_Evo&amp;diff=8501</id>
		<title>Junos Evo</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Junos_Evo&amp;diff=8501"/>
		<updated>2026-07-30T09:24:28Z</updated>

		<summary type="html">&lt;p&gt;Bryan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Page on Juniper OS Evolved (Junos EVO)&lt;br /&gt;
&lt;br /&gt;
Basically juniper laid an egg with this os, and there's very little testing.  I think AI would be better. &lt;br /&gt;
&lt;br /&gt;
I'm using this on the QFX5130-48c, which is slightly different than the 5130-32CD, but is still Trident Based.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Unable to filter number of MACs = &lt;br /&gt;
&lt;br /&gt;
QFX5130 can't limit MACs learned on a port.&lt;br /&gt;
&lt;br /&gt;
I had to build a script that monitors this and shuts down a port if a limit is exceeded.   [https://github.com/W9CR/qfx5130-mac_limit Link to Github]&lt;br /&gt;
&lt;br /&gt;
What's even more fail is the QFX has a mac learning log, but it's not stored on disk or put into syslog.  This means you can't chain an event from it, so the script has to just poll in a loop.  This is just fail.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX9&amp;gt; show ethernet-switching mac-learning-log&lt;br /&gt;
Wed Jul 29 11:07:56 vlan_name TEST-VLAN+2240 mac 0c:c4:7a:d2:ed:c7 was learned on et-0/0/46.2240 with flags: 0x2001f&lt;br /&gt;
Wed Jul 29 11:08:14 vlan_name TEST-VLAN+2240 mac 00:00:00:00:01:80 was added to vtep-58.32769 with flags: 0x2413f&lt;br /&gt;
Wed Jul 29 11:08:14 vlan_name TEST-VLAN+2240 mac 0c:c4:7a:28:b3:74 was learned on vtep-58.32769 with flags: 0x2001f&lt;br /&gt;
Wed Jul 29 11:13:08 vlan_name TEST-VLAN+2240 mac 00:00:00:00:01:80 was deleted with flags: 0x51a0&lt;br /&gt;
Wed Jul 29 11:13:08 vlan_name TEST-VLAN+2240 mac 0c:c4:7a:28:b3:74 was deleted with flags: 0x1080&lt;br /&gt;
Wed Jul 29 11:13:13 vlan_name TEST-VLAN+2240 mac 00:00:00:00:01:80 was added to vtep-58.32769 with flags: 0x2413f&lt;br /&gt;
Wed Jul 29 11:13:13 vlan_name TEST-VLAN+2240 mac 0c:c4:7a:28:b3:74 was learned on vtep-58.32769 with flags: 0x2001f&lt;br /&gt;
Wed Jul 29 11:16:55 vlan_name TEST-VLAN+2240 mac 00:00:00:00:01:80 was deleted with flags: 0x51a0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Unable to filter per port at L2 =&lt;br /&gt;
&lt;br /&gt;
In the service provider interface configuration putting an interface into a mac-vrf EVPN context, there's no way to apply a firewall filter on a per interface basis.   Since the config doesn't have 'family ethernet-switching' there's no way to apply a filter per interface. &lt;br /&gt;
&lt;br /&gt;
In this example config, unit 2240 is untagged, as the port's native vlan is 2240.  This also isn't illustrated well in Juniper docs. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX9&amp;gt; show configuration interfaces et-0/0/46&lt;br /&gt;
description &amp;quot;Fink xg1&amp;quot;;&lt;br /&gt;
flexible-vlan-tagging;&lt;br /&gt;
native-vlan-id 2240;&lt;br /&gt;
speed 10g;&lt;br /&gt;
mtu 9004;&lt;br /&gt;
encapsulation flexible-ethernet-services;&lt;br /&gt;
unit 100 {&lt;br /&gt;
    vlan-id 100;&lt;br /&gt;
    family inet {&lt;br /&gt;
        address 10.0.0.1/30;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
unit 2240 {&lt;br /&gt;
    description TEST-LAN;&lt;br /&gt;
    encapsulation vlan-bridge;&lt;br /&gt;
    vlan-id 2240;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What does work is filtering on the input to the service vlan.  This works as each interface in the service is filtered into before being bridged in the service. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX9# show routing-instances MGMT-SVC| display inheritance no-comments&lt;br /&gt;
/* instance is MAC-VRF, this is default for QFX and supports vlans*/&lt;br /&gt;
instance-type mac-vrf;&lt;br /&gt;
protocols {&lt;br /&gt;
    evpn {&lt;br /&gt;
        encapsulation vxlan;&lt;br /&gt;
        default-gateway advertise;&lt;br /&gt;
        /* allow all vxlan vni's defined under vlans in this service */&lt;br /&gt;
        extended-vni-list all;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
description MGMT-SVC-EVPN;&lt;br /&gt;
/* source interface is lo0.0 and ipv6 */&lt;br /&gt;
vtep-source-interface lo0.0 inet6;&lt;br /&gt;
switch-options {&lt;br /&gt;
    mac-ip-table-size {&lt;br /&gt;
        5000;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
/* needs to be vlan-aware, just default and has a per vlan bridging table */&lt;br /&gt;
service-type vlan-aware;&lt;br /&gt;
/* RD here is the router ID with the ID as defined */&lt;br /&gt;
route-distinguisher 149.112.184.226:2200;&lt;br /&gt;
/* note that interfaces shouldn't be defined here, only at the VLAN level */&lt;br /&gt;
/* the base interfaces should always be in the TBAX EVPN instance */&lt;br /&gt;
vrf-target target:10475:2200;&lt;br /&gt;
/* define vlans in this */&lt;br /&gt;
vlans {&lt;br /&gt;
    MGMT-VLAN {&lt;br /&gt;
        vlan-id 2200;&lt;br /&gt;
        l3-interface irb.2200;&lt;br /&gt;
        forwarding-options {&lt;br /&gt;
            /* Filter here is needed to prevent stuff across the Service*/&lt;br /&gt;
            /* note you can ignore this not found error, it's here, just EVO things! */&lt;br /&gt;
            filter {&lt;br /&gt;
                input MGMT-LAN-FILTER; ## reference 'MGMT-LAN-FILTER' not found&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
        switch-options {&lt;br /&gt;
            /* set the mac-ip table to 10x what is expected /*&lt;br /&gt;
            mac-ip-table-size {&lt;br /&gt;
            5000;&lt;br /&gt;
            }&lt;br /&gt;
            mac-move-limit {&lt;br /&gt;
            2;&lt;br /&gt;
            packet-action shutdown;&lt;br /&gt;
            }&lt;br /&gt;
            /* enable mac-stats */&lt;br /&gt;
            mac-statistics;&lt;br /&gt;
        }&lt;br /&gt;
        /* define the VNI's in this, and they must be unique */&lt;br /&gt;
        vxlan {&lt;br /&gt;
            vni 692200;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= VXLAN encapsulation doesn't work =&lt;br /&gt;
In prior than 24.x Junos the '[https://www.juniper.net/documentation/us/en/software/junos/multicast-l2/topics/topic-map/layer-2-forwarding-tables.html PFE UFT Profiles]' Tunnels still worked in the LPM profile just not at scale.   Since this is only a few tunnels, it worked.  At some point they &amp;quot;fixed&amp;quot; this without telling anyone.  There is no notice in the release notes about this.  What's worse is the router give no notice when configuring tunnel protocols with lpm-profile enabled.  Looking at BGP, routeing tables and forwarding tables, it looks correct, even the evpn proxy arp works.  Looking at the interface between routers everything is there; other than VXLAN. &lt;br /&gt;
&lt;br /&gt;
The only notice is a pfe error in the logs as below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Jul 27 14:12:24  TAMSFLDE-QFX7 evo-pfemand[1256]: [t:1256] [Error] Nexthop: Failed to creae underlay Nh = 5007in Nh = 9671&lt;br /&gt;
Jul 27 14:12:24  TAMSFLDE-QFX7 evo-pfemand[1256]: RAISE_OBJECT_ERROR: Object with guid=579822173966 from app=l2ald-agent on node=re0 objtype=Nexthop reported with error=unknown&lt;br /&gt;
Jul 27 14:12:24  TAMSFLDE-QFX7 evo-pfemand[1256]: [t:1256] [Error] Nexthop:  NhAck: Send Error TPA: nhId:9671, type: 19 error: unknown&lt;br /&gt;
Jul 27 14:12:24  TAMSFLDE-QFX7 evo-pfemand[1256]: [t:1256] [Error] Nexthop: Failed to creae underlay Nh = 5007in Nh = 9671&lt;br /&gt;
&amp;lt;/pre&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Juniper doesn't publish this on their site for the QFX5130-48c.  It's significantly different than the 32-CD version. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; show pfe uft-profile-info&lt;br /&gt;
SENT: Ukern command: show evo-pfemand uft profile-info&lt;br /&gt;
==============================================================================&lt;br /&gt;
                   PFE UFT Profiles&lt;br /&gt;
==============================================================================&lt;br /&gt;
                default-profile  lpm-profile  host-profile  host-acl-profile&lt;br /&gt;
==============================================================================&lt;br /&gt;
IPV4-host       32K              32K          98K           98K&lt;br /&gt;
IPV4-lpm        340K             725K         32K           32K&lt;br /&gt;
IPV6-host       16K              16K          49K           49K&lt;br /&gt;
IPV6-lpm        174K             386K         18K           18K&lt;br /&gt;
L2-mac          32K              32K          96K           96K&lt;br /&gt;
FP-compression  20K              0            0             20K&lt;br /&gt;
ARP-overlay     32K              64K          32K           32K&lt;br /&gt;
ARP-underlay    32K              0            32K           32K&lt;br /&gt;
L3-mcast v4     16K              16K          30K           48K&lt;br /&gt;
L3-mcast v6     8K               8K           16K           24K&lt;br /&gt;
Tunnels         Supported        No support   Supported     Supported&lt;br /&gt;
==============================================================================&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enabling another profile will resolve this issue.  &lt;br /&gt;
&lt;br /&gt;
= Software verification PFE crash = &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I did 'request system software rollback' which stages and verifies a rollback.  This caused the PFE to reboot, and all sessions to bounce.  This shouldn't happen. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; request system software rollback Read from remote host 23.149.104.25: Operation timed out&lt;br /&gt;
Connection to 23.149.104.25 closed.&lt;br /&gt;
client_loop: send disconnect: Broken pipe&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''WTF Juniper; do better.''' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MKUltra:~ bryan$ ssh qfx7&lt;br /&gt;
Last login: Tue Jul 28 12:35:23 2026 from 108.191.164.198&lt;br /&gt;
--- JUNOS 25.4R1.13-EVO Linux (none) 5.15.164-10.22.33.18-yocto-standard-juniper-17155-g5adff1d6d404 #1 SMP PREEMPT Tue Oct 28&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; request system software rollback Starting software rollback to default rollback version&lt;br /&gt;
Software rollback in progress...&lt;br /&gt;
reø: Validating current config for rollback version junos-evo-install-qfx-ms-x86-64-25.2R1-S2.3-EVO&lt;br /&gt;
reø: Validation passed for version junos-evo-install-qfx-ms-x86-64-25.2R1-S2.3-EVO&lt;br /&gt;
reø: Copying current config to rollback version&lt;br /&gt;
reø: Boot version is now 'junos-evo-install-qfx-ms-x86-64-25.2R1-S2.3-EV0'&lt;br /&gt;
reD: Rollback Done. Next Boot version is now &amp;quot;junos-evo-install-qfx-ms-x86-64-25.2R1-S2.3-EVO'. Must reboot now to activate.&lt;br /&gt;
reø: Syncing nodes&lt;br /&gt;
re0: All nodes synced&lt;br /&gt;
Software rollback succeeded.&lt;br /&gt;
NOTICE :&lt;br /&gt;
'pending' rollback version will be activated at next reboot...&lt;br /&gt;
WARNING: Configuration changes made after this point will not be validated.&lt;br /&gt;
WARNING: Target image will be booted with the latest configuration. Changing configuration now may be risky.&lt;br /&gt;
bryan@TAMSFLDE-QFX7&amp;gt; request system reboot&lt;br /&gt;
The entire system (all nodes) will reboot causing traffic loss, do you wish to continue? [yes, nol (no) yes&lt;br /&gt;
*** System&lt;br /&gt;
shutdown message from root@TAMSFLDE-QFX7 ***&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Junos_Evo&amp;diff=8500</id>
		<title>Junos Evo</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Junos_Evo&amp;diff=8500"/>
		<updated>2026-07-30T07:54:49Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Created page with &amp;quot;Page on Juniper OS Evolved  Basically juniper laid an egg with this.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Page on Juniper OS Evolved&lt;br /&gt;
&lt;br /&gt;
Basically juniper laid an egg with this.&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=User_talk:KD8AKE&amp;diff=8499</id>
		<title>User talk:KD8AKE</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=User_talk:KD8AKE&amp;diff=8499"/>
		<updated>2026-07-13T19:43:14Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''W9CR''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Bryan|Bryan]] ([[User talk:Bryan|talk]]) 15:43, 13 July 2026 (EDT)&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=User:KD8AKE&amp;diff=8498</id>
		<title>User:KD8AKE</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=User:KD8AKE&amp;diff=8498"/>
		<updated>2026-07-13T19:43:13Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ham radio operator since 2004, KD8AKE. Also have 2 GMRS repeaters on the air, WRBK665. Have been building and experimenting with radio all of my life.&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=User_talk:Friendlybob&amp;diff=8497</id>
		<title>User talk:Friendlybob</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=User_talk:Friendlybob&amp;diff=8497"/>
		<updated>2026-07-06T04:25:56Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''W9CR''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Bryan|Bryan]] ([[User talk:Bryan|talk]]) 00:25, 6 July 2026 (EDT)&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=User:Friendlybob&amp;diff=8496</id>
		<title>User:Friendlybob</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=User:Friendlybob&amp;diff=8496"/>
		<updated>2026-07-06T04:25:55Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Retired FF with 27 years service. 3rd generation FF. Now just a radio and scanner buff. I watched a programmer program the radio in a new rig and became hooked!!&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=User:W5DTW&amp;diff=8494</id>
		<title>User:W5DTW</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=User:W5DTW&amp;diff=8494"/>
		<updated>2026-07-06T04:25:35Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Amateur radio operator W5DTW &lt;br /&gt;
 I live in Papalote, TX &lt;br /&gt;
Among other things I refurbish Motorola Astro Spectra radios for volunteer first responders&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=User_talk:W5DTW&amp;diff=8495</id>
		<title>User talk:W5DTW</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=User_talk:W5DTW&amp;diff=8495"/>
		<updated>2026-07-06T04:25:35Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''W9CR''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Bryan|Bryan]] ([[User talk:Bryan|talk]]) 00:25, 6 July 2026 (EDT)&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=User_talk:KF0PZ&amp;diff=8493</id>
		<title>User talk:KF0PZ</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=User_talk:KF0PZ&amp;diff=8493"/>
		<updated>2026-07-06T04:25:12Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to ''W9CR''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Bryan|Bryan]] ([[User talk:Bryan|talk]]) 00:25, 6 July 2026 (EDT)&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=User:KF0PZ&amp;diff=8492</id>
		<title>User:KF0PZ</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=User:KF0PZ&amp;diff=8492"/>
		<updated>2026-07-06T04:25:11Z</updated>

		<summary type="html">&lt;p&gt;Bryan: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Long time ham and executive in commercial and ham radio companies in the USA.  Retired now. &lt;br /&gt;
&lt;br /&gt;
Hold Amateur extra class, and GROL in addition to GMRS Radio License.   &lt;br /&gt;
&lt;br /&gt;
KF0PZ is Amateur license.  My call sign will bring up a couple of sites with more info on my self and my address in Maricopa Az.&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8491</id>
		<title>Macbook Neo</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8491"/>
		<updated>2026-06-12T15:53:55Z</updated>

		<summary type="html">&lt;p&gt;Bryan: /* FLASH */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Macbook Neo Info&lt;br /&gt;
&lt;br /&gt;
= FLASH = &lt;br /&gt;
&lt;br /&gt;
The Neo ships with a BGA315 529 x 358 (13.4 x 9.10mm ) chip.  SDMVGKLK8 512G / A1SDF(R,B,8)LG117G8591264AW or K5A4 &lt;br /&gt;
&lt;br /&gt;
The 2 TB BGA 315 is &amp;lt;s&amp;gt;529 x 440 x 052 (13.40 x 11.20 x 1.32 mm)&amp;lt;/s&amp;gt; .5240-.5242&amp;quot; by .4384-.4385&amp;quot; (13.310-13.315 mm x 11.135-11.138 mm) K6B3R83819JA12249&lt;br /&gt;
&lt;br /&gt;
may be 528/528.5/529 x 439/438.5 11.1379&lt;br /&gt;
&lt;br /&gt;
bga is 412.5 x 294&lt;br /&gt;
&lt;br /&gt;
The 1tb K8A5 chip is reported to work. This would be from the iPhone 16 1tb. &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=bIeEGeTd5DE&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8490</id>
		<title>Macbook Neo</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8490"/>
		<updated>2026-05-30T01:11:15Z</updated>

		<summary type="html">&lt;p&gt;Bryan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Macbook Neo Info&lt;br /&gt;
&lt;br /&gt;
= FLASH = &lt;br /&gt;
&lt;br /&gt;
The Neo ships with a BGA315 529 x 358 (13.4 x 9.10mm ) chip.  SDMVGKLK8 512G / A1SDF(R,B,8)LG117G8591264AW or K5A4 &lt;br /&gt;
&lt;br /&gt;
The 2 TB BGA 315 is 529 x 440 x 052 (13.40 x 11.20 x 1.32 mm) K6B3R83819JA12249&lt;br /&gt;
&lt;br /&gt;
may be 528/528.5/529 x 439/438.5 11.1379&lt;br /&gt;
&lt;br /&gt;
bga is 412.5 x 294&lt;br /&gt;
&lt;br /&gt;
The 1tb K8A5 chip is reported to work. This would be from the iPhone 16 1tb. &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=bIeEGeTd5DE&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8489</id>
		<title>Macbook Neo</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8489"/>
		<updated>2026-05-30T01:07:05Z</updated>

		<summary type="html">&lt;p&gt;Bryan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Macbook Neo Info&lt;br /&gt;
&lt;br /&gt;
= FLASH = &lt;br /&gt;
&lt;br /&gt;
The Neo ships with a BGA315 529 x 358 (13.4 x 9.10mm ) chip.  SDMVGKLK8 512G / A1SDF(R,B,8)LG117G8591264AW or K5A4 &lt;br /&gt;
&lt;br /&gt;
The 2 TB BGA 315 is 529 x 440 x 052 (13.40 x 11.20 x 1.32 mm) K6B3R83819JA12249&lt;br /&gt;
&lt;br /&gt;
may be 528/528.5/529 x 439/438.5 11.1379&lt;br /&gt;
&lt;br /&gt;
The 1tb K8A5 chip is reported to work. This would be from the iPhone 16 1tb. &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=bIeEGeTd5DE&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8488</id>
		<title>Macbook Neo</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8488"/>
		<updated>2026-05-21T05:02:02Z</updated>

		<summary type="html">&lt;p&gt;Bryan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Macbook Neo Info&lt;br /&gt;
&lt;br /&gt;
= FLASH = &lt;br /&gt;
&lt;br /&gt;
The Neo ships with a BGA315 529 x 358 (13.4 x 9.10mm ) chip.  SDMVGKLK8 512G / A1SDF(R,B,8)LG117G8591264AW or K5A4 &lt;br /&gt;
&lt;br /&gt;
The 2 TB BGA 315 is 529 x 440 x 052 (13.40 x 11.20 x 1.32 mm) K6B3R83819JA12249&lt;br /&gt;
&lt;br /&gt;
The 1tb K8A5 chip is reported to work. This would be from the iPhone 16 1tb. &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=bIeEGeTd5DE&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8487</id>
		<title>Macbook Neo</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=Macbook_Neo&amp;diff=8487"/>
		<updated>2026-05-21T03:17:02Z</updated>

		<summary type="html">&lt;p&gt;Bryan: /* FLASH */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Macbook Neo Info&lt;br /&gt;
&lt;br /&gt;
= FLASH = &lt;br /&gt;
&lt;br /&gt;
The Neo ships with a BGA315 529 x 358 (13.4 x 9.10mm ) chip.  SDMVGKLK8 512G / A1SDF(R,B,8)LG117G8591264AW or K5A4 &lt;br /&gt;
&lt;br /&gt;
The 2 TB BGA 315 is 529 x 440 (13.40 x 11.20) K6B3R83819JA12249&lt;br /&gt;
&lt;br /&gt;
The 1tb K8A5 chip is reported to work. This would be from the iPhone 16 1tb. &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=bIeEGeTd5DE&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=EATM&amp;diff=8486</id>
		<title>EATM</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=EATM&amp;diff=8486"/>
		<updated>2026-05-19T19:08:21Z</updated>

		<summary type="html">&lt;p&gt;Bryan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:SABER]]&lt;br /&gt;
[[Category:Motorola]]&lt;br /&gt;
[[Category:Motorola-SP]]&lt;br /&gt;
[[Category:EATM]]&lt;br /&gt;
Motorola EATM&lt;br /&gt;
&lt;br /&gt;
Unsure what this is, it appears to be some sort of satellite receiver and a [[SABER]] transmitter in a briefcase.  Circa 1997 based on the date codes.  Looks like it's designed for digital data.  The RX and TX side are not coupled internally, there are D-SUB connectors which presumably would couple them via an external device.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=packed-hover&amp;gt;&lt;br /&gt;
Motorola_EATM-001.jpg&lt;br /&gt;
Motorola_EATM-002.jpg&lt;br /&gt;
Motorola_EATM-003.jpg&lt;br /&gt;
Motorola_EATM-004.jpg&lt;br /&gt;
Motorola_EATM-005.jpg&lt;br /&gt;
Motorola_EATM-006.jpg&lt;br /&gt;
Motorola_EATM-007.jpg&lt;br /&gt;
Motorola_EATM-008.jpg&lt;br /&gt;
Motorola_EATM-009.jpg&lt;br /&gt;
Motorola_EATM-0010.jpg&lt;br /&gt;
Motorola_EATM-0011.jpg&lt;br /&gt;
Motorola_EATM-0012.jpg&lt;br /&gt;
Motorola_EATM-0013.jpg&lt;br /&gt;
Motorola_EATM-0014.jpg&lt;br /&gt;
Motorola_EATM-0015.jpg&lt;br /&gt;
Motorola_EATM-0016.jpg&lt;br /&gt;
Motorola_EATM-0017.jpg&lt;br /&gt;
Motorola_EATM-0018.jpg&lt;br /&gt;
Motorola_EATM-0019.jpg&lt;br /&gt;
Motorola_EATM-0020.jpg&lt;br /&gt;
Motorola_EATM-0021.jpg&lt;br /&gt;
Motorola_EATM-0022.jpg&lt;br /&gt;
Motorola_EATM-0023.jpg&lt;br /&gt;
Motorola_EATM-0024.jpg&lt;br /&gt;
Motorola_EATM-0025.jpg&lt;br /&gt;
Motorola_EATM-0026.jpg&lt;br /&gt;
Motorola_EATM-0027.jpg&lt;br /&gt;
Motorola_EATM-0028.jpg&lt;br /&gt;
Motorola_EATM-0029.jpg&lt;br /&gt;
Motorola_EATM-0030.jpg&lt;br /&gt;
Motorola_EATM-0031.jpg&lt;br /&gt;
Motorola_EATM-0032.jpg&lt;br /&gt;
Motorola_EATM-0033.jpg&lt;br /&gt;
Motorola_EATM-0034.jpg&lt;br /&gt;
Motorola_EATM-0035.jpg&lt;br /&gt;
Motorola_EATM-0036.jpg&lt;br /&gt;
Motorola_EATM-0037.jpg&lt;br /&gt;
Motorola_EATM-0038.jpg&lt;br /&gt;
Motorola_EATM-0039.jpg&lt;br /&gt;
Motorola_EATM-0040.jpg&lt;br /&gt;
Motorola_EATM-0041.jpg&lt;br /&gt;
Motorola_EATM-0042.jpg&lt;br /&gt;
Motorola_EATM-0043.jpg&lt;br /&gt;
Motorola_EATM-0044.jpg&lt;br /&gt;
Motorola_EATM-0045.jpg&lt;br /&gt;
Motorola_EATM-0046.jpg&lt;br /&gt;
Motorola_EATM-0048.jpg&lt;br /&gt;
Motorola_EATM-0049.jpg&lt;br /&gt;
Motorola_EATM-0050.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0050.jpg&amp;diff=8485</id>
		<title>File:Motorola EATM-0050.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0050.jpg&amp;diff=8485"/>
		<updated>2026-05-19T19:07:43Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 19:38:10&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775831|-82.644067|heading:272.9837340876945}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0049.jpg&amp;diff=8483</id>
		<title>File:Motorola EATM-0049.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0049.jpg&amp;diff=8483"/>
		<updated>2026-05-19T19:07:41Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 19:38:05&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775822|-82.644067|heading:261.50634765625}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0048.jpg&amp;diff=8484</id>
		<title>File:Motorola EATM-0048.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0048.jpg&amp;diff=8484"/>
		<updated>2026-05-19T19:07:41Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 19:38:00&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.7758|-82.644067|heading:357.6056210335449}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0046.jpg&amp;diff=8482</id>
		<title>File:Motorola EATM-0046.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0046.jpg&amp;diff=8482"/>
		<updated>2026-05-19T19:07:40Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 18:19:29&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775786|-82.64405|heading:257.67756653992393}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0044.jpg&amp;diff=8480</id>
		<title>File:Motorola EATM-0044.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0044.jpg&amp;diff=8480"/>
		<updated>2026-05-19T19:07:38Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 18:03:02&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775811|-82.644042|heading:235.3636474609375}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0045.jpg&amp;diff=8481</id>
		<title>File:Motorola EATM-0045.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0045.jpg&amp;diff=8481"/>
		<updated>2026-05-19T19:07:38Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 18:19:17&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775806|-82.64405|heading:172.446075303127}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0043.jpg&amp;diff=8479</id>
		<title>File:Motorola EATM-0043.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0043.jpg&amp;diff=8479"/>
		<updated>2026-05-19T19:07:37Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 18:02:58&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775811|-82.644042|heading:238.25115970841617}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0041.jpg&amp;diff=8477</id>
		<title>File:Motorola EATM-0041.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0041.jpg&amp;diff=8477"/>
		<updated>2026-05-19T19:07:36Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 18:02:40&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.7758|-82.644042|heading:191.9142685851319}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0042.jpg&amp;diff=8478</id>
		<title>File:Motorola EATM-0042.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0042.jpg&amp;diff=8478"/>
		<updated>2026-05-19T19:07:36Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 18:02:49&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775806|-82.644036|heading:151.08280945154996}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0040.jpg&amp;diff=8476</id>
		<title>File:Motorola EATM-0040.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0040.jpg&amp;diff=8476"/>
		<updated>2026-05-19T19:07:35Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 18:00:09&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775786|-82.644067|heading:143.9982603653233}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0039.jpg&amp;diff=8475</id>
		<title>File:Motorola EATM-0039.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0039.jpg&amp;diff=8475"/>
		<updated>2026-05-19T19:07:34Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:59:59&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775794|-82.644067|heading:130.59034726309594}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0038.jpg&amp;diff=8474</id>
		<title>File:Motorola EATM-0038.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0038.jpg&amp;diff=8474"/>
		<updated>2026-05-19T19:07:33Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:59:57&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775797|-82.644058|heading:131.9764405336361}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0037.jpg&amp;diff=8473</id>
		<title>File:Motorola EATM-0037.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0037.jpg&amp;diff=8473"/>
		<updated>2026-05-19T19:07:32Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:58:37&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775811|-82.644067|heading:207.76573161485973}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0035.jpg&amp;diff=8471</id>
		<title>File:Motorola EATM-0035.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0035.jpg&amp;diff=8471"/>
		<updated>2026-05-19T19:07:31Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:58:33&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775814|-82.644058|heading:203.78963472939375}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0036.jpg&amp;diff=8472</id>
		<title>File:Motorola EATM-0036.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0036.jpg&amp;diff=8472"/>
		<updated>2026-05-19T19:07:31Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:58:35&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775811|-82.644067|heading:205.2000962000962}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0034.jpg&amp;diff=8470</id>
		<title>File:Motorola EATM-0034.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0034.jpg&amp;diff=8470"/>
		<updated>2026-05-19T19:07:30Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:58:03&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775817|-82.64405|heading:190.76837154614933}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0032.jpg&amp;diff=8468</id>
		<title>File:Motorola EATM-0032.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0032.jpg&amp;diff=8468"/>
		<updated>2026-05-19T19:07:28Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:48:02&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.7758|-82.644058|heading:188.6183856502242}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0033.jpg&amp;diff=8469</id>
		<title>File:Motorola EATM-0033.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0033.jpg&amp;diff=8469"/>
		<updated>2026-05-19T19:07:28Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:48:05&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.7758|-82.644058|heading:188.0940934065934}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0031.jpg&amp;diff=8467</id>
		<title>File:Motorola EATM-0031.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0031.jpg&amp;diff=8467"/>
		<updated>2026-05-19T19:07:27Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:47:57&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.7758|-82.64405|heading:185.26554856743536}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0029.jpg&amp;diff=8465</id>
		<title>File:Motorola EATM-0029.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0029.jpg&amp;diff=8465"/>
		<updated>2026-05-19T19:07:26Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:45:45&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775758|-82.644067|heading:241.86024498886414}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0030.jpg&amp;diff=8466</id>
		<title>File:Motorola EATM-0030.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0030.jpg&amp;diff=8466"/>
		<updated>2026-05-19T19:07:26Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:45:59&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775778|-82.644072|heading:219.44514435695538}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0028.jpg&amp;diff=8464</id>
		<title>File:Motorola EATM-0028.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0028.jpg&amp;diff=8464"/>
		<updated>2026-05-19T19:07:25Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:45:43&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775761|-82.644067|heading:222.53860465116279}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0027.jpg&amp;diff=8462</id>
		<title>File:Motorola EATM-0027.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0027.jpg&amp;diff=8462"/>
		<updated>2026-05-19T19:07:24Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:45:40&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775772|-82.644067|heading:141.08251561106155}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0026.jpg&amp;diff=8463</id>
		<title>File:Motorola EATM-0026.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0026.jpg&amp;diff=8463"/>
		<updated>2026-05-19T19:07:24Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:45:31&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775769|-82.644058|heading:223.28128031037826}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0025.jpg&amp;diff=8461</id>
		<title>File:Motorola EATM-0025.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0025.jpg&amp;diff=8461"/>
		<updated>2026-05-19T19:07:22Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:45:27&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775769|-82.64405|heading:182.6474686483976}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0023.jpg&amp;diff=8459</id>
		<title>File:Motorola EATM-0023.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0023.jpg&amp;diff=8459"/>
		<updated>2026-05-19T19:07:21Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:45:20&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775764|-82.64405|heading:202.83070388349515}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0024.jpg&amp;diff=8460</id>
		<title>File:Motorola EATM-0024.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0024.jpg&amp;diff=8460"/>
		<updated>2026-05-19T19:07:21Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:45:24&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775764|-82.64405|heading:185.94908896034298}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0022.jpg&amp;diff=8458</id>
		<title>File:Motorola EATM-0022.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0022.jpg&amp;diff=8458"/>
		<updated>2026-05-19T19:07:20Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:43:40&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775764|-82.644042|heading:189.7472150814053}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0021.jpg&amp;diff=8457</id>
		<title>File:Motorola EATM-0021.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0021.jpg&amp;diff=8457"/>
		<updated>2026-05-19T19:07:19Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:43:13&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775778|-82.64405|heading:182.49256900212313}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0019.jpg&amp;diff=8455</id>
		<title>File:Motorola EATM-0019.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0019.jpg&amp;diff=8455"/>
		<updated>2026-05-19T19:07:18Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:43:06&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775772|-82.644042|heading:163.34477990320352}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0020.jpg&amp;diff=8456</id>
		<title>File:Motorola EATM-0020.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0020.jpg&amp;diff=8456"/>
		<updated>2026-05-19T19:07:18Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:43:08&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775775|-82.644042|heading:163.37062077443147}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0017.jpg&amp;diff=8453</id>
		<title>File:Motorola EATM-0017.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.w9cr.net/index.php?title=File:Motorola_EATM-0017.jpg&amp;diff=8453"/>
		<updated>2026-05-19T19:07:16Z</updated>

		<summary type="html">&lt;p&gt;Bryan: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Motorola EATM}}&lt;br /&gt;
|date=2026-05-18 17:42:20&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Bryan|Bryan]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
{{Location|27.775775|-82.64405|heading:162.37050623624359}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:EATM]]&lt;/div&gt;</summary>
		<author><name>Bryan</name></author>
		
	</entry>
</feed>