# OSPF：路由器192.168.1.1的LSA年龄达到3600秒，10.0.0.0/24，正在刷新

- **ID:** `networking/ospf-lsa-aging`
- **领域:** networking
- **类别:** routing
- **验证级别:** ai_generated
- **修复率:** 76%

## 根因

OSPF链路状态通告（LSA）已达到最大年龄（MaxAge）3600秒，导致原始路由器将其从链路状态数据库中刷新，可能是由于接口抖动或路由器在没有发送正确LSUpdate的情况下宕机。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| Cisco IOS XE 17.12.1 | active | — | — |
| Juniper Junos 22.3R1 | active | — | — |
| FRRouting 9.1 | active | — | — |
| Quagga 1.2.4 | active | — | — |

## 解决方案

1. ```
   Check the interface stability on the originating router: `show ip ospf interface` and look for flapping counters; if found, replace faulty hardware or reconfigure interface parameters.
   ```
2. ```
   Force the router to re-advertise the LSA by clearing the specific OSPF neighbor: `clear ip ospf neighbor 192.168.1.1`
   ```

## 无效尝试

- **** — The MaxAge is fixed at 3600 seconds per OSPF standard; cannot be changed without violating RFC compliance. (100% 失败率)
- **** — This disrupts all OSPF adjacencies and causes network-wide route flapping, making the problem worse. (85% 失败率)
- **** — Static routes are not propagated via OSPF LSAs and will not fix the aging issue; they may also cause routing loops. (90% 失败率)
