www.data-alliance.net Open in urlscan Pro
35.186.223.98  Public Scan

URL: https://www.data-alliance.net/antenna-LTE-4G-5dbi-3g-omni-directional
Submission: On January 28 via manual from AU — Scanned from IT

Form analysis 7 forms found in the DOM

/search.php

<form class="form" action="/search.php">
  <fieldset class="form-fieldset">
    <div class="form-field">
      <label class="is-srOnly" for="search_query">Search</label>
      <input class="form-input" data-search-quick="" name="search_query" id="search_query" data-error-message="Search field cannot be empty." placeholder="Search the store" autocomplete="off">
    </div>
  </fieldset>
  <button class="QuickSearchButton" type="submit" name="searchbtn"><img src="https://cdn11.bigcommerce.com/s-blpsc02m/stencil/5603e510-00d9-013a-420b-2a7fc68f3254/e/5901d080-22a0-013a-3224-5aa1116e726a/img/Search.png" alt="search"></button>
</form>

/search.php

<form class="form SkuSearchbox" action="/search.php">
  <fieldset class="form-fieldset">
    <div class="form-field">
      <label class="form-label is-srOnly" for="search_query_adv">Search Keyword:</label>
      <input class="form-input searchbox_query_sku" id="" name="search_query_adv" value="" placeholder="Search By SKU">
    </div>
  </fieldset>
</form>

/search.php

<form class="form" action="/search.php">
  <fieldset class="form-fieldset">
    <div class="form-field">
      <label class="is-srOnly" for="search_query">Search</label>
      <input class="form-input" data-search-quick="" name="search_query" id="search_query" data-error-message="Search field cannot be empty." placeholder="Search the store" autocomplete="off">
    </div>
  </fieldset>
  <button class="QuickSearchButton" type="submit" name="searchbtn"><img src="https://cdn11.bigcommerce.com/s-blpsc02m/stencil/5603e510-00d9-013a-420b-2a7fc68f3254/e/5901d080-22a0-013a-3224-5aa1116e726a/img/Search.png" alt="search"></button>
</form>

/search.php

<form class="form SkuSearch" action="/search.php">
  <fieldset class="form-fieldset">
    <div class="form-field">
      <label class="form-label is-srOnly" for="search_query_adv">Search Keyword:</label>
      <input class="form-input search_query_sku" id="" name="search_query_adv" value="" placeholder="Search By SKU">
    </div>
  </fieldset>
  <button class="QuickSearchButton" type="submit" name="searchbtn"><img src="https://cdn11.bigcommerce.com/s-blpsc02m/stencil/5603e510-00d9-013a-420b-2a7fc68f3254/e/5901d080-22a0-013a-3224-5aa1116e726a/img/Search.png" alt="search"></button>
</form>

POST https://www.data-alliance.net/cart.php

<form class="form" method="post" action="https://www.data-alliance.net/cart.php" enctype="multipart/form-data" data-cart-item-add="">
  <input type="hidden" name="action" value="add">
  <input type="hidden" name="product_id" value="2130">
  <div data-product-option-change="" style="">
    <div class="form-field form-field-rp-sma-or-sma-connector" data-product-attribute="set-radio">
      <label class="form-label form-label--alternate form-label--inlineSmall">
        <small>*</small> RP-SMA or SMA Connector:: </label>
      <div class="form-options-wrap">
        <input class="form-radio" type="radio" id="attribute_radio_5943_3835" data-opt-name-id="5943" name="attribute[5943]" value="3835" checked="" data-default="" required="" data-state="true">
        <label data-product-attribute-value="3835" class="form-label" for="attribute_radio_5943_3835">RP-SMA male</label>
        <input class="form-radio" type="radio" id="attribute_radio_5943_3836" data-opt-name-id="5943" name="attribute[5943]" value="3836" required="" data-state="false">
        <label data-product-attribute-value="3836" class="form-label" for="attribute_radio_5943_3836">SMA male</label>
      </div>
    </div>
    <div class="form-field form-field-length-of-cable" data-product-attribute="set-radio">
      <label class="form-label form-label--alternate form-label--inlineSmall">
        <small>*</small> Length of Cable: </label>
      <div class="form-options-wrap">
        <input class="form-radio" type="radio" id="attribute_radio_6005_4123" data-opt-name-id="6005" name="attribute[6005]" value="4123" checked="" data-default="" required="" data-state="true">
        <label data-product-attribute-value="4123" class="form-label" for="attribute_radio_6005_4123">5FT</label>
        <input class="form-radio" type="radio" id="attribute_radio_6005_4124" data-opt-name-id="6005" name="attribute[6005]" value="4124" required="" data-state="false">
        <label data-product-attribute-value="4124" class="form-label" for="attribute_radio_6005_4124">2FT</label>
      </div>
    </div>
    <script type="text/javascript">
      $('.form-field-cable-length input.form-radio').change(function(e) {
        var values = {};
        var $thisDiv = $(this);
        var attrID = $thisDiv.attr('data-opt-name-id');
        var optID = $thisDiv.val();
        var productID = '2130';
        values['action'] = 'add';
        values['attribute[' + attrID + ']'] = optID;
        $('.form-field-gold-or-nickel input.form-radio').each(function() {
          var $thisDiv = $(this);
          var attrID = $thisDiv.attr('data-opt-name-id');
          var optID = $thisDiv.val();
          values['attribute[' + attrID + ']'] = optID;
          values['product_id'] = productID;
          $.ajax({
            type: "POST",
            url: "/remote/v1/product-attributes/" + productID,
            data: values,
            headers: {
              'x-xsrf-token': BCData.csrf_token,
            },
            dataType: "json",
            success: function(response) {
              var getSKU = response.data.sku;
              var getStock = response.data.stock;
              if (getStock == 0) {
                $thisDiv.prop('disabled', true);
                $thisDiv.next().addClass('unavailable');
              } else {
                $thisDiv.prop('disabled', false);
                $thisDiv.next().removeClass('unavailable');
              }
            }
          });
        });
      });
      $('.form-field-gold-or-nickel input.form-radio').change(function(e) {
        var values = {};
        var $thisDiv = $(this);
        var attrID = $thisDiv.attr('data-opt-name-id');
        var optID = $thisDiv.val();
        var productID = '2130';
        values['action'] = 'add';
        values['attribute[' + attrID + ']'] = optID;
        $('.form-field-cable-length input.form-radio').each(function() {
          var $thisDiv = $(this);
          var attrID = $thisDiv.attr('data-opt-name-id');
          var optID = $thisDiv.val();
          values['attribute[' + attrID + ']'] = optID;
          values['product_id'] = productID;
          $.ajax({
            type: "POST",
            url: "/remote/v1/product-attributes/" + productID,
            data: values,
            headers: {
              'x-xsrf-token': BCData.csrf_token,
            },
            dataType: "json",
            success: function(response) {
              var getSKU = response.data.sku;
              var getStock = response.data.stock;
              if (getStock == 0) {
                $thisDiv.prop('disabled', true);
                $thisDiv.next().addClass('unavailable');
              } else {
                $thisDiv.prop('disabled', false);
                $thisDiv.next().removeClass('unavailable');
              }
            }
          });
        });
      });
    </script>
  </div>
  <div class="form-field form-field--stock u-hiddenVisually" style="display:none;">
    <label class="form-label form-label--alternate"> Current Stock: <span data-product-stock=""></span>
    </label>
  </div>
  <div class="form-field form-field--increments">
    <label class="form-label form-label--alternate" for="qty[]">Quantity:</label>
    <div class="form-increment" data-quantity-change="">
      <!--button class="button button--icon" data-action="dec">
                    <span class="is-srOnly">Decrease Quantity:</span>
                    <i class="icon" aria-hidden="true">
                        <svg>
                            <use xlink:href="#icon-keyboard-arrow-down"/>
                        </svg>
                    </i>
                </button-->
      <input class="form-input form-input--incrementTotal" id="qty[]" name="qty[]" type="tel" value="1" data-quantity-min="0" data-quantity-max="0" min="1" pattern="[0-9]*" aria-live="polite"
        style="border:1px solid #999999; padding:3px 10px; font-size:12px; width:5rem">
      <!--button class="button button--icon" data-action="inc">
                    <span class="is-srOnly">Increase Quantity:</span>
                    <i class="icon" aria-hidden="true">
                        <svg>
                            <use xlink:href="#icon-keyboard-arrow-up"/>
                        </svg>
                    </i>
                </button-->
    </div>
  </div>
  <div class="alertBox productAttributes-message" style="display:none">
    <div class="alertBox-column alertBox-icon">
      <icon glyph="ic-success" class="icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
          <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"></path>
        </svg></icon>
    </div>
    <p class="alertBox-column alertBox-message"></p>
  </div>
  <div class="form-action">
    <input id="form-action-addToCart" data-wait-message="Adding to cart…" class="button button--primary" type="submit" value="Add to Cart">
  </div>
</form>

POST /wishlist.php?action=add&product_id=2130

<form action="/wishlist.php?action=add&amp;product_id=2130" class="form form-wishlist form-action" data-wishlist-add="" method="post">
  <a aria-controls="wishlist-dropdown" aria-expanded="false" class="button dropdown-menu-button" data-dropdown="wishlist-dropdown">
        <span>Add to Wish List</span>
        <i aria-hidden="true" class="icon">
            <svg>
                <use xlink:href="#icon-chevron-down"></use>
            </svg>
        </i>
    </a>
  <ul aria-hidden="true" class="dropdown-menu" data-dropdown-content="" id="wishlist-dropdown" tabindex="-1">
    <li>
      <input class="button" type="submit" value="Add to My Wish List">
    </li>
    <li>
      <a data-wishlist="" class="button" href="/wishlist.php?action=addwishlist&amp;product_id=2130">Create New Wish List</a>
    </li>
  </ul>
</form>

POST /postreview.php

<form class="form writeReview-form" action="/postreview.php" method="post">
  <fieldset class="form-fieldset">
    <div class="form-field form-field--select">
      <label class="form-label" for="rating-rate">Rating <small>Required</small>
      </label>
      <!-- Stars -->
      <!-- TODO: Review Stars need to be componentised, both for display and input -->
      <select id="rating-rate" class="form-select" name="revrating">
        <option value="">Select Rating</option>
        <option value="1">1 star (worst)</option>
        <option value="2">2 stars</option>
        <option value="3">3 stars (average)</option>
        <option value="4">4 stars</option>
        <option value="5">5 stars (best)</option>
      </select>
    </div>
    <!-- Name -->
    <div class="form-field form-field--input form-field--inputText" id="revfromname" data-validation="">
      <label class="form-label" for="revfromname_input">Name </label>
      <input type="text" id="revfromname_input" data-label="Name" name="revfromname" class="form-input" aria-required="">
    </div>
    <!-- Email -->
    <div class="form-field form-field--input form-field--inputText" id="email" data-validation="">
      <label class="form-label" for="email_input">Email <small>Required</small>
      </label>
      <input type="text" id="email_input" data-label="Email" name="email" class="form-input" aria-required="false">
    </div>
    <!-- Review Subject -->
    <div class="form-field form-field--input form-field--inputText" id="revtitle" data-validation="">
      <label class="form-label" for="revtitle_input">Review Subject <small>Required</small>
      </label>
      <input type="text" id="revtitle_input" data-label="Review Subject" name="revtitle" class="form-input" aria-required="true">
    </div>
    <!-- Comments -->
    <div class="form-field form-field--textarea" id="revtext" data-validation="">
      <label class="form-label" for="revtext_input">Comments <small>Required</small>
      </label>
      <textarea name="revtext" id="revtext_input" data-label="Comments" rows="" aria-required="true" class="form-input"></textarea>
    </div>
    <div class="g-recaptcha" data-sitekey="6LcjX0sbAAAAACp92-MNpx66FT4pbIWh-FTDmkkz">
      <div style="width: 304px; height: 78px;">
        <div><iframe title="reCAPTCHA"
            src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6LcjX0sbAAAAACp92-MNpx66FT4pbIWh-FTDmkkz&amp;co=aHR0cHM6Ly93d3cuZGF0YS1hbGxpYW5jZS5uZXQ6NDQz&amp;hl=it&amp;v=dPctOHA2ifhWm5WzFM_B5TjT&amp;size=normal&amp;cb=97umsm5m39yi"
            width="304" height="78" role="presentation" name="a-vhd2oqyhm00l" frameborder="0" scrolling="no" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox"></iframe>
        </div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response"
          style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
      </div><iframe style="display: none;"></iframe>
    </div><br>
    <div class="form-field form-field--submit">
      <input type="submit" class="button button--primary" value="Submit Review">
    </div>
    <input type="hidden" name="product_id" value="2130">
    <input type="hidden" name="action" value="post_review">
  </fieldset>
</form>

Text Content

Toggle menu
Cart 0

Search

Search Keyword:
   Antenna Cables & Adapters Antenna Cables & Adapters
    * All Antenna Cables & Adapters
    * Adapters for Antenna Cables
      * Adapters with RP-SMA connector(s)
      * Adapters with SMA connector(s)
      * U.FL Adapters
      * Adapters with N connector(s)
      * Adapters w/RP-TNC Connector(s)
      * Adapters w/ TNC connector
      * Adapters with BNC connector(s)
      * Adapters with MCX connector
    * BNC Cables & Adapters
    * FAKRA Cables & Adapters
    * MCX Cables & Adapters
    * MHF Series: MHF1 MHF3 MHF4
      * MHF1 Cables (MHF1 = MHF)
      * MHF3 Cables / MHF3 = MHF III
      * MHF4 Cables & Adapters
    * MMCX Cables & Adapters
      * MMCX to N Cables
      * MMCX to RP SMA Cables
      * MMCX to SMA Cables
      * MMCX to U.FL Cables
    * N Cables & Adapters
      * N Adapters (Type N)
      * N Extension Cables: Male to Female
      * N Male To N Male
      * N Female to RP SMA
      * N Male to RP SMA Male
      * N to SMA Cables & Adapters
      * N to MHF4 Cables
      * N to MMCX Cables
      * N to RP-TNC and TNC
      * N to U.FL Cables
    * RP-SMA Cables & Adapters
      * RP-SMA Adapters
      * RP-SMA Extension cables
        * RP-SMA Extension Cables: 2-inch to 10.5-FT
        * RP-SMA Extension Cables: 11-FT and Up+
        * RP-SMA Ext Cables: Right-Angle on both ends
        * RP-SMA Ext: One Right-Angle, One Straight
      * RP-SMA Right Angle Cables & Adapters
        * RP-SMA Cables: Right-Angle on both sides
        * Adapters: RP-SMA Right-Angle to RP-SMA
      * RP-SMA to SMA
      * RP-SMA to N
      * RP-SMA Cables: Right-Angle on one side
      * RP-SMA to MMCX
      * RP SMA male to male
      * RP SMA to U.FL
      * RP-SMA to MHF4
      * RP-SMA Female to Female
      * RP-SMA to BNC
      * RP-SMA to MCX Cables
      * RP-SMA to RP-TNC
      * RP-SMA to W.FL Cables
      * Dust Cover for SMA & RP-SMA-female
    * SMA Cables & Adapters
      * SMA Extension Cables
        * SMA Extension Cables: 7-feet to 50+ feet
        * SMA Ext Cables: Right-Angle on Both Ends
        * SMA Ext Cables: One Right-Angle, One Straight
        * SMA Extension Cables: 3-inch to 6-feet
      * Adapters with SMA connector(s)
      * SMA Right-Angle Cables & Adapters
      * SMA to MMCX Cables
      * SMA to N
      * SMA to U.FL
      * SMA to MHF4
      * SMA male to SMA male cables
      * SMA female to SMA female
      * SMA to RP SMA
      * SMA to FME
      * Dust Cover for SMA & RP-SMA-female
    * RP-TNC Cables & Adapters
      * RP-TNC Adapters
      * RP TNC Extension Cables
      * RP-TNC Male to Male Cables
      * RP-TNC to RP-SMA cables
    * U.FL Cables & Adapters
      * U.FL Adapters to SMA and RP-SMA
      * U.FL to N Cables
      * U.FL to RP SMA Cables
      * U.FL to U.FL Cables
      * U.FL to SMA Cables
      * U.FL to FME Cables
      * U.FL to MMCX Cables
    * FME Cables & Adapters
      * FME to FME Cables
      * FME to SMA Cables & Adapters
    * TS-9 Cables
    * W.FL Cables
    * TNC Cables & Adapters
    * GPS antenna cables
    * Antenna Connectors Weatherproofing
    * With Magnetic base
    * Tools for Antenna Cables
   
   Antennas Antennas
    * All Antennas
    * 2.4GHz WiFi, Bluetooth, ISM
      * Directional 2.4GHz Antennas
        * Patch, Panel, Sectoral Antennas
        * Yagi Antennas
      * Omni-Directional 2.4GHz WiFi Antennas
        * Magnetic-Mount WiFi Antennas
      * Bluetooth Antennas
    * WiFi 6 Antennas
      * Directional WiFi 6 Antennas
      * Omnidirectional WiFi 6 Antennas
    * 5GHz: 4.9~6.0GHz Antennas
      * Omni-Directional 5GHz Antennas
      * Dual Polarity 5GHz Antennas
    * Dual Band 2.4GHz 5GHz
    * GPS Antennas
    * Combo Antennas: LTE/4G, WiFi, GPS, 3G / GSM
    * LoRa Antennas: LoRaWAN | Long-Range IoT
    * LTE 4G 5G 3G GSM Cellular MultiBand Antennas
      * 850MHz to 950MHz Antennas: Helium, LoRa, GSM 3G
      * Dual Band 700-960MHz & 1700-2700MHz
      * 5G and WiMax Antennas: 698 MHz to 5GHz
    * Antennas By Connector Type
      * Antennas with RP-SMA connector
        * 2.4GHz WiFi Antennas w/ RP-SMA
        * 5GHz Antennas w/ RP-SMA
        * 850-950MHz Antennas w/RP-SMA
        * Dual Band 2.4GHz 5GHz w/ RP-SMA
      * SMA Connector - Antennas with
      * Antennas with N-female Connector
      * Antennas with N-male Connector
      * MMCX connector
      * RP-TNC connector - Antennas with
      * TNC-male Connector - Antennas with
      * U.FL connector - Antennas with
      * FME Connector
    * 412-440MHz Antennas
    * Omni-Directional Antennas: Dipole / Rubber Duck
      * Dipole Antennas: 2.4GHz
      * Dipole Antennas: 5GHz
      * Dipole Antennas: Dual Band 2.4GHz & 5GHz
      * Dipole Antennas: 900MHz
    * Through-Hole Mount Antennas
    * Vehicle Antennas
    * MultiBand 698-2800MHz
    * WeatherProof & Marine Antennas (low-cost)
    * Adhesive Mount Antennas
    * ZigBee Antennas
    * New Antennas
   
   Enclosures - Weatherproof Enclosures - Weatherproof
    * All Enclosures - Weatherproof
    * Small Enclosures for POE, Power Supply, Telco
    * for Router, Switch, Board (PCBA)
    * Large NEMA-Rated Enclosures
      * Large Enclosures w/ 120V or 240V AC Outlets
    * Enclosure Accessories
      * Antenna Cables Weatherproofing
      * Cable Glands / Enclosure Port Interfaces
        * RJ5 Cable Gland Feed-Thru Waterproof IP67
        * Glands for Fiber, USB, SIM, Terminal Block
      * Enclosure Mounts
    * Enclosures: UL® Listed
    * Enclosures for USB WiFi adapters
   
   Ethernet Cables & Fiber Ethernet Cables & Fiber
    * All Ethernet Cables & Fiber
    * Cat5e Cable Products
    * Cat6 & Cat6a Cable Products
    * Fiber Products
    * Cable Glands: RJ45 & Fiber - Waterproof
   
   Helium Network Gear Helium Network Gear
    * All Helium Network Gear
    * Helium Antennas
    * Helium Antenna Cables
    * Mounts for Helium Antennas
    * Fiberglass Helium Antennas
   
   Lightning Surge Protectors LoRa / LoRaWAN Gear LoRa / LoRaWAN Gear
    * All LoRa / LoRaWAN Gear
    * LoRaWAN Antennas
    * LoRaWAN Antenna Cables
    * Mounts for LoRaWAN Antennas
    * Fiberglass LoRaWAN Antennas
   
   Mounts for Antennas & Gear Mounts for Antennas & Gear
    * All Mounts for Antennas & Gear
    * Roof Mounts
    * Wall Mounts
    * Antenna Masts
    * Mounts for Antennas w/ N-female
    * L-Mounts & Brackets
    * Magnetic Mounts for Antennas
    * Pole Mounts
    * U-Bolts
    * Mounting Supplies
    * Mounts for Ubiquiti Gear
    * Mounts for USB WiFi Adapters
   
   POE Power Supplies Adapters POE Power Supplies Adapters
    * All POE Power Supplies Adapters
    * Adapters: DC Barrel, USB to DC etc.
    * Power Over Ethernet
      * POE Injectors / Adapters
        * Gigabit POE Injectors
        * POEs w/DC Power Redundancy
        * 10/100 POEs: Low Cost
        * POE Injectors w/ Reset Button
      * POE Surge Protection
      * Ubiquiti POE Kits
      * POE Switches
      * POE Voltage Adapters
    * Power Supplies & Cords
   
   Routers & APs Routers & APs
    * All Routers & APs
    * Alfa Boards and Routers
    * Ubiquiti Products
    * Mikrotik Products
    * VOIP - Voice Over IP
   
   Waterproof / Weatherproof Waterproof / Weatherproof
    * All Waterproof / Weatherproof
    * Antenna Connectors Weatherproofing
    * Antennas: WeatherProof & Marine
    * Cable Glands
    * Weatherproof RJ45 Jacks
    * Waterproof Enclosures
    * Sealants for Connectors, Cables, Wires
    * Sealants for Mounts: Tapes, PitchPads
   
   Wireless Modules Ubiquiti Products Ubiquiti Products
    * All Ubiquiti Products
    * Antennas by Ubiquiti
    * NanoBeam, PowerBeam & LightBeam
    * Locos, Rockets, Bullets, NanoStations
    * Fiber UFiber products
    * Power Over Ethernet
      * POE Injector Kits
      * POE Switches
    * Switches: EdgeSwitch & UniFi
    * ToughCable
    * UniFi Access Points
    * Video IP Cameras
   
   USB Cables & Adapters WiFi USB Adapters & Cards Signal Boosters
   
 * Advanced Product Search
 * Customer Service
 * Shipping Methods
 * About Us
 * Tech Support
 * Español
 * View Cart 0
   
 * Checkout

 * Sign in or Register


Search

Search Keyword:
Antenna Cables & Adapters Antenna Cables & Adapters
 * All Antenna Cables & Adapters
 * Adapters for Antenna Cables
   * Adapters with RP-SMA connector(s)
   * Adapters with SMA connector(s)
   * U.FL Adapters
   * Adapters with N connector(s)
   * Adapters w/RP-TNC Connector(s)
   * Adapters w/ TNC connector
   * Adapters with BNC connector(s)
   * Adapters with MCX connector
 * BNC Cables & Adapters
 * FAKRA Cables & Adapters
 * MCX Cables & Adapters
 * MHF Series: MHF1 MHF3 MHF4
   * MHF1 Cables (MHF1 = MHF)
   * MHF3 Cables / MHF3 = MHF III
   * MHF4 Cables & Adapters
 * MMCX Cables & Adapters
   * MMCX to N Cables
   * MMCX to RP SMA Cables
   * MMCX to SMA Cables
   * MMCX to U.FL Cables
 * N Cables & Adapters
   * N Adapters (Type N)
   * N Extension Cables: Male to Female
   * N Male To N Male
   * N Female to RP SMA
   * N Male to RP SMA Male
   * N to SMA Cables & Adapters
   * N to MHF4 Cables
   * N to MMCX Cables
   * N to RP-TNC and TNC
   * N to U.FL Cables
 * RP-SMA Cables & Adapters
   * RP-SMA Adapters
   * RP-SMA Extension cables
     * RP-SMA Extension Cables: 2-inch to 10.5-FT
     * RP-SMA Extension Cables: 11-FT and Up+
     * RP-SMA Ext Cables: Right-Angle on both ends
     * RP-SMA Ext: One Right-Angle, One Straight
   * RP-SMA Right Angle Cables & Adapters
     * RP-SMA Cables: Right-Angle on both sides
     * Adapters: RP-SMA Right-Angle to RP-SMA
   * RP-SMA to SMA
   * RP-SMA to N
   * RP-SMA Cables: Right-Angle on one side
   * RP-SMA to MMCX
   * RP SMA male to male
   * RP SMA to U.FL
   * RP-SMA to MHF4
   * RP-SMA Female to Female
   * RP-SMA to BNC
   * RP-SMA to MCX Cables
   * RP-SMA to RP-TNC
   * RP-SMA to W.FL Cables
   * Dust Cover for SMA & RP-SMA-female
 * SMA Cables & Adapters
   * SMA Extension Cables
     * SMA Extension Cables: 7-feet to 50+ feet
     * SMA Ext Cables: Right-Angle on Both Ends
     * SMA Ext Cables: One Right-Angle, One Straight
     * SMA Extension Cables: 3-inch to 6-feet
   * Adapters with SMA connector(s)
   * SMA Right-Angle Cables & Adapters
   * SMA to MMCX Cables
   * SMA to N
   * SMA to U.FL
   * SMA to MHF4
   * SMA male to SMA male cables
   * SMA female to SMA female
   * SMA to RP SMA
   * SMA to FME
   * Dust Cover for SMA & RP-SMA-female
 * RP-TNC Cables & Adapters
   * RP-TNC Adapters
   * RP TNC Extension Cables
   * RP-TNC Male to Male Cables
   * RP-TNC to RP-SMA cables
 * U.FL Cables & Adapters
   * U.FL Adapters to SMA and RP-SMA
   * U.FL to N Cables
   * U.FL to RP SMA Cables
   * U.FL to U.FL Cables
   * U.FL to SMA Cables
   * U.FL to FME Cables
   * U.FL to MMCX Cables
 * FME Cables & Adapters
   * FME to FME Cables
   * FME to SMA Cables & Adapters
 * TS-9 Cables
 * W.FL Cables
 * TNC Cables & Adapters
 * GPS antenna cables
 * Antenna Connectors Weatherproofing
 * With Magnetic base
 * Tools for Antenna Cables

Antennas Antennas
 * All Antennas
 * 2.4GHz WiFi, Bluetooth, ISM
   * Directional 2.4GHz Antennas
     * Patch, Panel, Sectoral Antennas
     * Yagi Antennas
   * Omni-Directional 2.4GHz WiFi Antennas
     * Magnetic-Mount WiFi Antennas
   * Bluetooth Antennas
 * WiFi 6 Antennas
   * Directional WiFi 6 Antennas
   * Omnidirectional WiFi 6 Antennas
 * 5GHz: 4.9~6.0GHz Antennas
   * Omni-Directional 5GHz Antennas
   * Dual Polarity 5GHz Antennas
 * Dual Band 2.4GHz 5GHz
 * GPS Antennas
 * Combo Antennas: LTE/4G, WiFi, GPS, 3G / GSM
 * LoRa Antennas: LoRaWAN | Long-Range IoT
 * LTE 4G 5G 3G GSM Cellular MultiBand Antennas
   * 850MHz to 950MHz Antennas: Helium, LoRa, GSM 3G
   * Dual Band 700-960MHz & 1700-2700MHz
   * 5G and WiMax Antennas: 698 MHz to 5GHz
 * Antennas By Connector Type
   * Antennas with RP-SMA connector
     * 2.4GHz WiFi Antennas w/ RP-SMA
     * 5GHz Antennas w/ RP-SMA
     * 850-950MHz Antennas w/RP-SMA
     * Dual Band 2.4GHz 5GHz w/ RP-SMA
   * SMA Connector - Antennas with
   * Antennas with N-female Connector
   * Antennas with N-male Connector
   * MMCX connector
   * RP-TNC connector - Antennas with
   * TNC-male Connector - Antennas with
   * U.FL connector - Antennas with
   * FME Connector
 * 412-440MHz Antennas
 * Omni-Directional Antennas: Dipole / Rubber Duck
   * Dipole Antennas: 2.4GHz
   * Dipole Antennas: 5GHz
   * Dipole Antennas: Dual Band 2.4GHz & 5GHz
   * Dipole Antennas: 900MHz
 * Through-Hole Mount Antennas
 * Vehicle Antennas
 * MultiBand 698-2800MHz
 * WeatherProof & Marine Antennas (low-cost)
 * Adhesive Mount Antennas
 * ZigBee Antennas
 * New Antennas

Enclosures - Weatherproof Enclosures - Weatherproof
 * All Enclosures - Weatherproof
 * Small Enclosures for POE, Power Supply, Telco
 * for Router, Switch, Board (PCBA)
 * Large NEMA-Rated Enclosures
   * Large Enclosures w/ 120V or 240V AC Outlets
 * Enclosure Accessories
   * Antenna Cables Weatherproofing
   * Cable Glands / Enclosure Port Interfaces
     * RJ5 Cable Gland Feed-Thru Waterproof IP67
     * Glands for Fiber, USB, SIM, Terminal Block
   * Enclosure Mounts
 * Enclosures: UL® Listed
 * Enclosures for USB WiFi adapters

Ethernet Cables & Fiber Ethernet Cables & Fiber
 * All Ethernet Cables & Fiber
 * Cat5e Cable Products
 * Cat6 & Cat6a Cable Products
 * Fiber Products
 * Cable Glands: RJ45 & Fiber - Waterproof

Helium Network Gear Helium Network Gear
 * All Helium Network Gear
 * Helium Antennas
 * Helium Antenna Cables
 * Mounts for Helium Antennas
 * Fiberglass Helium Antennas

Lightning Surge Protectors LoRa / LoRaWAN Gear LoRa / LoRaWAN Gear
 * All LoRa / LoRaWAN Gear
 * LoRaWAN Antennas
 * LoRaWAN Antenna Cables
 * Mounts for LoRaWAN Antennas
 * Fiberglass LoRaWAN Antennas

Mounts for Antennas & Gear Mounts for Antennas & Gear
 * All Mounts for Antennas & Gear
 * Roof Mounts
 * Wall Mounts
 * Antenna Masts
 * Mounts for Antennas w/ N-female
 * L-Mounts & Brackets
 * Magnetic Mounts for Antennas
 * Pole Mounts
 * U-Bolts
 * Mounting Supplies
 * Mounts for Ubiquiti Gear
 * Mounts for USB WiFi Adapters

POE Power Supplies Adapters POE Power Supplies Adapters
 * All POE Power Supplies Adapters
 * Adapters: DC Barrel, USB to DC etc.
 * Power Over Ethernet
   * POE Injectors / Adapters
     * Gigabit POE Injectors
     * POEs w/DC Power Redundancy
     * 10/100 POEs: Low Cost
     * POE Injectors w/ Reset Button
   * POE Surge Protection
   * Ubiquiti POE Kits
   * POE Switches
   * POE Voltage Adapters
 * Power Supplies & Cords

Routers & APs Routers & APs
 * All Routers & APs
 * Alfa Boards and Routers
 * Ubiquiti Products
 * Mikrotik Products
 * VOIP - Voice Over IP

Waterproof / Weatherproof Waterproof / Weatherproof
 * All Waterproof / Weatherproof
 * Antenna Connectors Weatherproofing
 * Antennas: WeatherProof & Marine
 * Cable Glands
 * Weatherproof RJ45 Jacks
 * Waterproof Enclosures
 * Sealants for Connectors, Cables, Wires
 * Sealants for Mounts: Tapes, PitchPads

Wireless Modules Ubiquiti Products Ubiquiti Products
 * All Ubiquiti Products
 * Antennas by Ubiquiti
 * NanoBeam, PowerBeam & LightBeam
 * Locos, Rockets, Bullets, NanoStations
 * Fiber UFiber products
 * Power Over Ethernet
   * POE Injector Kits
   * POE Switches
 * Switches: EdgeSwitch & UniFi
 * ToughCable
 * UniFi Access Points
 * Video IP Cameras

USB Cables & Adapters WiFi USB Adapters & Cards Signal Boosters
 * Home
 * Antennas
 * Antennas By Connector Type
 * SMA Connector - Antennas with
 * Antenna 5dBi LTE GSM 700MHz~2700MHz Omni-Directional. SMA or RP-SMA


ANTENNA 5DBI LTE GSM 700MHZ~2700MHZ OMNI-DIRECTIONAL. SMA OR RP-SMA

MSRP:
Was:
Now: $3.25

(You save )

SKU: ALO5RPSMA
Brand:


DATA ALLIANCE

UPC:
Availability: In stock
Weight: 0.22 LBS
Previous

Next

* RP-SMA or SMA Connector::
RP-SMA male SMA male
* Length of Cable:
5FT 2FT
Current Stock:
Quantity:





Add to Wish List
 * 
 * Create New Wish List


 * Description
 * Related Products
 * Product Reviews

Outdoor / Indoor 5dBi Omni-Directional 700 MHz to 2700 MHz Antenna with Adhesive
Mount


 * With 5FT cable to SMA or RP-SMA connector options
 * Dual Band / Multi-band in LTE 4G / 3G GSM frequency Bands
 * IP65 ingress-protection rating: Weatherproof /waterproof
 * Radiates signal with a beam of 360 degrees; also receives signal from 360
   degrees around it.
 * Marine antenna: This antenna can be used for marine use, but in a salt-water
   environment, the antenna often will begin to corrode after a year or possibly
   less: The chrome plating on the base bubbles and peels off: Our customers
   that us this antenna for marine use, find that the low cost and fact that it
   lasts about a year without any issue, in a marine environment, makes it
   suitable: The antenna is is cost-effective enough even considering that they
   replace the antenna when the corrosion begins.
 * Data Alliance's high-quality soldered terminations of SMA and RP-SMA
   connectors with soldering provide a low-loss connection with discontinuities
   kept to a minimum.

Compatibility with wireless standards & applications:

 * LTE / 4G & GSM /3G: Broadband design for 4G / LTE and 3G / GSM systems: 4G
   networks
    * US domestic LTE: 700 MHz band: AT&T Mobility, Verizon.
    * Global LTE: 2600 MHz band (2.6GHz)  
      
    * GSM bands 824-894 and 1850.2 - 1909.8 (US and Latin America / Mexico)
       * GSM is 3G wireless (Global System for Mobile Communication)

 * 900MHz ISM Band. Can also be made to operate on other VHF and UHF frequencies
   within the ISM frequency bands.
   
    * Non Line of Sight (NLOS): 900 MHz band is best for passing through trees
      and forests.

 * IoT wireless & M2M: Compatible with many machine to machine communication
   applications, remote monitoring, and telemetry applications using LTE-m, 4G /
   LTE, 3G / GSM, LoRa. (Compatible because it is vertically polarized).
 * WiMax frequency bands 2300 MHz / 2500 MHz / 2600 MHz (2.3GHz, 2.5GHz, 2.6GHz)

This omni directional antenna's range of frequency band compatibility in the 700
MHz to 2700 MHz frequency band range, its low broadband VSWR, and impedance
matching to 50 Ohm gear, makes it suitable and compliant for all the above
applications.

Features & applications

 * As access point antenna: Provides signal to clients in any direction
   (360-degree horizontal beamwidth)
 * As client antenna: Connect to an access point in any direction
 * Capable of extending your wireless range up to 300 meters.
 * Adhesive Mount is included for wall or pole mounting.
 * Suitable for outdoor or indoor wireless gear with RP-SMA-female or SMA-female
   connector.
 * ROHS & REACH compliant: Heavy metal content and other material content is in
   compliance with ROHS 3 and REACH (connector and antenna).

SPECIFICATIONS  Frequency range  700MHz~2700MHz
 Gain
 5dBi  VSWR  <1.8
 Impedance  50 Ohm  Polarization  Vertical  HPBW / horizontal  360 degrees
(horiz. pol. beamwidth)  HPBW / vertical  25 degrees (vertical pol. beamwidth)
 Max Power handling  50W  Antenna Cable  RG-174 coax cable to RP-SMA connector
 Antenna Connector  RP-SMA-male & SMA-male options  Survival wind speed
 180Km/hr  Temperature  -40C ~+ 60C  Humidity  100% @25c  Radome color  Black
 Radome material  Hard plastic  Weight+Packing Weight  57g  Dimensions  Inches:
L 4.5 X W 7/8 X 1/8

ROHS 3 & REACH compliant: Antenna, cable and connector are all compliant with
ROHS 3 and REACH.

Cable Length: 5 foot. Custom cable lengths and alternative connector types can
be supplied for volume requirements.

RP-SMA and SMA Connector Characteristics:

 * RP-SMA = Reverse Polarity SMA. Also known as SMA-RP, SMA-R, SMA RP, SMA R.
 * RP-SMA and SMA gender is counter-intuitive: The gender is referring to the
   pins inside-not the threads. RP-SMA male have threads on the inside. More
   details regarding RP-SMA gender determination. 
 * RP-SMA-male and SMA are also called "plugs" and the respective female
   connectors are also called "jacks".
 * RP-SMA and SMA are round screw-type connectors, with medium-sized, threaded
   coupling connectors that are rated for frequencies from the lowest (DC) up to
   18GHz.
 * SMA-male connector fits items that have an SMA (female) jack/connector.
 * We offer an SMA wrench to assist in installing antennas, cables and
   adapters with SMA or RP-SMA connector(s).
 * Composition of SMA male and RP-SMA male connectors:
   * 96% brass-copper alloy
   * Less than 4% lead content (ROHS Compliant)
     
   * 0.1% Chromium VI compound
   * 0.01% (by weight) Cadmium / cadmium compounds
   * 0.1% Mercury
   * 0.1% PBBs
   * 0.1% PBDE

RELATED PRODUCTS & PAGES:

 * Antenna Mounts & Brackets
 * Antennas: How to choose
 * Directional Antennas
 * Omni-Directional Antennas
 * Wireless Frequencies: 2.4GHz, 5GHz, 900MHz, WiMax
 * RP-SMA Cables, Antennas and Connectors
 * SMA Cables & Adapters 

All of our antennas pass QC test before we ship them.

All of our antennas pass QC test before we ship them.

 * Quick view
   
   ANTENNA 700MHZ 960MHZ / 1700-2700MHZ DUAL-BAND LTE CDMA 4G 2DBI
   OMNIDIRECTIONAL W/ SMA, RP-SMA
   
   MSRP:
   Was:
   Now: $3.25
   Choose Options
 * Quick view
   
   ANTENNA 698MHZ 960MHZ / 1700-2700MHZ DUAL-BAND LTE GSM CDMA 4G 5DBI SMA &
   RP-SMA
   
   MSRP:
   Was:
   Now: $3.25
   Choose Options
 * Quick view
   
   ANTENNA 2.4GHZ 5DBI WIFI BLUETOOTH OMNI-DIRECTIONAL. RP-SMA OR SMA
   
   MSRP:
   Was:
   Now: $3.25
   Choose Options
 * Quick view
   
   ANTENNA 900MHZ 5DBI LORA OMNI-DIRECTIONAL. RP-SMA OR SMA
   
   MSRP:
   Was:
   Now: $3.25
   Choose Options

Write a Review


WRITE A REVIEW

×

DATA ALLIANCE

ANTENNA 5DBI LTE GSM 700MHZ~2700MHZ OMNI-DIRECTIONAL. SMA OR RP-SMA

Rating Required Select Rating 1 star (worst) 2 stars 3 stars (average) 4 stars 5
stars (best)
Name
Email Required
Review Subject Required
Comments Required




×




×


OK







CUSTOMER SERVICE

 * Tel: (US) 520-394-4274
 * Shipping: Fees & Methods
 * Credit Terms
 * Returns / RMA
 * Affiliate Program

ACCOUNT

 * Sign in
 * Register
 * Account
 * Orders
 * Returns
 * Account Settings

TECH SUPPORT

 * Antennas: Support
 * Antenna Mounts
 * Antenna Connectors' Gender
 * Signal Loss in Antenna Cables
 * Weatherproofing
 * Wireless Frequency Bands
 * Index of Tech Support Articles

Copyright ©2002 - 2021 Data Alliance Inc. - All rights reserved.
  Author: George Hardesty