You are currently viewing a new version of our website. To view the old version click .
Future Internet
  • Article
  • Open Access

16 January 2023

Using Metaheuristics (SA-MCSDN) Optimized for Multi-Controller Placement in Software-Defined Networking

,
and
College of Computer Science and Information Technology, University of Anbar, Ramadi 31001, Iraq
*
Author to whom correspondence should be addressed.

Abstract

The multi-controller placement problem (MCPP) represents one of the most challenging issues in software-defined networks (SDNs). High-efficiency and scalable optimized solutions can be achieved for a given position in such networks, thereby enhancing various aspects of programmability, configuration, and construction. In this paper, we propose a model called simulated annealing for multi-controllers in SDN (SA-MCSDN) to solve the problem of placing multiple controllers in appropriate locations by considering estimated distances and distribution times among the controllers, as well as between controllers and switches (C2S). We simulated the proposed mathematical model using Network Simulator NS3 in the Linux Ubuntu environment to extract the performance results. We then compared the results of this single-solution algorithm with those obtained by our previously proposed multi-solution harmony search particle swarm optimization (HS-PSO) algorithm. The results reveal interesting aspects of each type of solution. We found that the proposed model works better than previously proposed models, according to some of the metrics upon which the network relies to achieve optimal performance. The metrics considered in this work are propagation delay, round-trip time (RTT), matrix of time session (TS), average delay, reliability, throughput, cost, and fitness value. The simulation results presented herein reveal that the proposed model achieves high reliability and satisfactory throughput with a short access time standard, addressing the issues of scalability and flexibility and achieving high performance to support network efficiency.

1. Introduction

SDNs are in a constant state of evolution as new mechanisms emerge; therefore, it is critical to solve scalability issues by taking full advantage of the programmability of controllers, without sacrificing performance and management capabilities.
In this work, an optimized simulated annealing (SA)-based algorithm (SA-MCSDN) is proposed to effectively deploy multiple controllers in order to reduce connection latency and propagation and improve throughput and reliability. First, the network is generated; then, an optimal controller is selected in terms of its features using the FA algorithm. Finally, multiple controllers are placed based on the selected controller using the proposed algorithm, which increases the convergence rate, reducing deployment latency and connection latency.
Simulated annealing (SA) is a commonly used algorithm based on the principle of the heuristic algorithm, determining the optimal solution by comparing possible solutions. Thus, SA can be used to solve the multi-controller placement problem (MCPP), which involves placing controllers in appropriate positions in order to achieve the shortest distances and the least communication time between multi-controller interfaces, as well as between controllers and switches.
The SA method involves the following aspects:
  • Annealing: Refers to heating a solid to a sufficiently high temperature so that its molecules are arranged randomly. Then, the temperature is gradually reduced, so once cooled, the molecules of the solid are arranged in a lower-energy stable state.
  • Heating processing: Whereby the thermal movement of particles is enhanced, eliminating any non-uniform state that may exist in the system.
  • Thermal processing: In closed systems that exchange heat with the environment without a change in temperature, the state of the system is altered without constraint as free energy diminishes. When free energy reaches a minimum value, the system achieves a state of harmony.
  • Cooling processing: The thermal movement and arrangement of particles are gradually debilitated, and the vitality of the system is gradually reduced, resulting in a low-energy crystal structure. SA is based on the principles of statistical mechanics.
The remainder of this paper is organized as follows. In Section 2, we review related works, and a statement of the research problem is presented in Section 3. In Section 4, we describe the proposed SA-MCSDN method in terms of network construction, optimal controller selection, and multi-controller placement. The experimental results of the proposed SA-MCSDN approach are explained in Section 5. Finally, in Section 6, we present our conclusion on the proposed SA-MCSDN approach and present some suggestions for future work.

3. Problem Statement

The MCPP is one of the crucial issues in SDNs. The placement and location of the multi-controllers affect the performance efficiency of the network. There are many challenges encountered during controller placement, such as the propagation delay between S2Cs, the tolerance of controller faults, and meeting switch requirements. Therefore, it is important to ensure reduced network propagation time, fewer errors in link failure or failure of the node itself, and reduced cost to deploy devices or nodes in the network, as well as improved reliability and throughput. Many models have been proposed for simulation and design, for example, a framework and a mathematical model that contain many algorithms to check the exactness of the proposed mathematical model and verify the correct performance of the proposed algorithm. Through simulations, a comparison can be made with the model for the MCPP [].
Traffic-aware models, system-aware models, and rule-placement models consist of objective mathematical formulation model solutions []—for example, the mathematical model for planning the deployment of an SDN using a new ILP mathematical model; given several input parameters, the model has two distinct capabilities []. There are four basic requirements for sequential implementation, as illustrated in Figure 1.
Figure 1. The iterative process of the scientific method [].

4. The Proposed Work

The proposed method is adaptable, reliable, and improves the general performance of the network. The methodology used in this research is based on the following three processes: (1) building and configuring the network settings based on space topology and the virtual devices used on the network, as shown in the proposed model in Figure 2, which is a simplified diagram of the proposed MCSDN architecture; (2) a mechanism of distribution and selection of controllers using the firefly algorithm (FA); and (3) the use of our proposed algorithm (SA-MCSDN) to choose the most suitable locations for the controllers. The current research is a continuation of previous work under the title Multi-Controllers Placement Optimization in SDN by the hybrid HSA-PSO algorithm, in which we used an algorithm to solve the same problem of MCSDN to select suitable locations for controllers. Table 2 shows the results from our previous work, as well as a comparison between our previous work and this research.
Figure 2. Multi-controller SDN simulation environment.
Table 2. Average results of the proposed SA-MCSDN algorithm.
Figure 2 represents the system model, for which the mathematical equations in this section are formulated as follows: seven (n) controllers were used in the network topology, with twenty-eight (n) switches and forty-five (n) hosts.

4.1. Network Construction

The topology is built based on the undirected graph structure [], as expressed in the following:
G = ( V , E , U ) Let   us   assume   C = ( c 1 , c 2 , , c n ) ,   S = ( s 1 , s 2 , , s n ) ,     V = C S ,   n = V ,   k = U ,   and   P c = P c 1 , P c 2 ,   . , P c m
m = n ! k ! ( n k ) !  
Table 3 contains a description of the graph theory, topology, and other mathematical symbols [,].
Table 3. Description of graph theory, topology, and other mathematical symbols.

4.2. Optimal Controller Selection

The process of FA-based controller selection is illustrated by the pseudocode presented below. First, the controller features within the network are initialized, as formulated in Algorithm 1 [].
Algorithm 1 Pseudocode FA for Optimal Controller Selection
Initialize: F C n =   { F C 1 , F C 2 , F C 3 , F C 4 , F C 5 , F C 6 , F C 7 , s   .   . , F C n }   ;
Formulate objective function using: F T F C =   f ( F C ) ;                      
Formulate controller absorption coefficient using: ( D ) = 0 e γ D 2 ;
Initialize absorption coefficient using:
( F T F C ) = { ( F T F C 1 ) , ( F T F C 2 ) , , ( F T F C 7 ) }       ;
While all F C do
Compute controller feature distance using: F T ( D ) = F C D C     ;  
For  F C 1 = 1 to n (all n controllers)
For  F C 2 = 1 to n (all n controllers)
If ( D F C 2 > D F C 1 ), select F C 2 over F C 1
End if
Update the ( D )
End for  F C 2
End for  F C 1
Rank the controller and find the current best controller
End while

4.3. Multi-Controller Placement Using Simulated Annealing Algorithm

In the SDN environment, the optimal positioning of controllers reduces latency during communication between the controllers and switches. Therefore, we adopted a simulated annealing algorithm. The SA algorithm is a global optimization algorithm inspired by the thermodynamic process. The thermodynamic process reduces the energy of a material and changes its state through a mechanism of controlled heating and cooling in order to change the physical properties of the material according to its free thermodynamic energy. The heating and cooling process affects the temperature and thermodynamic free energy of the substance. The idea of slow cooling involves the temperature being gradually decreased from an initial positive value to zero in order to rank solutions. Specifically, SA metaheuristics involve approximation of a global optimization in a large search space for an optimization problem. The state of the physical system and the function to be minimized are analogous to the internal energy of the system. The goal is to transform the system from a random initial state to a minimal energy state. SA can be used for very difficult computational optimization problems, for which precise algorithms fail. Although SA usually achieves only an approximate solution to the global minimum, it may suffice for many practical problems.
This phenomenon results in an optimization problem for engineering domains. The adoption of SA yields increased accuracy and provides the optimal solution with a slower convergence speed. In our work, a highly accurate and robust optimized method is used for optimal placement of multiple controllers in the SDN environment. SA can solve non-linear global problems, as it depends on a stochastic model. The objective function ( F ( x ) ) is provided in maximized and minimized forms below [,,,].
In the maximized form, the objective function can be formulated as
F ( x OPT ) = max x i ϵ Y F ( x )
In Equation (3), the objective function is represented by the optimal vector, which solves the problem of placing controllers at appropriate locations in the network in the case of the maximum function represented by F ( x OPT ) of x i , j .
In the minimized form, the objective function can be formulated as
F ( x OPT ) = min x i ϵ Y F ( x )
In Equation (4), the used objective function is represented by the optimal vector, which solves the problem of placing controllers in appropriate positions in the case of the minimum function represented by F ( x OPT ) of x i , j .
From the above equations, x i is the variable obtained by SA (i.e., x i   ϵ   φ ). Some of the steps of SA are provided below.
Phase 1: An initial temperature is set to generate a random solution ( x i , j ), which can be formulated as
i = x   T   maxi + i ( x   T   maxi x     T 0 mini )
where i ϵ [ 1 , M ] , in which M defines the temperature, and x   T   maxi   and   x     T 0 mini are the ending and starting temperatures, respectively. The above equation computes the fitness value of x i , j .
Equation (5) is used to calculate the fitness value between upper and lower cases for f(x) of the optimal vector ( x i , j ).
Phase 2: Based on the present point, random feasible neighbor points are generated. Random point generation continues until a feasible neighbor point is estimated ( x i , j ). Then, based on the above equation, the fitness function is computed to calculate the difference between the two fitness functions as
Δ F = ( F ( x i , j ) New   F ( x i , j )   Current )
Equation (6) is used to calculate the density function (∆F) difference between the two fitness functions.
Phase 3: In this step, a new optimal point is selected. If Δ F < 0 , ( x i , j ) New   and   ( x i , j )   Current are the new optimal points, and F ( x i , j ) New = F ( x i , j )   Current is used for the next process. Otherwise, the probability density function ( Pr ( Δ F ) ) is computed, which can be formulated as
Pr ( Δ F ) = e x p ( Δ F T L ( it r ) )
Equation (7) is used to calculate the probability of the density function Pr ( Δ F ) , which is a standard equation for all parameters.
Then, a random number ( Θ ) is generated to obtain the optimal position. If Θ is less than Pr ( Δ F ) , then ( x i , j ) New is the optimal point of ( x i , j )   Current , and the next phase proceeds. Otherwise, the process returns to phase 2. The formulation is expressed as
Pr = { ( x i , j ) New ,     if   Θ ϵ [ 0 , 1 ] < Pr ( Δ F ) Δ F = F ( x i , j ) New F ( x i , j ) Current ,   E l s e ,
The probability of Equation (8) consists of two parts: (1) the position of the controllers in terms of distance and time and (2) the density function ( Δ F ).
Phase 4: If  L < K , then put L = L + 1 and jump to phase 2. Else if, if L > K , stop the searching process, and else go to phase 5.
Phase 5: Put L = L + 1, L = 1; put
T L = Θ T L 1
Equation (9) is used to calculate the temperature with the Boltzmann constant; the temperature reduction factor (cooling rate) increases with each step.
Phase 6: If S′ >= Worst Solution (S) then accept the best worst solution (S); Else if calculate
T 0 = Worst     Best   l o g ( β )
T itr + 1   = α   ×   T itr ,
Equation (10) is used to calculate the initial temperature depending on the best and worst solutions. Equation (11) is calculated after completing the optimal solution, which represents the position of the first controller; here, a new iteration is added to proceed to the second step.
itr = itr + 1; and jump to phase 2.
Through the above six steps, the following final formula is obtained:
Maximize   i = 1 n α i , j 1 2 i = 1 n   j = 1 n α i , j y i , j K ( x i , j )   ,
where 0 ≤ α i , j ≤ C,   i = 1 n α i , j y i , j = 0 .
Equation (12) represents the sum and quotient of all the results of the above equations in the case of the maximally combined solutions, obtaining k of the placed controllers.
Based on the SA searching process described above, multiple controllers are optimally placed in the SDN environment. In the above algorithm, the temperature points denote the optimal distance and location. The process is repeated until the optimal controller position is obtained. For the benefit of the reader, the pseudocode and a flow chart of the proposed SA-MCSDN algorithm are provided in Algorithm 2 and Figure 3, and Table 4 describes the abbreviations and parameters used therein.
Figure 3. Flow chart of the SA-MCSDN algorithm.
Table 4. Parameters and abbreviations of SA-MSDN algorithm optimization.
Algorithm 2 Pseudocode of the proposed SA-MCSDN algorithm
 Initialized the objective function, F ( x i , j ).
  Initialize parameters, L, T, T0, and α, β ;
  Set T = T0, V = 3 × D
  Generate initial, S, x i , j ;
  Calculate objective function, F ( x i , j );
  S = F   ( x i , j );
  itr = 0;
     While (itr < I m a x )
Futureinternet 15 00039 i001

5. Experimental Results

In this section, we present the experimental results of the proposed SA-MCSDN algorithm, as well as a comparison with a previously proposed algorithm.

5.1. Simulation Setup

As shown in Figure 2, computers or devices are connected according to the proposed model architecture (MCSDN approach); the devices communicate and are connected according to the implementation plan and according to the connection priority, respectively. The implementation plan includes the following steps:
Step 1: An initial NS3 is created with seven (n) controllers, twenty-eight (n) switches, and forty-five (n) users [].
Step 2: Next, the topology is constructed based on an undirected graph, and the optimal controller selection process is performed using FA [].
Step 3: Next, the MCPP process is performed using the proposed SA- MCSDN optimized algorithm.
Step 4: Sample packets are transitioned between the users.
Step 5: Finally, performance metrics, propagation delay, average round-trip time (RTT), matrix of time session (TS), average delay, reliability, throughput, cost, and fitness value are evaluated.
Table 5 outlines the framework arrangements, and Table 6 lists the setup parameters of the proposed MCSDN strategy.
Table 5. Original system configuration and input parameters using the SA-MCSDN algorithm.
Table 6. Parameter configurations of a virtual machine and an SDN controller.
When entering the information to run the simulation, the NS3 working steps are followed. Processing involves sending and receiving packets of data between switching devices and controllers, as well as among controllers themselves, as shown in Figure 4.
Figure 4. Multi-controller placement optimization by the SA-MCSDN algorithm.
After executing the NS3 network emulator, a software interface appears, consisting of an animator, stats, and packets. Figure 5 shows the process of exporting a table to optimally associate the chosen node location with other nodes. The table shown in Figure 5 consists of a group of device nodes, with the number of connections between these nodes ranging from 0 to 79, comprising 7 controllers, 28 switches, and 45 hosts. The table also contains ID and Mac addresses, through which devices are linked, as well as the optimal location for each controller after maximum iteration, which is correlated with the actual controller placement according to the improved SA-MCSDN algorithm.
Figure 5. Optimal node placement relative to other nodes.
These graphical results represent a comparison of the SA-MCSDN algorithm proposed in this work with the HSA-PSO MCSDN algorithm proposed in [] and SA-FFCCPP. The algorithm results were compared based on metrics, such as propagation delay, average round-trip time (RTT), matrix of TS, average delay, reliability, throughput, cost, and fitness value, as shown in the figures below. These figures show comparisons of the proposed SA-MCSDN algorithm and the previous HSA-PSO approach with respect to a number of SA-FFCCPP validation metrics. These graphical representations show that the proposed SA-MCSDN-based multi-controller placement approach in an SDN achieved improved results with respect to multiple metrics relative to the previous work using the hybrid HSA-PSO algorithm and SA-FFCCPP. The reason for the superior results is that SA-MCSDN enables a short execution time with considerable convergence, whereas the HSA-PSO algorithm requires a longer execution time with lower convergence and local optima traps, in addition to lacking robust management of exploitation and exploration. Our comparison of the SA-MCSDN algorithm with the previous hybrid HS-PSO algorithm revealed that the proposed SA-MCSDN performed better than the hybrid HS-PSO algorithm in terms of latency, propagation time, delay rate, reliability, defects, convergence, and cost. Table 2 presents a comparison of the average numerical results of the proposed method with those obtained in the previous work.
The following is a summary of the effects of the metrics through analysis and comparison with reference to the following figures and extracted results of the proposed algorithm.
Figure 6 shows the tradeoff between the algorithms, demonstrating the superiority of the proposed SA-MCSDN algorithm in terms of the impact of propagation delay.
Figure 6. Comparison of propagation delay.
Latency is an important metric that is used to evaluate the delay between switches and controllers during propagation. It is calculated according to Equation (13):
Ƥ đ = ƛ ʠ
where propagation delay ( Ƥ đ ) is defined as the ratio between the distance ( ƛ ) (m) and the propagation speed ( ʠ ) (m/s).
Figure 6 shows a comparison of the ( Ƥ đ ) of the proposed SA-MCSDN method with the hybrid HSA-PSO and SA-FFCCP methods in terms of the number of iterations. An SDN network with low propagation delay attains efficient communication between S2Cs. The propagation delay decreases with an increasing number of iterations. Controller placement (CP) was performed by considering only the distance between S2Cs. In addition, poor tuning of algorithms leads to poor CP, which increases the ( Ƥ đ ) . In the proposed SA-MCSDN method, CP is performed by considering the ( ƛ ) using an optimization algorithm that increases the performance and reduces the ( Ƥ đ ) . Figure 6 shows that the proposed SA-MCSDN method achieves a low propagation latency (4 to 15 ms) of 4.80 ms, compared with the hybrid HSA-PSO (11 to 20 ms; 15.6) and SA-FFCCPP (22 to 40 ms; 31.3) methods.
Figure 7 illustrates the tradeoffs between the algorithms listed above. The proposed SA-MCSDN algorithm achieves better performance than the HS-PSO and SA-FFCCP algorithms in terms of the impact of round-trip time (RTT; 6.05 ms).
Figure 7. Comparison of average RTT.
Figure 8 shows a comparison of the algorithms listed above. The proposed SA-MCSDN algorithm achieves better performance than the HS-PSO and SA-FFCCP algorithms in terms of the effect of session time matrix (TS; 113.13).
Figure 8. Comparison of the matrix of time session (TS).
Figure 9 illustrates a comparison of the algorithms listed above. The proposed SA-MCSDN algorithm achieves better performance than the HS-PSO and SA-FFCCP algorithms in terms of the average delay (42.57 ms).
Figure 9. Comparison of average delay.
Figure 10 illustrates a comparison of the algorithms listed above. The proposed SA-MCSDN algorithm achieves better performance than the HS-PSO and SA-FFCCP algorithms in terms of the impact of reliability, which affects performance and flexibility, with a 99% ratio.
Figure 10. Comparison of reliability.
Figure 11 shows the tradeoff between the algorithms mentioned above. The proposed SA-MCSDN algorithm achieves better performance than the HS-PSO and SA-FFCCP algorithms in terms of the impact of throughput (395.57 Kbps).
Figure 11. Comparison of throughput.
Figure 12 illustrates a comparison of the algorithms listed above. The proposed SA-MCSDN algorithm achieves slightly better performance than the SA-FFCCP algorithm and slightly worse performance than the hybrid HS-PSO algorithm in terms of the impact of the cost metric (31.27).
Figure 12. Comparison of cost.
Figure 13 denotes the convergence of the proposed algorithm with the previously proposed algorithms (to a large extent) in terms of the fitness value (Table 2).
Figure 13. Comparison of fitness values.

5.2. Comparative Analysis between HAS-PSO and SA-MCSDN Algorithms

As shown in the table presented, our current work can be compared with our previous work; the results presented above confirm the existence of a large discrepancy in terms of performance improvement. According to the analysis of the schematics represented by the proposed SA-MCSDN, it achieves superior network performance relative to the previous hybrid HSA-PSO algorithm and the SA-FFCCPP algorithm in terms of scalability, reliability, delay in spread, and response. Furthermore, the quantitative amounts of the average qualitative metrics are mentioned according to the results extracted from the previous Figures for the proposed methods and respectively (propagation delay is 4.80 ms; round-trip time (RTT) is 6.05 ms; the matrix of time session (TS) is 113.13; the average delay is 42.57 ms; reliability is 99%; throughput is 395.57 Kbps; the cost is 31.27; and, finally, the fitness value is 19.16). Simulation of the multi-console mode is performed by the NS3 network simulator, and the simulation results show that the proposed work outperforms it. Table 2 shows the performance measures of the three algorithms in terms of scalability and other metrics.

6. Conclusions and Future Work

Through simulation experiments, we compared the SA-MCSDN algorithm with the SA-FFCCPP, HS-PSO, and SA-MCSDN algorithms using the NS3 simulator and an Ubuntu 64-bit tool in the SDN environment. We judged the improvement compared to our previously proposed algorithm. In order to increase the convergence rate and reduce deployment latency and connection latency, the following metrics were considered: propagation delay, round-trip time (RTT), matrix of time session (TS), average delay, reliability, throughput, cost, and fitness value. The proposed SA-MCSDN approach provides an improved solution to extend control over the SDN environment to Linux virtual machines, in addition to providing sufficient flexibility to handle such environments. Additional studies on this topic are necessary.
We found that the proposed SA-MCSDN algorithm achieves better results than our previously proposed algorithm in solving the problem of distributing control units and placing them in optimal and appropriate positions in terms of spatial location within the network in the control layer, as well as the time taken for implementation. This analysis is based on the following main criteria: the shortest distance and the method of its calculation, the decrease in the time taken for distribution, and the communication between devices of the infrastructure layer and the control units (S2Cs), as well as between the control units themselves (C2Cs) with consideration of fault. The selection and preparation of control units and the measures of performance shown in Table 2 indicate the level of effectiveness of the network, the increase in the expansion of the network, and its reliability. In future studies, we intend to emphasize and identify various drawbacks of a variety of approaches.

Author Contributions

Conceptualization, N.S.R., S.T.F.A.-J. and K.S.J.; methodology, N.S.R., S.T.F.A.-J. and K.S.J.; software, N.S.R., S.T.F.A.-J. and K.S.J.; validation, N.S.R., S.T.F.A.-J. and K.S.J.; formal analysis, N.S.R., S.T.F.A.-J. and K.S.J.; investigation, N.S.R., S.T.F.A.-J. and K.S.J.; resources, N.S.R., S.T.F.A.-J. and K.S.J.; data curation, N.S.R., S.T.F.A.-J. and K.S.J.; writing—original draft preparation, N.S.R., S.T.F.A.-J. and K.S.J.; writing—review and editing, N.S.R., S.T.F.A.-J. and K.S.J.; visualization, N.S.R., S.T.F.A.-J. and K.S.J.; supervision, N.S.R., S.T.F.A.-J. and K.S.J.; project administration, N.S.R., S.T.F.A.-J. and K.S.J.; funding acquisition, N.S.R., S.T.F.A.-J. and K.S.J. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Institutional Review Board Statement

Not applicable.

Data Availability Statement

All data are presented in the main text.

Acknowledgments

We would like to thank all individuals and organizations who provided support to complete this paper.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Aravind, P.; Varma, G.S.; Reddy, P.P. Simulated annealing based optimal controller placement in software defined networks with capacity constraint and failure awareness. J. King Saud Univ.-Comput. Inf. Sci. 2022, 34, 5721–5733. [Google Scholar] [CrossRef]
  2. Sahoo, K.S.; Sahoo, B.; Dash, R.; Jena, N. Optimal controller selection in software defined network using a greedy-SA algorithm. In Proceedings of the 2016 3rd International Conference on Computing for Sustainable Global Development (INDIACom), New Delhi, India, 16–18 March 2016. [Google Scholar]
  3. Guo, W.G.; Luo, J.; Han, S.; Zhang, Z.Y.; Ge, Y. Research on Feedback-Sensitive Resource Mapping Algorithm Based On Simulated Annealing in SDN. Procedia Comput. Sci. 2019, 154, 96–101. [Google Scholar] [CrossRef]
  4. Guo, A.; Yuan, C. Network Intelligent Control and Traffic Optimization Based on SDN and Artificial Intelligence. Electronics 2021, 10, 700. [Google Scholar] [CrossRef]
  5. He, M.; Varasteh, A.; Kellerer, W. Toward a Flexible Design of SDN Dynamic Control Plane: An Online Optimization Approach. IEEE Trans. Netw. Serv. Manag. 2019, 16, 1694–1708. [Google Scholar] [CrossRef]
  6. Tahmasebi, S.; Rasouli, N.; Kashefi, A.H.; Rezabeyk, E.; Faragardi, H.R. SYNCOP: An evolutionary multi-objective placement of SDN controllers for optimizing cost and network performance in WSNs. Comput. Netw. 2021, 185, 107727. [Google Scholar] [CrossRef]
  7. Liao, Z.; Chen, C.; Ju, Y.; He, C.; Jiang, J.; Pei, Q. Multi-Controller Deployment in SDN-Enabled 6G Space–Air–Ground Integrated Network. Remote Sens. 2022, 14, 1076. [Google Scholar] [CrossRef]
  8. Zilberman, A.; Haddad, Y.; Erlich, S.; Peretz, Y.; Dvir, A. SDN Wireless Controller Placement Problem-The 4G LTE-U Case. IEEE Access 2021, 9, 16225–16238. [Google Scholar] [CrossRef]
  9. Tahmasebi, S.; Safi, M.; Zolfi, S.; Maghsoudi, M.R.; Faragardi, H.R.; Fotouhi, H. Cuckoo-PC: An Evolutionary Synchronization-Aware Placement of SDN Controllers for Optimizing the Network Performance in WSNs. Sensors 2020, 20, 3231. [Google Scholar] [CrossRef]
  10. Luong, D.K.; Ali, M.; Hu, Y.F.; Li, J.P.; Asif, R.; Abdo, K. Simulated Annealing-Based Multilink Selection Algorithm in SDN-Enabled Avionic Networks. IEEE Access 2021, 9, 145301–145316. [Google Scholar] [CrossRef]
  11. Li, C.; Jiang, K.; Luo, Y. Dynamic placement of multiple controllers based on SDN and allocation of computational resources based on heuristic ant colony algorithm. Knowl.-Based Syst. 2022, 241, 108330. [Google Scholar] [CrossRef]
  12. Shen, Y.; Chen, W.; Liu, J. Joint Placement of Gateways and Controllers in SDN-Enabled Space-Ground Integration Network. In Proceedings of the Asia Conference on Electrical, Power and Computer Engineering, Shanghai, China, 22–24 April 2022. [Google Scholar]
  13. Yan, B.; Liu, Q.; Shen, J.; Liang, D. BatchUp: Achieve fast TCAM update with batch processing optimization in SDN. Futur. Gener. Comput. Syst. 2022, 134, 93–106. [Google Scholar] [CrossRef]
  14. Luong, D.K.; Hu, Y.-F.; Li, J.-P.; Ali, M. Metaheuristic Approaches to the Joint Controller and Gateway Placement in 5G-Satellite SDN Networks. In Proceedings of the ICC 2020—2020 IEEE International Conference on Communications (ICC), Dublin, Ireland, 7–11 June 2020. [Google Scholar]
  15. Yong, B.; Muqing, W.; Jing, S.; Min, Z. Optimization Strategy of SDN Control Deployment Based on Simulated Annealing-Genetic Hybrid Algorithm. In Proceedings of the 2018 IEEE 4th International Conference on Computer and Communications (ICCC), Chengdu, China, 7–10 December 2018. [Google Scholar]
  16. Dvir, A.; Haddad, Y.; Zilberman, A. The controller placement problem for wireless SDN. Wirel. Netw. 2019, 25, 4963–4978. [Google Scholar] [CrossRef]
  17. Kanodia, K.; Mohanty, S.; Sahoo, B.; Kurroliya, K. HPSOSA: A hybrid approach in resilient controller placement in SDN. In Proceedings of the 2020 International Conference on Emerging Trends in Information Technology and Engineering (ic-ETITE), Vellore, India, 24–25 February 2020. [Google Scholar]
  18. Misni, F.; Lee, L.S.; Jaini, N.I. Multi-objective hybrid harmony search-simulated annealing for location-inventory-routing problem in supply chain network design of reverse logistics with CO2 emission. J. Phys. Conf. Ser. 2021, 1988, 012054. [Google Scholar] [CrossRef]
  19. Misni, F.; Lee, L.S.; Seow, H.-V. Hybrid Harmony Search-Simulated Annealing Algorithm for Location-Inventory-Routing Problem in Supply Chain Network Design with Defect and Non-Defect Items. Appl. Sci. 2020, 10, 6625. [Google Scholar] [CrossRef]
  20. Shaikh, T.A.; Ali, R. An intelligent healthcare system for optimized breast cancer diagnosis using harmony search and simulated annealing (HS-SA) algorithm. Inform. Med. Unlocked 2020, 21, 100408. [Google Scholar] [CrossRef]
  21. Rego, A.; Garcia, L.; Sendra, S.; Lloret, J. Software Defined Network-based control system for an efficient traffic management for emergency situations in smart cities. Futur. Gener. Comput. Syst. 2018, 88, 243–253. [Google Scholar] [CrossRef]
  22. Elbasheer, M.O.; Aldegheishem, A.; Lloret, J.; Alrajeh, N. A QoS-Based routing algorithm over software defined networks. J. Netw. Comput. Appl. 2021, 194, 103215. [Google Scholar] [CrossRef]
  23. Radam, N.S.; Al-Janabi, S.; Jasim, K.S. Using metaheuristics to improve the placement of multi-controllers in software-defined networking enabled clouds. Period. Eng. Nat. Sci. 2022, 10, 79–93. [Google Scholar] [CrossRef]
  24. Radam, N.S.; Al-Janabi, S.T.F.; Jasim, K.S. Multi-Controllers Placement Optimization in SDN by the Hybrid HSA-PSO Algorithm. Computers 2022, 11, 111. [Google Scholar] [CrossRef]
  25. Seyedkolaei, A.A.; Seno, S.A.H.; Budiarto, R. Kernel Search-Framework for Dynamic Controller Placement in Software-Defined Network. Comput. Mater. Contin. 2021, 68, 3391–3410. [Google Scholar] [CrossRef]
  26. Rout, S.; Sahoo, K.S.; Patra, S.S.; Sahoo, B.; Puthal, D. Energy Efficiency in Software Defined Networking: A Survey. SN Comput. Sci. 2021, 2, 308. [Google Scholar] [CrossRef]
  27. Haque, M.R.; Tan, S.C.; Yusoff, Z.; Nisar, K.; Kwang, L.C.; Kaspin, R.; Chowdhry, B.S.; Buyya, R.; Majumder, S.P.; Gupta, M.; et al. Automated Controller Placement for Software-Defined Networks to Resist DDoS Attacks. Comput. Mater. Contin. 2021, 68, 3147–3165. [Google Scholar]
  28. Vestin, J. SDN-Enabled Resiliency, Monitoring and Control in Computer Networks. Ph.D. Dissertation, Karlstads Universitet, Karlstad, Sweden, 2020. [Google Scholar]
  29. Xu, H.; Chai, X.; Chen, H. A Collaborative Approach based on Competitive Game for Multi-Controller Placement in SDN. In Proceedings of the 2022 IEEE 25th International Conference on Computer Supported Cooperative Work in Design (CSCWD), Hangzhou, China, 4–6 May 2022. [Google Scholar]
  30. Lu, J.; Zhang, Z.; Hu, T.; Yi, P.; Lan, J. A Survey of Controller Placement Problem in Software-Defined Networking. IEEE Access 2019, 7, 24290–24307. [Google Scholar] [CrossRef]
  31. Lysko, A.; Mwangama, J.; Mamushiane, L. Controller placement optimization for Software Defined Wide Area Networks (SDWAN). ITU J. Futur. Evol. Technol. 2021, 2, 45–66. [Google Scholar] [CrossRef]
  32. Lavacca, F.G.; Salvo, P.; Ferranti, L.; Speranza, A.; Costantini, L. Performance Evaluation of 5G Access Technologies and SDN Transport Network on an NS3 Simulator. Computers 2020, 9, 43. [Google Scholar] [CrossRef]
  33. Obaida, T.H.; Salman, H.A. A novel method to find the best path in SDN using firefly algorithm. J. Intell. Syst. 2022, 31, 902–914. [Google Scholar] [CrossRef]
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.