1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
|
@Service public class BandwidthOptimizationService {
@Autowired private BandwidthMonitorService bandwidthMonitorService; @Autowired private AlertService alertService;
@Scheduled(fixedRate = 300000) public void autoOptimizeBandwidth() { try { List<String> interfaces = getNetworkInterfaces(); for (String interfaceName : interfaces) { try { BandwidthMonitorData bandwidthData = bandwidthMonitorService.getRealTimeBandwidthData(interfaceName); if (bandwidthData == null) { continue; } if (bandwidthData.getBandwidthUsage() > 90) { executeEmergencyOptimization(bandwidthData); } else if (bandwidthData.getBandwidthUsage() > 80) { executePreventiveOptimization(bandwidthData); } if (bandwidthData.getLatency() > 200) { executeLatencyOptimization(bandwidthData); } } catch (Exception e) { log.error("处理网络接口失败: interface={}, error={}", interfaceName, e.getMessage()); } } } catch (Exception e) { log.error("自动带宽优化失败: {}", e.getMessage(), e); } }
private void executeEmergencyOptimization(BandwidthMonitorData bandwidthData) { log.warn("执行紧急带宽优化: interface={}, usage={}%", bandwidthData.getInterfaceName(), bandwidthData.getBandwidthUsage()); try { enableTrafficControl(bandwidthData.getInterfaceName()); adjustQosPolicy(bandwidthData.getInterfaceName()); optimizeNetworkConfig(bandwidthData.getInterfaceName()); sendOptimizationNotification(bandwidthData, "EMERGENCY_OPTIMIZATION"); } catch (Exception e) { log.error("执行紧急优化失败: {}", e.getMessage(), e); } }
private void executePreventiveOptimization(BandwidthMonitorData bandwidthData) { log.info("执行预防性带宽优化: interface={}, usage={}%", bandwidthData.getInterfaceName(), bandwidthData.getBandwidthUsage()); try { optimizeNetworkRouting(bandwidthData.getInterfaceName()); adjustBufferSize(bandwidthData.getInterfaceName()); optimizeNetworkProtocol(bandwidthData.getInterfaceName()); sendOptimizationNotification(bandwidthData, "PREVENTIVE_OPTIMIZATION"); } catch (Exception e) { log.error("执行预防性优化失败: {}", e.getMessage(), e); } }
private void executeLatencyOptimization(BandwidthMonitorData bandwidthData) { log.info("执行网络延迟优化: interface={}, latency={}ms", bandwidthData.getInterfaceName(), bandwidthData.getLatency()); try { optimizeNetworkLatency(bandwidthData.getInterfaceName()); adjustNetworkParameters(bandwidthData.getInterfaceName()); optimizeNetworkPath(bandwidthData.getInterfaceName()); sendOptimizationNotification(bandwidthData, "LATENCY_OPTIMIZATION"); } catch (Exception e) { log.error("执行延迟优化失败: {}", e.getMessage(), e); } }
private void enableTrafficControl(String interfaceName) { log.info("启用流量控制: interface={}", interfaceName); try { ProcessBuilder processBuilder = new ProcessBuilder("tc", "qdisc", "add", "dev", interfaceName, "root", "htb"); Process process = processBuilder.start(); process.waitFor(); log.info("流量控制启用成功: interface={}", interfaceName); } catch (Exception e) { log.error("启用流量控制失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private void adjustQosPolicy(String interfaceName) { log.info("调整QoS策略: interface={}", interfaceName); try { List<String> qosCommands = Arrays.asList( "tc", "class", "add", "dev", interfaceName, "parent", "1:0", "classid", "1:1", "htb", "rate", "100mbit", "tc", "class", "add", "dev", interfaceName, "parent", "1:1", "classid", "1:10", "htb", "rate", "50mbit", "ceil", "100mbit", "tc", "class", "add", "dev", interfaceName, "parent", "1:1", "classid", "1:20", "htb", "rate", "30mbit", "ceil", "100mbit" ); for (String command : qosCommands) { ProcessBuilder processBuilder = new ProcessBuilder(command.split(" ")); Process process = processBuilder.start(); process.waitFor(); } log.info("QoS策略调整成功: interface={}", interfaceName); } catch (Exception e) { log.error("调整QoS策略失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private void optimizeNetworkConfig(String interfaceName) { log.info("优化网络配置: interface={}", interfaceName); try { List<String> configCommands = Arrays.asList( "echo", "1", ">", "/proc/sys/net/ipv4/tcp_congestion_control", "echo", "1", ">", "/proc/sys/net/ipv4/tcp_window_scaling", "echo", "1", ">", "/proc/sys/net/ipv4/tcp_timestamps" ); for (String command : configCommands) { ProcessBuilder processBuilder = new ProcessBuilder(command.split(" ")); Process process = processBuilder.start(); process.waitFor(); } log.info("网络配置优化成功: interface={}", interfaceName); } catch (Exception e) { log.error("优化网络配置失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private void optimizeNetworkRouting(String interfaceName) { log.info("优化网络路由: interface={}", interfaceName); try { ProcessBuilder processBuilder = new ProcessBuilder("ip", "route", "flush", "cache"); Process process = processBuilder.start(); process.waitFor(); log.info("网络路由优化成功: interface={}", interfaceName); } catch (Exception e) { log.error("优化网络路由失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private void adjustBufferSize(String interfaceName) { log.info("调整缓冲区大小: interface={}", interfaceName); try { List<String> bufferCommands = Arrays.asList( "echo", "16777216", ">", "/proc/sys/net/core/rmem_max", "echo", "16777216", ">", "/proc/sys/net/core/wmem_max", "echo", "16777216", ">", "/proc/sys/net/core/rmem_default", "echo", "16777216", ">", "/proc/sys/net/core/wmem_default" ); for (String command : bufferCommands) { ProcessBuilder processBuilder = new ProcessBuilder(command.split(" ")); Process process = processBuilder.start(); process.waitFor(); } log.info("缓冲区大小调整成功: interface={}", interfaceName); } catch (Exception e) { log.error("调整缓冲区大小失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private void optimizeNetworkProtocol(String interfaceName) { log.info("优化网络协议: interface={}", interfaceName); try { List<String> tcpCommands = Arrays.asList( "echo", "1", ">", "/proc/sys/net/ipv4/tcp_sack", "echo", "1", ">", "/proc/sys/net/ipv4/tcp_dsack", "echo", "1", ">", "/proc/sys/net/ipv4/tcp_fack" ); for (String command : tcpCommands) { ProcessBuilder processBuilder = new ProcessBuilder(command.split(" ")); Process process = processBuilder.start(); process.waitFor(); } log.info("网络协议优化成功: interface={}", interfaceName); } catch (Exception e) { log.error("优化网络协议失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private void optimizeNetworkLatency(String interfaceName) { log.info("优化网络延迟: interface={}", interfaceName); try { List<String> latencyCommands = Arrays.asList( "echo", "1", ">", "/proc/sys/net/ipv4/tcp_low_latency", "echo", "1", ">", "/proc/sys/net/ipv4/tcp_no_delay_ack", "echo", "1", ">", "/proc/sys/net/ipv4/tcp_quick_ack" ); for (String command : latencyCommands) { ProcessBuilder processBuilder = new ProcessBuilder(command.split(" ")); Process process = processBuilder.start(); process.waitFor(); } log.info("网络延迟优化成功: interface={}", interfaceName); } catch (Exception e) { log.error("优化网络延迟失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private void adjustNetworkParameters(String interfaceName) { log.info("调整网络参数: interface={}", interfaceName); try { List<String> paramCommands = Arrays.asList( "echo", "1", ">", "/proc/sys/net/ipv4/tcp_keepalive_time", "echo", "1", ">", "/proc/sys/net/ipv4/tcp_keepalive_intvl", "echo", "1", ">", "/proc/sys/net/ipv4/tcp_keepalive_probes" ); for (String command : paramCommands) { ProcessBuilder processBuilder = new ProcessBuilder(command.split(" ")); Process process = processBuilder.start(); process.waitFor(); } log.info("网络参数调整成功: interface={}", interfaceName); } catch (Exception e) { log.error("调整网络参数失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private void optimizeNetworkPath(String interfaceName) { log.info("优化网络路径: interface={}", interfaceName); try { ProcessBuilder processBuilder = new ProcessBuilder("ip", "route", "flush", "cache"); Process process = processBuilder.start(); process.waitFor(); log.info("网络路径优化成功: interface={}", interfaceName); } catch (Exception e) { log.error("优化网络路径失败: interface={}, error={}", interfaceName, e.getMessage()); } }
private List<String> getNetworkInterfaces() { List<String> interfaces = new ArrayList<>(); try { SystemInfo systemInfo = new SystemInfo(); List<NetworkIF> networkIFs = systemInfo.getHardware().getNetworkIFs(); for (NetworkIF networkIF : networkIFs) { interfaces.add(networkIF.getName()); } } catch (Exception e) { log.error("获取网络接口列表失败: {}", e.getMessage(), e); } return interfaces; }
private void sendOptimizationNotification(BandwidthMonitorData bandwidthData, String optimizationType) { try { AlertMessage alert = new AlertMessage(); alert.setType("BANDWIDTH_OPTIMIZATION"); alert.setLevel("INFO"); alert.setMessage(String.format("带宽优化完成: 类型=%s, 接口=%s, 使用率=%.2f%%", optimizationType, bandwidthData.getInterfaceName(), bandwidthData.getBandwidthUsage())); alert.setTimestamp(new Date()); alertService.sendAlert(alert); } catch (Exception e) { log.error("发送优化通知失败: {}", e.getMessage(), e); } } }
|