SlideShare una empresa de Scribd logo
1 de 30
Vivek .P
S7 CSE
Roll No :68
Plug and Play

Plug and Play (PnP) means that you can connect a device or insert a card
into your computer and it is automatically recognized and configured to work
in your system
Universal Plug and Play (UPnP)

Universal Plug and Play (UPnP) extends this simplicity to include the entire network,
enabling discovery and control of devices, including networked devices and services,
such as network-attached printers, Internet gateways.
1. Universal Plug and Play (UPnP) is a set of networking protocols that permits
networked devices, such as personal computers, printers, Internet gateways, Wi-Fi
access points and mobile devices to seamlessly discover each other's presence on
the network and establish functional network services for data sharing,
communications, and entertainment.
With UPnP
 A device can dynamically join a network, obtain an IP address.
 Convey its capabilities, and learn about the presence and capabilities
of other devices.
 All automatically; truly enabling zero configuration networks.
Who Defines UPnP?
The Universal Plug and Play Forum defines UPnP Device and Service Descriptions
(originally called Device Control Protocols or DCPs)

The Universal Plug and Play Forum is a group of companies and individuals across the
industry that intend to play a leading role in the authoring of specifications for UPnP
devices and services.
Components of a UPnP Network
Devices, Services and Control Points

The basic building blocks of a UPnP network are devices, services and control
points
Devices
 A UPnP device is a container of services and nested devices.
 Different categories of UPnP devices will be associated with different
sets of services and embedded devices
 Consequently, different working groups will standardize on the set of
services that a particular device type will provide
 All of this information is captured in
an XML device description document
that the device must host
Services
 The smallest unit of control in a UPnP network is a service. A service exposes
actions and models its state with state variables.
 Similar to the device description, this information is part of an XML service
description standardized by the UPnP forum.
 A service in a UPnP device consists of a state table, a control server and an
event server.
o The state table models the state of the service through state
variables and updates them when the state changes
o The control server receives action requests (such as set_time),
executes them, updates the state table and returns responses.
o The event server publishes events to interested subscribers
anytime the state of the service changes.
Control Points
A control point in a UPnP network is a controller capable of discovering and controlling
other devices. After discovery, a control point could:
Retrieve the device description and get a list of associated services.
Retrieve service descriptions for interesting services.
Invoke actions to control the service.
Subscribe to the service’s event source. Anytime the state of the service changes, the
event server will send an event to the control point.
Protocols Used by UPnP
UPnP leverages many existing, standard protocols.
Using these standardized protocols aids in ensuring interoperability between vendor
implementations
The protocols used to implement UPnP are found in use on the Internet and on local
area networks everywhere.
This prevalence ensures that there is a large pool of people knowledgeable in
implementing and deploying solutions based on these protocols.
TCP/IP
The TCP/IP networking protocol stack serves as the base on which the rest of the
UPnP protocols are built.
 UPnP devices can use many of the protocols in the TCP/IP stack including TCP,
UDP, IGMP, ARP and IP as well as TCP/IP services such as DHCP and DNS.
 Since TCP/IP is one of the most ubiquitous networking protocols, locating or
creating an implementation for a UPnP device that is tuned for footprint and/or
performance is relatively easy.
HTTP, HTTPU, HTTPMU
 HTTP, which is hugely responsible for the success of the Internet, is also a core
part of UPnP.
 All aspects of UPnP build on top of HTTP or its variants.
 HTTPU (and HTTPMU) are variants of HTTP defined to deliver messages on top
of UDP/IP instead of TCP/IP.

GENA
Generic Event Notification Architecture (GENA) was defined to provide the ability to
send and receive notifications using HTTP over TCP/IP and multicast UDP.
SSDP
 Simple Service Discovery Protocol (SSDP), as the name implies, defines how
network services can be discovered on the network.
 SSDP is built on HTTPU and HTTPMU and defines methods both for a control
point to locate resources of interest on the network, and for devices to
announce their availability on the network.
 By defining the use of both search requests and presence announcements,
SSDP eliminates the overhead that would be necessary if only one of these
mechanisms is used
 As a result, every control point on the network has complete information on
network state while keeping network traffic low.
 A UPnP control point, upon booting up, can send an SSDP search request (over
HTTPMU), to discover devices and services that are available on the network.
SOAP
Simple Object Access Protocol (SOAP) defines the use of Extensible Markup
Language (XML) and HTTP to execute remote procedure calls.
 It is becoming the standard for RPC based communication over the Internet.
By making use of the Internet’s existing infrastructure, it can work effectively with
firewalls and proxies.
 Each UPnP control request is a SOAP message that contains the action to invoke
along with a set of parameters.
Steps Involved in UPnP Networking
Addressing

 The foundation for UPnP networking is the TCP/IP protocol suite and the key to
this suite is addressing.
 Each device must have a Dynamic Host Configuration Protocol (DHCP) client
and search for a DHCP server when the device is first connected to the
network.
 If a DHCP server is available, the device must use the IP address assigned
to it.
 A device may implement higher layer protocols outside of UPnP that use friendly
names for devices
 In these cases, it becomes necessary to resolve friendly host (device) names
to IP address
 Domain Name Services (DNS) are usually used for this.
Discovery

 Once devices are attached to the network and addressed appropriately,
discovery can take place.
 When a device is added to the network, SSDP allows that device to
advertise its services to control points on the network.
 When a control point is added to the network, SSDP allows that control
point to search for devices of interest on the network.
 The fundamental exchange in both cases is a discovery message
containing a few, essential specifics about the device or one of its services,
for example its type, identifier, and a pointer to its XML device description
document.
Description

 After a control point has discovered a device, the control point still knows
very little about the device.
 For the control point to learn more about the device and its capabilities, or to
interact with the device, the control point must retrieve the device's
description from the URL provided by the device in the discovery message.
 The UPnP description for a device is expressed in XML and includes vendorspecific, manufacturer information including the
 model name and number,
 serial number,
 manufacturer name,
 URLs to vendor-specific Web sites,
Control

 To control a device, a control point sends an action request to a device's
service.
 To do this, a control point sends a suitable control message to the control
URL for the service (provided in the device description).
 Control messages are also expressed in XML using SOAP.

 In response to the control message, the service returns action specific
values or fault codes
Eventing

 A UPnP description for a service includes a list of actions the service
responds to and a list of variables that model the state of the service at
run time.
 The service publishes updates when these variables change, and a control
point may subscribe to receive this information.
 Event messages contain the names of one of more state variables and the
current value of those variables.
 These messages are also expressed in XML and formatted using GENA.
Presentation

If a device has a URL for presentation, then the control point can retrieve
a page from this URL, load the page into a browser, and depending on
the capabilities of the page, allow a user to control the device and/or
view device status.
Future scope
The scope of UPnP is large enough to encompass many existing, as well as
new and exciting scenarios including home automation, printing and
imaging, audio/video entertainment, kitchen appliances, automobile
networks, and proximity networks in public venues.
 Universal Plug and Play (UPnP) is a set of networking protocols that permits
networked devices
 Universal Plug and Play is an open initiative to take existing standards, existing
technologies and existing knowledge, re-purpose it, and deliver on the promise
and opportunity of the networked world.
 Standards-based, simple enough for the smallest appliances to implement,
powerful enough to scale to the global Internet, and based on the proven
approach of Internet protocols.
 Universal Plug and Play is an incremental approach, but an approach that has
been proven to work.
Upnp
Upnp

Más contenido relacionado

La actualidad más candente

Electronics seminar topics
Electronics seminar topicsElectronics seminar topics
Electronics seminar topics123seminarsonly
 
Blue Brain Seminar Report
Blue Brain Seminar ReportBlue Brain Seminar Report
Blue Brain Seminar ReportVarun A M
 
Đề tài: Ứng dụng công nghệ mạng cảm biến không dây cho cảnh báo cháy rừng sớm
Đề tài: Ứng dụng công nghệ mạng cảm biến không dây cho cảnh báo cháy rừng sớmĐề tài: Ứng dụng công nghệ mạng cảm biến không dây cho cảnh báo cháy rừng sớm
Đề tài: Ứng dụng công nghệ mạng cảm biến không dây cho cảnh báo cháy rừng sớmDịch vụ viết thuê Khóa Luận - ZALO 0932091562
 
Bringing AI research to wireless communication and sensing
Bringing AI research to wireless communication and sensingBringing AI research to wireless communication and sensing
Bringing AI research to wireless communication and sensingQualcomm Research
 
Introduction to FreeRTOS
Introduction to FreeRTOSIntroduction to FreeRTOS
Introduction to FreeRTOSICS
 
Đồ án điện tử Công nghệ nhận dạng đối tượng bằng sóng vô tuyến RFID - sdt/ ZA...
Đồ án điện tử Công nghệ nhận dạng đối tượng bằng sóng vô tuyến RFID - sdt/ ZA...Đồ án điện tử Công nghệ nhận dạng đối tượng bằng sóng vô tuyến RFID - sdt/ ZA...
Đồ án điện tử Công nghệ nhận dạng đối tượng bằng sóng vô tuyến RFID - sdt/ ZA...Viết thuê báo cáo thực tập giá rẻ
 
Solution on Portable Blood Pressure Monitor System
Solution on Portable Blood Pressure Monitor SystemSolution on Portable Blood Pressure Monitor System
Solution on Portable Blood Pressure Monitor SystemPremier Farnell
 
TS BÙI QUANG XUÂN. VIỆT NAM - CÔNG NGHỆ 5G
TS BÙI QUANG XUÂN. VIỆT NAM - CÔNG NGHỆ 5G TS BÙI QUANG XUÂN. VIỆT NAM - CÔNG NGHỆ 5G
TS BÙI QUANG XUÂN. VIỆT NAM - CÔNG NGHỆ 5G Bùi Quang Xuân
 
assisting device for visually impaired person
assisting device for visually impaired personassisting device for visually impaired person
assisting device for visually impaired personPushpa Gothwal
 
3GPP TR 22.885 study on LTE support for V2X services
3GPP TR 22.885 study on LTE support for V2X services3GPP TR 22.885 study on LTE support for V2X services
3GPP TR 22.885 study on LTE support for V2X servicesYi-Hsueh Tsai
 

La actualidad más candente (20)

Đề tài: Ứng dụng lập trình điều khiển động cơ bước sử dụng chip
Đề tài: Ứng dụng lập trình điều khiển động cơ bước sử dụng chipĐề tài: Ứng dụng lập trình điều khiển động cơ bước sử dụng chip
Đề tài: Ứng dụng lập trình điều khiển động cơ bước sử dụng chip
 
Electronics seminar topics
Electronics seminar topicsElectronics seminar topics
Electronics seminar topics
 
Blue Brain Seminar Report
Blue Brain Seminar ReportBlue Brain Seminar Report
Blue Brain Seminar Report
 
Đề tài: Ứng dụng công nghệ mạng cảm biến không dây cho cảnh báo cháy rừng sớm
Đề tài: Ứng dụng công nghệ mạng cảm biến không dây cho cảnh báo cháy rừng sớmĐề tài: Ứng dụng công nghệ mạng cảm biến không dây cho cảnh báo cháy rừng sớm
Đề tài: Ứng dụng công nghệ mạng cảm biến không dây cho cảnh báo cháy rừng sớm
 
Thiết kế hệ thống thông tin quang WDM sử dụng khuếch đại quang
Thiết kế hệ thống thông tin quang WDM sử dụng khuếch đại quangThiết kế hệ thống thông tin quang WDM sử dụng khuếch đại quang
Thiết kế hệ thống thông tin quang WDM sử dụng khuếch đại quang
 
Light tree
Light treeLight tree
Light tree
 
Luận văn: Học máy cho bài toán trích xuất thông tin quan điểm, 9đ
Luận văn: Học máy cho bài toán trích xuất thông tin quan điểm, 9đLuận văn: Học máy cho bài toán trích xuất thông tin quan điểm, 9đ
Luận văn: Học máy cho bài toán trích xuất thông tin quan điểm, 9đ
 
Nb iot presentation
Nb iot presentationNb iot presentation
Nb iot presentation
 
Bringing AI research to wireless communication and sensing
Bringing AI research to wireless communication and sensingBringing AI research to wireless communication and sensing
Bringing AI research to wireless communication and sensing
 
Introduction to FreeRTOS
Introduction to FreeRTOSIntroduction to FreeRTOS
Introduction to FreeRTOS
 
RFID with INTERNET OF THINGS
RFID with INTERNET OF THINGSRFID with INTERNET OF THINGS
RFID with INTERNET OF THINGS
 
SMART DUST
SMART DUSTSMART DUST
SMART DUST
 
Đề tài: Mô hình ứng dụng IOT điều khiển các thiết bị điện trong nhà
Đề tài: Mô hình ứng dụng IOT điều khiển các thiết bị điện trong nhàĐề tài: Mô hình ứng dụng IOT điều khiển các thiết bị điện trong nhà
Đề tài: Mô hình ứng dụng IOT điều khiển các thiết bị điện trong nhà
 
Wireless usb
Wireless usbWireless usb
Wireless usb
 
FreeRTOS introduction
FreeRTOS introductionFreeRTOS introduction
FreeRTOS introduction
 
Đồ án điện tử Công nghệ nhận dạng đối tượng bằng sóng vô tuyến RFID - sdt/ ZA...
Đồ án điện tử Công nghệ nhận dạng đối tượng bằng sóng vô tuyến RFID - sdt/ ZA...Đồ án điện tử Công nghệ nhận dạng đối tượng bằng sóng vô tuyến RFID - sdt/ ZA...
Đồ án điện tử Công nghệ nhận dạng đối tượng bằng sóng vô tuyến RFID - sdt/ ZA...
 
Solution on Portable Blood Pressure Monitor System
Solution on Portable Blood Pressure Monitor SystemSolution on Portable Blood Pressure Monitor System
Solution on Portable Blood Pressure Monitor System
 
TS BÙI QUANG XUÂN. VIỆT NAM - CÔNG NGHỆ 5G
TS BÙI QUANG XUÂN. VIỆT NAM - CÔNG NGHỆ 5G TS BÙI QUANG XUÂN. VIỆT NAM - CÔNG NGHỆ 5G
TS BÙI QUANG XUÂN. VIỆT NAM - CÔNG NGHỆ 5G
 
assisting device for visually impaired person
assisting device for visually impaired personassisting device for visually impaired person
assisting device for visually impaired person
 
3GPP TR 22.885 study on LTE support for V2X services
3GPP TR 22.885 study on LTE support for V2X services3GPP TR 22.885 study on LTE support for V2X services
3GPP TR 22.885 study on LTE support for V2X services
 

Similar a Upnp

Extending UPnP for Application Interoperability in a Home Network
Extending UPnP for Application Interoperability in a Home Network Extending UPnP for Application Interoperability in a Home Network
Extending UPnP for Application Interoperability in a Home Network IJECEIAES
 
X-Device Service Discovery
X-Device Service DiscoveryX-Device Service Discovery
X-Device Service DiscoveryTekObserver
 
Rapid7 Report: Security Flaws in Universal Plug and Play: Unplug, Don't Play.
Rapid7 Report: Security Flaws in Universal Plug and Play: Unplug, Don't Play.Rapid7 Report: Security Flaws in Universal Plug and Play: Unplug, Don't Play.
Rapid7 Report: Security Flaws in Universal Plug and Play: Unplug, Don't Play.Rapid7
 
Security flawsu pnp
Security flawsu pnpSecurity flawsu pnp
Security flawsu pnplosalamos
 
XMPP, HTTP and UPnP
XMPP, HTTP and UPnPXMPP, HTTP and UPnP
XMPP, HTTP and UPnPITVoyagers
 
Computer networks - CBSE New Syllabus (083) Class - XII
Computer networks - CBSE  New Syllabus (083) Class - XIIComputer networks - CBSE  New Syllabus (083) Class - XII
Computer networks - CBSE New Syllabus (083) Class - XIIDeepak Singh
 
NON-INTRUSIVE REMOTE MONITORING OF SERVICES IN A DATA CENTRE
NON-INTRUSIVE REMOTE MONITORING OF SERVICES IN A DATA CENTRENON-INTRUSIVE REMOTE MONITORING OF SERVICES IN A DATA CENTRE
NON-INTRUSIVE REMOTE MONITORING OF SERVICES IN A DATA CENTREcscpconf
 
UPnP Forum Overview - H Elenbaas
UPnP Forum Overview - H ElenbaasUPnP Forum Overview - H Elenbaas
UPnP Forum Overview - H Elenbaasmfrancis
 
Opmanagertechnicaloverview 160128123947
Opmanagertechnicaloverview 160128123947Opmanagertechnicaloverview 160128123947
Opmanagertechnicaloverview 160128123947Sandeep Kumar Yadav
 
SIPifying OSGi - M Ma
SIPifying OSGi - M MaSIPifying OSGi - M Ma
SIPifying OSGi - M Mamfrancis
 
Introduction to NBL
Introduction to NBLIntroduction to NBL
Introduction to NBLFei Ji Siao
 
New OpManager v12
New OpManager v12New OpManager v12
New OpManager v12Inuit AB
 
OPC OLE for Process Control (OPC)
OPC OLE for Process Control (OPC)OPC OLE for Process Control (OPC)
OPC OLE for Process Control (OPC)Mostafa Ragab
 

Similar a Upnp (20)

UpnP in Digital Home Networking
UpnP in Digital Home NetworkingUpnP in Digital Home Networking
UpnP in Digital Home Networking
 
Extending UPnP for Application Interoperability in a Home Network
Extending UPnP for Application Interoperability in a Home Network Extending UPnP for Application Interoperability in a Home Network
Extending UPnP for Application Interoperability in a Home Network
 
X-Device Service Discovery
X-Device Service DiscoveryX-Device Service Discovery
X-Device Service Discovery
 
Rapid7 Report: Security Flaws in Universal Plug and Play: Unplug, Don't Play.
Rapid7 Report: Security Flaws in Universal Plug and Play: Unplug, Don't Play.Rapid7 Report: Security Flaws in Universal Plug and Play: Unplug, Don't Play.
Rapid7 Report: Security Flaws in Universal Plug and Play: Unplug, Don't Play.
 
Security flawsu pnp
Security flawsu pnpSecurity flawsu pnp
Security flawsu pnp
 
XMPP, HTTP and UPnP
XMPP, HTTP and UPnPXMPP, HTTP and UPnP
XMPP, HTTP and UPnP
 
Computer networks - CBSE New Syllabus (083) Class - XII
Computer networks - CBSE  New Syllabus (083) Class - XIIComputer networks - CBSE  New Syllabus (083) Class - XII
Computer networks - CBSE New Syllabus (083) Class - XII
 
What is over-the-air programming
What is over-the-air programmingWhat is over-the-air programming
What is over-the-air programming
 
NON-INTRUSIVE REMOTE MONITORING OF SERVICES IN A DATA CENTRE
NON-INTRUSIVE REMOTE MONITORING OF SERVICES IN A DATA CENTRENON-INTRUSIVE REMOTE MONITORING OF SERVICES IN A DATA CENTRE
NON-INTRUSIVE REMOTE MONITORING OF SERVICES IN A DATA CENTRE
 
UPnP Forum Overview - H Elenbaas
UPnP Forum Overview - H ElenbaasUPnP Forum Overview - H Elenbaas
UPnP Forum Overview - H Elenbaas
 
Opmanagertechnicaloverview 160128123947
Opmanagertechnicaloverview 160128123947Opmanagertechnicaloverview 160128123947
Opmanagertechnicaloverview 160128123947
 
Overview OpManager
Overview OpManagerOverview OpManager
Overview OpManager
 
OpManager Technical Overview
OpManager Technical OverviewOpManager Technical Overview
OpManager Technical Overview
 
SIPifying OSGi - M Ma
SIPifying OSGi - M MaSIPifying OSGi - M Ma
SIPifying OSGi - M Ma
 
Introduction to NBL
Introduction to NBLIntroduction to NBL
Introduction to NBL
 
New OpManager v12
New OpManager v12New OpManager v12
New OpManager v12
 
OPC PPT
OPC PPTOPC PPT
OPC PPT
 
Netw204 Quiz Answers Essay
Netw204 Quiz Answers EssayNetw204 Quiz Answers Essay
Netw204 Quiz Answers Essay
 
OpManager - Technical overview
OpManager - Technical overviewOpManager - Technical overview
OpManager - Technical overview
 
OPC OLE for Process Control (OPC)
OPC OLE for Process Control (OPC)OPC OLE for Process Control (OPC)
OPC OLE for Process Control (OPC)
 

Último

Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Último (20)

Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

Upnp

  • 2. Plug and Play Plug and Play (PnP) means that you can connect a device or insert a card into your computer and it is automatically recognized and configured to work in your system
  • 3. Universal Plug and Play (UPnP) Universal Plug and Play (UPnP) extends this simplicity to include the entire network, enabling discovery and control of devices, including networked devices and services, such as network-attached printers, Internet gateways.
  • 4. 1. Universal Plug and Play (UPnP) is a set of networking protocols that permits networked devices, such as personal computers, printers, Internet gateways, Wi-Fi access points and mobile devices to seamlessly discover each other's presence on the network and establish functional network services for data sharing, communications, and entertainment. With UPnP  A device can dynamically join a network, obtain an IP address.  Convey its capabilities, and learn about the presence and capabilities of other devices.  All automatically; truly enabling zero configuration networks.
  • 6. The Universal Plug and Play Forum defines UPnP Device and Service Descriptions (originally called Device Control Protocols or DCPs) The Universal Plug and Play Forum is a group of companies and individuals across the industry that intend to play a leading role in the authoring of specifications for UPnP devices and services.
  • 7. Components of a UPnP Network
  • 8. Devices, Services and Control Points The basic building blocks of a UPnP network are devices, services and control points
  • 9. Devices  A UPnP device is a container of services and nested devices.  Different categories of UPnP devices will be associated with different sets of services and embedded devices  Consequently, different working groups will standardize on the set of services that a particular device type will provide  All of this information is captured in an XML device description document that the device must host
  • 10. Services  The smallest unit of control in a UPnP network is a service. A service exposes actions and models its state with state variables.  Similar to the device description, this information is part of an XML service description standardized by the UPnP forum.  A service in a UPnP device consists of a state table, a control server and an event server. o The state table models the state of the service through state variables and updates them when the state changes o The control server receives action requests (such as set_time), executes them, updates the state table and returns responses. o The event server publishes events to interested subscribers anytime the state of the service changes.
  • 11. Control Points A control point in a UPnP network is a controller capable of discovering and controlling other devices. After discovery, a control point could: Retrieve the device description and get a list of associated services. Retrieve service descriptions for interesting services. Invoke actions to control the service. Subscribe to the service’s event source. Anytime the state of the service changes, the event server will send an event to the control point.
  • 13. UPnP leverages many existing, standard protocols. Using these standardized protocols aids in ensuring interoperability between vendor implementations The protocols used to implement UPnP are found in use on the Internet and on local area networks everywhere. This prevalence ensures that there is a large pool of people knowledgeable in implementing and deploying solutions based on these protocols.
  • 14.
  • 15. TCP/IP The TCP/IP networking protocol stack serves as the base on which the rest of the UPnP protocols are built.  UPnP devices can use many of the protocols in the TCP/IP stack including TCP, UDP, IGMP, ARP and IP as well as TCP/IP services such as DHCP and DNS.  Since TCP/IP is one of the most ubiquitous networking protocols, locating or creating an implementation for a UPnP device that is tuned for footprint and/or performance is relatively easy.
  • 16. HTTP, HTTPU, HTTPMU  HTTP, which is hugely responsible for the success of the Internet, is also a core part of UPnP.  All aspects of UPnP build on top of HTTP or its variants.  HTTPU (and HTTPMU) are variants of HTTP defined to deliver messages on top of UDP/IP instead of TCP/IP. GENA Generic Event Notification Architecture (GENA) was defined to provide the ability to send and receive notifications using HTTP over TCP/IP and multicast UDP.
  • 17. SSDP  Simple Service Discovery Protocol (SSDP), as the name implies, defines how network services can be discovered on the network.  SSDP is built on HTTPU and HTTPMU and defines methods both for a control point to locate resources of interest on the network, and for devices to announce their availability on the network.  By defining the use of both search requests and presence announcements, SSDP eliminates the overhead that would be necessary if only one of these mechanisms is used  As a result, every control point on the network has complete information on network state while keeping network traffic low.  A UPnP control point, upon booting up, can send an SSDP search request (over HTTPMU), to discover devices and services that are available on the network.
  • 18. SOAP Simple Object Access Protocol (SOAP) defines the use of Extensible Markup Language (XML) and HTTP to execute remote procedure calls.  It is becoming the standard for RPC based communication over the Internet. By making use of the Internet’s existing infrastructure, it can work effectively with firewalls and proxies.  Each UPnP control request is a SOAP message that contains the action to invoke along with a set of parameters.
  • 19. Steps Involved in UPnP Networking
  • 20. Addressing  The foundation for UPnP networking is the TCP/IP protocol suite and the key to this suite is addressing.  Each device must have a Dynamic Host Configuration Protocol (DHCP) client and search for a DHCP server when the device is first connected to the network.  If a DHCP server is available, the device must use the IP address assigned to it.  A device may implement higher layer protocols outside of UPnP that use friendly names for devices  In these cases, it becomes necessary to resolve friendly host (device) names to IP address  Domain Name Services (DNS) are usually used for this.
  • 21. Discovery  Once devices are attached to the network and addressed appropriately, discovery can take place.  When a device is added to the network, SSDP allows that device to advertise its services to control points on the network.  When a control point is added to the network, SSDP allows that control point to search for devices of interest on the network.  The fundamental exchange in both cases is a discovery message containing a few, essential specifics about the device or one of its services, for example its type, identifier, and a pointer to its XML device description document.
  • 22. Description  After a control point has discovered a device, the control point still knows very little about the device.  For the control point to learn more about the device and its capabilities, or to interact with the device, the control point must retrieve the device's description from the URL provided by the device in the discovery message.  The UPnP description for a device is expressed in XML and includes vendorspecific, manufacturer information including the  model name and number,  serial number,  manufacturer name,  URLs to vendor-specific Web sites,
  • 23. Control  To control a device, a control point sends an action request to a device's service.  To do this, a control point sends a suitable control message to the control URL for the service (provided in the device description).  Control messages are also expressed in XML using SOAP.  In response to the control message, the service returns action specific values or fault codes
  • 24. Eventing  A UPnP description for a service includes a list of actions the service responds to and a list of variables that model the state of the service at run time.  The service publishes updates when these variables change, and a control point may subscribe to receive this information.  Event messages contain the names of one of more state variables and the current value of those variables.  These messages are also expressed in XML and formatted using GENA.
  • 25. Presentation If a device has a URL for presentation, then the control point can retrieve a page from this URL, load the page into a browser, and depending on the capabilities of the page, allow a user to control the device and/or view device status.
  • 27. The scope of UPnP is large enough to encompass many existing, as well as new and exciting scenarios including home automation, printing and imaging, audio/video entertainment, kitchen appliances, automobile networks, and proximity networks in public venues.
  • 28.  Universal Plug and Play (UPnP) is a set of networking protocols that permits networked devices  Universal Plug and Play is an open initiative to take existing standards, existing technologies and existing knowledge, re-purpose it, and deliver on the promise and opportunity of the networked world.  Standards-based, simple enough for the smallest appliances to implement, powerful enough to scale to the global Internet, and based on the proven approach of Internet protocols.  Universal Plug and Play is an incremental approach, but an approach that has been proven to work.