Probabilistic Trust-Based Enhancement for simultaneous transmission in AOMDV Routing Protocol

Nikhil Mishra
2024-11-20
Abstract:This work addresses a trust-based enhancement to the Multipath Ad hoc On-Demand Distance Vector (AOMDV) routing protocol. While AODV and its multipath variant AOMDV have been fundamental in mobile ad hoc networks, they lack mechanisms to account for node reliability. A probabilistic link-trust model is proposed that incorporates factors such as past behavior, battery levels, and node coupling to distribute data optimally to reduce delay while simultaneously transmitting through multiple paths.
Networking and Internet Architecture
What problem does this paper attempt to address?
The problems that this paper attempts to solve are as follows: In Mobile Ad - hoc Networks (MANETs), the existing Ad hoc On - Demand Distance Vector (AODV) and its multipath variant AOMDV routing protocols fail to consider node reliability, resulting in sub - optimal path selection and unnecessary network overhead. Specifically: 1. **Lack of Node Reliability Mechanism**: Traditional AODV and AOMDV protocols rely solely on hop count or basic metrics in routing decisions, ignoring factors such as historical node reliability and energy constraints, which may lead to poor path selection. 2. **Challenges Brought by Dynamic Topology and Decentralized Characteristics**: The dynamic topology and decentralized characteristics of MANETs require the network to adapt to frequent connection changes, different node capabilities, and potential node failures. To solve these problems, the paper proposes an enhanced method based on a probabilistic trust model, aiming to optimize the selection of data transmission paths by comprehensively considering factors such as the historical behavior of nodes, battery levels, and node coupling, thereby reducing latency and improving network performance. ### Specific Problem Summary - **Path Selection without Considering Node Reliability**: Existing protocols do not consider the historical behavior and reliability of nodes when selecting paths, which may lead to the selection of unreliable paths and increase the probability of transmission failure. - **Failure to Consider Battery Levels**: The battery level of a node directly affects its working time and performance, but traditional protocols do not take it into account, which may lead to the selection of low - battery nodes as relay nodes, further affecting network stability. - **Ignoring Node Coupling Effects**: The interference and coupling effects between adjacent nodes also affect the efficiency and reliability of data transmission, but traditional protocols do not optimize this. ### Proposed Solution The paper proposes a probability - based trust model to improve the AOMDV protocol in the following ways: 1. **Link Trust Value**: Use the Beta distribution to model the trust value of a link, and update the trust value in combination with the historical behavior of the node to ensure more reliable path selection. \[ p_{A \to B} \sim \text{Beta}(\alpha, \beta) \] \[ E[p_{A \to B}] = \frac{\alpha}{\alpha + \beta} \] 2. **Battery Level Consideration**: Use the battery level of the node as a reliability indicator, estimate the future battery level, and influence path selection through the function \( f(B_t) \). \[ B_{t_2} = B_{t_1} + \frac{B_{t_1} - B_{t_0}}{t_1 - t_0} \cdot (t_2 - t_1) \] 3. **Path Coupling**: Define the availability index \( A_i(t) \) for each node to reflect the recent transmission state of the node and reduce interference between adjacent nodes. 4. **Hop Count Adjustment**: Adjust the link trust value according to the hop count of the path to ensure that path selection takes into account not only reliability but also latency. 5. **Final Probability Calculation**: Synthesize the above factors to calculate the final link probability \( p_{A \to B, t} \) to achieve optimal data distribution. Through these improvements, the paper aims to improve the efficiency and reliability of data transmission in MANETs, reduce transmission latency, and optimize the effect of multipath simultaneous transmission.