Ipv6: 6To4 on Openwrt Router Behind NAT

Total Page:16

File Type:pdf, Size:1020Kb

Ipv6: 6To4 on Openwrt Router Behind NAT Ipv6: 6to4 on OpenWRT router behind NAT On this page... (hide) 1. 1. Step 1) Flashing router with OpenWRT 2. 2. Step 2) Installing packages 3. 3. Step 3) Calculate your IPv6 prefix and numbers 4. 4. Step 4) Set addresses and routes 5. 5. Step 5) Announce to LAN via radvd 6. 6. Step 6) Verify from client side Summary In this little guide, we demonstrate how to activate IPv6 on low cost wireless routers, offering a chance to try out IPv6 even while most ISPs and larger organizations are not yet offering it. You will be able to useIPv6 on your local LAN, as well as connect to IPv6 resources out on the net. Remember that this is not the real thing! It is not true Ipv6 – it is a transition technique to get us familiar with Ipv6. It should not keep us from going all the way (request your Ipv6 address space today! :) ) We will be using OpenWRT on a Linksys WRT54GL router - but any other device that can run OpenWRT (e.g. Ubiquiti) is fine. This guide owes a lot to the following guides and their authors (thank you!): 1. http://cagnazzo.name/drupal/6to4 - Carlos Martinez 2. http://olekvi.livejournal.com/866.html - Ole Bendik Kvisberg also: • http://www.757.org/~joat/wiki/index.php/IPv6_on_the_WRT54G_via_OpenWRT • http://www.exit2shell.com/~skreuzer/openwrt-ipv6.html • What we are doing here is different from 1. in that we put a 6to4 gateway directly on to the wireless router, not on a PC behind it, and from 2. in that we are using a 6to4 gateway rather than a designated tunnel. A tunnel depends on your IPv4 being public and pingable, whereas our approach also works for devices behind NAT and firewalls prohibiting ping / ICMP. This guide does not explain background and concepts behind IPv6, addressing, tunneling or the tools we are using - you might want to read up on these, to fully understad what you are doing. Wikipedia is a good start point: http://en.wikipedia.org/wiki/Ipv6 Step 1) Flashing router with OpenWRT Flash your router with the appropriate version of OpenWRT http://openwrt.org/ - in our case, for a Linksys WRT54GL, this: http://downloads.openwrt.org/kamikaze/8.09.2/brcm-2.4/openwrt-wrt54g-squashfs.bin or for Ubiquiti devices, look here: http://downloads.openwrt.org/kamikaze/8.09.2/atheros/ Step 2) Installing packages ssh into router and edit /etc/opkg.conf to point at valid repository, e.g. http://downloads.openwrt.org/kamikaze/8.09.2/brcm- 2.4/packages/ Add the packages needed for Ipv6: # opkg update # opkg install kmod-ipv6 kmod-tun kmod-ip6tables ip ip6tables radvd Step 3) Calculate your IPv6 prefix and numbers Find out about your routers publicly visible IPv4 number, e.g. by going to http://www.whatismyip.com/ or doing a ifconfig or ip -4 addr show From here on we will assume as a example an IPv4 number of 130.226.141.57 – of course you should use your own public IP here! My Ipv4 number in decimals: ............................................................................. You can use the command sipcalc to express this in hexadecimals (hex): 82E2:8D39 My Ipv4 number in hexadecimals: ............................................................................. My IPv6 for use in a 6to4 gateway becomes 2002:<IPv4 in hex>::1 so in our case 2002:82E2:8D39::1 My Ipv6 number for 6to4: ............................................................................. Note that you now have a /48 net, which we complete to make a 64 bit prefix, by adding a arbitrary 4th quartet – for use as prefix for our LAN. We will announce this via radvd later. e.g. 2002:82E2:8D39:ffff::1 My Ipv6 prefix for my LAN: ............................................................................. Step 4) Set addresses and routes So we will need the following addresses and prefixes - remember that the values here are just examples - you need to adjust them based on your public IPv4 number! Example My own numbers: our public IPv4 ipv4_public = 130.226.141.57 our global ipv6 for the tunnel: ipv6_tunnel = 2002:82E2:8D39::1 our ipv6 prefix for the LAN: ipv6_prefix=2002:82E2:8D39:ffff/64 ipv6 address for our LAN interface: ipv6_LAN=2002:82E2:8D39:ffff::1/64 then we do: # create and bring up tunnel ip tunnel add tun6to4 mode sit remote any local <ipv4_public> ip link set dev tun6to4 up # assign ipv6 addr to tunnel ip -6 addr add <ipv6_tunnel>/48 dev tun6to4 # assign ipv6 addr to LAN ip -6 addr add <ipv6_LAN>/64 dev br-lan # add a default route via 6to4 magic ip -6 route add 2000::/3 via ::192.88.99.1 dev tun6to4 metric 1 ::192.88.99.1 is the "magic" anycast address of the 6to4 protocol After this, you should be able to verify by pinging any existing ipv6 resource, e.g. ipv6.google.com root@OpenWrt:/etc/config# ping6 2a00:1450:8001::68 PING 2a00:1450:8001::68 (2a00:1450:8001::68): 56 data bytes 64 bytes from 2a00:1450:8001::68: seq=0 ttl=56 time=36.657 ms 64 bytes from 2a00:1450:8001::68: seq=1 ttl=56 time=35.738 ms 64 bytes from 2a00:1450:8001::68: seq=2 ttl=56 time=43.656 ms 5. Step 5) Announce to LAN via radvd We will be using radvd, the route advertisement demon, to tell LAN clients about the routes available to them. This replaces DHCP as we know it from IPv4. Clients will learn about the IPv6 prfix and then self-configure the rest of their address. Here s an example for a /etc/radvd.conf #announce our net on the interface bridging LAN and WAN/internet interface br-lan { IgnoreIfMissing on; AdvSendAdvert on; # Advertise at least every 30 seconds MaxRtrAdvInterval 30; #announce the prefix - it leaves the first 3 quartets free for the existing 2002:<ipv4_public as hex> prefix 0:0:0:ffff::/64 { AdvOnLink on; AdvAutonomous on; # for 6to4, need to announce the 6to4 interface - check out which one that is! Base6to4Interface eth0.1; # Very short lifetimes for dynamic addresses - bit TOO short here :) for testing purposes AdvValidLifetime 60; AdvPreferredLifetime 10; }; }; Once you have configured this, you can test it by doing radvd -C /etc/radvd.conf -d 4 -m stderr Watch the output for problems! 6. Step 6) Verify from client side At this point, your clients should receive the radvd adverts, and you can check this by doing radvdump example output: root@sbut:/home/sebastian# radvdump # # radvd configuration generated by radvdump 1.2 # based on Router Advertisement from fe80::200:ff:fe00:0 # received by interface eth0 # interface eth0 { AdvSendAdvert on; # Note: {Min,Max}RtrAdvInterval cannot be obtained with radvdump AdvManagedFlag off; AdvOtherConfigFlag off; AdvReachableTime 0; AdvRetransTimer 0; AdvCurHopLimit 64; AdvDefaultLifetime 0; AdvHomeAgentFlag off; AdvDefaultPreference medium; AdvSourceLLAddress on; prefix 2002:82e2:8d39:ffff::/64 { AdvValidLifetime 600; AdvPreferredLifetime 300; AdvOnLink on; AdvAutonomous on; AdvRouterAddr off; }; # End of prefix definition }; # End of interface definition and ip -6 addr show example output: 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qlen 100 inet6 2002:82e2:8d39:ffff:21f:16ff:fe2e:4801/64 scope global dynamic valid_lft 587sec preferred_lft 287sec inet6 fe80::21f:16ff:fe2e:4801/64 scope link valid_lft forever preferred_lft forever to check whether the ipv6 addresses autoconfigured properly. Also, ip -6 neigh show should show you the neighbouring routers, like so, example output: root@sbut:/home/sebastian# ip -6 neigh show fe80::200:ff:fe00:0 dev eth0 lladdr 00:25:9c:3c:12:98 router REACHABLE All your LAN clients should be able to fully use IPv6 at this point - but note: we have not configured any IPv6 firewalls or ip6tables so far. We have not prepared any security tools for Ipv6. So there s still work to be done .... and also, dont forget to get your real Ipv6 address space :).
Recommended publications
  • Wireless Routers
    Information Systems Education Journal (ISEDJ) 13 (3) ISSN: 1545-679X May 2015 Empowering Freshmen with Technology Skills: Wireless Routers William VanderClock [email protected] Bentley University Waltham, MA 02452, USA Abstract Most freshmen taking required, introductory information systems courses do not understand why they are required to take such courses and can’t imagine that they will learn anything they don’t already know. This paper presents an exercise that will excite and enthuse students about their computers and Information Systems in general. Every freshman is familiar with wireless network connections having used them with both their computers and their phones. The setup of those wireless networks however is somewhat of a mystery and considered far too complex to deal with by most students. This paper outlines a strategy for demystifying the technology and involving students in hands-on learning. By actually setting up a wireless router students gain confidence in their computer skills and become interested in learning more about information systems. This paper describes the process used to gain their interest and includes a handbook that can be used with students everywhere. Keywords: wireless networks, routers, TCP/IP, teaching the introductory course 1. INTRODUCTION 1. They love to be connected and as cost As technology becomes more and more part of conscience consumers are always looking for our world many schools like Bentley require a “free” connection that will not impact the students to take an introductory course in cell phone bill. information systems. In most cases there is no 2. Speed is very important to them and often assessment of the student’s technology skills so a Wi-Fi connection is much faster than their that a typical class has a broad range of ability, cell carrier’s data connection.
    [Show full text]
  • View Your World Anywhere……Anytime!
    View Your World Anywhere……Anytime! Camera Installation for PC with Windows XP, Windows 7, Windows 8/ 8.1 Camera Installation for Mac with Airport Extreme and Time Capsule Note: Proceed to the Quick Guide for iPhone, iPad iOS device and Android OS Smartphone, Tablet. 1 Introduction ----------------------------------------------------------------------------------------------------------------3 Pre-requisites and Initial Connection--------------------------------------------------------------------------------- 5 PC Quick start-------------------------------------------------------------------------------------------------------------- 6 Install “Camera Setup” and “Camera Live” Utilities on a PC------------------------------------------------------7 Install “Camera Live” Utility & Multiple Cameras viewing on a PC--------------------------------------------10 Mac Quick start------------------------------------------------------------------------------------------------------------15 Apple Airport Remote Access Setup----------------------------------------------------------------------------------19 Wi-Fi Wireless Setup for PC and Mac-------------------------------------------------------------------------------- 22 Wi-Fi Troubleshooting--------------------------------------------------------------------------------------------------- 26 Is the Remote Access Setup already done? ----------------------------------------------------------------------- 27 Enabling UPNP for Automatic Remote Access Setup ------------------------------------------------------------
    [Show full text]
  • Wireless-G Broadband Router WIRELESS User Guide
    GHz 2,4802.11g Wireless-G Broadband Router WIRELESS User Guide Model No. WRT54G (EU/LA) Wireless-G Broadband Router Copyright and Trademarks Specifications are subject to change without notice. Linksys is a registered trademark or trademark of Cisco Systems, Inc. and/or its affiliates in the U.S. and certain other countries. Copyright © 2006 Cisco Systems, Inc. All rights reserved. Other brands and product names are trademarks or registered trademarks of their respective holders. How to Use This User Guide This User Guide has been designed to make understanding networking with the Wireless-G Broadband Router easier than ever. Look for the following items when reading this User Guide: This checkmark means there is a note of interest and is something you should pay special attention to while using the Wireless-G Broadband Router. This exclamation point means there is a caution or warning and is something that could damage your property or the Wireless-G Broadband Router. This question mark provides you with a reminder about something you might need to do while using the Wireless-G Broadband Router. In addition to these symbols, there are definitions for technical terms that are presented like this: word: definition. Also, each figure (diagram, screenshot, or other image) is provided with a figure number and description, like this: Figure 0-1: Sample Figure Description Figure numbers and descriptions can also be found in the “List of Figures” section in the “Table of Contents”. WRT54GV7-EU-UG-60307 BW Wireless-G Broadband Router Table of
    [Show full text]
  • User Guide Linksys EA-Series Contents
    SMART Wi-Fi Router AC900, EA6200 User Guide Linksys EA-Series Contents Contents Product Overview Using an External Drive EA6200 . .1 Overview. .18 Wall-mounting placement 4 How to attach a USB drive . .18 How to use secured folder access . 19 Setting Up: Basics How to set up authorized users and shared folders 19 How to access shared folders 20 How to create a home network. .5 How to set up your router as a media server . 21 What is a network? 5 How to connect your UPnP device to the media server 22 How to set up a home network 5 How to remotely access storage . 22 Where to find more help . .5 How to install your router . .6 How to configure your router. .7 Setting Up: Advanced How to connect to Linksys Smart Wi-Fi 7 How to manually set up your router. .24 How to connect directly to your router 8 How to manually set up your Internet connection 24 How to improve your wireless connection speed 8 How to change your network’s name and password 9 How to associate a router with your Linksys Smart Wi-Fi account 25 How to change your router’s local access password 9 How to get the most out of your dual-band router . 26 How to change your router’s time zone 10 How to control access to your network. .27 How to test your Internet connection speed . 10 How to improve security using the built-in firewall 29 How to connect devices to your network . 11 How to set up the DHCP server on your router .
    [Show full text]
  • Wireless Router User Manual Models 525459, 525466, 525480
    WIRELESS ROUTER USER MANUAL MODELS 525459, 525466, 525480 1200AC Model 505480 150N Model 505459 300N Model 505466 MH-525459/525466/525480-UM-0713-01 Thank you for purchasing this Manhattan® Wireless Router: Model 525459 (150N 4-Port), Model 525466 (300N 4-Port) or Model 525480 (1200AC 4-Port). The latest in wireless networking, these Wireless Routers serve multiple purposes — an access point for your wireless network, a four-port router for hard-wiring Ethernet devices — and bring it all together so that the devices can access a high-speed Internet connection. Detailed instructions in this user manual make installation reasonably quick and simple so you’ll soon be enjoying the benefits of these and more popular features: • Network link speed of up to 150 Mbps for Model 525459, 300 Mbps for Model 525466 and 867 Mbps for Model 525480 (at 5 GHz) • Supports WMM function to meet the multimedia data bandwidth requirement • Supports Wi-Fi Protected Setup (WPS) • Supports WEP and WPA/WPA2 (TKIP and AES) data encryption • Auto MDI/MDI-X support • DHCP server assigns IP addresses for all LAN users • DHCP server supports static lease management • Supports virtual server, port forwarding and DMZ (demilitarized zone) • Supports DDNS (dynamic DNS) • Supports UPnP (Universal Plug and Play) • Integrated anti-DOS firewall • QoS (Quality of Service) bandwidth management • VPN Passthrough • Easy installation through Web-based user interface • Three-Year Warranty Package Contents • Wireless 150N 4-Port Router, Wireless 300N 4-Port Router or Wireless 1200AC Router • Quick install guide, plus user manual on CD • Power adapter • Ethernet Cat5 RJ45 cable: 1.0 m (3 ft.) NOTE: Some screen images have been modified to fit the format of this manual.
    [Show full text]
  • Openwrt Docs Documentation Release
    Openwrt docs Documentation Release People on the internet Nov 12, 2017 Contents 1 Why use LEDE? 3 2 Download LEDE 5 3 LEDE wants you! 7 4 Contents 9 4.1 LEDE Project Information........................................9 4.2 LEDE Documentation.......................................... 14 5 Endorsements 31 i ii Openwrt docs Documentation, Release The LEDE Project (“Linux Embedded Development Environment”) is a Linux operating system based on OpenWrt. It is a complete replacement for the vendor-supplied firmware of a wide range of wireless routers and non-network devices. See the Table of Hardware for supported devices. For more information about LEDE Project organization, see the About LEDE page. Contents 1 Openwrt docs Documentation, Release 2 Contents CHAPTER 1 Why use LEDE? People install LEDE because they believe it works better than the stock firmware from their vendor. They find it is more stable, offers more features, is more secure and has better support. • Extensibility: LEDE provides many capabilities found only in high-end devices. Its 3000+ application packages are standardized, so you can easily replicate the same setup on any supported device, including two (or even five) year old routers. More about extensibility... • Security: LEDE’s standard installation is secure by default, with Wi-Fi disabled, no poor passwords or back- doors. LEDE’s software components are kept up-to-date, so vulnerabilities get closed shortly after they are discovered. More about security... • Performance and Stability: LEDE firmware is made of standardized modules used in all supported devices. This means each module will likely receive more testing and bug fixing than stock firmware which can be tweaked for each product line and never touched again.
    [Show full text]
  • Wireless Router Quick Reference Booklet Thank You for Choosing Wightman Internet
    Wightman Telecom Wireless Router Quick Reference Booklet Thank you for choosing Wightman Internet. The information in this booklet will guide you through the process of connecting to the internet with your Wightman wireless router. To see the full manufacturer’s guide, please visit Wightman.ca/support/internet For technical support, please call 1-877-327-4440. 2 Introduction 2 TABLE OF CONTENTS 3 Wightman Wireless Connection Details 4 Installation 6 Hardware Setup 6 Back Panel 6 Power On 6 Reset Button 7 Ethernet (LAN) Ports 7 Front Panel 7 Wifi Switch 8 WPS Button 8 LED Indicators 8 Computer Connection 9 IP Configuration 9 Windows XP Instructions 9 Windows 8.x, 7, and Vista Instructions 10 Wireless Router Connection 10 Web User Interface 10 Default Settings 10 Login Procedure 11 Frequently Asked Questions 12 3 WIGHTMAN WIRELESS CONNECTION DETAILS Please write down your SSID and passcode information in the space below. You will need this information for your wireless connections. Please have this information ready if calling in to our technical support group. Wifi Access (see image below) Wireless Router SSID : _______________________ Wireless key (passcode): _______________________________ Example of Router Label (found on top of router) SSID wightman9E1Z PASSCODE 8E858F9E1Z LOGIN URL http://192.168.1.1/ USERNAME user PASSWORD useradmin1 WIRELESS ROUTER ACCESS This section describes how to access the device via the web user interface (WUI) using an Internet browser such as Internet Explorer (version 5.0 and later). This is only required to adjust or configure the optional functionality of the wireless router. Default Settings The factory default settings of this device are summarized below.
    [Show full text]
  • Wireless LAN Networking White Paper
    Wireless LAN Networking White Paper Introduction • Roaming capability is desired; e.g., maintaining connectivity from almost anywhere inside a Wireless technology has helped to simplify home or business networking by enabling multiple computer • Network access is desired outdoors; e.g., users to simultaneously share resources outside a home or office building in a home or business without additional or intrusive wiring. These resources might include a broadband Internet connection, network Wireless LANs in the Office printers, data files, and even streaming audio and video. This kind of resource sharing has An 802.11 network is the ideal solution for a become more prevalent as computer users network administrator in many respects. No have changed their habits from using single, longer is it a requirement that every workstation stand-alone computers to working on networks and conference room be wired up to hubs and with multiple computers, each with potentially switches with cables in hard-to-reach areas. different operating systems and varying Wireless networking allows for impromptu peripheral hardware. U.S. Robotics wireless meetings in cafeterias, hallways, courtyards, networking products offer a variety of solutions or wherever inspiration strikes while providing to seamlessly integrate computers, peripherals, real-time LAN connectivity for business and data. applications such as sending e-mail, working on spreadsheets on shared drives, and Wireless networking enables the same capabilities conducting market research. and comparable speeds of a wired 10BASE-T network without the difficulties associated with laying wire, drilling into walls, or stringing Wireless LANs in the Home Ethernet cables throughout an office building Wireless networking has become commonplace, or home.
    [Show full text]
  • Low-Cost On-Board Linux, Vision, Wi-Fi, and More for the Roomba Robotics Base
    Low-cost On-board Linux, Vision, Wi-Fi, and more for the Roomba Robotics Base Tod E. Kurt ThingM Design 1126 Palm Terrace Pasadena, CA 91104 [email protected] Abstract Roomba-related requirements are single serial port and a The Roomba has become a rugged yet inexpensive small form-factor. peripheral robotics platform. Remotely controlling it with a desktop PC is well understood, but limits the utility as a research robot. By providing a capable on-board intelligence, the Roomba can be made autonomous and enable the installation of additional senses and actuators. With the addition of a sub-$100 wireless router, the Roomba can cut the tether and have an on-board embedded Linux system with built-in Wi-Fi and USB. The addition of USB allows the use of a wide-range of additional peripherals supported by Linux such as cameras, flash memory, and other science payloads. Figure 1 Capabilities of three common wireless routers. Motivation for Autonomous Roombas The iRobot Roomba Open Interface (ROI) [1] is a simple serial protocol that turns the robotic vacuum cleaner into a controllable robot base with basic sensors. The release of the protocol specification in late 2005 created an explosion of robotics experimentation accessible to anyone with a Roomba [2]. The physical interface of the ROI is RS-232- like asynchronous serial, which can be converted to true RS-232 via a serial tether [3] or accessed via a Bluetooth adapter [4]. The logical interface is based on a data format of 57.6 kbps, 8N1, with a command structure consisting of one to five byte commands used to interrogate and actuate the Roomba’s capabilities.
    [Show full text]
  • Linksys X1000 I N300 Wireless Router with ADSL2+ Modem
    Linksys X1000 I N300 Wireless Router with ADSL2+ Modem Create a wireless home network suitable for your DSL or cable broadband connection. Ideal for: • Sharing Internet access, surfing the web, emailing and printing wirelessly • Connecting multiple devices • Connecting to a DSL connection or cable modem Key features: • All-in-one device - functions as a wireless ADSL2+ modem router or a wireless router • Wireless-N router with wireless transfer speeds up to 300 Mbps • Reliable range with MIMO antenna technology • Three Ethernet ports for connecting wired devices Packaging Icons Packaging Icons Speed SpeedBoost Speed SpeedBoost Band Ports Band Ports Dual-Band USB Port Dual-Band USB Port N Wireless-N UPnP Media Server Packaging Icons N Wireless-N UPnP Media Server Broad Compatibility Easy Setup Packaging Icons Speed SpeedBoost Broad Compatibility Easy Setup HD/3D Ready QualitySpeed of Service SpeedBoost PackaBagindng Icons Ports HD/3D Ready Quality of Service Parental Controls IPv6BandLinksys Enabled X1000Ports I N300 Wireless Router with ADSL2+ Modem SpeedDual-Band SpeedBoUSB Portost Parental Controls IPv6 Enabled Advanced Security WiDualrele-Bassnd House USB Port BaWindreless-N PUPnPorts Media Server Packaging Icons N Advanced Security Wireless House Maximum Range DSL Built-inWireless-N DSL Modem UPnP Media Server DualBroad-Ba Cndompatibility USBEasy PSetuort p N Speed SpeedBoost Built-in DSL modem MQuickaximum Rang toe installDSL Built-in DSL Modem Directly connects you to the internet wirelessly —no separate DSL Linksys Connect helps you set up your wireless network in a few Wi Protected Setup Multi-portBroad Compatib connect.ility Easy Setup modem required. The Linksys X1000 can also act as a wirelessWiHD/3Dreless-N R eady UPnPQuality M oedf Siae rvSeicerver Band Ports easy steps on a Windows or Mac computer.
    [Show full text]
  • Networking Types of Wireless Networks Introduction
    Networking Types of Wireless Networks Introduction Community Wireless Networks can be designed in Reading through this material should take about many ways. To help you understand these 30 to 45 minutes. Working through the activities, different methods for designing networks, this or diving deeper into the subject with a group may document covers the basics of what different take longer. devices do in wireless networks, and how they can be used in different configurations. Using the MATERIALS + SUPPLIES NEEDED knowledge and activities in this document, you - The Worksheet and Solution decks - printed out can work with others to design the wireless on 8½ by 11" or A4 paper. Available on the network that works best for your community. Construction Kit website. - Pens or colored markers Reading and working through Learn Wireless - A surface to work on Basics before this document will help you with some of the concepts used in designing wireless networks. It provides some necessary background information for this document. A Build-It-Ourselves Guide to Wireless Mesh Networks 2 UNIT: NETWORKING MODULE: TYPES OF WIRELESS NETWORKS Wireless Device Roles There are three major “modes” a Wi-Fi device can use. These modes define the role a Wi-Fi device has in the network, and networks must be built out of combinations of devices operating in these different modes. How the devices are configured depends on the types of connections you want to use between parts of the network. In discussing these modes and the examples below, several types of devices are used. In addition to the phones, tablets, and laptops you use in accessing a network, routers make up the hardware that runs the network.
    [Show full text]
  • User Guide 802.11Ac Wave 2 Router Model RAC2V1S
    User Guide 802.11ac Wave 2 Router Model RAC2V1S Trademarks Sagemcom and the Sagemcom logo are trademarks or registered trademarks of Sagemcom Broadband SAS or its subsidiaries in the United States or other countries. All other company or product names mentioned herein are trademarks or registered trademarks of their respective companies. Copyright © 2014 by Sagemcom Broadband SAS. All rights reserved. Rights of modifications reserved. This publication may not be reproduced, in whole or in part, without prior expressed written permission of Sagemcom Broadband SAS. Issued by Sagemcom Broadband SAS Sagemcom 250, route de l'Empereur - 92848 RUEIL MALMAISON CEDEX FRANCE i Table of Contents Trademarks........................................................................................................................................................ i Chapter 1: Product Overview ..................................................................................... 1 Package Contents .......................................................................................................................................... 2 Hardware Overview ....................................................................................................................................... 2 Labels ............................................................................................................................................................. 5 Router Positioning .....................................................................................................................................6
    [Show full text]