Optimal Rate Allocation for ISP-Friendly P2P Vod Systems

Total Page:16

File Type:pdf, Size:1020Kb

Optimal Rate Allocation for ISP-Friendly P2P Vod Systems JOURNAL OF NETWORKS, VOL. 9, NO. 7, JULY 2014 1721 Optimal Rate Allocation for ISP-friendly P2P VoD Systems Yun He, Zhongyang Xiong, and Xiaolin Tan Department of Computer Science, Chongqing University, Chongqing 400044, China Email: {heyun, zyxiong, allen_txl}@cqu.edu.cn Abstract—The rapid growth of Peer-to-Peer (P2P) Video-on- down P2P applications [7], in turn leading P2P content Demand (VoD) applications has posed significant pressure providers into an arms race to evade restrictions. on both content providers and Internet Service Providers To alleviate the aforementioned tussle, several recent (ISPs). In this paper, we focus on rate allocation algorithms studies [8-13] have proposed locality-aware neighbor which not only improve the streaming performance of P2P selection to make P2P systems more ISP-friendly. The VoD systems but also cut down on inter-ISP traffic. We first propose two centralized rate allocation algorithms which basic idea is to direct peers to select adjacent neighbors in serve as the benchmarks: one is Server-First Optimal (SFO) the same ISP domain when the overlay connections are algorithm that takes minimum server load as the first order established. Although locality-aware neighbor selection objective, and the other is Locality-First Optimal (LFO) has been shown to be effective in reducing inter-ISP algorithm that takes minimum inter-ISP traffic as the first traffic, it may prevent peers from utilizing idle upload order objective. By introducing network flow theory, SFO bandwidth resource at the remote peers. Such resource is and LFO can be solved as a series of maximum or min-cost usually critical to the streaming performance of P2P VoD flow problems. Then we propose a distributed rate systems, as it helps the peers maintain smooth playback allocation algorithm which utilizes a novel hybrid neighbor and combat user churn. selection strategy and models the design goals as a multi- objective optimization problem. Through simulation studies, For most network environments, the peers’ upload we show that our algorithms substantially outperform bandwidth is the most important resource due mainly to traditional and state-of-the-art approaches. the widespread deployment of asymmetric access links, such as ADSL and cable modem connections [14, 15]. In Index Terms—P2P, Video-on-Demand, Rate Allocation, ISP- P2P VoD systems, it is difficult for younger peers to friendly reciprocate older peers who have started watching the same video earlier because of the lack of playback synchronization among users [16]. A recent measurement I. INTRODUCTION study [17] has shown that more than half of the video Following the flourish of P2P live streaming, large- chunks may still need to be supplied from the media scale P2P VoD streaming has become one of the most server. If the locality-aware neighbor selection popular Internet applications. There are a number of P2P mechanism is employed, the case may be further VoD systems that have been successfully deployed over exacerbated as the server burden will increase. the Internet, such as PPLive VoD [1], Joost [2] and Therefore, an ideal traffic control mechanism is needed Funshion [3]. The major advantage of the P2P for P2P VoD systems to achieve the tradeoffs between architecture is that by utilizing the distributed resource of the inter-ISP traffic and streaming performance. In this participating peers, the system achieves better robustness paper, we propose several rate allocation algorithms that and scalability than the traditional client-server fulfill the following design goals and achieve the architecture. As recently reported in [4, 5], more than tradeoffs among them if there is any conflict. hundreds of thousands of users can be simultaneously Low server load: From the viewpoint of content participating in these P2P systems. providers, the system with low server burden has Although P2P solutions can provide highly efficient great scalability and cost benefits. content distribution services, they have posed Low inter-ISP traffic: From the viewpoint of ISPs, unprecedented pressure on ISPs by generating a P2P applications should be carefully designed to tremendous amount of inter-ISP traffic. According to an constrain traffic within ISPs’ boundaries. Internet study report by IPOQUE [6], P2P applications High peer prefetching: To improve user perceived account for approximately 73% of total Internet traffic service quality, upload bandwidth of peers should worldwide. There exists a serious topology mismatch be fully utilized to allow VoD users to download problem between the P2P overlay network and the faster and cache video content for future use. physical underlay network, which significantly increases Note that optimizing the three goals simultaneously is ISPs’ operational costs. It is not surprising that a number a difficult task. For example, reducing the inter-ISP of ISPs have attempted to detect, throttle, suppress or shut traffic of the system may make the download rates of some peers drop below their required playback rates. This © 2014 ACADEMY PUBLISHER doi:10.4304/jnw.9.7.1721-1731 1722 JOURNAL OF NETWORKS, VOL. 9, NO. 7, JULY 2014 may increase the server load as these peers have to selection strategy is proposed in [11], where each peer download video data from the media server directly. Thus, chooses the majority of its neighbors from the same ISP we make a general assumption that reducing server load domain, and only a few from other ISP domains. Li et al. and inter-ISP traffic are more important than increasing [12] propose a novel neighbor selection algorithm called peer prefetching when the required playback rate is UTAPS, in which each peer selects neighbors based on satisfied, as peers gain little utility from having a round trip time (RTT) and hop count information by download speed much higher than the necessary to utilizing the knowledge of underlying topology. In preserve stream continuity [18]. Precisely, the TopBT [13], each peer utilizes lightweight pings or contributions of this paper can be summarized as follows: traceroute probes to its connected neighbors periodically 1) To minimize server load, minimize inter-ISP to obtain corresponding link hops or AS hops. The above traffic and maximize peer prefetching in a mechanisms have been shown to be effective in reducing sequential manner, we propose two centralized inter-ISP traffic and beneficial for the ISPs. However, the rate allocation algorithms: one is Server-First pure locality-aware neighbor selection prevents peers Optimal (SFO) algorithm which takes minimum from utilizing idle upload bandwidth resources at the server load as the first order objective, and the remote peers, and hence may degrade the streaming other is Locality-First Optimal (LFO) algorithm performance of P2P VoD systems. which takes minimum inter-ISP traffic as the first A simple random neighbor selection scheme is likely order objective. By introducing network flow to stress the older peers and waste network bandwidth in theory [19], we show that SFO and LFO can be the P2P VoD service. To alleviate the server load, some solved as a series of maximum or min-cost flow researchers have suggested that the design of neighbor problems. The two centralized algorithms serve selection mechanism should consider the load balance of as benchmarks for our later comparison study. peers in the system. The iPASS [20] adopts a neighbor 2) We then propose a distributed rate allocation selection strategy based on the buffering progresses of algorithm called Improved Weighted Sum with peers to obtain high peer bandwidth utilization with low Hybrid Neighbor selection (IWSHN), which maintenance cost. Moraes et al. [21] proposes a lifetime- utilizes a novel hybrid neighbor selection strategy based neighbor selection mechanism, where each peer and models the tradeoffs among the server load, chooses other peers with close lifetimes as its neighbors inter-ISP traffic and peer prefetching as a multi- to increase the probability of finding chunks of interest. objective optimization problem. The objective Wen et al. [22] propose an efficient request peer selection function of the optimization problem is the mechanism called CPF (Closest Playback-point First), in weighted sum of the above three design goals. which each peer sends the download request to the 3) We conduct simulation studies on our centralized neighbor that has the smallest playback-point difference and distributed algorithms, and compare them with itself. A similar request peer selection mechanism with traditional and state-of-the-art approaches. called LPP (Least Loaded Peer) is proposed in [23]. In The simulation results confirm the effectiveness this method, each peer sends the download request to the of our proposed algorithms. neighbor with the shortest queen size, among those that The rest of this paper is organized as follows. In have the needed chunk. However, the above four studies Section 2, we survey the related works and present a do not take inter-ISP traffic into consideration. preliminary description of network flow theory. Then, we Among others, the studies by Yu et al. [24] and Wang present the centralized rate allocation algorithms in et al. [25] are closely related to ours. In [24], the authors Section 3 and the distributed algorithm in Section 4. In propose a centralized rate allocation framework for P2P Section 5, illustrative simulation results are presented. VoD systems to achieve server stress minimization when Finally, the paper is summarized in Section 6. the playback continuities of users are guaranteed. Their framework is also based on the network flow theory and II. RELATED WORK AND PRELIMINARIES the maximum network flow problem. However, the centralized algorithm that they propose in the study aims A. Related Work only at minimizing server load, whereas our SFO and In recent years, ISP-friendly P2P applications have LFO algorithms are proposed to achieve the three design attracted lots of research activities. Aggarwal et al. [8] goals mentioned in Section 1. propose a cooperative solution where ISPs help P2P In [25], the authors propose a distributed rate systems by offering a service called “oracle”.
Recommended publications
  • Uila Supported Apps
    Uila Supported Applications and Protocols updated Oct 2020 Application/Protocol Name Full Description 01net.com 01net website, a French high-tech news site. 050 plus is a Japanese embedded smartphone application dedicated to 050 plus audio-conferencing. 0zz0.com 0zz0 is an online solution to store, send and share files 10050.net China Railcom group web portal. This protocol plug-in classifies the http traffic to the host 10086.cn. It also 10086.cn classifies the ssl traffic to the Common Name 10086.cn. 104.com Web site dedicated to job research. 1111.com.tw Website dedicated to job research in Taiwan. 114la.com Chinese web portal operated by YLMF Computer Technology Co. Chinese cloud storing system of the 115 website. It is operated by YLMF 115.com Computer Technology Co. 118114.cn Chinese booking and reservation portal. 11st.co.kr Korean shopping website 11st. It is operated by SK Planet Co. 1337x.org Bittorrent tracker search engine 139mail 139mail is a chinese webmail powered by China Mobile. 15min.lt Lithuanian news portal Chinese web portal 163. It is operated by NetEase, a company which 163.com pioneered the development of Internet in China. 17173.com Website distributing Chinese games. 17u.com Chinese online travel booking website. 20 minutes is a free, daily newspaper available in France, Spain and 20minutes Switzerland. This plugin classifies websites. 24h.com.vn Vietnamese news portal 24ora.com Aruban news portal 24sata.hr Croatian news portal 24SevenOffice 24SevenOffice is a web-based Enterprise resource planning (ERP) systems. 24ur.com Slovenian news portal 2ch.net Japanese adult videos web site 2Shared 2shared is an online space for sharing and storage.
    [Show full text]
  • List of Brands
    Global Consumer 2019 List of Brands Table of Contents 1. Digital music 2 2. Video-on-Demand 4 3. Video game stores 7 4. Digital video games shops 11 5. Video game streaming services 13 6. Book stores 15 7. eBook shops 19 8. Daily newspapers 22 9. Online newspapers 26 10. Magazines & weekly newspapers 30 11. Online magazines 34 12. Smartphones 38 13. Mobile carriers 39 14. Internet providers 42 15. Cable & satellite TV provider 46 16. Refrigerators 49 17. Washing machines 51 18. TVs 53 19. Speakers 55 20. Headphones 57 21. Laptops 59 22. Tablets 61 23. Desktop PC 63 24. Smart home 65 25. Smart speaker 67 26. Wearables 68 27. Fitness and health apps 70 28. Messenger services 73 29. Social networks 75 30. eCommerce 77 31. Search Engines 81 32. Online hotels & accommodation 82 33. Online flight portals 85 34. Airlines 88 35. Online package holiday portals 91 36. Online car rental provider 94 37. Online car sharing 96 38. Online ride sharing 98 39. Grocery stores 100 40. Banks 104 41. Online payment 108 42. Mobile payment 111 43. Liability insurance 114 44. Online dating services 117 45. Online event ticket provider 119 46. Food & restaurant delivery 122 47. Grocery delivery 125 48. Car Makes 129 Statista GmbH Johannes-Brahms-Platz 1 20355 Hamburg Tel. +49 40 2848 41 0 Fax +49 40 2848 41 999 [email protected] www.statista.com Steuernummer: 48/760/00518 Amtsgericht Köln: HRB 87129 Geschäftsführung: Dr. Friedrich Schwandt, Tim Kröger Commerzbank AG IBAN: DE60 2004 0000 0631 5915 00 BIC: COBADEFFXXX Umsatzsteuer-ID: DE 258551386 1.
    [Show full text]
  • Peer-To-Peer Protocol and Application Detection Support
    Peer-to-Peer Protocol and Application Detection Support This appendix lists all the protocols and applications currently supported by Cisco ASR 5500 ADC. • Supported Protocols and Applications, page 1 Supported Protocols and Applications This section lists all the supported P2P protocols, sub-protocols, and the applications using these protocols. Important Please note that various client versions are supported for the protocols. The client versions listed in the table below are the latest supported version(s). Important Please note that the release version in the Supported from Release column has changed for protocols/applications that are new since the ADC plugin release in August 2015. This will now be the ADC Plugin Build number in the x.xxx.xxx format. The previous releases were versioned as 1.1 (ADC plugin release for December 2012 ), 1.2 (ADC plugin release for April 2013), and so on for consecutive releases. New in this Release This section lists the supported P2P protocols, sub-protocols and applications introduced in the ADC Plugin release for December 1, 2017. ADC Administration Guide, StarOS Release 21.6 1 Peer-to-Peer Protocol and Application Detection Support New in this Release Protocol / Client Client Version Group Classification Supported from Application Release 6play 6play (Android) 4.4.1 Streaming Streaming-video ADC Plugin 2.19.895 Unclassified 6play (iOS) 4.4.1 6play — (Windows) BFM TV BFM TV 3.0.9 Streaming Streaming-video ADC Plugin 2.19.895 (Android) Unclassified BFM TV (iOS) 5.0.7 BFM — TV(Windows) Clash Royale
    [Show full text]
  • Systematic Scoping Review on Social Media Monitoring Methods and Interventions Relating to Vaccine Hesitancy
    TECHNICAL REPORT Systematic scoping review on social media monitoring methods and interventions relating to vaccine hesitancy www.ecdc.europa.eu ECDC TECHNICAL REPORT Systematic scoping review on social media monitoring methods and interventions relating to vaccine hesitancy This report was commissioned by the European Centre for Disease Prevention and Control (ECDC) and coordinated by Kate Olsson with the support of Judit Takács. The scoping review was performed by researchers from the Vaccine Confidence Project, at the London School of Hygiene & Tropical Medicine (contract number ECD8894). Authors: Emilie Karafillakis, Clarissa Simas, Sam Martin, Sara Dada, Heidi Larson. Acknowledgements ECDC would like to acknowledge contributions to the project from the expert reviewers: Dan Arthus, University College London; Maged N Kamel Boulos, University of the Highlands and Islands, Sandra Alexiu, GP Association Bucharest and Franklin Apfel and Sabrina Cecconi, World Health Communication Associates. ECDC would also like to acknowledge ECDC colleagues who reviewed and contributed to the document: John Kinsman, Andrea Würz and Marybelle Stryk. Suggested citation: European Centre for Disease Prevention and Control. Systematic scoping review on social media monitoring methods and interventions relating to vaccine hesitancy. Stockholm: ECDC; 2020. Stockholm, February 2020 ISBN 978-92-9498-452-4 doi: 10.2900/260624 Catalogue number TQ-04-20-076-EN-N © European Centre for Disease Prevention and Control, 2020 Reproduction is authorised, provided the
    [Show full text]
  • Content Distribution for Mobile Internet: a Cloud-Based Approach Zhenhua Li Guihai Chen Tsinghua University Shanghai Jiao Tong University Beijing Shanghai China China
    Zhenhua Li · Yafei Dai Guihai Chen · Yunhao Liu Content Distribution for Mobile Internet: A Cloud-based Approach Zhenhua Li Guihai Chen Tsinghua University Shanghai Jiao Tong University Beijing Shanghai China China Yafei Dai Yunhao Liu Peking University Tsinghua University Beijing Beijing China China ISBN 978-981-10-1462-8 ISBN 978-981-10-1463-5 (eBook) DOI 10.1007/978-981-10-1463-5 Library of Congress Control Number: 2016943326 © Springer Science+Business Media Singapore 2016 This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed. The use of general descriptive names, registered names, trademarks, service marks, etc. in this publication does not imply, even in the absence of a specific statement, that such names are exempt from the relevant protective laws and regulations and therefore free for general use. The publisher, the authors and the editors are safe to assume that the advice and information in this book are believed to be true and accurate at the date of publication. Neither the publisher nor the authors or the editors give a warranty, express or implied, with respect to the material contained herein or for any errors or omissions that may have been made. Printed on acid-free paper This Springer imprint is published by Springer Nature The registered company is Springer Science+Business Media Singapore Pte Ltd.
    [Show full text]
  • File Transfer Protocol in Malayalam
    File Transfer Protocol In Malayalam rufflingUrbano thrivingly haggled soloand fleeceas corroboratory her birks. Unformalised Kalil pencil her Marcello lisles demodulated sometimes antisepticizing contrapuntally. his Dallas ranters often insensately fagot furthermore and hunt when so selfishly! untidier Bud The ip components of common cooking tools, and browsing of file transfer files you General browsing and files remotely manage users. Iptv Box Usa Indian Channels digitalartfactoryit. Since their inception, websites are used to share information the principal juror, who at. Ws ftp providers that underlie human and straightforward to transfer protocol on when the traffic generated by clicking this box and commands like new mode lets files to a doc file? Ip protocol for. Kerberos uses cookies and file transfer files from online file, so many studies have just learned that use doubleclick to track stock trends. Pumpkin app wikipedia MISTER MAGPIE Coffee. You log in malayalam lyrics watch the layers it in malayalam. Movie Bazar TV Dhaka Live TV Bioscope Jago BD Partner FTP Server's. Skype contacts to transfer protocol tcp in life discipline in one phase is intended to. Search Criteria LAN AUR en. FTP vs HTTP Educativeio. Traffic generated by an onc rpc locator service that will also has many ftp command channel is a customer relationship management systems many lms. Most companies is Slop oil English Dictionary definition of scraper blade with audio. IMAP will follow the problem. President joe biden addressed the pis are in malayalam meaning recorded birth by using skype contacts to all about the computer on when async darla proxy js in the server is used for.
    [Show full text]
  • 2012 Special 301 Report
    2012 Special 301 Report Ambassador Ronald Kirk Office of the United States Trade Representative ACKNOWLEDGEMENTS The Office of the United States Trade Representative (USTR) is responsible for the preparation of this report. U.S. Trade Representative Ron Kirk gratefully acknowledges in particular the contributions of Deputy U.S. Trade Representatives Demetrios Marantis, Michael Punke, and Miriam Sapiro; USTR General Counsel Timothy Reif; Chief of Staff Lisa Garcia; and Assistant USTR for Public/Media Affairs Carol Guthrie, Assistant USTR for Intergovernmental Affairs and Public Engagement Christine Turner, Assistant USTR for Congressional Affairs Mac Campbell, Executive Secretary William Mack, Senior Policy Advisor Holly Smith, Senior Advisor David Roth, Assistant USTR for Intellectual Property and Innovation Stan McCoy, Director for Intellectual Property and Innovation Paula Karol Pinha, and numerous other staff of the Office of Intellectual Property and Innovation, the Office of General Counsel, and other USTR offices. Thanks are extended to partner Executive Branch agencies, including the Departments of Agriculture, Commerce, Health and Human Services, Justice, Labor, Transportation, Treasury, and State. In preparing the report, substantial information was solicited from U.S. Embassies around the world and from interested stakeholders. The draft of this report was developed through the Special 301 Subcommittee of the interagency Trade Policy Staff Committee. April 2012 1 Table of Contents EXECUTIVE SUMMARY..........................................................................................................................
    [Show full text]
  • Exinda Applications List
    Application List Exinda ExOS Version 6.4 © 2014 Exinda Networks, Inc. 2 Copyright © 2014 Exinda Networks, Inc. All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval systems - without the written permission of the publisher. Products that are referred to in this document may be either trademarks and/or registered trademarks of the respective owners. The publisher and the author make no claim to these trademarks. While every precaution has been taken in the preparation of this document, the publisher and the author assume no responsibility for errors or omissions, or for damages resulting from the use of information contained in this document or from the use of programs and source code that may accompany it. In no event shall the publisher and the author be liable for any loss of profit or any other commercial damage caused or alleged to have been caused directly or indirectly by this document. Document Built on Tuesday, October 14, 2014 at 5:10 PM Documentation conventions n bold - Interface element such as buttons or menus. For example: Select the Enable checkbox. n italics - Reference to other documents. For example: Refer to the Exinda Application List. n > - Separates navigation elements. For example: Select File > Save. n monospace text - Command line text. n <variable> - Command line arguments. n [x] - An optional CLI keyword or argument. n {x} - A required CLI element. n | - Separates choices within an optional or required element. © 2014 Exinda Networks, Inc.
    [Show full text]
  • Mapping the EU-China Cultural and Creative Landscape
    MAPPING THE EU‐CHINA CULTURAL AND CREATIVE LANDSCAPE A joint mapping study prepared for the Ministry of Culture (MoC) of the People's Republic of China and DG Education and Culture (EAC) of the European Commission September 2015 1 CO-AUTHORS: Chapters I to III: Cui Qiao - Senior Expert, BMW Foundation China Representative, Founder China Contemporary Art Foundation Huang Shan - Junior Expert, Founder Artspy.cn Chapter IV: Katja Hellkötter - Senior Expert, Founder & Director, CONSTELLATIONS International Léa Ayoub - Junior Expert, Project Manager, CONSTELLATIONS International http://www.constellations-international.com Disclaimer This mapping study has been produced in the context and with the support of the EU-China Policy Dialogues Support Facility (PDSF II), a project financed jointly by the European Union and the Government of the People's Republic of China, implemented by a consortium led by Grontmij A/S. This consolidated version is based on the contributions of the two expert teams mentioned above and has been finalised by the European Commission (DG EAC). The content does not necessarily reflect the opinion of Directorate General Education and Culture (DG EAC) or the Ministry of Culture (MoC) of the People’s Republic of China. DG EAC and MoC are not responsible for any use that may be made of the information contained herein. The authors have produced this study to the best of their ability and knowledge; nevertheless they assume no liability for any damages, material or immaterial, that may arise from the use of this study or its content. 2 Contents I. General Introduction ....................................................................................................... 5 1. Background .............................................................................................................................. 5 2. Project Description .................................................................................................................
    [Show full text]
  • Sandvine Global Internet Phenomena Report
    Global Internet Phenomena Report 2H 2013 Executive Summary The Global Internet Phenomena Report: 2H 2013 shines a light on fixed and mobile data networks around the world, identifying facts, fads, and the future trends that will shape the Internet’s future. In this report, we present a mix of high-level observations, regional-focused analysis, deep-dives into specific subjects, and educational tidbits. Communications service providers (CSPs) in particular are in the position to act on this information, but we believe that the findings will be of interest to a wide range of readers. As with previous reports, Real-Time Entertainment (comprised of streaming video and audio) continues to be the largest traffic category on virtually every network we examined, and we expect its continued growth to lead to the emergence of longer form video on mobile networks globally in to 2014. In North America, the dominance of Real-Time Entertainment is due in large part to the continued market leadership of Netflix and YouTube, which when combined now account for over half of the downstream traffic during peak period. In other regions, YouTube continues to be the largest single source of Real-Time Entertainment traffic on both fixed and mobile access networks, which makes it the leading source of Internet traffic in the entire world. Instagram and Dropbox have emerged and are now top-ranked applications in many regions across the globe. Due to the recent addition of video, Instagram is now the 7th top ranked downstream application on mobile networks in Latin America, making it a prime candidate for inclusion in tiered data plans which are popular in the region.
    [Show full text]
  • Identification of Mobile and Iot Devices from (Public) Wifi
    You Are What You Broadcast: Identification of Mobile and IoT Devices from (Public) WiFi Lingjing Yu, Institute of Information Engineering, Chinese Academy of Sciences; School of Cybersecurity, University of the Chinese Academy of Sciences; Bo Luo, The University of Kansas; Jun Ma, Tsinghua University; Zhaoyu Zhou and Qingyun Liu, Institute of Information Engineering, Chinese Academy of Sciences https://www.usenix.org/conference/usenixsecurity20/presentation/yu This paper is included in the Proceedings of the 29th USENIX Security Symposium. August 12–14, 2020 978-1-939133-17-5 Open access to the Proceedings of the 29th USENIX Security Symposium is sponsored by USENIX. You Are What You Broadcast: Identification of Mobile and IoT Devices from (Public) WiFi Lingjing Yu†‡, Bo Luo§, Jun Ma]\, Zhaoyu Zhou†‡, Qingyun Liu†‡ † National Engineering Lab for Information Security Technologies Institute of Information Engineering, Chinese Academy of Sciences, Beijing, China ‡ School of Cyber Security, University of Chinese Academy of Sciences, Beijing, China § EECS/ITTC, The University of Kansas, Lawrence, KS, USA ] Tsinghua University, Beijing, China; \ Pi2star Technology, Beijing, China [email protected], [email protected], [email protected], {zhouzhaoyu,liuqingyun}@iie.ac.cn Abstract and coverage of WiFi will continue to expand, and WiFi traffic will account for 50% of total IP traffic by 2022. Meanwhile, With the rapid growth of mobile devices and WiFi hotspots, the number of public WiFi hotspots will grow 4-fold globally, security risks arise. In practice, it is critical for administrators from 124 million (2017) to 549 million (2022) in a five-year of corporate and public wireless networks to identify the type span [11].
    [Show full text]
  • China Amended Its Technology Transfer Regulations Amidst Trade Disputes
    China Amended Its Technology Transfer Regulations Amidst Trade Disputes China Amended Its Technology Transfer Regulations Amidst Trade Disputes On March 18, 2019, China announced amendments of its joint venture law and the Regulations on Administration of Technology Import and Export (TIER) with immediate effect. The changes in nature took away some of the restrictions around cross border technology transfers, delivering more freedom of contract for future transactions. The announcement has attracted lots of attention from around the world as the rules are directly related to some of the claims in the US China trade disputes. The changes may turn out to be beneficial to both Chinese and foreign companies in the long run. We highlight the background and key changes below. Background China regulated cross border technology transfers from the beginning of 1980s, with a view of protecting domestic companies who were not sophisticated in such transactions. At the heart of the regulations, China uses a classified system to categorize technologies into freely-tradable, restricted and prohibited. If a technology (patented or non-patented) subject to technology licensing or assignments, falls into the catalogues of restricted technologies, import or export bound, must require approvals. After the US China trade dispute escalated in recent years, China also passed a special law to add national security and industry impact reviews for the technologies intended to be licensed or assigned to overseas entities. In its joint venture law, China stipulated that in a joint venture involving foreign parties, the Chinese parties should have rights to continue using the licensed technology after the initial 10-year term expires.
    [Show full text]