Bio-inspired Adaptive Routing in Self-Organized Networks: A Survey

Size: px
Start display at page:

Download "Bio-inspired Adaptive Routing in Self-Organized Networks: A Survey"

Transcription

1 2013 8th International Conference on Communications and Networking in China (CHINACOM) Bio-inspired Adaptive Routing in Self-Organized Networks: A Survey Xu Zhang, Yanling Zhang, Yang Li, Zhongshan Zhang* and Keping Long Institute of Advanced Network Technology and New Services (ANTS) and Beijing Engineering and Technology Center for Convergence Networks and Ubiquitous Services University of Science and Technology Beijing (USTB), Beijing, China zhangxuustb@yeah.net; zhangyanling221@163.com; detective121@sina.com; {zhangzs, longkeping}@ustb.edu.cn Abstract Since the study of collective behavior of social species can help humans manage complex systems, bio-inspired algorithms will consequently improve the routing performance in self-organized networks. A plethora of studies on adaptive routing in self-organized networks has already been carried out. In this paper, adaptive routing as one of important self-organization issues is surveyed. Several well-known bio-inspired adaptive routing algorithms, such as Ant Colony Optimization (ACO), AntNet, AntHocNet, BeeHive, Multiple Ant Colony Optimization (MACO), Multiple Ant-Bee Colony (MABC), as well as their merits and demerits are analyzed in detail. The remaining challenges to face in adaptive routing in the future are also discussed in this paper. I. INTRODUCTION Self-organization, which is expected to bring us remarkable benefits in terms of network survival improvement, costs reduction in network configuration/management/operation/optimization, etc, is not uncommon in artificial communications systems [1] [3]. Since the study of collective behavior of social species(such as honey bees, army ants, bird flocks) can help humans manage complex systems, bio-inspired algorithms will consequently give us some illumination on designing/optimizing artificial SON systems. Enormous bio-inspired algorithms about adaptive routing have been proposed. Among them, the most famous algorithm is the Ant Colony Optimization (ACO) algorithm [4], which has already been adopted as problem solution in various areas such as telecommunication networks routing optimization and hard combinatorial optimization problems [5] [7]. ACO algorithm has also been applied to solve the routing algorithms in other SON systems such as mobile ad hoc networks [8] and WSN [9] with a better scalability or the other performance metrics. In this paper, bio-inspired adaptive routing as one of important issues related to network operation and optimization will be investigated. Several bio-inspired adaptive routing algorithms, such as ACO, AntNet, AntHocNet, BeeHive, MACO, MABC, are analyzed in detail. The remainder of this paper is organized as follows. The current progress in adaptive routing is introduced in Section II. Bio-inspired adaptive routing, including ACO, AntNet, AntHocNet, BeeHive, MACO, MABC, is analyzed in Section III. The remaining challenges faced in adaptive routing are analyzed in Section IV. Finally, conclusions are drawn in Section V. II. CURRENT PROGRESS IN ADAPTIVE ROUTING Adaptive routing, regarded as a critical functionality of wireless self-organized networks, has already been studied considerably in the past decades. Applying multi-hop routing to the wireless ad hoc network poses two challenges either due to its constantly changing topology or because its routing database is insufficient to support a trusted data storage [10]. Several well-known routing algorithms which have been proposed to address those challenges are traditionally classified as either proactive or reactive. In the former (e.g., Destination- Sequenced Distance-Vector routing (DSDV) [11]), nodes try to maintain routes to all other nodes at all times, but in the latter (e.g., Ad-hoc On demand Distance Vector routing (AODV) [12] or Dynamic Source Routing (DSR) [13]), nodes only gather routing information on demand: they construct a path only when they have data for a certain destination, and they will search a new path only when the path becomes infeasible. Therefore, the routing load in the reactive algorithms is reduced greatly. Furthermore, hybrid algorithms such as Zone Routing Protocol (ZRP) [14] combine the advantages of both the proactive and reactive approaches. Besides the single-path algorithms aforementioned, some multipath routing algorithms (e.g., [15]) have also been proposed to offer an alternative in terms of link failure robustness and load balancing capability. However, one challenge may arise in developing routing protocols for dynamic networks: transmitting large routing table or flooding multiple copies of link-state-packets (LSPs) in Open Shortest Path First (OSPF) in short or regular intervals may incur large routing overhead, while longer intervals may result in slower responses to changes in network topology. As compared to that, ACO is more appropriate for routing in dynamic network, because ants are relatively small (in general, the size of ants is relatively small and in the order of 6 bytes [16]) and they can be piggybacked in data packets so as to enable a more frequent ants transmission. ACO has already been proven to be effective in improving the quality of service (QoS) in dynamic network environments. In ACO algorithms, the problem-solving paradigm can reach its convergence within a short period of time without IEEE

2 transmitting a lot of routing entries in comparison to the Distance Vector/Link State Routing. Besides, a number of desirable properties, such as highly adaptive to environment changes, work in a distributed way with a high robustness, and have a capability of providing automatic load balancing, etc, are exhibited in ACO algorithms. The concentration of pheromone in ACO is used as an indicator to replace the distance or number of hops to indicate the route s preference. Since the exchange of pheromone is implicit without directly transmitting routing entries, routing overhead can thus be considerably reduced. Moreover, ant s pheromone laying can also reflect network configuration or topology changes, and this capability makes ACO more adaptive and decentralized. III. BIO-INSPIRED ALGORITHMS In this section, Adaptive routing will be investigated, with variant Bio-inspired routing protocols, including ACO, AntNet, AntHocNet, BeeHive, MACO, MABC, being surveyed in detail. A. ACO Principle Following the principle of ACO algorithm which is generalized from the ant s foraging process, the ACO algorithm can be mathematically described [4], [17]. By using i and j to represent the two end nodes of link (i, j), let s define p ij as the transition probability for ant k to move from i to j, as given by [τ ij(t)] α [η ij(t)] β if j J [τ il (t)] p ij = α [η il (t)] β i k l J, (1) i k 0 otherwise where Ji k represents the list of not-yet-visited nodes, and ant k can avoid visiting node i more than once by exploiting Ji k; η ij (t) is the visibility of node j when standing at node i at time t (stands for the inverse of the distance between i and j); τ ij (t) represents the pheromone level of link (i, j), and a higher pheromone level implies a higher transition probability from i to j; α and β are parameters used to control the relative weight of τ ij (t) and η ij (t), respectively. The pheromone decay and update rule is defined as τ ij (t) (1 ρ) τ ij (t) + k where 0 ρ < 1 represents a decay coefficient, τ k ij(t) = { Q L k (t) if (i, j) T k (t) 0 otherwise τ k ij(t), (2) stands for the quantity of pheromone of link (i, j) labelled by ant k, with T k (t) representing the tour done by ant k at time t and Q being a parameter with very weak influences on the final pheromone density. In applying ACO in network routing, an artificial ant is realized as a program consisting of procedures that simulate the laying and sensing of pheromone, and data structures that record trip times and nodes it passes. The laying of pheromone is simulated by recording in a counter the number of ants that (3) pass a node, and the decision of an ant is influent by a function of pheromone concentration. By using a society of ants, an ACO provides a framework for solving variant optimization problems. The main idea in those ACO-based algorithms is to continuously sample possible paths with ant-like agents, and to indicate the quality of paths by means of artificial pheromone variables. By analogy, routing tables correspond to pheromone tables that can be manipulated by a colony of ants distributed over a network. However, the strategy that all ants prefer to choose the optimal path may lead to Stagnation: i) congestion is prone to happen in optimal path, and ii) the probability of ants selecting other paths is dramatically reduced (i.e., load balancing degrades). Based on ACO algorithm, several famous algorithms such as AntNet [8] and AntHocNet [18], have been developed to mitigate stagnation in packet-switched networks. Furthermore, some advanced ACO algorithms that employ multiple colonies of agents have also been proposed to further mitigate the stagnation and improve the network load balancing. B. AntNet Routing techniques in communications networks inspired by the foraging behavior of ants have been addressed by AntNet approach [8]. Routing in AntNet is achieved by launching forward ants at regular intervals from a source node to a destination node to discover a feasible low-cost path and by backward ants that travels from destination to source to update pheromone tables at each intermediate node. The routing tables of all networked nodes are the most important parameters to be maintained by the agents. Without loss of generality, the routing table T k is used to define the probabilistic routing policy currently adopted for node k. A forward ant selects the next hop node N i by taking into consideration of both the probability of choosing N i and a heuristic correlation factor l ni which is based on the queue length at N i. The probabilistic value P nd, which expresses the quality (desirability) of choosing neighbor node n as a next hop towards destination d, will be stored in T k. The outgoing probabilities are thus constrained according to P nd = 1, (4) n N k where N k represents the set of neighbor nodes of k, and d [1, N] (N is the total number of nodes in the network). The specific capabilities of AntNet can be mentioned explicitly as follows. First, AntNet maintains a probability P d instead of a fixed period for launching an agent towards node d at node s according to P d = N f sd f sd d =1, (5) where f sd is a measure of the data flow from s to d. In this way, the ants adapt their exploration activity to the varying data-traffic characteristics, and therefore AntNet incorporates 506

3 algorithm-inherent mechanisms to counteract network congestion. Secondly, AntNet relies on a reinforcement strategy for maintaining the routing table T k, with the returning agent updates the routing table entry for destination d (i.e. the probability P fd ) according to P fd P fd + r(1 P fd ), (6) where the factor r is a dimensionless value used by the current node for positive reinforcement with r (0, 1). A backward ant which travels from the destination to the source via the same path will update the pheromone table at each intermediate node and estimate trip time from source to the intermediate node. Finally, the probabilities P nd for destination d of the other neighboring nodes n implicitly receive a negative reinforcement P nd P nd rp nd, n N k, n f (7) so as to satisfy the constraint in (4). Since the goodness of a path is reinforced according to the trip times of forward ants, the selection probabilities updated by backward ants can influence ants travelling in the forward rather than backward direction. Therefore, AntNet is proven to be not restricted to routing application in networks with symmetric costs only [19]. A number of properties such as highly adaptive to network changes, use active path sampling, are robust to agent failures, provide multipath routing, and take care of data load spreading, are exhibited in AntNet, and those properties make AntNet be desirable in SON systems such as ad hoc networks. C. AntHocNet Since AntNet may have a significant overhead, which may be induced by its repeated path sampling, AntHocNet [18] as an improvement of AntNet has been proposed to relieve this overhead. Both reactive and proactive components are included in AntHocNet: In a path setup phase, AntHocNet represents a reactive routing approach by setting up paths when they are needed at the start of a session, with paths being represented as pheromone trails to indicate their respective quality. Then data packets are stochastically routed as datagrams over different paths using the pheromone information, which leads to automatic load balancing. When a path is clearly worse than others, it will be avoided so as to relieve its congestion. The other paths will thus get more traffic, leading to a higher congestion and an increased end-to-end delay. By continuously adapting the data traffic, the nodes try to spread data load evenly over the network, and load balancing is eventually obtained. While a data session is active (i.e., during the course of the communication session), paths are proactively probed, maintained and improved. The source node will send out proactive forward ants, which follow the same way as the data but have a small probability of being broadcasted at each node. Two purposes are served by the ants: i) If a forward ant reaches the destination without a single broadcast, it simply samples an existing path and gathers up-to-date quality estimates, and updates the pheromone values along the path from source to destination. The same operation is performed by a backward ant from the destination back to the source. ii) If the ant got broadcasted, it will arrive in all the neighbors of the broadcasting node. Moreover, it will be broadcasted again if in this neighbor it does not find pheromone pointing towards the destination. The proactive ant will be deleted if it does not find routing information within two hops. Nodes can detect link failures when unicast transmissions fail or when expected Hello Messages (A messages used to enable nodes to know about their immediate neighbors and have pheromone information in their routing table) were not received. Once link failure happens, a route repair ant that travels to the involved destination will be broadcasted: it follows available routing information when it can, and is broadcasted otherwise. The node waits for a certain time and concludes that it was impossible to find an alternative path to the destination, if no backward repair ant is received. The node needs only to send a notification to its neighbors in three cases: i) the node still has other entries for the destination(s) involved in a link failure, or ii) the link failure was due to an ant packet, or iii) a failed path is repaired. Several information, such as a list of the destinations the node lost a path to, and the new best estimated end-to-end delay and number of hops to this destination, will be contained in the notification, which can be used by all the neighbors to update their pheromone table. The neighbors will broadcast the notification further if they lost their best or their only path to a destination, until all nodes along the different paths are notified of the new situation. A number of studies have been carried out to investigate the network behavior of AntHocNet. For example, the performance comparison of AntHocNet and AODV is performed for various speed values for Random Way Point (RWP) mobility in an ad hoc network, and shows that AntHocNet outperforms AODV in terms of both the delivery ratio and the average packet delay. D. BeeHive Many features, such as efficient allocation of foraging force to multiple food sources without central control, etc, have been observed in honey bee colonies and are desirable in designing and optimizing artificial SON systems [20]. Inspired by this observation, BeeHive [21] which was developed by Farooq et al., has been applied in telecommunications networks with load balancing being emphasized. The following principles are followed by BeeHive algorithm: Each node is regarded as a hive that consists of several bee agents, which are periodically launched by the node to explore the network environment and routing information. Agents provide some parameters, such as the information on the propagation delay and queuing delay of the paths they explored, to their visited nodes. 507

4 A threshold is set up for the number of hops that an agent is allowed to take, and an agent may provide its path information only if the quality of the path is above this threshold. The BeeHive algorithm not only reduces the overhead of collecting the routing information, but also helps in maintaining smaller local routing tables. All the agents launched by the same node but exploring different paths will exchange their information via the routing table, which helps in evaluating the overall quality of paths that the launching node involves in. In this algorithm, the quality of a node is formulated as a function of proportional quality of only those neighbors that possibly lie in the path toward the destination. Once data packets arrive at a node, the routing information about the quality of that node s different neighbors for reaching their destinations is accessed, and the packets will select the next neighbor toward the destination in a stochastic manner depending on its quality. Following this rule, not all packets follow the best paths, which helps in improving the load balancing in the future complex networks. E. MACO Different from the single-colony ACO algorithms aforementioned, Multiple Ant Colony Optimization (MACO) technique, which employs more than one colony of ants to search the optimal paths, can be used to address the stagnation problems observed in conventional ACO and improve the load balancing significantly [22], [23]. The process of paths creation in MACO is illustrated in Fig. 1 with each type of pheromone represented by a different color, following the steps [22]: Suppose there are 4 ants, i.e., r1, r2, b1 and b2, where (r1, r2) are red colony ants and (b1, b2) represent blue colony ants. Three routes (R1, R2, R3) lead to a food source N2, with R1 > R3 > R2 being satisfied. Initially, all ants are in the nest N1 and have to select a route from among {R1, R2, R3} to reach N2 (see Fig. 1(a)). At N1, all ants randomly select their routes from {R1, R2, R3}. Suppose that b1, b2, r1, r2 choose R2, R1, R3, R1 respectively. b1 and b2 each deposits one unit of blue color pheromone τ b along R2 and R1 respectively, and r1 and r2 each deposits one unit of red color pheromone τ r along R3 and R1 respectively (see Fig. 1(b)). Since R1 > R3 > R2, b1 reached N2 before the other ants (see Fig. 1(c)). And b1 discovers that the pheromone densities in the three paths are τb R2 = 1 and τb R1 = τb R3 = 0 (only R2 has one unit of blue pheromone, see Fig. 1(d)). Therefore, b1 will choose R2 as return its path, and thus the pheromone density of R2, i.e., τb R2, will be increased to 2 (see Fig. 1(e)). Subsequently, r1 reached N2 before b2 and r2 since R1 > R3. To return from N2 to N1, r1 discovers that τr R3 = 1 and τr R1 = τr R2 = 0 (note that r1 cannot sense the blue pheromone). Thus r1 selects R3 again as its return path (see Fig. 1(f))and τr R3 will be increased to 2. Fig. 1. The steps of MACO algorithms. When b2 and r2 finally reached N2, they selected their return paths by sensing pheromone densities τ b and τ r, respectively. Since b2 discovered that τb R2 > τb R1 and τb R2 > τb R3, it will select R2 as its return path. Similarly, r2 discovered that τr R3 > τr R1 and τr R3 > τr R2, it will select R3 (see Fig. 1(g)). When all ants have returned to N1, R2 and R3 has the heaviest concentration of τ b and τ r, respectively (see Fig. 1(h)). Then the following ants from the blue colony will prefer to select R2, while ants from the red colony will tend to select R3, if they travel to N2. Since MACO enhances the adaptiveness of optimal path creation and increases the probabilities of allowing new or better paths to be exploited in a dynamic network, the load balance in packet-switched networks can be improved considerably by maintaining different pheromone tables. F. MABC By combining MACO with bee colony, Multiple Ant-Bee Colony (MABC) Optimization, which uses different colonies of ants and bees and appoints these colony members as intelligent agents to monitor the network and update the routing information, is proposed to improve the load balancing and avoid congestion in the most optimal path [24]. The main idea of MABC is: at the beginning, the algorithm uses forward ants to find a suitable solution form one node to another, and then bees are used to update the routing tables based on ants collected data. The main purpose of MABC algorithm is to improve the convergence time in MACO algorithm using more accurate pheromone laying strategy. In order to achieving this objective, more information must be 508

5 stored in the routing tables. An L N routing table is reserved in each node, with L representing all the outgoing links and N standing for the number of nodes minus one (the node itself). In each table entry, P ij is used to denote the chance of node i to be selected as the next node on the way to node j, and M ij = [ Tij 1, T ij 2, ] in which Tij k represents the k-th dancer bee s recorded trip time. The detailed routing procedure is explained as follows. A forward ant starts travelling through the network, and it will be directed toward the destination whenever it reaches a non-destination node. Note that the forward ants have the same priority as data packets. When a forward ant reaches the destination, a backward bee will be created based on the information provided by this forward ant. After that, the forward ant will be killed and the backward bee will continue its journey. The backward bee will traverse the forward ant s travelled route in reversed direction and update the pheromone table on its way. The backward bee is finally killed once it reaches the start node, which had initiated the forward ant. Note that the backward bee has a higher priority than the data packets in order to be able to apply the emergency changes as rapidly as possible. Three different kinds of bees are used in MABC, including: i) Dancer bee: whenever this bee reaches a node, it will update the node s pheromone table and set down its traverse time in related field. The pheromone update strategy in this table is identical to that of the backward ants in ACO. ii) Follower bee: These bees should collect information based on dancer bee s dancing parameters. Assume that the follower bee has come from node j to i on its way to destination d by using equation T jd = βt flw + (1 β)tjd dnc, where 0 β 1 is an T flw jd jd impact factor that determines the two first factor s effect, represents the Follower bee s trip time, and Tjd dnc denotes the selected trip time among dancer bees based on M ij. Having a follower bee starting from node d, travelled from j to i, the k-th trip time in M ij will be selected with probability P k = 1 T k jd 1 k Tjd k. The shorter the trip time is, the higher its probability to be chosen. iii) Introvert bee: These bees act exactly the same way as backward ants in ACO algorithm and completely ignore other bees activities. By using several ant-bee colonies with different types of pheromone, MABC has endeavored to distribute the network traffic to several optimal local paths by creating several pheromone tables in each node and routing data packets according to these tables. It has been proven that the MABC outperforms MACO in terms of fault-tolerance [24]. G. Comparison among Variant Routing Algorithms The comparison among variant bio-inspired routing algorithms is given by Table I. Evidently, MABC outperforms the other algorithms in terms of both load balancing and TABLE I COMPARISON AMONG ACO-BASED ROUTING ALGORITHMS Algorithm Demerits Merits Significant overload Robust multipath routing; AntNet due to repeated Automatic load balancing; path sampling Adaptivity A high average delay Overload due to repeat AntHocNet is observed in the path sampling is avoided; simple scenarios Better delivery ratio Initial path selection Congestion in the optimal MACO may impact its path is relieved; convergence High load balancing Routing information Load balancing enabled; BeeHive exchange imposes an Quality paths additional traffic burden being created Delay caused by using A better Fault-tolerance MABC multiple colonies at the capability than MACO; beginning of failure High load balancing fault-tolerance capabilities. This fault-tolerance capability may become more critical in the future CRNs, where an ever worsening situation of spectrum scarceness will be met and the dynamic of network may become worsen. All the facts aforementioned increase the complexity of the routing scheme greatly, especially in the presence of network failure or spectrum handoff [25], [26]. Furthermore, new challenges may also arise in designing cognitive routing algorithms in the future complex network environments such as heterogeneous networks [27] and cognitive wireless mesh networks [28], in which the ACO algorithms with multiple colonies will obviously exhibit their advantages over the single-colony algorithms in terms of both adaptiveness and robustness. IV. REMAINING CHALLENGES Although bio-inspired adaptive routing algorithms have already attracted more and more concerns and outperform the traditional algorithms, there are still several major challenges in addressing the technical issues aforementioned, such as: 1) Stagnation mitigation in static networks will become challenging issue: As indicated by [29], the shortest path created by ACO is only statistical, and if by chance, many of the ants initially choose a non-optimal path, other ants are more likely to select it, leading to further reinforcement of the pheromone concentration along this non-optimal path. This is especially undesirable for static networks in which ants may always choose a non-optimal path. Even if an optimal path is created, congestion may happen in the optimal path to degrade both the adaptiveness and load balancing in a dynamic network. 2) The randomness in the initial path selection may impact the convergence of the MACO seriously: Although MACO improves the load balancing capability of a dynamic network considerably by employing more than one colony of ants to search the optimal paths, the final convergence state of MACO heavily depends on the initial path selection of each type of ants. Moreover, 509

6 the impact of the randomness in the initial path selection on the convergence of the MACO may become serious if the types (and number) of ants in MACO are too few. 3) Proposing more efficient multi-colony routing algorithms for heterogeneous CRNs will be another challenging task.: In consideration of the worsening spectrum environment and an ever increasing complexity in network, developing a robust routing algorithm with high capabilities of fault-tolerance, adaptiveness, load balancing and convergence will become more critical to optimize the entire network. Moreover, further exploiting the intelligences of variant natural colonies (e.g., that beyond ants and honey bees) and utilizing them to optimizing the routing protocols for large-scale SON systems would also be a promising topic in the future. V. CONCLUSIONS Adaptive routing in self-organized networks were investigated in this paper to pave the way towards operating and optimizing the artificial SON systems. Several bio-inspired adaptive routing algorithms, including ACO, AntNet, AntHocNet, BeeHive, MACO, MABC, being investigated by borrowing ideas from social species. Be aware of the ever increasing complexity, heterogeneity and dynamics of communications networks, proposing more optimization adaptive routing algorithms that are universally applicable to variant heterogeneous networks will still be a challenging task in the future. ACKNOWLEDGEMENT This work was supported by the National Natural Science Foundation of China (No ), Beijing Science and Technology Program (Z ), the Program for New Century Excellent Talents in University (NECT ), the Foundation of Beijing Engineering and Technology Center for Convergence Networks and Ubiquitous Services, and National Key Projects (2012ZX and 2012ZX ). The corresponding Author is Dr. Zhongshan Zhang. REFERENCES [1] Z. Zhang, K. Long, and J. Wang, Self-Organization Paradigms and Optimization Approaches for Cognitive Radio Technologies: A Survey, IEEE Wireless Commun. Mag., vol. 20, no. 2, pp , Apr [2] Z. Zhang, K. Long, J. Wang, and F. Dressler, On swarm intelligence inspired self-organized networking: Its bionic mechanisms, designing principles and optimization approaches, IEEE Commun. Surv. Tut., to appear. [3] Z. Shi, C. Beard, and K. Mitchell, Analytical models for understanding misbehavior and MAC friendliness in CSMA networks, Performance Evaluation Archive, vol. 66, no. 9-10, pp , Sept [4] M. Dorigo, M. Birattari, and T. Stutzle, Ant Colony Optimization - Artificial Ants as a Computational Intelligence Technique, IEEE Computational Intelligence Mag., vol. 1, no. 4, pp , [5] M. Dorigo and C. Blum, Ant colony optimization theory: A survey, Theoretical Computer Science, vol. 344, pp , [6] Z. Shi, C. Beard, and K. Mitchell, Competition, cooperation, and optimization in multi-hop CSMA networks with correlated traffic, International Journal of Next-Generation Computing (IJNGC), vol. 3, no. 3, Nov [7], Analytical models for understanding space, backoff and flow correlation in CSMA wireless networks, Wireless Networks, vol. 19, no. 3, pp , Apr [8] G. D. Caro and M. Dorigo, AntNet: Distributed stigmergetic control for communications networks, Journal of Artificial Intelligence Research, vol. 9, pp , [9] M. Goyal, W. Xie, H. Hosseini, and Y. Bashir, AntSens: An Ant Routing Protocol for Large Scale Wireless Sensor Networks, in 2010 International Conference on Broadband, Wireless Computing, Communication and Applications (BWCCA), Nov. 2010, pp [10] J.-P. Hubaux, T. Gross, J.-Y. Le Boudec, and M. Vetterli, Toward Self- Organized Mobile Ad Hoc Networks: The Terminodes Project, IEEE Commun. Mag., vol. 39, no. 1, pp , Jan [11] C. E. Perkins and P. Bhagwat, Highly dynamic destination-sequenced distance-vector routing (dsdv) for mobile computers, Comp. Commun. Rev, pp , [12] C. Perkins and E. Royer, Ad hoc on-demand distance vector routing, in 2nd IEEE Workshop on Mobile Computing Systems and Applications, New Orleans, LA, Feb. 1999, pp [13] D. B. Johnson and D. A. Maltz, Mobile Computing, chapter Dynamic Source Routing in Ad Hoc Wireless Networks. Kluwer, [14] Z. J. Haas, A new routing protocol for the reconfigurable wireless networks, in Proc. of the IEEE Int. Conf. on Universal Personal Communications, [15] S. Mueller, R. Tsang, and D. Ghosal, Multipath routing in mobile ad hoc networks: Issues and challenges, in Performance Tools and Applications to Networked Systems, volume 2965 of Lecture Notes in Computer Science. Springer-Verlag, [16] D. Subramanian, P. Druschel, and J. Chen, Ants and reinforcement learning: A case study in routing in dynamic networks, in Proc. Int. Joint Conf. Artificial Intelligence, Palo Alto, CA, 1997, pp [17] F. Dressler, Self-Organization in Sensor and Actor Networks. Wiley, [18] G. D. Caro, F. Ducatelle, and L. Gambardella, Anthocnet: an adaptive nature-inspired algorithm for routing in mobile ad hoc networks, Euro. Trans. Telecommun., vol. 16, pp , [19] K. M. Sim and W. H. Sun, Ant Colony Optimization for Routing and Load-Balancing: Survey and New Directions, IEEE Trans. Systems, Man, and Cybernetics, Part A: Systems and Humans., vol. 33, no. 5, pp , Sept [20] T. D. Seeley and W. F. Towne, Tactics of dance choice in honey bees: Do foragers compare dances? Behav. Ecol. Sociobiol., vol. 30, pp , [21] M. Farooq, From the Wisdom of the Hive to Intelligent Routing in Telecommunication Networks: A Step towards Intelligent Network Management through Natural Engineering. PhD Thesis, University of Dortmund, Germany, [22] K. M. Sim and W. H. Sun, Multiple ant-colony optimization for network routing, in Proceedings of 1st International Symposium on Cyberworld, Tokyo, Japan, Nov. 2002, pp [23] Y. Zhu, J. Zhang, L. Li, and W. Peng, Multiple Ant Colony Routing Optimization Based on Cloud Model for WSN with Long-Chain Structure, in 6th International Conference on Wireless Communications Networking and Mobile Computing (WiCOM), 2010, pp [24] T. D. Seeley and P. K. Visscher, MULTIPLE ANT-BEE COLONY OPTIMIZATION FOR LOAD BALANCING IN PACKET-SWITCHED NETWORKS, International Journal of Computer Networks & Communications (IJCNC), vol. 3, no. 5, pp , Sept [25] H. Ma, L. Zheng, X. Ma, and Y. Luo, Spectrum aware routing for multihop cognitive radio networks with a single transceiver, in Proc. IEEE CrownCom, 2008, pp [26] X.-L. Huang, G. Wang, F. Hu, and S. Kumar, Stability-Capacity- Adaptive Routing for High-Mobility Multihop Cognitive Radio Networks, IEEE Trans. Veh. Technol., vol. 60, no. 6, pp , [27] Y. Liu and D. Grace, Cognitive routing metrics with adaptive weight for heterogeneous ad hoc networks, in Cognitive Radio and Software Defined Radios: Technologies and Techniques, 2008 IET Seminar on, 2008, pp [28] G. Zhang, C. Ding, J. Gu, and Z. Bao, An Adaptive Multi-Path Routing Algorithm in Cognitive Wireless Mesh Networks, in Wireless Communications, Networking and Mobile Computing (WiCOM), th International Conference on, 2011, pp [29] E. Bonabeau, M. Dorigo, and G. Theraulaz, Inspiration for optimization from social insect behavior, Nature, vol. 406, pp , July

Adhoc Network Routing Optimization and Performance Analysis of ACO Based Routing Protocol

Adhoc Network Routing Optimization and Performance Analysis of ACO Based Routing Protocol Adhoc Network Routing Optimization and Performance Analysis of ACO Based Routing Protocol Anubhuti Verma Abstract Ant Colony Optimization is based on the capability of real ant colonies of finding the

More information

ANT COLONY OPTIMIZED ROUTING FOR MOBILE ADHOC NETWORKS (MANET)

ANT COLONY OPTIMIZED ROUTING FOR MOBILE ADHOC NETWORKS (MANET) ANT COLONY OPTIMIZED ROUTING FOR MOBILE ADHOC NETWORKS (MANET) DWEEPNA GARG 1 & PARTH GOHIL 2 1,2 Dept. Of Computer Science and Engineering, Babaria Institute of Technology, Varnama, Vadodara, India E-mail

More information

AntHocNet: an Ant-Based Hybrid Routing Algorithm for Mobile Ad Hoc Networks

AntHocNet: an Ant-Based Hybrid Routing Algorithm for Mobile Ad Hoc Networks AntHocNet: an Ant-Based Hybrid Routing Algorithm for Mobile Ad Hoc Networks Gianni Di Caro, Frederick Ducatelle and Luca Maria Gambardella Technical Report No. IDSIA-25-04-2004 August 2004 IDSIA / USI-SUPSI

More information

[Jagtap*, 5 (4): April, 2016] ISSN: (I2OR), Publication Impact Factor: 3.785

[Jagtap*, 5 (4): April, 2016] ISSN: (I2OR), Publication Impact Factor: 3.785 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY A SURVEY: ANT BASED BIO-INSPIRED ALGORITHM FOR AD-HOC NETWORK Anjali A Jagtap *, Prof. Ankita Agarwal, Prof. Dipak R Raut, Prof.

More information

A Review: Optimization of Energy in Wireless Sensor Networks

A Review: Optimization of Energy in Wireless Sensor Networks A Review: Optimization of Energy in Wireless Sensor Networks Anjali 1, Navpreet Kaur 2 1 Department of Electronics & Communication, M.Tech Scholar, Lovely Professional University, Punjab, India 2Department

More information

SWARM INTELLIGENCE -I

SWARM INTELLIGENCE -I SWARM INTELLIGENCE -I Swarm Intelligence Any attempt to design algorithms or distributed problem solving devices inspired by the collective behaviourof social insect colonies and other animal societies

More information

Ant Colony Optimization for dynamic Traveling Salesman Problems

Ant Colony Optimization for dynamic Traveling Salesman Problems Ant Colony Optimization for dynamic Traveling Salesman Problems Carlos A. Silva and Thomas A. Runkler Siemens AG, Corporate Technology Information and Communications, CT IC 4 81730 Munich - Germany thomas.runkler@siemens.com

More information

ANALYSIS OF ANTHOCNET AND AODV PERFORMANCE USING NS2

ANALYSIS OF ANTHOCNET AND AODV PERFORMANCE USING NS2 ANALYSIS OF ANTHOCNET AND PERFORMANCE USING NS2 Y. Lakshmi Prasanna 1 and Dr. P. Chenna Reddy 2 1 Department of Computer Science and Engineering, JNTUACEP, Pulivendula 2 Professor of CSE Department, JNTUACEP,

More information

MANET routing protocols based on swarm intelligence

MANET routing protocols based on swarm intelligence MSC SEMINAR - PERVASIVE AND ARTIFICIAL INTELLIGENCE RESEARCH GROUP, DEPARTMENT OF INFORMATICS, UNIVERSITY OF FRIBOURG. JUNE 20111 MANET routing protocols based on swarm intelligence Iliya Enchev Pervasive

More information

Ant-based Dynamic Hop Optimization Protocol: a Routing Algorithm for Mobile Wireless Sensor Networks

Ant-based Dynamic Hop Optimization Protocol: a Routing Algorithm for Mobile Wireless Sensor Networks Joint Workshop of SCPA 2011 and SaCoNAS 2011 Ant-based Dynamic Hop Optimization Protocol: a Routing Algorithm for Mobile Wireless Sensor Networks Alexandre Massayuki Okazaki and Antônio Augusto Fröhlich

More information

Bee-Inspired Protocol Engineering

Bee-Inspired Protocol Engineering Muddassar Farooq Bee-Inspired Protocol Engineering From Nature to Networks With 128 Figures and 61 Tables Springer 1 Introduction 1 1.1 Motivation of the Work 2 1.2 Problem Statement 4 1.2.1 Hypotheses

More information

Unicast Routing in Mobile Ad Hoc Networks. Dr. Ashikur Rahman CSE 6811: Wireless Ad hoc Networks

Unicast Routing in Mobile Ad Hoc Networks. Dr. Ashikur Rahman CSE 6811: Wireless Ad hoc Networks Unicast Routing in Mobile Ad Hoc Networks 1 Routing problem 2 Responsibility of a routing protocol Determining an optimal way to find optimal routes Determining a feasible path to a destination based on

More information

QUERY LOCALIZATION USING PHEROMONE TRAILS: A SWARM INTELLIGENCE INSPIRED APPROACH. Nupur Kothari, Vartika Bhandari and Dheeraj Sanghi

QUERY LOCALIZATION USING PHEROMONE TRAILS: A SWARM INTELLIGENCE INSPIRED APPROACH. Nupur Kothari, Vartika Bhandari and Dheeraj Sanghi QUERY LOCALIZATION USING PHEROMONE TRAILS: A SWARM INTELLIGENCE INSPIRED APPROACH Nupur Kothari, Vartika Bhandari and Dheeraj Sanghi Department of Computer Science & Engineering Indian Institute of Technology

More information

Performance evaluation of AODV, DSDV and AntHocNet in video transmission

Performance evaluation of AODV, DSDV and AntHocNet in video transmission Performance evaluation of AODV, DSDV and AntHocNet in video transmission Neelam S. Labhade, S.S.Vasekar Abstract Now a days wireless technologies are important in the world of communication due to its

More information

International Journal of Advancements in Research & Technology, Volume 2, Issue 9, September-2013 SN

International Journal of Advancements in Research & Technology, Volume 2, Issue 9, September-2013 SN International Journal of Advancements in Research & Technology, Volume 2, Issue 9, September-2013 146 Survey of Swarm Intelligence Inspired Routing Algorithms and Mobile Ad-Hoc Network Routing Protocols

More information

AODV-PA: AODV with Path Accumulation

AODV-PA: AODV with Path Accumulation -PA: with Path Accumulation Sumit Gwalani Elizabeth M. Belding-Royer Department of Computer Science University of California, Santa Barbara fsumitg, ebeldingg@cs.ucsb.edu Charles E. Perkins Communications

More information

ABSTRACT DYNAMIC ADAPTIVE ROUTING IN MOBILE AD HOC NETWORKS. Department of Electrical Engineering

ABSTRACT DYNAMIC ADAPTIVE ROUTING IN MOBILE AD HOC NETWORKS. Department of Electrical Engineering ABSTRACT Title of Thesis: DYNAMIC ADAPTIVE ROUTING IN MOBILE AD HOC NETWORKS Degree candidate: Harsh Mehta Degree and year: Master of Science, 2002 Thesis directed by: Professor John S. Baras Department

More information

Data Gathering for Wireless Sensor Network using PEGASIS Protocol

Data Gathering for Wireless Sensor Network using PEGASIS Protocol Data Gathering for Wireless Sensor Network using PEGASIS Protocol Kumari Kalpna a, Kanu Gopal b, Navtej katoch c a Deptt. of ECE, College of Engg.& Mgmt.,Kapurthala, b Deptt. of CSE, College of Engg.&

More information

ON THE USE OF SMART ANTS FOR EFFICIENT ROUTING IN WIRELESS MESH NETWORKS

ON THE USE OF SMART ANTS FOR EFFICIENT ROUTING IN WIRELESS MESH NETWORKS ON THE USE OF SMART ANTS FOR EFFICIENT ROUTING IN WIRELESS MESH NETWORKS Fawaz Bokhari and Gergely Zaruba Department of Computer Science and Engineering, The University of Texas at Arlington, Texas, US

More information

International Journal of Current Trends in Engineering & Technology Volume: 02, Issue: 01 (JAN-FAB 2016)

International Journal of Current Trends in Engineering & Technology Volume: 02, Issue: 01 (JAN-FAB 2016) Survey on Ant Colony Optimization Shweta Teckchandani, Prof. Kailash Patidar, Prof. Gajendra Singh Sri Satya Sai Institute of Science & Technology, Sehore Madhya Pradesh, India Abstract Although ant is

More information

Dynamic Routing and Wavelength Assignment in WDM Networks with Ant-Based Agents

Dynamic Routing and Wavelength Assignment in WDM Networks with Ant-Based Agents Dynamic Routing and Wavelength Assignment in WDM Networks with Ant-Based Agents Son-Hong Ngo 1, Xiaohong Jiang 1, Susumu Horiguchi 1, and Minyi Guo 2 1 Graduate School of Information Science, Japan Advanced

More information

ANT INTELLIGENCE ROUTING

ANT INTELLIGENCE ROUTING AJSTD Vol. 25 Issue 1 pp. 81-93 (2008) ANT INTELLIGENCE ROUTING Chye Ong Gan, K. Daniel Wong, and Wei-Lee Woon Malaysia University of Science and Technology Received 30 October 2006 ABSTRACT We introduce

More information

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, July 18, ISSN

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, July 18,  ISSN International Journal of Computer Engineering and Applications, Volume XII, Special Issue, July 18, www.ijcea.com ISSN 2321-3469 MULTICAST ROUTING: CONVENTIONAL ALGORITHMS VS ANT COLONY SYSTEM ABSTRACT

More information

Ant Colony Optimization

Ant Colony Optimization Ant Colony Optimization CompSci 760 Patricia J Riddle 1 Natural Inspiration The name Ant Colony Optimization was chosen to reflect its original inspiration: the foraging behavior of some ant species. It

More information

A Review of Ant Colony based Routing Algorithm in Wireless Ad-hoc Networks

A Review of Ant Colony based Routing Algorithm in Wireless Ad-hoc Networks A Review of Ant Colony based Routing Algorithm in Wireless Ad-hoc Networks Sai Priya Thottempudi $, Dr Syed Umar * $ Student, Department of ECE, V R Siddhartha Eng College, A.P.INDIA. * Assoc. Professor,

More information

Intuitionistic Fuzzy Estimations of the Ant Colony Optimization

Intuitionistic Fuzzy Estimations of the Ant Colony Optimization Intuitionistic Fuzzy Estimations of the Ant Colony Optimization Stefka Fidanova, Krasimir Atanasov and Pencho Marinov IPP BAS, Acad. G. Bonchev str. bl.25a, 1113 Sofia, Bulgaria {stefka,pencho}@parallel.bas.bg

More information

Ant-DYMO: A Bio-Inspired Algorithm for MANETS

Ant-DYMO: A Bio-Inspired Algorithm for MANETS 21 17th International Conference on Telecommunications Ant-: A Bio-Inspired Algorithm for MANETS José Alex Pontes Martins Universidade Vale do Acaraú (UVA) Sobral, Brazil 62.4 37 Email: alexmartins@larces.uece.br

More information

Content. 1. Introduction. 2. The Ad-hoc On-Demand Distance Vector Algorithm. 3. Simulation and Results. 4. Future Work. 5.

Content. 1. Introduction. 2. The Ad-hoc On-Demand Distance Vector Algorithm. 3. Simulation and Results. 4. Future Work. 5. Rahem Abri Content 1. Introduction 2. The Ad-hoc On-Demand Distance Vector Algorithm Path Discovery Reverse Path Setup Forward Path Setup Route Table Management Path Management Local Connectivity Management

More information

Solving Travelling Salesmen Problem using Ant Colony Optimization Algorithm

Solving Travelling Salesmen Problem using Ant Colony Optimization Algorithm SCITECH Volume 3, Issue 1 RESEARCH ORGANISATION March 30, 2015 Journal of Information Sciences and Computing Technologies www.scitecresearch.com Solving Travelling Salesmen Problem using Ant Colony Optimization

More information

Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques

Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques Solving the Traveling Salesman Problem using Reinforced Ant Colony Optimization techniques N.N.Poddar 1, D. Kaur 2 1 Electrical Engineering and Computer Science, University of Toledo, Toledo, OH, USA 2

More information

Estimate the Routing Protocols for Internet of Things

Estimate the Routing Protocols for Internet of Things Estimate the Routing Protocols for Internet of Things 1 Manjushree G, 2 Jayanthi M.G 1,2 Dept. of Computer Network and Engineering Cambridge Institute of Technology Bangalore, India Abstract Internet of

More information

A Scheme of Multi-path Adaptive Load Balancing in MANETs

A Scheme of Multi-path Adaptive Load Balancing in MANETs 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) A Scheme of Multi-path Adaptive Load Balancing in MANETs Yang Tao1,a, Guochi Lin2,b * 1,2 School of Communication

More information

Solving the Shortest Path Problem in Vehicle Navigation System by Ant Colony Algorithm

Solving the Shortest Path Problem in Vehicle Navigation System by Ant Colony Algorithm Proceedings of the 7th WSEAS Int. Conf. on Signal Processing, Computational Geometry & Artificial Vision, Athens, Greece, August 24-26, 2007 88 Solving the Shortest Path Problem in Vehicle Navigation System

More information

A SURVEY OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS

A SURVEY OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS Journal homepage: www.mjret.in ISSN:2348-6953 A SURVEY OF ROUTING PROTOCOLS IN MOBILE AD HOC NETWORKS Ms. Amruta Kodole 1, Prof. P. M. Agarkar 2 Computer Engineering Dr. D. Y. Patil School Of Engineering

More information

A Swarm-based Distance Vector Routing to Support Multiple Quality of Service (QoS) Metrics in Mobile Adhoc Networks

A Swarm-based Distance Vector Routing to Support Multiple Quality of Service (QoS) Metrics in Mobile Adhoc Networks Journal of Computer Science 3 (9): 700-707, 2007 ISSN 1549-3636 2007 Science Publications A Swarm-based Distance Vector Routing to Support Multiple Quality of Service (QoS) Metrics in Mobile Adhoc Networks

More information

Analysis of Black-Hole Attack in MANET using AODV Routing Protocol

Analysis of Black-Hole Attack in MANET using AODV Routing Protocol Analysis of Black-Hole Attack in MANET using Routing Protocol Ms Neha Choudhary Electronics and Communication Truba College of Engineering, Indore India Dr Sudhir Agrawal Electronics and Communication

More information

A Literature survey on Improving AODV protocol through cross layer design in MANET

A Literature survey on Improving AODV protocol through cross layer design in MANET A Literature survey on Improving AODV protocol through cross layer design in MANET Nidhishkumar P. Modi 1, Krunal J. Panchal 2 1 Department of Computer Engineering, LJIET, Gujarat, India 2 Asst.Professor,

More information

A new improved ant colony algorithm with levy mutation 1

A new improved ant colony algorithm with levy mutation 1 Acta Technica 62, No. 3B/2017, 27 34 c 2017 Institute of Thermomechanics CAS, v.v.i. A new improved ant colony algorithm with levy mutation 1 Zhang Zhixin 2, Hu Deji 2, Jiang Shuhao 2, 3, Gao Linhua 2,

More information

Computation of Multiple Node Disjoint Paths

Computation of Multiple Node Disjoint Paths Chapter 5 Computation of Multiple Node Disjoint Paths 5.1 Introduction In recent years, on demand routing protocols have attained more attention in mobile Ad Hoc networks as compared to other routing schemes

More information

A Comparative study of On-Demand Data Delivery with Tables Driven and On-Demand Protocols for Mobile Ad-Hoc Network

A Comparative study of On-Demand Data Delivery with Tables Driven and On-Demand Protocols for Mobile Ad-Hoc Network A Comparative study of On-Demand Data Delivery with Tables Driven and On-Demand Protocols for Mobile Ad-Hoc Network Humayun Bakht Research Fellow, London School of Commerce, United Kingdom humayunbakht@yahoo.co.uk

More information

A SURVEY ON ANT SYSTEM BASED MULTICAST ROUTING IN MOBILE AD HOC NETWORKS

A SURVEY ON ANT SYSTEM BASED MULTICAST ROUTING IN MOBILE AD HOC NETWORKS International Journal of Latest Trends in Engineering and Technology Special Issue SACAIM 2016, pp. 59-65 e-issn:2278-621x A SURVEY ON ANT SYSTEM BASED MULTICAST ROUTING IN MOBILE AD HOC NETWORKS Mani

More information

PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS

PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS PERFORMANCE ANALYSIS OF AODV ROUTING PROTOCOL IN MANETS AMANDEEP University College of Engineering, Punjabi University Patiala, Punjab, India amandeep8848@gmail.com GURMEET KAUR University College of Engineering,

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

Study of Route Reconstruction Mechanism in DSDV Based Routing Protocols

Study of Route Reconstruction Mechanism in DSDV Based Routing Protocols Study of Route Reconstruction Mechanism in DSDV Based Routing Protocols Sharma Shelja, Kumar Suresh and Rathy R. K. Department of CSE, FET, MRIU, Faridabad, India Email: sharma.shelja@gmail.com, enthusk@yahoo.com,

More information

DYNAMIC SEARCH TECHNIQUE USED FOR IMPROVING PASSIVE SOURCE ROUTING PROTOCOL IN MANET

DYNAMIC SEARCH TECHNIQUE USED FOR IMPROVING PASSIVE SOURCE ROUTING PROTOCOL IN MANET DYNAMIC SEARCH TECHNIQUE USED FOR IMPROVING PASSIVE SOURCE ROUTING PROTOCOL IN MANET S. J. Sultanuddin 1 and Mohammed Ali Hussain 2 1 Department of Computer Science Engineering, Sathyabama University,

More information

Navigation of Multiple Mobile Robots Using Swarm Intelligence

Navigation of Multiple Mobile Robots Using Swarm Intelligence Navigation of Multiple Mobile Robots Using Swarm Intelligence Dayal R. Parhi National Institute of Technology, Rourkela, India E-mail: dayalparhi@yahoo.com Jayanta Kumar Pothal National Institute of Technology,

More information

PERFORMANCE ANALYSIS OF QUALITY OF SERVICE ENABLED TEMPORALLY ORDERED ROUTING ALGORITHM USING ANT COLONY OPTIMIZATION IN MOBILE AD HOC NETWORKS

PERFORMANCE ANALYSIS OF QUALITY OF SERVICE ENABLED TEMPORALLY ORDERED ROUTING ALGORITHM USING ANT COLONY OPTIMIZATION IN MOBILE AD HOC NETWORKS R. Asokan et al. : Performance Analysis of Quality of Service Enabled Temporally Ordered Routing Algorithm Using Ant Colony Optimization in Mobile Ad Hoc Networks Advances in Engineering Science 11 Sect.

More information

Ant Colony Optimization based Hybrid Routing Protocol for MANETs 1

Ant Colony Optimization based Hybrid Routing Protocol for MANETs 1 Ant Colony Optimization based Hybrid Routing Protocol for MANETs 1 Essam H. Houssein, 2 Alaa A. K. Ismaeel 1 Dept. of Computer Science, Faculty of Computers and Informatics Benha University, Benha, Egypt

More information

Excavation Balance Routing Algorithm Simulation Based on Fuzzy Ant Colony

Excavation Balance Routing Algorithm Simulation Based on Fuzzy Ant Colony 2018 5th International Conference on Electrical & Electronics Engineering and Computer Science (ICEEECS 2018) Excavation Balance Routing Algorithm Simulation Based on Fuzzy Ant Colony Luo Xiaojuan, Yan

More information

Investigation on OLSR Routing Protocol Efficiency

Investigation on OLSR Routing Protocol Efficiency Investigation on OLSR Routing Protocol Efficiency JIRI HOSEK 1, KAROL MOLNAR 2 Department of Telecommunications Faculty of Electrical Engineering and Communication, Brno University of Technology Purkynova

More information

VLSI Design of AntNet for Adaptive Network Routing

VLSI Design of AntNet for Adaptive Network Routing VLSI Design of Antet for Adaptive etwork Routing Jin-Ho Ahn, Jae Seuk Oh, Sungho Kang Department of Electrical and Electronic Engineering onsei University 134 Shinchon-Dong Seodaemoon-Gu, Seoul, Korea

More information

Secure Enhanced Authenticated Routing Protocol for Mobile Ad Hoc Networks

Secure Enhanced Authenticated Routing Protocol for Mobile Ad Hoc Networks Journal of Computer Science 7 (12): 1813-1818, 2011 ISSN 1549-3636 2011 Science Publications Secure Enhanced Authenticated Routing Protocol for Mobile Ad Hoc Networks 1 M.Rajesh Babu and 2 S.Selvan 1 Department

More information

6367(Print), ISSN (Online) Volume 4, Issue 2, March April (2013), IAEME & TECHNOLOGY (IJCET)

6367(Print), ISSN (Online) Volume 4, Issue 2, March April (2013), IAEME & TECHNOLOGY (IJCET) INTERNATIONAL International Journal of Computer JOURNAL Engineering OF COMPUTER and Technology ENGINEERING (IJCET), ISSN 0976- & TECHNOLOGY (IJCET) ISSN 0976 6367(Print) ISSN 0976 6375(Online) Volume 4,

More information

A New Approach to Ant Colony to Load Balancing in Cloud Computing Environment

A New Approach to Ant Colony to Load Balancing in Cloud Computing Environment A New Approach to Ant Colony to Load Balancing in Cloud Computing Environment Hamid Mehdi Department of Computer Engineering, Andimeshk Branch, Islamic Azad University, Andimeshk, Iran Hamidmehdi@gmail.com

More information

Optimization of Ant based Cluster Head Election Algorithm in Wireless Sensor Networks

Optimization of Ant based Cluster Head Election Algorithm in Wireless Sensor Networks Optimization of Ant based Cluster Head Election Algorithm in Wireless Sensor Networks Siddharth Kumar M.Tech Student, Dept of Computer Science and Technology, Central University of Punjab, Punjab, India

More information

Figure 1: Ad-Hoc routing protocols.

Figure 1: Ad-Hoc routing protocols. Performance Analysis of Routing Protocols for Wireless Ad-Hoc Networks Sukhchandan Lally and Ljiljana Trajković Simon Fraser University Vancouver, British Columbia Canada E-mail: {lally, ljilja}@sfu.ca

More information

A New Algorithm for the Distributed RWA Problem in WDM Networks Using Ant Colony Optimization

A New Algorithm for the Distributed RWA Problem in WDM Networks Using Ant Colony Optimization A New Algorithm for the Distributed RWA Problem in WDM Networks Using Ant Colony Optimization Víctor M. Aragón, Ignacio de Miguel, Ramón J. Durán, Noemí Merayo, Juan Carlos Aguado, Patricia Fernández,

More information

INTERNATIONAL JOURNAL OF APPLIED ENGINEERING RESEARCH Volume 1, No1, Copyright 2010 All rights reserved Integrated Publishing Association

INTERNATIONAL JOURNAL OF APPLIED ENGINEERING RESEARCH Volume 1, No1, Copyright 2010 All rights reserved Integrated Publishing Association Multipath Dynamic Source Routing with Cost and Ant Colony Optimization for MANETS Sarala.P 1, Kalaiselvi.D 2 1. Lecturer 2. Post graduate student in Computer Science and Engineering Nandha Engineering

More information

Beacon Update for Greedy Perimeter Stateless Routing Protocol in MANETs

Beacon Update for Greedy Perimeter Stateless Routing Protocol in MANETs Beacon Update for Greedy erimeter Stateless Routing rotocol in MANETs Abstract Dhanarasan 1, Gopi S 2 1 M.E/CSE Muthayammal Engineering College, getdhanarasan@gmail.com 2 Assistant rofessor / IT Muthayammal

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

International Journal of Advanced Research Trends in Engineering and Technology (IJARTET) Vol. 4, Issue 8, August 2017

International Journal of Advanced Research Trends in Engineering and Technology (IJARTET) Vol. 4, Issue 8, August 2017 OPTANT- Optimized Ant Colony Routing For Mobile Ad-Hoc Networks P. Calduwel Newton 1, M. Syed Khaja Mohideen 2, C. Prasanna Ranjith 3 Assistant Professor, Department of CS, Government Arts College, Kulithalai,

More information

Contents Introduction A Comprehensive Survey of Nature-Inspired Routing Protocols

Contents Introduction A Comprehensive Survey of Nature-Inspired Routing Protocols 1 Introduction... 1 1.1 MotivationoftheWork... 2 1.2 ProblemStatement... 4 1.2.1 Hypotheses......................................... 5 1.3 An Engineering Approach to Nature-Inspired Routing Protocols...

More information

Using Ant Agents to Combine Reactive and Proactive Strategies for Routing in Mobile Ad Hoc Networks

Using Ant Agents to Combine Reactive and Proactive Strategies for Routing in Mobile Ad Hoc Networks Using Ant Agents to Combine Reactive and Proactive Strategies for Routing in Mobile Ad Hoc Networks Frederick Ducatelle, Gianni Di Caro and Luca Maria Gambardella Technical Report No. IDSIA-28-04-2004

More information

Shortcut Tree Routing using Neighbor Table in ZigBee Wireless Networks

Shortcut Tree Routing using Neighbor Table in ZigBee Wireless Networks Shortcut Tree Routing using Neighbor Table in ZigBee Wireless Networks Salmu K.P 1, Chinchu James 2 1,2 Department of Computer Science, IIET, Nellikuzhi Abstract- ZigBee is a worldwide standard for wireless

More information

Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power

Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power , pp.1-6 http://dx.doi.org/10.14257/ijsacs.2015.3.1.01 Performance Analysis of Wireless Mobile ad Hoc Network with Varying Transmission Power Surabhi Shrivastava, Laxmi Shrivastava and Sarita Singh Bhadauria

More information

Routing Protocols in MANET: Comparative Study

Routing Protocols in MANET: Comparative Study Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 7, July 2014, pg.119

More information

Self-Organization Swarm Intelligence

Self-Organization Swarm Intelligence Self-Organization Swarm Intelligence Winter Semester 2010/11 Integrated Communication Systems Group Ilmenau University of Technology Motivation for Self-Organization Problem of today s networks Heterogeneity

More information

Routing in Ad Hoc Wireless Networks PROF. MICHAEL TSAI / DR. KATE LIN 2014/05/14

Routing in Ad Hoc Wireless Networks PROF. MICHAEL TSAI / DR. KATE LIN 2014/05/14 Routing in Ad Hoc Wireless Networks PROF. MICHAEL TSAI / DR. KATE LIN 2014/05/14 Routing Algorithms Link- State algorithm Each node maintains a view of the whole network topology Find the shortest path

More information

Relative Performance Analysis of Reactive (on-demand-driven) Routing Protocols

Relative Performance Analysis of Reactive (on-demand-driven) Routing Protocols Relative Performance Analysis of Reactive (on-demand-driven) Routing Protocols Mukesh Kumar Garg, Dr. Ela Kumar Abstract A Mobile Ad Hoc Network (MANET) is a group of wireless mobile computers (or nodes);

More information

Performance Evaluation of Active Route Time-Out parameter in Ad-hoc On Demand Distance Vector (AODV)

Performance Evaluation of Active Route Time-Out parameter in Ad-hoc On Demand Distance Vector (AODV) Performance Evaluation of Active Route Time-Out parameter in Ad-hoc On Demand Distance Vector (AODV) WADHAH AL-MANDHARI, KOICHI GYODA 2, NOBUO NAKAJIMA Department of Human Communications The University

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

Simple Ant Routing Algorithm

Simple Ant Routing Algorithm Simple Ant Routing Algorithm Fernando Correia Inesc-ID and Instituto Superior Técnico Lisboa,Portugal Email: fernando.correia@tagus.ist.utl.pt Teresa Vazão Inesc-ID and Instituto Superior Técnico Lisboa,

More information

Presenting a multicast routing protocol for enhanced efficiency in mobile ad-hoc networks

Presenting a multicast routing protocol for enhanced efficiency in mobile ad-hoc networks Presenting a multicast routing protocol for enhanced efficiency in mobile ad-hoc networks Mehdi Jalili, Islamic Azad University, Shabestar Branch, Shabestar, Iran mehdijalili2000@gmail.com Mohammad Ali

More information

Image Edge Detection Using Ant Colony Optimization

Image Edge Detection Using Ant Colony Optimization Image Edge Detection Using Ant Colony Optimization Anna Veronica Baterina and Carlos Oppus Abstract Ant colony optimization (ACO) is a population-based metaheuristic that mimics the foraging behavior of

More information

Ant Colony based Routing for Mobile Ad-Hoc Networks towards Improved Quality of Services

Ant Colony based Routing for Mobile Ad-Hoc Networks towards Improved Quality of Services Ant Colony based Routing for Mobile Ad-Hoc Networks towards Improved Quality of Services Bibhash Roy Tripura Institute of Technology, Narsingarh, Tripura, India Email: bibhashroy10@yahoo.co.in Suman Banik

More information

ROUTING IN MANETS USING ACO WITH MOBILITY ASSISTANCE

ROUTING IN MANETS USING ACO WITH MOBILITY ASSISTANCE ISSN : 0973-7391 Vol. 3, No. 1, January-June 2012, pp. 97-101 ROUTING IN MANETS USING ACO WITH MOBILITY ASSISTANCE Praveen Biradar 1, and Sowmya K.S 2 1,2 Dept. Of Computer Science and Engineering, Dayananda

More information

A Highly Effective and Efficient Route Discovery & Maintenance in DSR

A Highly Effective and Efficient Route Discovery & Maintenance in DSR A Highly Effective and Efficient Route Discovery & Maintenance in DSR Shiva Prakash 1, Rajeev Kumar 2, Brijesh Nayak 3, Manindar Kumar Yadav 4 Department of Computer Science and Engineering, Madan Mohan

More information

Swarm Intelligence (Ant Colony Optimization)

Swarm Intelligence (Ant Colony Optimization) (Ant Colony Optimization) Prof. Dr.-Ing. Habil Andreas Mitschele-Thiel M.Sc.-Inf Mohamed Kalil 19 November 2009 1 Course description Introduction Course overview Concepts of System Engineering Swarm Intelligence

More information

Zone-based Proactive Source Routing Protocol for Ad-hoc Networks

Zone-based Proactive Source Routing Protocol for Ad-hoc Networks 2014 IJSRSET Volume i Issue i Print ISSN : 2395-1990 Online ISSN : 2394-4099 Themed Section: Science Zone-based Proactive Source Routing Protocol for Ad-hoc Networks Dr.Sangheethaa.S 1, Dr. Arun Korath

More information

A Novel Interference Aware Optimized Link State Routing Protocol for Power Heterogeneous MANETs

A Novel Interference Aware Optimized Link State Routing Protocol for Power Heterogeneous MANETs A Novel Interference Aware Optimized Link State Routing Protocol for Power Heterogeneous MANETs Vijaya Lekshmi. S.V, E.P.Prakash PG Scholar, Assistant Professor Department of CSE SNS College of Engineering

More information

Ant Algorithms. Simulated Ant Colonies for Optimization Problems. Daniel Bauer July 6, 2006

Ant Algorithms. Simulated Ant Colonies for Optimization Problems. Daniel Bauer July 6, 2006 Simulated Ant Colonies for Optimization Problems July 6, 2006 Topics 1 Real Ant Colonies Behaviour of Real Ants Pheromones 2 3 Behaviour of Real Ants Pheromones Introduction Observation: Ants living in

More information

Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach

Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach ISSN (Print): 1694 0814 10 Measure of Impact of Node Misbehavior in Ad Hoc Routing: A Comparative Approach Manoj Kumar Mishra 1, Binod Kumar Pattanayak 2, Alok Kumar Jagadev 3, Manojranjan Nayak 4 1 Dept.

More information

Dynamic Robot Path Planning Using Improved Max-Min Ant Colony Optimization

Dynamic Robot Path Planning Using Improved Max-Min Ant Colony Optimization Proceedings of the International Conference of Control, Dynamic Systems, and Robotics Ottawa, Ontario, Canada, May 15-16 2014 Paper No. 49 Dynamic Robot Path Planning Using Improved Max-Min Ant Colony

More information

Routing Protocols in MANETs

Routing Protocols in MANETs Chapter 4 Routing Protocols in MANETs 4.1 Introduction The main aim of any Ad Hoc network routing protocol is to meet the challenges of the dynamically changing topology and establish a correct and an

More information

Ad Hoc Networks: Introduction

Ad Hoc Networks: Introduction Ad Hoc Networks: Introduction Module A.int.1 Dr.M.Y.Wu@CSE Shanghai Jiaotong University Shanghai, China Dr.W.Shu@ECE University of New Mexico Albuquerque, NM, USA 1 Ad Hoc networks: introduction A.int.1-2

More information

LECTURE 20: SWARM INTELLIGENCE 6 / ANT COLONY OPTIMIZATION 2

LECTURE 20: SWARM INTELLIGENCE 6 / ANT COLONY OPTIMIZATION 2 15-382 COLLECTIVE INTELLIGENCE - S18 LECTURE 20: SWARM INTELLIGENCE 6 / ANT COLONY OPTIMIZATION 2 INSTRUCTOR: GIANNI A. DI CARO ANT-ROUTING TABLE: COMBINING PHEROMONE AND HEURISTIC 2 STATE-TRANSITION:

More information

Evaluating the Performance of Mobile Agent-Based Message Communication among Mobile Hosts in Large Ad Hoc Wireless Network

Evaluating the Performance of Mobile Agent-Based Message Communication among Mobile Hosts in Large Ad Hoc Wireless Network Evaluating the Performance of Mobile Agent-Based Communication among Mobile Hosts in Large Ad Hoc Wireless Network S. Bandyopadhyay Krishna Paul PricewaterhouseCoopers Limited Techna Digital Systems Sector

More information

The Efficient Ant Routing Protocol for MANET

The Efficient Ant Routing Protocol for MANET The Efficient Ant Routing Protocol for MANET Srinivas Sethi Dept. of CSEA IGIT Sarang Orissa, India Siba K.Udgata Dept. of Computer and Information Sciences University of Hyderabad Hyderabad, India ABSTRACT

More information

ENERGY EFFICIENT MULTIPATH ROUTING FOR MOBILE AD HOC NETWORKS

ENERGY EFFICIENT MULTIPATH ROUTING FOR MOBILE AD HOC NETWORKS ENERGY EFFICIENT MULTIPATH ROUTING FOR MOBILE AD HOC NETWORKS May Cho Aye and Aye Moe Aung Faculty of Information and Communication Technology, University of Technology (Yatanarpon Cyber City), Pyin Oo

More information

Solving a combinatorial problem using a local optimization in ant based system

Solving a combinatorial problem using a local optimization in ant based system Solving a combinatorial problem using a local optimization in ant based system C-M.Pintea and D.Dumitrescu Babeş-Bolyai University of Cluj-Napoca, Department of Computer-Science Kogalniceanu 1, 400084

More information

1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol

1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol 1 Multipath Node-Disjoint Routing with Backup List Based on the AODV Protocol Vahid Zangeneh i and Shahriar Mohammadi ii * ABSTRACT In recent years, routing has been the most focused area in ad hoc networks

More information

Comparative Analysis of AntHocNet, AODV, DSR Routing Protocols for Improvising Loss Packet Delivery Factor

Comparative Analysis of AntHocNet, AODV, DSR Routing Protocols for Improvising Loss Packet Delivery Factor Comparative Analysis of,, Routing Protocols for Improvising Loss Packet Delivery Factor Maahi Amit Khemchandani #1, Prof. B. W. Balkhande *2 #1 Saraswati College of Engineering, Computer Engineering Department,

More information

[Kamboj* et al., 5(9): September, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116

[Kamboj* et al., 5(9): September, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY NOVEL REVIEW OF MANET ROUTING PROTOCOLS Nippun Kamboj*, Dr. Munishwar Rai Department of Computer Applications Maharishi Markandeshwar

More information

Dynamic Search Technique Used for Improving Passive Source Routing Protocol in Manet

Dynamic Search Technique Used for Improving Passive Source Routing Protocol in Manet African Journal of Basic & Applied Sciences 9 (1): 27-32, 2017 ISSN 2079-2034 IDOSI Publications, 2017 DOI: 10.5829/idosi.ajbas.2017.27.32 Dynamic Search Technique Used for Improving Passive Source Routing

More information

Bee Inspired and Fuzzy Optimized AODV Routing Protocol

Bee Inspired and Fuzzy Optimized AODV Routing Protocol , pp.70-74 http://dx.doi.org/10.14257/astl.2018.149.15 Bee Inspired and Fuzzy Optimized AODV Routing Protocol B. Jahnavi, G. Virajita, M. Rajeshwari and N. Ch. S. N. Iyengar Department of Information Technology,

More information

Accepted Manuscript. Smart Data Packet Ad Hoc Routing Protocol. Saman Hameed Amin, H.S. Al-Raweshidy, Rafed Sabbar Abbas

Accepted Manuscript. Smart Data Packet Ad Hoc Routing Protocol. Saman Hameed Amin, H.S. Al-Raweshidy, Rafed Sabbar Abbas Accepted Manuscript Smart Data Packet Ad Hoc Routing Protocol Saman Hameed Amin, H.S. Al-Raweshidy, Rafed Sabbar Abbas PII: S1389-1286(13)00401-5 DOI: http://dx.doi.org/10.1016/j.bjp.2013.11.015 Reference:

More information

Impulse Radio Ultra Wide Band Based Mobile Adhoc Network Routing Performance Analysis

Impulse Radio Ultra Wide Band Based Mobile Adhoc Network Routing Performance Analysis American Journal of Applied Sciences, 10 (4): 361-366, 2013 ISSN: 1546-9239 2013 Sreedhar and Venkatesh, This open access article is distributed under a Creative Commons Attribution (CC-BY) 3.0 license

More information

A Fuzzy Optimized, Bee inspired Routing Protocol for Improved QoS in Mobile Ad Hoc Networks

A Fuzzy Optimized, Bee inspired Routing Protocol for Improved QoS in Mobile Ad Hoc Networks , pp.169-174 http://dx.doi.org/10.14257/astl.2016.135.41 A Fuzzy Optimized, Bee inspired Routing Protocol for Improved QoS in Mobile Ad Hoc Networks Anush Baskaran, Sushant Ramesh, Ronnie D. Caytiles*

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 REVIEW ON CONGESTION CONTROL IN WIRELESS SENSOR NETWORK MR. HARSHAL D. WANKHADE,

More information

MIRROR SITE ORGANIZATION ON PACKET SWITCHED NETWORKS USING A SOCIAL INSECT METAPHOR

MIRROR SITE ORGANIZATION ON PACKET SWITCHED NETWORKS USING A SOCIAL INSECT METAPHOR MIRROR SITE ORGANIZATION ON PACKET SWITCHED NETWORKS USING A SOCIAL INSECT METAPHOR P. Shi, A. N. Zincir-Heywood and M. I. Heywood Faculty of Computer Science, Dalhousie University, Halifax NS, Canada

More information