Jump to content

Peer-to-peer

From Wikipedia, the free encyclopedia
Apeer-to-peer (P2P) networkin which interconnected nodes ( "peers" ) share resources amongst each other without the use of a centralized administrative system

Peer-to-peer(P2P) computing or networking is adistributed applicationarchitecture that partitions tasks or workloads between peers. Peers are equally privileged,equipotentparticipants in the network, forming a peer-to-peer network ofnodes.[1]In addition, apersonal area network(PAN) is also in nature a type ofdecentralizedpeer-to-peer network typically between two devices.[2]

The opposite of a peer-to-peer network: based on theclient–server model,where individualclientsrequest services and resources from centralizedservers

Peers make a portion of their resources, such as processing power, disk storage, ornetwork bandwidth,directly available to other network participants, without the need for central coordination by servers or stable hosts.[3]Peers are both suppliers and consumers of resources, in contrast to the traditionalclient–server modelin which the consumption and supply of resources are divided.[4]

While P2P systems had previously been used in manyapplication domains,[5]the architecture was popularized by theInternetfile sharing systemNapster,originally released in 1999.[6]P2P is used in many protocols such asBitTorrentfile sharing over the Internet[7]and inpersonal networkslikeMiracastdisplaying andBluetoothradio.[8]The concept has inspired new structures and philosophies in many areas of human interaction. In such social contexts,peer-to-peer as a memerefers to theegalitariansocial networkingthat has emerged throughout society, enabled byInternettechnologies in general.

Development

[edit]
SETI@homewas established in 1999.

While P2P systems had previously been used in many application domains,[5]the concept was popularized byfile sharingsystems such as the music-sharing applicationNapster.The peer-to-peer movement allowed millions of Internet users to connect "directly, forming groups and collaborating to become user-created search engines, virtual supercomputers, and filesystems".[9]The basic concept of peer-to-peer computing was envisioned in earlier software systems and networking discussions, reaching back to principles stated in the firstRequest for Comments,RFC 1.[10]

Tim Berners-Lee's vision for theWorld Wide Webwas close to a P2P network in that it assumed each user of the web would be an active editor and contributor, creating and linking content to form an interlinked "web" of links. The early Internet was more open than the present day, where two machines connected to the Internet could send packets to each other without firewalls and other security measures.[11][9][page needed]This contrasts with thebroadcasting-like structure of the web as it has developed over the years.[12][13][14]As a precursor to the Internet,ARPANETwas a successful peer-to-peer network where "every participating node could request and serve content". However, ARPANET was not self-organized, and it could not "provide any means for context or content-based routing beyond 'simple' address-based routing."[14]

Therefore,Usenet,a distributed messaging system that is often described as an early peer-to-peer architecture, was established. It was developed in 1979 as a system that enforces adecentralized modelof control.[15]The basic model is aclient–servermodel from the user or client perspective that offers a self-organizing approach to newsgroup servers. However,news serverscommunicate with one another as peers to propagate Usenet news articles over the entire group of network servers. The same consideration applies toSMTPemail in the sense that the core email-relaying network ofmail transfer agentshas a peer-to-peer character, while the periphery ofEmail clientsand their direct connections is strictly a client-server relationship.[16]

In May 1999, with millions more people on the Internet,Shawn Fanningintroduced the music and file-sharing application called Napster.[14]Napster was the beginning of peer-to-peer networks, as we know them today, where "participating users establish a virtual network, entirely independent from the physical network, without having to obey any administrative authorities or restrictions".[14]

Architecture

[edit]

A peer-to-peer network is designed around the notion of equalpeernodes simultaneously functioning as both "clients" and "servers" to the other nodes on the network[17].This model of network arrangement differs from theclient–servermodel where communication is usually to and from a central server. A typical example of a file transfer that uses the client-server model is theFile Transfer Protocol(FTP) service in which the client and server programs are distinct: the clients initiate the transfer, and the servers satisfy these requests.

Routing and resource discovery

[edit]

Peer-to-peer networks generally implement some form of virtualoverlay networkon top of the physical network topology, where the nodes in the overlay form asubsetof the nodes in the physical network.[18]Data is still exchanged directly over the underlyingTCP/IPnetwork, but at theapplication layerpeers can communicate with each other directly, via the logical overlay links (each of which corresponds to a path through the underlying physical network). Overlays are used for indexing and peer discovery, and make the P2P system independent from the physical network topology. Based on how the nodes are linked to each other within the overlay network, and how resources are indexed and located, we can classify networks asunstructuredorstructured(or as a hybrid between the two).[19][20][21]

Unstructured networks

[edit]
Overlay network diagram for anunstructured P2P network,illustrating the ad hoc nature of the connections between nodes

Unstructured peer-to-peer networksdo not impose a particular structure on the overlay network by design, but rather are formed by nodes that randomly form connections to each other.[22](Gnutella,Gossip,andKazaaare examples of unstructured P2P protocols).[23]

Because there is no structure globally imposed upon them, unstructured networks are easy to build and allow for localized optimizations to different regions of the overlay.[24]Also, because the role of all peers in the network is the same, unstructured networks are highly robust in the face of high rates of "churn" —that is, when large numbers of peers are frequently joining and leaving the network.[25][26]

However, the primary limitations of unstructured networks also arise from this lack of structure. In particular, when a peer wants to find a desired piece of data in the network, the search query must be flooded through the network to find as many peers as possible that share the data. Flooding causes a very high amount of signaling traffic in the network, uses moreCPU/memory (by requiring every peer to process all search queries), and does not ensure that search queries will always be resolved. Furthermore, since there is no correlation between a peer and the content managed by it, there is no guarantee that flooding will find a peer that has the desired data. Popular content is likely to be available at several peers and any peer searching for it is likely to find the same thing. But if a peer is looking for rare data shared by only a few other peers, then it is highly unlikely that the search will be successful.[27]

Structured networks

[edit]
Overlay network diagram for astructured P2P network,using adistributed hash table(DHT) to identify and locate nodes/resources

Instructured peer-to-peer networksthe overlay is organized into a specific topology, and the protocol ensures that any node can efficiently.[28]search the network for a file/resource, even if the resource is extremely rare.[23]

The most common type of structured P2P networks implement adistributed hash table(DHT),[4][29]in which a variant ofconsistent hashingis used to assign ownership of each file to a particular peer.[30][31]This enables peers to search for resources on the network using ahash table:that is, (key,value) pairs are stored in the DHT, and any participating node can efficiently retrieve the value associated with a given key.[32][33]

Distributed hash tables

However, in order to route traffic efficiently through the network, nodes in a structured overlay must maintain lists of neighbors[34]that satisfy specific criteria. This makes them less robust in networks with a high rate ofchurn(i.e. with large numbers of nodes frequently joining and leaving the network).[26][35]More recent evaluation of P2P resource discovery solutions under real workloads have pointed out several issues in DHT-based solutions such as high cost of advertising/discovering resources and static and dynamic load imbalance.[36]

Notable distributed networks that use DHTs includeTixati,an alternative toBitTorrent'sdistributed tracker, theKad network,theStorm botnet,and theYaCy.Some prominent research projects include theChord project,Kademlia,PAST storage utility,P-Grid,a self-organized and emerging overlay network, andCoopNet content distribution system.[37]DHT-based networks have also been widely utilized for accomplishing efficient resource discovery[38][39]forgrid computingsystems, as it aids in resource management and scheduling of applications.

Hybrid models

[edit]

Hybrid models are a combination of peer-to-peer and client–server models.[40]A common hybrid model is to have a central server that helps peers find each other.Spotifywas an example of a hybrid model [until 2014].[citation needed]There are a variety of hybrid models, all of which make trade-offs between the centralized functionality provided by a structured server/client network and the node equality afforded by the pure peer-to-peer unstructured networks. Currently, hybrid models have better performance than either pure unstructured networks or pure structured networks because certain functions, such as searching, do require a centralized functionality but benefit from the decentralized aggregation of nodes provided by unstructured networks.[41]

CoopNet content distribution system

[edit]

CoopNet (Cooperative Networking)was a proposed system for off-loading serving to peers who have recentlydownloadedcontent, proposed by computer scientists Venkata N. Padmanabhan and Kunwadee Sripanidkulchai, working atMicrosoft ResearchandCarnegie Mellon University.[42][43]When aserverexperiences an increase in load it redirects incoming peers to other peers who have agreed tomirrorthe content, thus off-loading balance from the server. All of the information is retained at the server. This system makes use of the fact that the bottleneck is most likely in the outgoing bandwidth than theCPU,hence its server-centric design. It assigns peers to other peers who are 'close inIP' to its neighbors [same prefix range] in an attempt to use locality. If multiple peers are found with the samefileit designates that the node choose the fastest of its neighbors.Streaming mediais transmitted by having clientscachethe previous stream, and then transmit it piece-wise to new nodes.

Security and trust

[edit]

Peer-to-peer systems pose unique challenges from acomputer securityperspective. Like any other form ofsoftware,P2P applications can containvulnerabilities.What makes this particularly dangerous for P2P software, however, is that peer-to-peer applications act as servers as well as clients, meaning that they can be more vulnerable toremote exploits.[44]

Routing attacks

[edit]

Since each node plays a role in routing traffic through the network, malicious users can perform a variety of "routing attacks", ordenial of serviceattacks. Examples of common routing attacks include "incorrect lookup routing" whereby malicious nodes deliberately forward requests incorrectly or return false results, "incorrect routing updates" where malicious nodes corrupt the routing tables of neighboring nodes by sending them false information, and "incorrect routing network partition" where when new nodes are joining they bootstrap via a malicious node, which places the new node in a partition of the network that is populated by other malicious nodes.[44]

Corrupted data and malware

[edit]

The prevalence ofmalwarevaries between different peer-to-peer protocols.[45]Studies analyzing the spread of malware on P2P networks found, for example, that 63% of the answered download requests on thegnutellanetwork contained some form of malware, whereas only 3% of the content onOpenFTcontained malware. In both cases, the top three most common types of malware accounted for the large majority of cases (99% in gnutella, and 65% in OpenFT). Another study analyzing traffic on theKazaanetwork found that 15% of the 500,000 file sample taken were infected by one or more of the 365 differentcomputer virusesthat were tested for.[46]

Corrupted data can also be distributed on P2P networks by modifying files that are already being shared on the network. For example, on theFastTracknetwork, theRIAAmanaged to introduce faked chunks into downloads and downloaded files (mostlyMP3files). Files infected with the RIAA virus were unusable afterwards and contained malicious code. The RIAA is also known to have uploaded fake music and movies to P2P networks in order to deter illegal file sharing.[47]Consequently, the P2P networks of today have seen an enormous increase of their security and file verification mechanisms. Modernhashing,chunk verificationand different encryption methods have made most networks resistant to almost any type of attack, even when major parts of the respective network have been replaced by faked or nonfunctional hosts.[48]

Resilient and scalable computer networks

[edit]

The decentralized nature of P2P networks increases robustness because it removes thesingle point of failurethat can be inherent in a client–server based system.[49]As nodes arrive and demand on the system increases, the total capacity of the system also increases, and the likelihood of failure decreases. If one peer on the network fails to function properly, the whole network is not compromised or damaged. In contrast, in a typical client–server architecture, clients share only their demands with the system, but not their resources. In this case, as more clients join the system, fewer resources are available to serve each client, and if the central server fails, the entire network is taken down.

[edit]
Search results for the query "software libre"usingYaCy,a freedistributed search enginethat runs on a peer-to-peer network instead of making requests to centralized index servers

There are both advantages and disadvantages in P2P networks related to the topic of databackup,recovery, and availability. In a centralized network, the system administrators are the only forces controlling the availability of files being shared. If the administrators decide to no longer distribute a file, they simply have to remove it from their servers, and it will no longer be available to users. Along with leaving the users powerless in deciding what is distributed throughout the community, this makes the entire system vulnerable to threats and requests from the government and other large forces.

For example,YouTubehas been pressured by theRIAA,MPAA,and entertainment industry to filter out copyrighted content. Although server-client networks are able to monitor and manage content availability, they can have more stability in the availability of the content they choose to host. A client should not have trouble accessing obscure content that is being shared on a stable centralized network. P2P networks, however, are more unreliable in sharing unpopular files because sharing files in a P2P network requires that at least one node in the network has the requested data, and that node must be able to connect to the node requesting the data. This requirement is occasionally hard to meet because users may delete or stop sharing data at any point.[50]

In a P2P network, the community of users is entirely responsible for deciding which content is available. Unpopular files eventually disappear and become unavailable as fewer people share them. Popular files, however, are highly and easily distributed. Popular files on a P2P network are more stable and available than files on central networks. In a centralized network, a simple loss of connection between the server and clients can cause a failure, but in P2P networks, the connections between every node must be lost to cause a data-sharing failure. In a centralized system, the administrators are responsible for all data recovery and backups, while in P2P systems, each node requires its backup system. Because of the lack of central authority in P2P networks, forces such as the recording industry,RIAA,MPAA,and the government are unable to delete or stop the sharing of content on P2P systems.[51]

Applications

[edit]

Content delivery

[edit]

In P2P networks, clients both provide and use resources. This means that unlike client–server systems, the content-serving capacity of peer-to-peer networks can actuallyincreaseas more users begin to access the content (especially with protocols such asBittorrentthat require users to share, refer a performance measurement study[52]). This property is one of the major advantages of using P2P networks because it makes the setup and running costs very small for the original content distributor.[53][54]

File-sharing networks

[edit]

Peer-to-peer file sharingnetworks such asGnutella,G2,and theeDonkey networkhave been useful in popularizing peer-to-peer technologies. These advancements have paved the way forPeer-to-peer content delivery networksand services, including distributed caching systems like Correli Caches to enhance performance.[55]Furthermore, peer-to-peer networks have made possible the software publication and distribution, enabling efficient sharing ofLinux distributionand various games thoughle sharingnetworks.

[edit]

Peer-to-peer networking involves data transfer from one user to another without using an intermediate server. Companies developing P2P applications have been involved in numerous legal cases, primarily in the United States, over conflicts withcopyrightlaw.[56]Two major cases areGrokstervs RIAAandMGM Studios, Inc. v. Grokster, Ltd..[57]In the last case, the Court unanimously held that defendant peer-to-peer file sharing companies Grokster and Streamcast could be sued for inducing copyright infringement.

Multimedia

[edit]

TheP2PTVandPDTPprotocols are used in various peer-to-peer applications. Someproprietarymultimedia applications leverage a peer-to-peer network in conjunction with streaming servers to stream audio and video to their clients.Peercastingis employed for multicasting streams. Additionally, a project calledLionShare,undertaken byPennsylvania State University,MIT, andSimon Fraser University,aims to facilitate file sharing among educational institutions globally. Another notable program,Osiris,enables users to create anonymous and autonomous web portals that are distributed via a peer-to-peer network.

Other P2P applications

[edit]
Torrent fileconnect peers

Datis a distributed version-controlled publishing platform.I2P,is anoverlay networkused to browse the Internetanonymously.Unlike the related I2P, theTor networkis not itself peer-to-peer[dubiousdiscuss];however, it can enable peer-to-peer applications to be built on top of it viaonion services.TheInterPlanetary File System(IPFS) is aprotocoland network designed to create acontent-addressabl,peer-to-peer method of storing and sharinghypermediadistribution protocol, with nodes in the IPFS network forming adistributed file system.Jamiis a peer-to-peer chat andSIPapp.JXTAis a peer-to-peer protocol designed for theJava platform.Netsukukuis aWireless community networkdesigned to be independent from the Internet.Open Gardenis a connection-sharing application that shares Internet access with other devices using Wi-Fi or Bluetooth.

Resilio Syncis a directory-syncing app. Research includes projects such as theChord project,thePAST storage utility,theP-Grid,and theCoopNet content distribution system.Secure Scuttlebuttis a peer-to-peergossip protocolcapable of supporting many different types of applications, primarilysocial networking.Syncthingis also a directory-syncing app.Tradepall andM-commerceapplications are designed to power real-time marketplaces. TheU.S. Department of Defenseis conducting research on P2P networks as part of its modern network warfare strategy.[58]In May 2003,Anthony Tether,then director ofDARPA,testified that the United States military uses P2P networks.WebTorrentis a P2Pstreamingtorrent clientinJavaScriptfor use inweb browsers,as well as in theWebTorrent Desktopstandalone version that bridges WebTorrent andBitTorrentserverless networks.Microsoft,inWindows 10,uses a proprietary peer-to-peer technology called "Delivery Optimization" to deploy operating system updates using end-users' PCs either on the local network or other PCs. According to Microsoft's Channel 9, this led to a 30%-50% reduction in Internet bandwidth usage.[59]Artisoft'sLANtasticwas built as a peer-to-peer operating system where machines can function as both servers and workstations simultaneously.Hotline CommunicationsHotline Client was built with decentralized servers and tracker software dedicated to any type of files and continues to operate today.Cryptocurrenciesare peer-to-peer-baseddigital currenciesthat useblockchains

Social implications

[edit]

Incentivizing resource sharing and cooperation

[edit]
TheBitTorrentprotocol:In this animation, the colored bars beneath all of the 7 clients in the upper region above represent the file being shared, with each color representing an individual piece of the file. After the initial pieces transfer from theseed(large system at the bottom), the pieces are individually transferred from client to client. The original seeder only needs to send out one copy of the file for all the clients to receive a copy.

Cooperation among a community of participants is key to the continued success of P2P systems aimed at casual human users; these reach their full potential only when large numbers of nodes contribute resources. But in current practice, P2P networks often contain large numbers of users who utilize resources shared by other nodes, but who do not share anything themselves (often referred to as the "freeloader problem" ).

Freeloading can have a profound impact on the network and in some cases can cause the community to collapse.[60]In these types of networks "users have natural disincentives to cooperate because cooperation consumes their own resources and may degrade their own performance".[61]Studying the social attributes of P2P networks is challenging due to large populations of turnover, asymmetry of interest and zero-cost identity.[61]A variety of incentive mechanisms have been implemented to encourage or even force nodes to contribute resources.[62][44]

Some researchers have explored the benefits of enabling virtual communities to self-organize and introduce incentives for resource sharing and cooperation, arguing that the social aspect missing from today's P2P systems should be seen both as a goal and a means for self-organized virtual communities to be built and fostered.[63]Ongoing research efforts for designing effective incentive mechanisms in P2P systems, based on principles from game theory, are beginning to take on a more psychological and information-processing direction.

Privacy and anonymity

[edit]

Some peer-to-peer networks (e.g.Freenet) place a heavy emphasis onprivacyandanonymity—that is, ensuring that the contents of communications are hidden from eavesdroppers, and that the identities/locations of the participants are concealed.Public key cryptographycan be used to provideencryption,data validation,authorization, and authentication for data/messages.Onion routingand othermix networkprotocols (e.g. Tarzan) can be used to provide anonymity.[64]

Perpetrators oflive streaming sexual abuseand othercybercrimeshave used peer-to-peer platforms to carry out activities with anonymity.[65]

Political implications

[edit]

Intellectual property law and illegal sharing

[edit]

Although peer-to-peer networks can be used for legitimate purposes, rights holders have targeted peer-to-peer over the involvement with sharing copyrighted material. Peer-to-peer networking involves data transfer from one user to another without using an intermediate server. Companies developing P2P applications have been involved in numerous legal cases, primarily in the United States, primarily over issues surroundingcopyrightlaw.[56]Two major cases areGrokstervs RIAAandMGM Studios, Inc. v. Grokster, Ltd.[57]In both of the cases the file sharing technology was ruled to be legal as long as the developers had no ability to prevent the sharing of the copyrighted material.

To establish criminal liability for the copyright infringement on peer-to-peer systems, the government must prove that the defendant infringed a copyright willingly for the purpose of personal financial gain or commercial advantage.[66]Fair useexceptions allow limited use of copyrighted material to be downloaded without acquiring permission from the rights holders. These documents are usually news reporting or under the lines of research and scholarly work. Controversies have developed over the concern of illegitimate use of peer-to-peer networks regarding public safety and national security. When a file is downloaded through a peer-to-peer network, it is impossible to know who created the file or what users are connected to the network at a given time. Trustworthiness of sources is a potential security threat that can be seen with peer-to-peer systems.[67]

A study ordered by theEuropean Unionfound that illegal downloadingmaylead to an increase in overall video game sales because newer games charge for extra features or levels. The paper concluded that piracy had a negative financial impact on movies, music, and literature. The study relied on self-reported data about game purchases and use of illegal download sites. Pains were taken to remove effects of false and misremembered responses.[68][69][70]

Network neutrality

[edit]

Peer-to-peer applications present one of the core issues in thenetwork neutralitycontroversy. Internet service providers (ISPs) have been known to throttle P2P file-sharing traffic due to its high-bandwidthusage.[71]Compared to Web browsing, e-mail or many other uses of the internet, where data is only transferred in short intervals and relative small quantities, P2P file-sharing often consists of relatively heavy bandwidth usage due to ongoing file transfers and swarm/network coordination packets. In October 2007,Comcast,one of the largest broadband Internet providers in the United States, started blocking P2P applications such asBitTorrent.Their rationale was that P2P is mostly used to share illegal content, and their infrastructure is not designed for continuous, high-bandwidth traffic.

Critics point out that P2P networking has legitimate legal uses, and that this is another way that large providers are trying to control use and content on the Internet, and direct people towards aclient–server-based application architecture. The client–server model provides financial barriers-to-entry to small publishers and individuals, and can be less efficient for sharing large files. As a reaction to thisbandwidth throttling,several P2P applications started implementing protocol obfuscation, such as theBitTorrent protocol encryption.Techniques for achieving "protocol obfuscation" involves removing otherwise easily identifiable properties of protocols, such as deterministic byte sequences and packet sizes, by making the data look as if it were random.[72]The ISP's solution to the high bandwidth isP2P caching,where an ISP stores the part of files most accessed by P2P clients in order to save access to the Internet.

Current research

[edit]

Researchers have used computer simulations to aid in understanding and evaluating the complex behaviors of individuals within the network. "Networking research often relies on simulation in order to test and evaluate new ideas. An important requirement of this process is that results must be reproducible so that other researchers can replicate, validate, and extend existing work."[73]If the research cannot be reproduced, then the opportunity for further research is hindered. "Even though new simulators continue to be released, the research community tends towards only a handful of open-source simulators. The demand for features in simulators, as shown by our criteria and survey, is high. Therefore, the community should work together to get these features in open-source software. This would reduce the need for custom simulators, and hence increase repeatability and reputability of experiments."[73]

Popular simulators that were widely used in the past are NS2, OMNeT++, SimPy, NetLogo, PlanetLab, ProtoPeer, QTM, PeerSim, ONE, P2PStrmSim, PlanetSim, GNUSim, and Bharambe.[74]

Besides all the above stated facts, there has also been work done on ns-2 open source network simulators. One research issue related to free rider detection and punishment has been explored using ns-2 simulator here.[75]

See also

[edit]

References

[edit]
  1. ^Cope, James (2002-04-08)."What's a Peer-to-Peer (P2P) Network?".Computerworld.Retrieved2021-12-21.
  2. ^Desire Athow (12 July 2016)."Why personal area networks are the best thing to happen to hotel Wi-Fi".
  3. ^Rüdiger Schollmeier,A Definition of Peer-to-Peer Networking for the Classification of Peer-to-Peer Architectures and Applications,Proceedings of the First International Conference on Peer-to-Peer Computing, IEEE (2002).
  4. ^abBandara, H. M. N. D; A. P. Jayasumana (2012). "Collaborative Applications over Peer-to-Peer Systems – Challenges and Solutions".Peer-to-Peer Networking and Applications.6(3): 257–276.arXiv:1207.0790.Bibcode:2012arXiv1207.0790D.doi:10.1007/s12083-012-0157-3.S2CID14008541.
  5. ^abBarkai, David (2001).Peer-to-peer computing: technologies for sharing and collaborating on the net.Hillsboro, OR: Intel Press.ISBN978-0970284679.OCLC49354877.
  6. ^Saroiu, Stefan; Gummadi, Krishna P.; Gribble, Steven D. (2003-08-01)."Measuring and analyzing the characteristics of Napster and Gnutella hosts".Multimedia Systems.9(2): 170–184.doi:10.1007/s00530-003-0088-1.ISSN1432-1882.S2CID15963045.
  7. ^"What Is BitTorrent and Is It Safe?".www.kaspersky.com.2023-04-19.Retrieved2023-10-24.
  8. ^"האוניברסיטה הפתוחה".www.openu.ac.il.Retrieved2024-07-15.
  9. ^abOram, Andrew, ed. (2001).Peer-to-peer: harnessing the benefits of disruptive technology.Sebastopol, California:O'Reilly.ISBN9780596001100.OCLC123103147.
  10. ^RFC 1,Host Software,S. Crocker, IETF Working Group (April 7, 1969)
  11. ^Oppliger, R. (1995)."Internet security enters the Middle Ages".Computer.28(10): 100–101.doi:10.1109/2.467613.Retrieved2023-12-14.
  12. ^Berners-Lee, Tim (August 1996)."The World Wide Web: Past, Present and Future".Retrieved5 November2011.
  13. ^Sandhu, R.; Zhang, X. (2005)."Peer-to-peer access control architecture using trusted computing technology".Proceedings of the tenth ACM symposium on Access control models and technologies.pp. 147–158.doi:10.1145/1063979.1064005.ISBN1595930450.S2CID1478064.
  14. ^abcdSteinmetz, Ralf; Wehrle, Klaus (2005). "2. What Is This" Peer-to-Peer "About?".Peer-to-Peer Systems and Applications.Lecture Notes in Computer Science. Springer, Berlin, Heidelberg. pp. 9–16.doi:10.1007/11530657_2.ISBN9783540291923.
  15. ^Horton, Mark, and Rick Adams. "Standard for interchange of USENET messages." (1987): 1.https://www.hjp.at/doc/rfc/rfc1036.htmlArchived2021-06-12 at theWayback Machine
  16. ^Sharma, M. K."CLIENT SERVER TECHNOLOGY"(PDF).SWAMI VIVEKANAND SUBHARTI UNIVERSITY.
  17. ^"Practical Applications of Peer-to-Peer Networks in File Sharing and Content Distribution | SimpleSwap".SimpleSwap | Cryptocurrency exchange blog.Retrieved2024-08-21.
  18. ^"Overlay Network - an overview | ScienceDirect Topics".www.sciencedirect.com.Retrieved2024-08-21.
  19. ^Ahson, Syed A.; Ilyas, Mohammad, eds. (2008).SIP Handbook: Services, Technologies, and Security of Session Initiation Protocol.Taylor & Francis. p. 204.ISBN9781420066043.
  20. ^Zhu, Ce; et al., eds. (2010).Streaming Media Architectures: Techniques and Applications: Recent Advances.IGI Global. p. 265.ISBN9781616928339.
  21. ^Kamel, Mina; et al. (2007)."Optimal Topology Design for Overlay Networks".In Akyildiz, Ian F. (ed.).Networking 2007: Ad Hoc and Sensor Networks, Wireless Networks, Next Generation Internet: 6th International IFIP-TC6 Networking Conference, Atlanta, GA, USA, May 14-18, 2007 Proceedings.Springer. p. 714.ISBN9783540726050.
  22. ^Filali, Imen; et al. (2011)."A Survey of Structured P2P Systems for RDF Data Storage and Retrieval".In Hameurlain, Abdelkader; et al. (eds.).Transactions on Large-Scale Data- and Knowledge-Centered Systems III: Special Issue on Data and Knowledge Management in Grid and PSP Systems.Springer. p. 21.ISBN9783642230738.
  23. ^abZulhasnine, Mohammed; et al. (2013)."P2P Streaming Over Cellular Networks: Issues, Challenges, and Opportunities".In Pathan; et al. (eds.).Building Next-Generation Converged Networks: Theory and Practice.CRC Press. p. 99.ISBN9781466507616.
  24. ^Chervenak, Ann; Bharathi, Shishir (2008)."Peer-to-peer Approaches to Grid Resource Discovery".In Danelutto, Marco; et al. (eds.).Making Grids Work: Proceedings of the CoreGRID Workshop on Programming Models Grid and P2P System Architecture Grid Systems, Tools and Environments 12-13 June 2007, Heraklion, Crete, Greece.Springer. p. 67.ISBN9780387784489.
  25. ^Jin, Xing; Chan, S.-H. Gary (2010). "Unstructured Peer-to-Peer Network Architectures". In Shen; et al. (eds.).Handbook of Peer-to-Peer Networking.Springer. p. 119.ISBN978-0-387-09750-3.
  26. ^abLv, Qin; et al. (2002)."Can Heterogeneity Make Gnutella Stable?".In Druschel, Peter; et al. (eds.).Peer-to-Peer Systems: First International Workshop, IPTPS 2002, Cambridge, MA, USA, March 7-8, 2002, Revised Papers.Springer. p.94.ISBN9783540441793.
  27. ^Shen, Xuemin; Yu, Heather; Buford, John; Akon, Mursalin (2009).Handbook of Peer-to-Peer Networking(1st ed.). New York: Springer. p. 118.ISBN978-0-387-09750-3.
  28. ^Dhara, Krishna; Kolberg, Mario (January 2010)."Overview of Structured Peer-to-Peer Overlay Algorithms".ResearchGate.
  29. ^R. Ranjan, A. Harwood, and R. Buyya, "Peer-to-peer based resource discovery in global grids: a tutorial,"IEEE Commun. Surv.,vol. 10, no. 2. and P. Trunfio, "Peer-to-Peer resource discovery in Grids: Models and systems,"Future Generation Computer Systemsarchive, vol. 23, no. 7, Aug. 2007.
  30. ^Kelaskar, M.; Matossian, V.; Mehra, P.; Paul, D.; Parashar, M. (2002).A Study of Discovery Mechanisms for Peer-to-Peer Application.IEEE Computer Society. pp. 444–.ISBN9780769515823.
  31. ^Dabek, Frank; Zhao, Ben; Druschel, Peter; Kubiatowicz, John; Stoica, Ion (2003). "Towards a Common API for Structured Peer-to-Peer Overlays".Peer-to-Peer Systems II.Lecture Notes in Computer Science. Vol. 2735. pp. 33–44.CiteSeerX10.1.1.12.5548.doi:10.1007/978-3-540-45172-3_3.ISBN978-3-540-40724-9.
  32. ^Moni Naor and Udi Wieder.Novel Architectures for P2P Applications: the Continuous-Discrete ApproachArchived2019-12-09 at theWayback Machine.Proc. SPAA, 2003.
  33. ^Gurmeet Singh Manku.Dipsea: A Modular Distributed Hash TableArchived2004-09-10 at theWayback Machine.Ph. D. Thesis (Stanford University), August 2004.
  34. ^Byung-Gon Chun, Ben Y. Zhao, John D. Kubiatowicz (2005-02-24)."Impact of Neighbor Selection on Performance and Resilience of Structured P2P Networks"(PDF).Retrieved2019-08-24.{{cite web}}:CS1 maint: multiple names: authors list (link)
  35. ^Li, Deng; et al. (2009). Vasilakos, A.V.; et al. (eds.).An Efficient, Scalable, and Robust P2P Overlay for Autonomic Communication.Springer. p. 329.ISBN978-0-387-09752-7.
  36. ^Bandara, H. M. N. Dilum; Jayasumana, Anura P. (January 2012). "Evaluation of P2P Resource Discovery Architectures Using Real-Life Multi-Attribute Resource and Query Characteristics".IEEE Consumer Communications and Networking Conf. (CCNC '12).
  37. ^Korzun, Dmitry; Gurtov, Andrei (November 2012).Structured P2P Systems: Fundamentals of Hierarchical Organization, Routing, Scaling, and Security.Springer.ISBN978-1-4614-5482-3.
  38. ^Ranjan, Rajiv; Harwood, Aaron; Buyya, Rajkumar (1 December 2006)."A Study on Peer-to-Peer Based Discovery of Grid Resource Information"(PDF).Archived fromthe original(PDF)on 14 May 2011.Retrieved25 August2008.
  39. ^Ranjan, Rajiv; Chan, Lipo; Harwood, Aaron; Karunasekera, Shanika; Buyya, Rajkumar."Decentralised Resource Discovery Service for Large Scale Federated Grids"(PDF).Archived fromthe original(PDF)on 2008-09-10.
  40. ^Darlagiannis, Vasilios (2005)."Hybrid Peer-to-Peer Systems".In Steinmetz, Ralf; Wehrle, Klaus (eds.).Peer-to-Peer Systems and Applications.Springer.ISBN9783540291923.
  41. ^Yang, Beverly; Garcia-Molina, Hector (2001)."Comparing Hybrid Peer-to-Peer Systems"(PDF).Very Large Data Bases.Retrieved8 October2013.
  42. ^Padmanabhan, Venkata N.; Sripanidkulchai, Kunwadee (2002).The Case for Cooperative Networking (PostScript with addendum).Lecture Notes in Computer Science. Vol. Proceedings of the First International Workshop on Peer-to-Peer Systems. Cambridge, MA: Springer (published March 2002). pp.178.doi:10.1007/3-540-45748-8_17.ISBN978-3-540-44179-3.PDF (Microsoft, with addendum)Archived2007-04-17 at theWayback MachinePDF (Springer, original, fee may be required)Archived2023-01-01 at theWayback Machine
  43. ^"CoopNet: Cooperative Networking".Microsoft Research.Project home page.
  44. ^abcVu, Quang H.; et al. (2010).Peer-to-Peer Computing: Principles and Applications.Springer. p. 8.ISBN978-3-642-03513-5.
  45. ^"Malware Propagation Modelling in Peer-to-Peer Networks: A Review"(PDF).
  46. ^Goebel, Jan; et al. (2007)."Measurement and Analysis of Autonomous Spreading Malware in a University Environment".In Hämmerli, Bernhard Markus; Sommer, Robin (eds.).Detection of Intrusions and Malware, and Vulnerability Assessment: 4th International Conference, DIMVA 2007 Lucerne, Switzerland, July 12-13, 2007 Proceedings.Springer. p. 112.ISBN9783540736134.
  47. ^Sorkin, Andrew Ross (4 May 2003)."Software Bullet Is Sought to Kill Musical Piracy".New York Times.Retrieved5 November2011.
  48. ^Singh, Vivek; Gupta, Himani (2012).Anonymous File Sharing in Peer to Peer System by Random Walks(Technical report). SRM University. 123456789/9306.
  49. ^Lua, Eng Keong; Crowcroft, Jon; Pias, Marcelo; Sharma, Ravi; Lim, Steven (2005)."A survey and comparison of peer-to-peer overlay network schemes".Archived fromthe originalon 2012-07-24.
  50. ^Balakrishnan, Hari; Kaashoek, M. Frans; Karger, David; Morris, Robert; Stoica, Ion (2003)."Looking up data in P2P systems"(PDF).Communications of the ACM.46(2): 43–48.CiteSeerX10.1.1.5.3597.doi:10.1145/606272.606299.S2CID2731647.Retrieved8 October2013.
  51. ^"Art thou a Peer?".www.p2pnews.net.14 June 2012. Archived fromthe originalon 6 October 2013.Retrieved10 October2013.
  52. ^Sharma, Parul; Bhakuni, Anuja; Kaushal, Rishabh (2013)."Performance analysis of BitTorrent protocol".2013 National Conference on Communications (NCC).pp. 1–5.doi:10.1109/NCC.2013.6488040.ISBN978-1-4673-5952-8.
  53. ^Li, Jin (2008)."On peer-to-peer (P2P) content delivery"(PDF).Peer-to-Peer Networking and Applications.1(1): 45–63 ≤≥.doi:10.1007/s12083-007-0003-1.S2CID16438304.
  54. ^Stutzbach, Daniel; et al. (2005)."The scalability of swarming peer-to-peer content delivery"(PDF).In Boutaba, Raouf; et al. (eds.).NETWORKING 2005 -- Networking Technologies, Services, and Protocols; Performance of Computer and Communication Networks; Mobile and Wireless Communications Systems.Springer. pp. 15–26.ISBN978-3-540-25809-4.
  55. ^Gareth Tyson, Andreas Mauthe, Sebastian Kaune, Mu Mu and Thomas Plagemann. Corelli: A Dynamic Replication Service for Supporting Latency-Dependent Content in Community Networks. In Proc. 16th ACM/SPIE Multimedia Computing and Networking Conference (MMCN), San Jose, CA (2009)."Archived copy"(PDF).Archived fromthe original(PDF)on 2011-04-29.Retrieved2011-03-12.{{cite web}}:CS1 maint: archived copy as title (link)
  56. ^abGlorioso, Andrea; et al. (2010). "The Social Impact of P2P Systems". In Shen; et al. (eds.).Handbook of Peer-to-Peer Networking.Springer. p. 48.ISBN978-0-387-09750-3.
  57. ^abJohn Borland (April 25, 2003)."Judge: File-Swapping Tools are Legal".news.cnet.com.Archived fromthe originalon 2012-03-10.
  58. ^Walker, Leslie (2001-11-08)."Uncle Sam Wants Napster!".The Washington Post.Retrieved2010-05-22.
  59. ^Hammerksjold Andreas; Engler, Narkis,"Delivery Optimization - a deep dive"Archived2019-02-04 at theWayback Machine,Channel 9,11 October 2017, Retrieved on 4 February 2019.
  60. ^Krishnan, R., Smith, M. D., Tang, Z., & Telang, R. (2004, January). The impact of free-riding on peer-to-peer networks. In System Sciences, 2004. Proceedings of the 37th Annual Hawaii International Conference on (pp. 10-pp). IEEE.
  61. ^abFeldman, M., Lai, K., Stoica, I., & Chuang, J. (2004, May). Robust incentive techniques for peer-to-peer networks. In Proceedings of the 5th ACM conference on Electronic commerce (pp. 102-111). ACM.
  62. ^Vu, Quang H.; et al. (2010).Peer-to-Peer Computing: Principles and Applications.Springer. p. 172.ISBN978-3-642-03513-5.
  63. ^P. Antoniadis and B. Le Grand, "Incentives for resource sharing in self-organized communities: From economics to social psychology," Digital Information Management (ICDIM '07), 2007
  64. ^Vu, Quang H.; et al. (2010).Peer-to-Peer Computing: Principles and Applications.Springer. pp. 179–181.ISBN978-3-642-03513-5.
  65. ^"No country is free from child sexual abuse, exploitation, UN's top rights forum hears".UN News.March 3, 2020.
  66. ^Majoras, D. B. (2005). Peer-to-peer file-sharing technology consumer protection and competition issues. Federal Trade Commission, Retrieved fromhttp://www.ftc.gov/reports/p2p05/050623p2prpt.pdfArchived2012-11-01 at theWayback Machine
  67. ^The Government of the Hong Kong Special Administrative Region, (2008). Peer-to-peer network. Retrieved from website:http://www.infosec.gov.hk/english/technical/files/peer.pdfArchived2019-12-09 at theWayback Machine
  68. ^Sanders, Linley (2017-09-22)."Illegal downloads may not actually harm sales, but the European Union doesn't want you to know that".Newsweek.Retrieved2018-03-29.
  69. ^Polgar, David Ryan (October 15, 2017)."Does Video Game Piracy Actually Result in More Sales?".Big Think.Retrieved2018-03-29.
  70. ^Orland, Kyle (September 26, 2017)."EU study finds piracy doesn't hurt game sales, may actually help".Ars Technica.Retrieved2018-03-29.
  71. ^"What is bandwidth throttling? How to stop it | NordVPN".nordvpn.com.2022-07-01.Retrieved2024-08-21.
  72. ^Hjelmvik, Erik; John, Wolfgang (2010-07-27)."Breaking and Improving Protocol Obfuscation"(PDF).Technical Report.ISSN1652-926X.
  73. ^abBasu, A., Fleming, S., Stanier, J., Naicken, S., Wakeman, I., & Gurbani, V. K. (2013). The state of peer-to-peer network simulators. ACM Computing Surveys, 45(4), 46.
  74. ^Ihle, Cornelius; Trautwein, Dennis; Schubotz, Moritz; Meuschke, Norman; Gipp, Bela (2023-01-24)."Incentive Mechanisms in Peer-to-Peer Networks — A Systematic Literature Review".ACM Computing Surveys.55(14s): 1–69.doi:10.1145/3578581.ISSN0360-0300.S2CID256106264.
  75. ^A Bhakuni, P Sharma, R Kaushal"Free-rider detection and punishment in BitTorrent based P2P networks",International Advanced Computing Conference, 2014.doi:10.1109/IAdCC.2014.6779311
[edit]