hydra
play

Hydra An Open Source Wireless Testbed Hyrum K. Wright, Robert D. - PowerPoint PPT Presentation

Wireless Networking Research Hydra Demonstration Hydra An Open Source Wireless Testbed Hyrum K. Wright, Robert D. Grant Wireless Communication and Networking Group Department of Electrical and Computer Engineering The University of Texas at


  1. Wireless Networking Research Hydra Demonstration Hydra An Open Source Wireless Testbed Hyrum K. Wright, Robert D. Grant Wireless Communication and Networking Group Department of Electrical and Computer Engineering The University of Texas at Austin July 23, 2008 Hyrum K. Wright, Robert D. Grant Hydra

  2. Wireless Networking Research Hydra Demonstration 1 Wireless Networking Research What Why How 2 Hydra Implementation Options High-level Overview Nitty-gritty details 3 Demonstration Hyrum K. Wright, Robert D. Grant Hydra

  3. Wireless Networking Research What Hydra Why Demonstration How Wired network != Wireless network Traditional wired-network assumptions break down in the wireless world. The medium is half-duplex broadcast, not full-duplex point-to-point Channels vary in time and frequency domains Mobility results in rapidly changing link states Hyrum K. Wright, Robert D. Grant Hydra

  4. Wireless Networking Research What Hydra Why Demonstration How What we study Wireless communication at the PHY, MAC, and routing layers. Particularly, Cross-layer algorithms (e.g., rate adaptation) MIMO (multi-antenna systems) Multi-hop networks Hyrum K. Wright, Robert D. Grant Hydra

  5. Wireless Networking Research What Hydra Why Demonstration How Why we study this stuff Practical research for the next generation of wireless networking. Ad hoc networking can extend network range, help networks scale, and connect places previously unconnected by traditional networks MIMO and cross-layer algorithms can help improve network performance Hyrum K. Wright, Robert D. Grant Hydra

  6. Wireless Networking Research What Hydra Why Demonstration How How we study wireless networks Tools Theory Simulation Emulation Implementation Hyrum K. Wright, Robert D. Grant Hydra

  7. Wireless Networking Research What Hydra Why Demonstration How How we study wireless networks Tools Flexible Difficult Abstract Constraining Theory Simulation Emulation Implementation Hyrum K. Wright, Robert D. Grant Hydra

  8. Wireless Networking Research What Hydra Why Demonstration How Current Open Source Tools Theory - GNU Octave, R Simulation - NS2, OMNeT++ Emulation - Emulab, NS Emulator Implementation - GNU Radio, IT++, Click Hyrum K. Wright, Robert D. Grant Hydra

  9. Wireless Networking Research What Hydra Why Demonstration How Weaknesses of Current Open Source Tools NS2, OMNeT++ - Difficult to get details of wireless right in simulation Emulab, NS Emulator - Built for wired networks, though people are trying to extend them to wireless GNU Radio, IT++ - Good tools, but low level. GNU Radio was built for stream processing, not packet processing. Hyrum K. Wright, Robert D. Grant Hydra

  10. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Hydra Goal Develop a flexible platform for wireless research and experimentation which uses real channels. Hyrum K. Wright, Robert D. Grant Hydra

  11. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Implementation Options Application Specific Integrated Circuit (ASIC) Great performance High cost Difficult to change, revise FPGA Easier than ASIC to modify Commodity part = easy to obtain Still requires hardware knowledge to develop Software Defined Radio (SDR) Platform Acceptable (but worse) performance Highly customizable Does not require hardware knowledge to program Hyrum K. Wright, Robert D. Grant Hydra

  12. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Hydra An open-source, flexible testbed for wireless experimentation, almost entirely in software. Hyrum K. Wright, Robert D. Grant Hydra

  13. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Hydra Node Hyrum K. Wright, Robert D. Grant Hydra

  14. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details High Level Each node is a general purpose x86 machine Upper layers are GNU/Linux Link layer and MAC layer are implemented in Click Modular Router PHY layer is implemented in C++ and wrapped in GNU Radio Hardware is one or more Universal Software Radio Peripheral (USRP) boards, attached via USB Hyrum K. Wright, Robert D. Grant Hydra

  15. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Hydra Block Diagram Hyrum K. Wright, Robert D. Grant Hydra

  16. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details All Open Source Components The USRP - all FPGA code and designs are open! GNU/Linux operating system GNU Radio Software Radio Framework Click Modular Router IT++ (and its dependencies) C++, Python, and SWIG GNU Octave (in the works!) Hyrum K. Wright, Robert D. Grant Hydra

  17. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details The Upper Layers Hydra runs standard applications (ping, Firefox, Apache, FTP). Works through the Linux TUN device A virtual network device (/dev/net/tun) Allows Click to send IP packets from userspace to the Linux kernel’s IP processing code Allows the kernel to pass IP packets to Click in userspace Hyrum K. Wright, Robert D. Grant Hydra

  18. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Link Layer Media Access Control: Distributed algorithms for determining transmission priority. i.e., “Who gets to talk when” Click Modular Router A modular packet router which integrates with Linux. Can run in either user or kernel mode. Creates an additional network interface which applications can use seamlessly. Current MAC implementations: 802.11, plus experimental protocols such as RBAR, OAR and others. Using C++, we define “blocks,” and then connect those blocks in a flow graph. Hyrum K. Wright, Robert D. Grant Hydra

  19. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Link Layer Figure: Click DSDV implementation Hyrum K. Wright, Robert D. Grant Hydra

  20. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Physical Layer 802.11a and 802.11n style physical layers implemented Implemented in C++ using the IT++ communications library Entire physical layer wrapped in a single GNU Radio Block Visualizations written using Matplotlib, wxpython Hyrum K. Wright, Robert D. Grant Hydra

  21. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Physical Layer yes Decode Payload Packet Frame Remove Decode CRC Baseband Input Detector Synch Freq Offset Header OK? Return to Packet Detector no Processed OFDM Symbol by OFDM Symbol Equalization Soft Bits Deinter- Phase Delete CP Estimation + Training FFT Deparsing Soft Bits Channel Tracking Mapping leaving Payload Spatial Viterbi Bit Binary + Output Decoder Scrambling Training Soft Bits Deinter- Phase FFT Tracking Mapping leaving Hyrum K. Wright, Robert D. Grant Hydra

  22. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Side Project: Octave Integration Our current physical layer is written in C++ Most physical layer researchers are used to MATLAB Solution: GNU Octave, an open source version of MATLAB Hyrum K. Wright, Robert D. Grant Hydra

  23. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Octave Integration Structure Client/Server architecture TCP server interface to USRP TCP client in GNU Octave Physical layer in GNU Octave Functional structure. A series of transformations on data to transmit or receive. Runs in Octave and MATLAB Custom unit-testing framework Hyrum K. Wright, Robert D. Grant Hydra

  24. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Research Mostly in cross-layer MAC/PHY algorithms Physical layer rate control MAC frame aggregation MIMO Beamforming Limited feedback Hyrum K. Wright, Robert D. Grant Hydra

  25. Wireless Networking Research Implementation Options Hydra High-level Overview Demonstration Nitty-gritty details Future More experiments – Hydra is starting to stabilize as an experimental platform More nodes – scale up our test network Make easier to use. . . More documentation More visualization More experimental tools Easier network administration Release code – backend cleanup! Expand Octave integration Use in the classroom Hyrum K. Wright, Robert D. Grant Hydra

  26. Wireless Networking Research Hydra Demonstration Demo Time BAM Hyrum K. Wright, Robert D. Grant Hydra

  27. Wireless Networking Research Hydra Demonstration Questions? Resources Hydra: http://hydra.ece.utexas.edu/ GNU Radio: http://www.gnu.org/software/gnuradio/ Obligatory Sponsor Info National Science Foundation, under grant CNS-626797 Office of Naval Research (ONR), under grant number N00014-05-1-0169 DARPA IT-MANET program, under grant W911NF-07-1-0028 Hyrum K. Wright, Robert D. Grant Hydra

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend