Enhanced Cluster-based CoAP in Internet-of-Things Networks

Size: px
Start display at page:

Download "Enhanced Cluster-based CoAP in Internet-of-Things Networks"

Transcription

1

2

3 Enhanced Cluster-based CoAP in Internet-of-Things Networks Dong-Kyu Choi School of Computer Science and Engineering, Kyungpook National University Daegu, Korea Joong-Hwa Jung School of Computer Science and Engineering, Kyungpook National University Daegu, Korea Seok-Joo Koh School of Computer Science and Engineering, Kyungpook National University Daegu, Korea Abstract Recently, the Constrained Application Protocol (CoAP) has been developed for remote control of sensor devices in Internet of Things (IoT) networks. In CoAP, since the sensor and the server communicate with each other on a one-to-one basis, the load on the server will increase as the number of sensors increases. To overcome this limitation of CoAP, there is a simple extension of the CoAP using a clustering approach: cluster-based CoAP for message queueing. In this paper, we propose an enhanced cluster-based CoAP scheme for efficient gathering of sensing data. By using a cache memory on the cluster head, the communication performance can be improved in the IoT networks. From testbed experimentation of the enhanced cluster-based CoAP, we can see that the proposed scheme provides better performance than the CoAP and existing cluster-based CoAP scheme, in terms of bandwidth utilization. In addition, the load given to sensor can be alleviated with the help of the proposed scheme. Keywords Internet of Things, CoAP, enhanced cluster-based CoAP, cache memory, bandwidth, load I. INTRODUCTION The Internet of Things (IoT) provides an autonomous convergence service by connecting things to the Internet, through interaction and intelligence appropriate to the situation anytime and anywhere. The IoT is emerging as an optimal means of solving the issues of future society. [1]-[2] All of the IoT devices can be connected to Internet, and also can be controlled remotely. Recently, the expectation and interest of the IoT is increasing. The Internet Engineering Task Force (IETF) is developing the Constrained Application Protocol (CoAP), which is a web technology correspondence protocol that can accommodate various nodes. [3]-[4] CoAP is based on a lightweight Representational State Transfer (REST) architecture that is used in small devices such as sensor nodes or control nodes, where there are resource constraints such as memory capacity, computing performance, and battery. The REST architecture supports features such as resource discovery, multicast, asynchronous processing requests and responses. The message size is small and can easily be converted and interworked with existing HTTP Web protocols. As the IoT market has become more active, the number of the IoT devices has increased, and traffic on the networks has become more complicated. A more efficient way of messages transfer over a constrained IoT environment is a major issue. As the number of sensors increases, there is a problem that the server manages all the sensor devices. In order to reduce the load on the server, the cluster head is used to manage the sensor device, and the data transmitted from the sensor is firstly processed and transmitted to the server. This reduces the load on the server and makes it easier to manage the IoT devices in specific spaces. In this paper, we propose an enhanced scheme for efficient data transmission using cluster-based CoAP for message queueing system. We have revised some features of the general scheme in order to make existing models fit for gathering the data from sensors in the cluster head management domain. Also, we use the cache memory in the cluster head to temporarily store the sensing data and then transmit the cache memory data instead of requesting the sensor status every time the server requests it. The proposed scheme uses rule-based technology to transmit sensing data to the server after updating the cache memory data, when it meets certain conditions, rather than sending all data to the server. By managing the data traffic through the cluster head, data transmission over the IoT network can be made more efficient. It also manages the IoT devices in a static space and is efficient in data processing. This paper organized as follows. Section II describes the cluster-based CoAP scheme for message queueing. In Section III, we discuss the proposed enhanced cluster-based CoAP scheme for efficient data gathering. Section IV presents the performance analysis of the proposed scheme. Finally, Section V concludes this paper. II. CLUSTER-BASED COAP FOR MESSAGE QUEUEING A. Overview Cluster-based CoAP for message queueing scheme [5] is implemented using the CoAP Observe function [6]-[8] and uses cluster head that manages devices in a constrained environment in a cluster form. The cluster head manages the sensors belonging to the cluster using the topic attribute. The client can communicate with the other client only thorough the cluster head. Each device needs to go through a registration process with the cluster head with the topic information of interest. After the cluster is formed, the cluster head receives a message from the server to be transmitted to the devices belonging to the cluster. The cluster head sends the received message to the devices in the cluster using multicast. Since the cluster head and the server have to maintain communication, the server sends a message related to the connection to the head /18/$ IEEE 652 ICOIN 2018

4 of the cluster at a predetermined time interval in order to maintain the communication. B. Description pfigure 1 shows the system architecture of cluster-based CoAP for message queueing scheme. The cluster head sends the message to the server, including the specific topic information. The server sends the messages to the message queue to the cluster head at once, under certain conditions or time. When a cluster head receives a message from a server, it uses multicast to send a message to each sensor in the cluster. Server Cluster Head CoAP-Observe Senso r1 Sensor2 III. ENHANCED CLUSTER-BASED COAP SCHEME A. Proposed Scheme Description We propose two suggestions to improve the existing clusterbased CoAP scheme. First, it is a scheme in which the server processes the client s request message according to an option. This will be described in the subsequent section on message format. Another suggestion is to use the cache memory on the cluster head. The cluster head with cache memory does not request sensing data to the sensor, each time it receives a request from the server. The cache memory temporarily stores sensing data in a table format. Table 1 describes the table information in the cache memory. There are 4 attributes in the cache table which are Device-ID, Topic, Modified-time, Representative. The Device-ID is an identifier for identifying a device, and the Topic is a category of data. The Modified-time represents the time at which the cache table was modified. Finally, the Representative stores the value for the topic. TABLE 1. CACHE TABLE Fig. 1. Cluster-based CoAP for Message Queueing Sensor3 The cluster head sends its identifier to the nearby sensor devices using broadcasting for cluster formation. The sensor receiving this message responds to the cluster head with the identifier of the cluster to which it wants to participate and with the topic information that it is interested in. The cluster head collects these messages for a certain period of time, and then it informs the server that the cluster has been formed. Server CoAP Payload : Sensor1, 2 CoAP Payload : Sensor3 Cluster Head GET/Sensor1 Observe: Content Sensor1 GET/Sensor2 Observe: Content Fig. 2. Operation Flows for Cluster-based CoAP Sensor2 GET/Sensor3 Observe: Content Senso r3 Figure 2 represents the operation flows of the cluster-based CoAP for message queueing. The cluster head sends an CoAPobserve request to each sensor in the cluster to receive the updated status of the sensor. The cluster head stores the received messages in the message queue and then sends the queued messages to the server when certain conditions are met. Attribute Device-ID Topic Modified-time Representative Description Device Identifier Category of data Time at which the cache table was modified Value for the topic The cluster head periodically receives a value from the sensor and updates the cache memory data, whenever the value meets a specific condition. It is possible to reduce the load on the server because the server does not need to directly request a state to the sensor, and the sensor also has the advantage of processing speed and lifetime of the sensor because it transmits only the sensing data periodically. B. Message Format The CoAP has an option called uri-path by default. The uripath option represents a segment of the absolute path of the resource to be requested. Since the client's request reaches the corresponding resource on the server, the client request message must include the uri-path option, and there can be only one. It is not easy to obtain representatives of multiple resources at once from an existing CoAP scheme. To overcome this problem, we added an option called multiuri-path. A request message can include several multi-uri-path options. The server can use the time-limit option to limit the response time from the cluster head. Also, the modified time option allows the server to obtain a modified-time as well as a resource representative stored in the cache table. Table 2 lists the options used by the proposed scheme. 653

5 TABLE 2. OPTION LIST Name Type Description Multi-uri-path 100 Request multiple resource representatives Time-limit 101 Limit the response time Includemodified-time with modified-time Request the representative 102 attribute data to the server. Figure 6 shows the operation flows corresponding to Scenario 3. Figure 3 shows a GET request message that server sends to the cluster head. The first option in this message has the type number 11. This means that this option is uri-path, and this request has to be handled at the resource named cluster on the cluster head. The message requests the representatives of three topics by including three multi-uri-path options that have each target resources uri as value. Since the type of the multi-uripath is 100, the first multi-uri-path option s delta has 13 and extended delta has 76 in order to indicate 100. and the following multi-uri-path options delta is 0 because the delta is a cumulative value in CoAP. Finally, this message has Timelimit option that restricts the response time to 30 seconds. Fig. 4. Operation Flows for Scenario 1 Fig. 3. Example of a GET Request Message C. Scenarios and Operation Flows The proposed scheme has the three scenarios. Scenario 1 is applied when cache memory has no data. In this case, the server receives the request message from the client, and the server requests the sensing data to the cluster head. The server waits for a certain time for the request message that was received from the client, and sends a request message at a time using the multi-uri-path. The cluster head refers to the cache table. If there is no data in the cache table, it sends a request message to the sensor using multicast. The sensor sends the data to the cluster head, including the topic information. The cluster head updates the cache table based on the received data and sends the data to the server at a time. Figure 4 shows the operation flows corresponding to Scenario 1. Scenario 2 is applied when cache memory has all the data that meets the condition. The cluster head does not need to send a request message to the sensor. When it receives a request from the server, it sends the data in the cache table. Fig. 5 shows the operation flows corresponding to Scenario 2. Scenario 3 is applied when there are data in the cache memory and only one piece of data is needed. In this case, the cluster head checks the cache table and requests only the specific sensor that corresponds to the necessary data using unicast. The sensor sends the data to the cluster head, and the cluster head updates the data in the cache table and sends the Fig. 5. Operation Flows for Scenario 2 Fig. 6. Operation Flows for Scenario 3 654

6 IV. PERFORMANCE ANALYSIS A. Experimental Setup We verify the performance of the proposed scheme by comparing it with CoAP and Cluster-based CoAP in some environments. First, we measure the bandwidth of the three models on a testbed that is implemented using Californium library. Next, we analyze the load to sensors with the number of requests received by a sensor. We used multicast for the communication between the cluster head and sensors when cluster head request to two or more sensors. Figure 7 shows testbed architecture. reduces the number of message transmissions. This is preferred in terms of bandwidth usage. In the proposed scheme, the cluster head does not send a request message to the sensor, because it can uses the data in the cache table. This reduces the number of request messages and reduces the bandwidth usage. Fig. 8. Bandwidth according to the number of sensors (Ns) Fig. 7. Testbed architecture We assume that clients send 1000 requests per a topic in this experimental. Table 3 shows the parameters for the experimental. TABLE 3. THE PARAMETERS FOR THE EXPERIMENTAL SETUP Name Description Value N req_ser The number of requests transferred to server 1000 T w Time for collecting requests 1 sec T e Expiration time of a resource representative in cache table 30 sec N s The number of sensors variable T i The mean of interval between requests for a topic variable B Bandwidth obtained by experimental N req_sen The number of requests transferred to obtained by a sensor experimental B. Number of Sensors We first compare the required network bandwidth according to the number of sensors. We compare existing CoAP, Clusterbased CoAP, and enhanced Cluster-based CoAP. In this experiment, T w was fixed to 1 second, T i to 60 seconds, T e to 30 seconds, and N s was changed. Figure 8 shows the required network bandwidth for different numbers of sensors. In the figure, the cluster-based CoAP gives better performance than CoAP when the number of sensors is 20. The proposed Enhanced Cluster CoAP improves the performance by using cache memory, compared to the cluster-based CoAP.. By using the multi-uri-path option, multiple request messages can be sent as a single message, which increases the size of one message packet. However, it As the number of sensors increases, the bandwidth usage of the CoAP increases constantly, and the difference in the bandwidth usage between the cluster-based CoAP and the proposed scheme increases. C. Intervals We compare the required bandwidth according to the request arrival interval which is one of the important elements of the performance of the enhanced cluster-based CoAP. In this experiment, T w was fixed to 1 second, N s to 50, T e to 30 seconds, and T i was changed. Figure 9 shows the bandwidth usage according to the mean of interval between requests for a topic. The result shows that the shorter the interval of the request message, the better the proposed scheme is. As the interval decreases, the number of topics that can be included in a message increases, and the number of request messages sent from the server to the cluster head decreases. Also, as the number of request messages increases before the cache memory data expires, the cluster head does not need to send a request message to the sensor. This is why the bandwidth usage is reduced. Fig. 9. Bandwidth according to the interval (Ti) 655

7 However, as the interval increases, the probability of cache memory being expired increases, and the frequency of using multi-uri-path options is reduced, reducing the difference in bandwidth usage between the existing scheme and the proposed scheme. D. Number of Requests We compare the number of requests received by a sensor so as to see the load to sensors. In this experiment, T w was fixed to 1 second, N s to 50, T e to 30 seconds, and T i to 30 seconds. Fig. 10 illustrates the comparison of the three candidate schemes. In this figure, the cluster-based CoAP has slightly lower value than CoAP. It is because that there may be duplicate requests for the same topic in a message transferred to the cluster head. It means that the performance of the cluster-based CoAP will be high when the number of requests is bigger. And the enhanced cluster-based CoAP shows best performance due to the cache memory. Fig. 10. The number of requests transferred to a sensor V. CONCLUSION In this paper, we proposed an enhanced cluster-based CoAP. In the proposed scheme, differently from the existing clusterbased CoAP scheme, the cluster head has a cache memory for efficient gathering of sensing data. The cache memory is used to store data during an expiration time set in the form of a cache table. When the request message arrives before it expires, it sends data of the cache table without requesting data to the sensor. We have implemented a simple testbed for the performance analysis. From the performance analysis, it is shown that the proposed enhanced cluster-based CoAP scheme can effectively perform the gathering sensing data in the IoT networks, compared to the CoAP and existing cluster-based CoAP schemes. In addition, we can see that the proposed scheme gives less load to a sensor among the three candidate schemes. ACKNOWLEDGMENT This study was supported by the BK21 Plus project (SW Human Resource Development Program for Supporting Smart Life) funded by the Ministry of Education, School of Computer Science and Engineering, Kyungpook National University, Korea (21A ), and by the National Program for Excellence in SW ( ) supervised by the IITP (Institute for Information & communications Technology Promotion), and also by Basic Science Research Program through the National Research Foundation of Korea(NRF) funded by the Ministry of Education(NRF- 2017R1D1A3B ). REFERENCES [1] Jayavardhana Gubbi, Rajkumar Buyya, Slaven Marusic, and Marimuthu Palaniswami, Internet of Things (IoT): A vision, architectural elements, and future directions, Future Generation Computer Systems., vol. 29, pp , Sept [2] Lu Tan, and Neng Wang, Future internet: The Internet of Things, rd International Conference on Advanced Computer Theory and Engineering (ICACTE), Aug [3] IETF RFC 7252, The Constrained Application Protocol (CoAP), June, 2014 [4] IETF RFC 7390, Group Communication for the Constrained Application Protocol (CoAP), Oct, 2014 [5] Dong-Kyu Choi, Joong-Hwa Jung, Hyung-Woo Kang, and Seok-Joo Koh, Cluster-based CoAP for message queueing in Internet-of-Things networks, th International Conference on Advanced Communication Technology (ICACT), Mar, 2017 [6] IETF RFC 7641, Observing Resources in the Constrained Application Protocol (CoAP), Sept, 2015 [7] D. Sacramento, G. Schutz, and N. Correia, Aggregation and Scheduling in CoAP/Observe Based Wireless Sensor Networks, 2015 IEEE International Conference on Communications (ICC), Sept, 2015 [8] Noelia Correia, David Sacramento, and Gabriela Schutz, Dynamic Aggregation and Scheduling in CoAP/Observe based Wireless Sensor Networks, IEEE Internet of Things Journal., vol. 3, Issue 6, pp , Jan,

Distributed Pub/Sub Model in CoAP-based Internet-of-Things Networks

Distributed Pub/Sub Model in CoAP-based Internet-of-Things Networks Distributed Pub/Sub Model in CoAP-based Internet-of-Things Networks Joong-Hwa Jung School of Computer Science and Engineering, Kyungpook National University Daegu, Korea godopu16@gmail.com Dong-Kyu Choi

More information

Distributed CoAP Handover Using Distributed Mobility Agents in Internet-of-Things Networks

Distributed CoAP Handover Using Distributed Mobility Agents in Internet-of-Things Networks J. lnf. Commun. Converg. Eng. 15(1): 37-42, Mar. 2017 Regular paper Distributed CoAP Handover Using Distributed Mobility Agents in Internet-of-Things Networks Sang-Il Choi 1 and Seok-Joo Koh 2*, Member,

More information

(JBE Vol. 21, No. 3, May 2016) 6LoWPAN. Implementation of CoAP/6LoWPAN over BLE Networks for IoT Services. Abstract

(JBE Vol. 21, No. 3, May 2016) 6LoWPAN. Implementation of CoAP/6LoWPAN over BLE Networks for IoT Services. Abstract (Special Paper) 21 3, 2016 5 (JBE Vol. 21, No. 3, May 2016) http://dx.doi.org/10.5909/jbe.2016.21.3.298 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) BLE CoAP 6LoWPAN a), a), a), a) Implementation of

More information

Partial Bicasting with Buffering for Proxy Mobile IPv6 Handover in Wireless Networks

Partial Bicasting with Buffering for Proxy Mobile IPv6 Handover in Wireless Networks Journal of Information Processing Systems, Vol.7, No.4, December 2011 http://dx.doi.org/10.3745/jips.2011.7.4.627 Partial Bicasting with Buffering for Proxy Mobile IPv6 Handover in Wireless Networks Ji-In

More information

Distributed Mobility Control Schemes in the HIP-based Mobile Networks

Distributed Mobility Control Schemes in the HIP-based Mobile Networks ICACT Transactions on Advanced Communications Technology (TACT) Vol. 2, Issue 4, July 2013 269 Distributed Mobility Control Schemes in the HIP-based Mobile Networks Sang-Il Choi, Seok-Joo Koh School of

More information

A Network-Based Handover Scheme in HIP-Based Mobile Networks

A Network-Based Handover Scheme in HIP-Based Mobile Networks J Inf Process Syst, Vol.9, No.4, pp.651~659, December 2013 http://dx.doi.org/10.3745/jips.2013.9.4.651 pissn 1976-913X eissn 2092-805X A Network-Based Handover Scheme in HIP-Based Mobile Networks Moneeb

More information

Reliable Transmission for Remote Device Management (RDM) Protocol in Lighting Control Networks

Reliable Transmission for Remote Device Management (RDM) Protocol in Lighting Control Networks Reliable Transmission for Remote Device Management (RDM) Protocol in Lighting Control Networks Sang-Il Choi 1, Sanghun Lee 1, Seok-Joo Koh 1, Sang-Kyu Lim 2, Insu Kim 2, and Tae-Gyu Kang 2 1 Kyungpook

More information

Fast Device Discovery for Remote Device Management in Lighting Control Networks

Fast Device Discovery for Remote Device Management in Lighting Control Networks J Inf Process Syst, Vol.10, No.4, pp.00~00, December 2014 http://dx.doi.org/10.3745/jips.03.0011 ISSN 1976-913X (Print) ISSN 2092-805X (Electronic) Fast Device Discovery for Remote Device Management in

More information

Q-PMIP: Query-based Proxy Mobile IPv6

Q-PMIP: Query-based Proxy Mobile IPv6 Q-PMIP: Query-based Proxy Mobile IPv6 Jae Wan Park*, Ji In Kim*, Seok Joo Koh* *School of Computer Science and Engineering, Kyungpook National University, Korea jwparkinf8@gmail.com, jiin16@gmail.com,

More information

Distributed Mobility Management in Proxy Mobile IPv6 using Hash Function

Distributed Mobility Management in Proxy Mobile IPv6 using Hash Function Distributed Mobility Management in Proxy Mobile IPv6 using Hash Function Ji In Kim School of Computer Science and Engineering Kyungpook National University Daegu, Korea jiin16@gmail.com Seok Joo Koh School

More information

Host Identifier and Local Locator for Mobile Oriented Future Internet: Implementation Perspective

Host Identifier and Local Locator for Mobile Oriented Future Internet: Implementation Perspective Host Identifier and Local Locator for Mobile Oriented Future Internet: Implementation Perspective Nak Jung Choi*, Ji In Kim**, Seok Joo Koh* * School of Computer Science and Engineering, Kyungpook National

More information

Distributed Mobility Control for Mobile-Oriented Future Internet Environments

Distributed Mobility Control for Mobile-Oriented Future Internet Environments Distributed Mobility Control for Mobile-Oriented Future Internet Environments Ji-In Kim Kyungpook National University Daegu, KOREA jiin16@gmail.com Heeyoung JUNG ETRI Daejon, KOREA hyjung@etri.re.kr Seok

More information

Enhanced Mobility Control in Mobile LISP Networks

Enhanced Mobility Control in Mobile LISP Networks Enhanced Mobility Control in Mobile LISP Networks Moneeb Gohar School of Computer Science and Engineering Kyungpook National University Daegu, South Korea moneebgohar@gmail.com Ji In Kim School of Computer

More information

NaNA International Conference on Networking and Network Applications

NaNA International Conference on Networking and Network Applications CONFERENCE INFORMATION NaNA 2016 2016 International Conference on Networking and Network Applications PAPERS BY SESSION PAPERS BY AUTHOR GETTING STARTED 23-25 July 2016 Hakodate City, Hokkaido, Japan TRADEMARKS

More information

Reliable transmission of visible light communication data in lighting control networks

Reliable transmission of visible light communication data in lighting control networks IET Networks Research Article Reliable transmission of visible light communication data in lighting control networks ISSN 2047-4954 Received on 12th February 2017 Accepted on 12th March 2017 E-First on

More information

DHT-based Identifier-Locator Mapping Management for Mobile Oriented Future Internet

DHT-based Identifier-Locator Mapping Management for Mobile Oriented Future Internet DHT-based Identifier-Locator Mapping Management for Mobile Oriented Future Internet Hyung-Woo Kang Kyungpook National University Daegu, Korea hwkang0621@gmail.com Ji-In Kim Kyungpook National University

More information

DNS Naming Services for Service Discovery and Remote Control for Internet-of-Things Devices

DNS Naming Services for Service Discovery and Remote Control for Internet-of-Things Devices DNS Naming Services for Service Discovery and Remote Control for Internet-of-Things Devices Seokhwa Kim, Keuntae Lee, and Jaehoon (Paul) Jeong Department of Computer Science & Engineering, Sungkyunkwan

More information

Available online at ScienceDirect. Procedia Computer Science 87 (2016 )

Available online at   ScienceDirect. Procedia Computer Science 87 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 87 (2016 ) 270 274 4th International Conference on Recent Trends in Computer Science & Engineering Analysis of Routing

More information

Seamless Multicast Handover in Fmipv6-Based Networks

Seamless Multicast Handover in Fmipv6-Based Networks Seamless Multicast Handover in Fmipv6-Based Networks Moneeb Gohar, Seok Joo Koh, Tae-Won Um, and Hyun-Woo Lee Abstract This paper proposes a fast tree join scheme to provide seamless multicast handover

More information

Adaptive Local Route Optimization in Hierarchical Mobile IPv6 Networks

Adaptive Local Route Optimization in Hierarchical Mobile IPv6 Networks Adaptive Local Route Optimization in Hierarchical Mobile IPv6 Networks Sangheon Pack, Taekyoung Kwon, and Yanghee Choi School of Computer Science and Engineering Seoul National University, Seoul, Korea

More information

ViTAMin: A Virtual Backbone Tree Algorithm for Minimal Energy Consumption in Wireless Sensor Network Routing

ViTAMin: A Virtual Backbone Tree Algorithm for Minimal Energy Consumption in Wireless Sensor Network Routing ViTAMin: A Virtual Backbone Tree Algorithm for Minimal Energy Consumption in Wireless Sensor Network Routing Jaekwang Kim Department of Electrical and Computer Engineering, Sungkyunkwan University, Suwon,

More information

Subnet Multicast for Delivery of One-to-Many Multicast Applications

Subnet Multicast for Delivery of One-to-Many Multicast Applications Subnet Multicast for Delivery of One-to-Many Multicast Applications We propose a new delivery scheme for one-to-many multicast applications such as webcasting service used for the web-based broadcasting

More information

Fast Location-based Association of Wi-Fi Direct for Distributed Wireless Docking Services

Fast Location-based Association of Wi-Fi Direct for Distributed Wireless Docking Services Fast Location-based Association of Wi-Fi Direct for Distributed Wireless Docking Services Jina Han Department of Information and Computer Engineering Ajou University Suwon, South Korea hangn0808@ajou.ac.kr

More information

A New Conception of Information Requisition in Web of Things

A New Conception of Information Requisition in Web of Things ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Indian Journal of Science and Technology, Vol 9(44), DOI: 10.17485/ijst/2016/v9i44/105143, November 2016 A New Conception of Information Requisition in

More information

ICTC 2013 http://ictc2013.org/main/ 1 / 1 2013-10-17 International Advisory Committee Steering Committee Organizing Committee Technical Program Committee Program at a Glance Industrial Session Special

More information

Performance Evaluation of CoAP and UDP using NS-2 for Fire Alarm System

Performance Evaluation of CoAP and UDP using NS-2 for Fire Alarm System Indian Journal of Science and Technology, Vol 9(20), DOI: 10.17485/ijst/2016/v9i20/92603, May 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Performance Evaluation of CoAP and UDP using NS-2 for

More information

Embedded Web Services

Embedded Web Services Nov 1 st, 2011 Embedded Web Services Zach Shelby, Chief Nerd 1 Course Overview Powering M2M with the Internet of Things Industry examples What are Web Services? CoRE - Constrained RESTful Environments

More information

msctp for Vertical Handover Between Heterogeneous Networks

msctp for Vertical Handover Between Heterogeneous Networks msctp for Vertical Handover Between Heterogeneous Networks Seok Joo Koh and Sang Wook Kim Department of Computer Science, Kyungpook National University, Daegoo, Korea {sjkoh, swkim}@cs.knu.ac.kr Abstract.

More information

A COMPARISON OF IMPROVED AODV ROUTING PROTOCOL BASED ON IEEE AND IEEE

A COMPARISON OF IMPROVED AODV ROUTING PROTOCOL BASED ON IEEE AND IEEE Journal of Engineering Science and Technology Vol. 4, No. 2 (2009) 132-141 School of Engineering, Taylor s University College A COMPARISON OF IMPROVED AODV ROUTING PROTOCOL BASED ON IEEE 802.11 AND IEEE

More information

An Adaptive Congestion Avoidance ACA_AODV Routing Protocol

An Adaptive Congestion Avoidance ACA_AODV Routing Protocol An Adaptive Congestion Avoidance ACA_AODV Routing Protocol Paing Thwe Soe, and Soe Soe Khaing Abstract Congestion is the major problem in network communication that decreases network performance and throughput.

More information

Common Service Discovery Scheme in IoT Environments

Common Service Discovery Scheme in IoT Environments , pp.28-32 http://dx.doi.org/10.14257/astl.2018.149.07 Common Service Discovery Scheme in IoT Environments Joosang Youn 1 * and TaeJin Lee 2 1 Dept. of Industrial ICT Engineering, Dong-Eui University 176,

More information

IMPACT OF PACKET SIZE ON THE PERFORMANCE OF IEEE FOR WIRELESS SENSOR NETWORK

IMPACT OF PACKET SIZE ON THE PERFORMANCE OF IEEE FOR WIRELESS SENSOR NETWORK IMPACT OF PACKET SIZE ON THE PERFORMANCE OF IEEE 802.15.4 FOR WIRELESS SENSOR NETWORK Kamaljit Singh 1, Dr. Sukhvinder Singh Bamber 2, Aman Kaushik 3 1 M.Tech,CSE Department, Baddi University of Emerging

More information

Seamless Multicast Handover in PMIPv6-based Wireless Networks

Seamless Multicast Handover in PMIPv6-based Wireless Networks Seamless Multicast Handover in PMIPv6-based Wireless Networks Moneeb Gohar*, Seok Joo Koh*, Tae-Won Um**, Hyun-Woo Lee** *School of Computer Science and Engineering, Kyungpook National University **Electronic

More information

A New Energy-Aware Routing Protocol for. Improving Path Stability in Ad-hoc Networks

A New Energy-Aware Routing Protocol for. Improving Path Stability in Ad-hoc Networks Contemporary Engineering Sciences, Vol. 8, 2015, no. 19, 859-864 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2015.57207 A New Energy-Aware Routing Protocol for Improving Path Stability

More information

ARM IoT Tutorial. CoAP: The Web of Things Protocol Zach Shelby. April 30 th, 2014

ARM IoT Tutorial. CoAP: The Web of Things Protocol Zach Shelby. April 30 th, 2014 ARM IoT Tutorial CoAP: The Web of Things Protocol Zach Shelby April 30 th, 2014 1 2 Introduction Evolution from M2M to IoT M2M Big Data Internet of Things Services Web The Web Little Data Things 3 3 CoAP:

More information

A Global Mobility Scheme for Seamless Multicasting in Proxy Mobile IPv6 Networks

A Global Mobility Scheme for Seamless Multicasting in Proxy Mobile IPv6 Networks ICACT Transactions on on the Advanced Communications Technology (TACT) Vol. Vol. 2, 2, Issue Issue 3, 3, May May 2013 2013 233 A Global Mobility Scheme for Seamless Multicasting in Proxy Mobile IPv6 Networks

More information

CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments

CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments Stream Control Transmission Protocol (SCTP) uses the 32-bit checksum in the common header, by which a corrupted

More information

An Approach to Efficient and Reliable design in Hierarchical Mobile IPv6

An Approach to Efficient and Reliable design in Hierarchical Mobile IPv6 An Approach to Efficient and Reliable design in Hierarchical Mobile IPv6 Taewan You 1, Seungyun Lee 1, Sangheon Pack 2, and Yanghee Choi 2 1 Protocol Engineering Center, ETRI, 161 Gajoung-dong, Yusong-gu,

More information

Internet of Things: An Introduction

Internet of Things: An Introduction Internet of Things: An Introduction IoT Overview and Architecture IoT Communication Protocols Acknowledgements 1.1 What is IoT? Internet of Things (IoT) comprises things that have unique identities and

More information

Improvements on Proxying and Cache Scheme of CoAP Protocol for IPv6-Based Wireless Sensor Networks

Improvements on Proxying and Cache Scheme of CoAP Protocol for IPv6-Based Wireless Sensor Networks 3rd International Conference on Mechatronics and Industrial Informatics (ICMII 2015) Improvements on Proxying and Cache Scheme of CoAP Protocol for IPv6-Based Wireless Sensor Networks Ping Wang1,a*, Xin

More information

Distributed Interference-aware Medium Access Control for IEEE Visible Light Communications

Distributed Interference-aware Medium Access Control for IEEE Visible Light Communications Sensors and Materials, Vol. 30, No. 8 (2018) 1665 1670 MYU Tokyo 1665 S & M 1623 Distributed Interference-aware Medium Access Control for IEEE 802.15.7 Visible Light Communications Eui-Jik Kim, 1 Jung-Hyok

More information

A Scheme of Primary Path Switching for Mobile Terminals using SCTP Handover

A Scheme of Primary Path Switching for Mobile Terminals using SCTP Handover Proceedings of the 2007 WSEAS International Conference on Computer Engineering and Applications, Gold Coast, Australia, January 17-19, 2007 218 A Scheme of Primary Path Switching for Mobile Terminals using

More information

RELOAD/CoAP architecture with a resource aggregation/disaggregation

RELOAD/CoAP architecture with a resource aggregation/disaggregation RELOAD/CoAP Architecture with Resource Aggregation/Disaggregation Service L. Rodrigues, J. Guerreiro and N. Correia CEOT, FCT, University of Algarve 8005-139 Faro, Portugal Emails: {lrodrig,jdguerreiro,ncorreia}@ualg.pt

More information

The 33rd International Conference on Information Networking (ICOIN 2019)

The 33rd International Conference on Information Networking (ICOIN 2019) 2019 www.icoin.org The 33rd International Conference on Information Networking (ICOIN 2019) January 9 (Wed.) - 11 (Fri.), 2019 Renaissance Kuala Lumpur Hotel, Kuala Lumpur, Malaysia Conference Program

More information

Enhanced Power Saving Scheme for IEEE DCF Based Wireless Networks

Enhanced Power Saving Scheme for IEEE DCF Based Wireless Networks Enhanced Power Saving Scheme for IEEE 802.11 DCF Based Wireless Networks Jong-Mu Choi, Young-Bae Ko, and Jai-Hoon Kim Graduate School of Information and Communication Ajou University, Republic of Korea

More information

Research Article An ID/Locator Separation Based Group Mobility Management in Wireless Body Area Network

Research Article An ID/Locator Separation Based Group Mobility Management in Wireless Body Area Network Journal of Sensors Volume 215, Article ID 53725, 12 pages http://dx.doi.org/1.1155/215/53725 Research Article An ID/Locator Separation Based Group Mobility Management in Wireless Body Area Network Moneeb

More information

CoAP communication with the mobile phone sensors over the IPv6

CoAP communication with the mobile phone sensors over the IPv6 CoAP communication with the mobile phone sensors over the IPv6 Tomislav Dimcic *, Dejan Drajic *, Srdjan Krco * * Ericsson d.o.o., Belgrade, Serbia toma.dimcic@gmail.com, dejan.d.drajic@gmail.com, srdjan.krco@ericsson.com

More information

A Study on Traffic Aware Routing Protocol for Wireless Sensor Networks

A Study on Traffic Aware Routing Protocol for Wireless Sensor Networks A Study on Traffic Aware Routing Protocol for Wireless Sensor Networks Gopi.T 1, Santhi.B 2 School of computing, SASTRA University Tirumalaisamudram, Thanjavur, Tamilnadu, India. 1 gopi_fgh@yahoo.co.in

More information

Enhancement of the CBT Multicast Routing Protocol

Enhancement of the CBT Multicast Routing Protocol Enhancement of the CBT Multicast Routing Protocol Seok Joo Koh and Shin Gak Kang Protocol Engineering Center, ETRI, Korea E-mail: sjkoh@pec.etri.re.kr Abstract In this paper, we propose a simple practical

More information

TAKEOVER: A New Vertical Handover Concept for Next-Generation Heterogeneous Networks

TAKEOVER: A New Vertical Handover Concept for Next-Generation Heterogeneous Networks TAKEOVER: A New Vertical Handover Concept for Next-Generation Heterogeneous Networks Hyun-Ho Choi and Dong-Ho Cho Department of Electrical Engineering and Computer Science Korea Advanced Institute of Science

More information

Low Power and Low Latency MAC Protocol: Dynamic Control of Radio Duty Cycle

Low Power and Low Latency MAC Protocol: Dynamic Control of Radio Duty Cycle 24 IJCSNS International Journal of Computer Science and Network Security, VOL.12 No.12, December 212 Low Power and Low Latency MAC Protocol: Dynamic Control of Radio Duty Cycle Jeehoon Lee*, Jongsoo Jeong,

More information

A Study of Future Internet Applications based on Semantic Web Technology Configuration Model

A Study of Future Internet Applications based on Semantic Web Technology Configuration Model Indian Journal of Science and Technology, Vol 8(20), DOI:10.17485/ijst/2015/v8i20/79311, August 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 A Study of Future Internet Applications based on

More information

Interference Management Scheme for Wireless Sensor Network

Interference Management Scheme for Wireless Sensor Network , pp.64-69 http://dx.doi.org/0.4257/astl.204.46.5 Interference Management Scheme for Wireless Sensor Network Sangmi Moon, Saransh Malik, Bora Kim, Hun Choi, Jinsul Kim, Cheolhong Kim, and Intae Hwang Dept.

More information

An Information Framework for Creating a Smart City through Internet of Things

An Information Framework for Creating a Smart City through Internet of Things An Information Framework for Creating a Smart City through Internet of Things Nilesh Mali 1, Prof A. B. Kanwade 2, PG Scholar, Dept. Of VLSI & Embedded System Engg, SITS Narhe, Pune, M.S., India 1 Assistant

More information

ANewRoutingProtocolinAdHocNetworks with Unidirectional Links

ANewRoutingProtocolinAdHocNetworks with Unidirectional Links ANewRoutingProtocolinAdHocNetworks with Unidirectional Links Deepesh Man Shrestha and Young-Bae Ko Graduate School of Information & Communication, Ajou University, South Korea {deepesh, youngko}@ajou.ac.kr

More information

Mobile Oriented Future Internet (MOFI): Architectural Design and Implementations

Mobile Oriented Future Internet (MOFI): Architectural Design and Implementations Mobile Oriented Future Internet (): Architectural Design and Implementations Ji-In Kim, Heeyoung Jung, and Seok-Joo Koh With the recent growth in smartphone services, the mobile environment has become

More information

Performance Evaluation of Bluetooth Low Energy Communication

Performance Evaluation of Bluetooth Low Energy Communication SCITECH Volume 7, Issue 2 RESEARCH ORGANISATION April 28, 2018 Journal of Information Sciences and Computing Technologies www.scitecresearch.com/journals Performance Evaluation of Bluetooth Low Energy

More information

A Low-Overhead Hybrid Routing Algorithm for ZigBee Networks. Zhi Ren, Lihua Tian, Jianling Cao, Jibi Li, Zilong Zhang

A Low-Overhead Hybrid Routing Algorithm for ZigBee Networks. Zhi Ren, Lihua Tian, Jianling Cao, Jibi Li, Zilong Zhang A Low-Overhead Hybrid Routing Algorithm for ZigBee Networks Zhi Ren, Lihua Tian, Jianling Cao, Jibi Li, Zilong Zhang Chongqing Key Lab of Mobile Communications Technology, Chongqing University of Posts

More information

Use of SCTP for IP Handover Support

Use of SCTP for IP Handover Support Use of SCTP for IP Handover Support Dong Phil Kim, Jong Shik Ha, Sang Tae Kim, Seok Joo Koh Department of Computer Science Kyungpook National University {dpkim, mugal1, sainpaul1978}@cs.knu.ac.kr Abstract

More information

Support for Notifications in CCN ( draft-ravi-ccn-notification-00.txt ) IETF/ICN-RG -93, Prague

Support for Notifications in CCN ( draft-ravi-ccn-notification-00.txt ) IETF/ICN-RG -93, Prague Support for Notifications in CCN ( draft-ravi-ccn-notification-00.txt ) IETF/ICN-RG -93, Prague Ravi Ravindran (ravi.ravindran@huawei.com) Asit Chakraborti(asit.chakraborti@huawei.com) Marc Mosko(marc.mosko@parc.com)

More information

Keywords PMIPv6, Local Mobility Anchor, Mobile Access Gateway, AAA.

Keywords PMIPv6, Local Mobility Anchor, Mobile Access Gateway, AAA. Volume 5, Issue 6, June 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Optimized Handover

More information

A priority based dynamic bandwidth scheduling in SDN networks 1

A priority based dynamic bandwidth scheduling in SDN networks 1 Acta Technica 62 No. 2A/2017, 445 454 c 2017 Institute of Thermomechanics CAS, v.v.i. A priority based dynamic bandwidth scheduling in SDN networks 1 Zun Wang 2 Abstract. In order to solve the problems

More information

Design of Self-Adaptive System Observation over Internet of Things

Design of Self-Adaptive System Observation over Internet of Things , pp.165-171 http://dx.doi.org/10.14257/astl.2015.117.39 Design of Self-Adaptive System Observation over Internet of Things Young-Joo Kim 1, Jong-Soo Seok 1, Moon Soo Lee 1, Jeong-Si Kim 1, and YungJoon

More information

Efficient Uplink Scheduler Architecture of Subscriber Station in IEEE System

Efficient Uplink Scheduler Architecture of Subscriber Station in IEEE System Efficient Uplink Scheduler Architecture of Subscriber Station in IEEE 82.16 System Woo-Jae Kim 1, Joo-Young Baek 1, Sun-Don Lee 1, Young-Joo Suh 1, Yun-Sung Kim 2, and Jin-A Kim 2 1 Department of Computer

More information

Efficient Cache Consistency in Server-Based MANET with Cache Replication

Efficient Cache Consistency in Server-Based MANET with Cache Replication Efficient Cache Consistency in Server-Based MANET with Cache Replication J. Bibiana Jenifer 1, M. Manikandan 2 Student, Computer Science and Engineering, Adhiyamaan College of Engineering, Hosur, India

More information

Lecture 04 Introduction: IoT Networking - Part I

Lecture 04 Introduction: IoT Networking - Part I Introduction to Industry 4.0 and Industrial Internet of Things Prof. Sudip Misra Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture 04 Introduction: IoT Networking

More information

IPv6 Neighbor Discovery

IPv6 Neighbor Discovery About, page 1 Prerequisites for, page 2 Guidelines for, page 2 Defaults for, page 4 Configure, page 5 Monitoring, page 10 History for, page 11 About The IPv6 neighbor discovery process uses ICMPv6 messages

More information

A Design of Distributed Data Traffic Algorithm based on Hierarchical Wireless/Mobile Networks

A Design of Distributed Data Traffic Algorithm based on Hierarchical Wireless/Mobile Networks , pp.147-151 http://dx.doi.org/10.14257/astl.2015.117.35 A Design of Distributed Data Traffic Algorithm based on Hierarchical Wireless/Mobile Networks Ronnie Caytiles, Seungyong Shin, Minji Yang and Byungjoo

More information

Real-time based Superframe for ISA100.11a in Wireless Industrial Network

Real-time based Superframe for ISA100.11a in Wireless Industrial Network Journal of Communication and Computer 12 (2015) 28-32 doi: 10.17265/1548-7709/2015.01.005 D DAVID PUBLISHING Real-time based Superframe for ISA100.11a in Wireless Industrial Network Oka Danil Saputra 1

More information

Routing protocols in WSN

Routing protocols in WSN Routing protocols in WSN 1.1 WSN Routing Scheme Data collected by sensor nodes in a WSN is typically propagated toward a base station (gateway) that links the WSN with other networks where the data can

More information

An Adaptive and Optimal Distributed Clustering for Wireless Sensor

An Adaptive and Optimal Distributed Clustering for Wireless Sensor An Adaptive and Optimal Distributed Clustering for Wireless Sensor M. Senthil Kumaran, R. Haripriya 2, R.Nithya 3, Vijitha ananthi 4 Asst. Professor, Faculty of CSE, SCSVMV University, Kanchipuram. 2,

More information

3. Evaluation of Selected Tree and Mesh based Routing Protocols

3. Evaluation of Selected Tree and Mesh based Routing Protocols 33 3. Evaluation of Selected Tree and Mesh based Routing Protocols 3.1 Introduction Construction of best possible multicast trees and maintaining the group connections in sequence is challenging even in

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK COMPARISON OF MANET REACTIVE ROUTING PROTOCOLS USING OPNET SIMULATOR SANGEETA MONGA

More information

Performance Analysis of MANET Routing Protocols OLSR and AODV

Performance Analysis of MANET Routing Protocols OLSR and AODV VOL. 2, NO. 3, SEPTEMBER 211 Performance Analysis of MANET Routing Protocols OLSR and AODV Jiri Hosek Faculty of Electrical Engineering and Communication, Brno University of Technology Email: hosek@feec.vutbr.cz

More information

Optimized Paging Cache Mappings for efficient location management Hyun Jun Lee, Myoung Chul Jung, and Jai Yong Lee

Optimized Paging Cache Mappings for efficient location management Hyun Jun Lee, Myoung Chul Jung, and Jai Yong Lee Optimized Paging Cache Mappings for efficient location management Hyun Jun Lee, Myoung Chul Jung, and Jai Yong Lee Abstract Cellular IP maintains distributed cache for location management and routing purposes.

More information

Constrained Application Protocol (CoAP) Vilen Looga, M.Sc. Doctoral

Constrained Application Protocol (CoAP) Vilen Looga, M.Sc. Doctoral Constrained Application Protocol (CoAP) Vilen Looga, M.Sc. Doctoral Student @dcs.aalto Outline Introduction CoAP at a glance Messages Observe Hardware Demo MAMMOTH Conclusions References 50 billion connected

More information

Enhancement of CoAP Packet Delivery Performance for Internet of Things. Hang Liu

Enhancement of CoAP Packet Delivery Performance for Internet of Things. Hang Liu Enhancement of CoAP Packet Delivery Performance for Internet of Things Hang Liu Outline Motivation and Industrial Relevance Project Objectives Approach and Previous Results Future Work Outcome and Impact

More information

Multiple-Metric Hybrid Routing Protocol for Heterogeneous Wireless Access Networks

Multiple-Metric Hybrid Routing Protocol for Heterogeneous Wireless Access Networks Multiple-Metric Hybrid Routing Protocol for Heterogeneous Wireless Access Networks Lijuan Cao Kashif Sharif Yu Wang Teresa Dahlberg Department of Computer Science, University of North Carolina at Charlotte,

More information

Seamless Network Mobility Management for Realtime Service

Seamless Network Mobility Management for Realtime Service Seamless Network Mobility Management for Realtime Service Hee-Dong Park, Yong-Ha Kwon, Kang-Won Lee, Sung-Hyup Lee, Young-Soo Choi, Yang Li, and You-Ze Cho School of Electrical Engineering & Computer Science,

More information

ADB: An Efficient Multihop Broadcast Protocol Based on Asynchronous Duty-Cycling in Wireless Sensor Networks

ADB: An Efficient Multihop Broadcast Protocol Based on Asynchronous Duty-Cycling in Wireless Sensor Networks AD: An Efficient Multihop roadcast Protocol ased on Asynchronous Duty-Cycling in Wireless Sensor Networks Yanjun Sun* Omer Gurewitz Shu Du Lei Tang* David. Johnson* *Rice University en Gurion University

More information

A UDP-Based Protocol for improving packets loss in unstable networks

A UDP-Based Protocol for improving packets loss in unstable networks International Conference on Internet Studies, July 18-19, 2015, Tokyo, Japan A UDP-Based Protocol for improving packets loss in unstable networks Wei-Chung Cheng, Wei-Tsong Lee, Hsin-Wen Wei Tamkang University,

More information

QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET

QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET 2011 International Conference on Information and Network Technology IPCSIT vol.4 (2011) (2011) IACSIT Press, Singapore QoS Routing By Ad-Hoc on Demand Vector Routing Protocol for MANET Ashwini V. Biradar

More information

Internet of Things Application using IP-enabled Sensor Node and Web Server

Internet of Things Application using IP-enabled Sensor Node and Web Server Indian Journal of Science and Technology, Vol 8(S9), 207-212, May 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Internet of Things Application using IP-enabled Sensor Node and Web Server J. John

More information

Computer Networks. Routing

Computer Networks. Routing Computer Networks Routing Topics Link State Routing (Continued) Hierarchical Routing Broadcast Routing Sending distinct packets Flooding Multi-destination routing Using spanning tree Reverse path forwarding

More information

Constrained Application Protocol (CoAP) Vilen Looga, M.Sc. Doctoral

Constrained Application Protocol (CoAP) Vilen Looga, M.Sc. Doctoral Constrained Application Protocol (CoAP) Vilen Looga, M.Sc. Doctoral Student @dcs.aalto Outline Introduction CoAP at a glance Messages Observe Hardware Demo MAMMOTH Conclusions References 50 billion connected

More information

Delay Constrained ARQ Mechanism for MPEG Media Transport Protocol Based Video Streaming over Internet

Delay Constrained ARQ Mechanism for MPEG Media Transport Protocol Based Video Streaming over Internet Delay Constrained ARQ Mechanism for MPEG Media Transport Protocol Based Video Streaming over Internet Hong-rae Lee, Tae-jun Jung, Kwang-deok Seo Division of Computer and Telecommunications Engineering

More information

Enhanced Timing-Sync Protocol for Sensor Networks

Enhanced Timing-Sync Protocol for Sensor Networks Enhanced Timing-Sync Protocol for Sensor Networks Shi Kyu Bae Abstract The prominent time synchronization protocol for wireless sensor networks (WSN), Timing-sync Protocol for Sensor Networks (TPSN), was

More information

Leakage Pattern Monitoring Method of CEP based Water Supply Block System

Leakage Pattern Monitoring Method of CEP based Water Supply Block System Indian Journal of Science and Technology, Vol 8(27), DOI:10.17485/ijst/2015/v8i27/81054, October 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Leakage Pattern Monitoring Method of CEP based Water

More information

An Efficient Correspondent Registration to Reduce Signaling Overheads for Proxy Mobile IPv6

An Efficient Correspondent Registration to Reduce Signaling Overheads for Proxy Mobile IPv6 IJCSNS International Journal of Computer Science and Network Security, VOL.7 No.9, September 2007 187 An Efficient Correspondent Registration to Reduce Signaling Overheads for Proxy Mobile IPv6 Pyung-Soo

More information

TO DESIGN ENERGY EFFICIENT PROTOCOL BY FINDING BEST NEIGHBOUR FOR ZIGBEE PROTOCOL

TO DESIGN ENERGY EFFICIENT PROTOCOL BY FINDING BEST NEIGHBOUR FOR ZIGBEE PROTOCOL TO DESIGN ENERGY EFFICIENT PROTOCOL BY FINDING BEST NEIGHBOUR FOR ZIGBEE PROTOCOL 1 Mr. Sujeet D. Gawande, Prof. Amit M. Sahu 2 1 M.E. Scholar, Department of Computer Science and Engineering, G.H.R.C.E.M.,

More information

A look into the 3GPP future 2012 of 3GPP 5G

A look into the 3GPP future 2012 of 3GPP 5G A look into the 3GPP future 2012 of 3GPP 5G Joerg Swetina (NEC) 3GPP SA1, onem2m 3GPP 2016 1 Use case areas of TR 22.891 SMARTER Massive MTC Vehicle / autonomous driving Industry Robot / Drone Game / Sports

More information

Enhancement of the CBT Multicast Routing Protocol

Enhancement of the CBT Multicast Routing Protocol Enhancement of the CBT Multicast Routing Protocol Seok Joo Koh and Shin Gak Kang Protocol Engineering Center, ETRI, Korea E- mail: sj ko h @ pcc.c t ri.rc.k Abstract In this paper, we propose a simple

More information

Experimental Extensions to RSVP Remote Client and One-Pass Signalling

Experimental Extensions to RSVP Remote Client and One-Pass Signalling 1 Experimental Extensions to RSVP Remote Client and One-Pass Signalling Industrial Process and System Communications, Darmstadt University of Technology Merckstr. 25 D-64283 Darmstadt Germany Martin.Karsten@KOM.tu-darmstadt.de

More information

M2M Communication in Ad-Hoc WSNs for Industrial Application Using MQTT Protocol

M2M Communication in Ad-Hoc WSNs for Industrial Application Using MQTT Protocol Advances in Wireless Communications and Networks 2017; 3(4): 39-44 http://www.sciencepublishinggroup.com/j/awcn doi: 10.11648/j.awcn.20170304.12 M2M Communication in Ad-Hoc WSNs for Industrial Suma Manuvinakurike

More information

Simulation and Performance Analysis of Throughput and Delay on Varying Time and Number of Nodes in MANET

Simulation and Performance Analysis of Throughput and Delay on Varying Time and Number of Nodes in MANET International Journal of Recent Research and Review, Vol. VII, Issue 2, June 2014 ISSN 2277 8322 Simulation and Performance Analysis of and on Varying and Number of Nodes in MANET Arun Jain 1, Ramesh Bharti

More information

Design and Implementation of NEMO based ZigBee Mobile Router for Healthcare System

Design and Implementation of NEMO based ZigBee Mobile Router for Healthcare System 2010 10th Annual International Symposium on Applications and the Internet Design and Implementation of based for Healthcare System Jin Ho Kim, Rim Haw, Eung Jun Cho, Choong Seon Hong Department of Computer

More information

Internet based IoT connectivity Technologies

Internet based IoT connectivity Technologies Internet based IoT connectivity Technologies ETRI Protocol Engineering Center Yong-Geun Hong(yghong@etri.re.kr) August 20, 2015 Contents Overview IoT Technologies IoT in the viewpoint of Internet IoT connectivity

More information

IPv6 Neighbor Discovery

IPv6 Neighbor Discovery About, page 1 Prerequisites for, page 2 Guidelines for, page 2 Defaults for, page 4 Configure, page 5 View and Clear Dynamically Discovered Neighbors, page 10 History for, page 11 About The IPv6 neighbor

More information

Comprehensive Study and Review Various Routing Protocols in MANET

Comprehensive Study and Review Various Routing Protocols in MANET 126 Comprehensive Study and Review Various Routing Protocols in MANET Prabhjot Kaur 1, Preet Bala 2 M-Tech Student(CSE), GZS PTU CAMPUS, Bathinda Prabhjot6996@gmail.com Dr. Shaveta Rani, Dr. Paramjeet

More information

Politecnico di Milano Advanced Network Technologies Laboratory. Application Layer Protocols for the IoT

Politecnico di Milano Advanced Network Technologies Laboratory. Application Layer Protocols for the IoT Politecnico di Milano Advanced Network Technologies Laboratory Application Layer Protocols for the IoT 1 Politecnico di Milano Advanced Network Technologies Laboratory COnstrained Application Protocol

More information