opennhrp启动日志案例与解析
时间: 2023-12-16 13:03:38 浏览: 70
好的,下面是一个 opennhrp 启动日志案例和解析:
```
opennhrp[12345]: OpenNHRP 0.14.1 starting
opennhrp[12345]: Adding static 192.168.1.1/24 nbma 10.0.0.1 dev tun0
opennhrp[12345]: Interface lo: configured UP, mtu=0
opennhrp[12345]: Interface eth0: configured UP, mtu=1500
opennhrp[12345]: Interface tun0: configured UP, mtu=1500
opennhrp[12345]: Adding local 192.168.1.2/32 dev tun0
opennhrp[12345]: Adding local 192.168.1.255/32 alias 192.168.1.2 dev tun0
opennhrp[12345]: Adding local-route 192.168.2.0/24 nexthop 192.168.1.1 dev tun0
opennhrp[12345]: Adding local 192.168.3.0/24 dev eth0
opennhrp[12345]: Filter code installed (23 opcodes)
```
这段日志显示了 opennhrp 的启动过程。下面是一些解释:
- `OpenNHRP 0.14.1 starting`:opennhrp 版本号和正在启动的信息。
- `Adding static 192.168.1.1/24 nbma 10.0.0.1 dev tun0`:添加一个静态 NHRP 映射,将 192.168.1.1/24 映射到 NBMA 地址 10.0.0.1,使用 tun0 这个物理接口。这个映射告诉 opennhrp 如何到达 192.168.1.1/24 网络。
- `Interface lo: configured UP, mtu=0`:配置 lo 接口,把它设置为 UP 状态,MTU 值为 0。
- `Interface eth0: configured UP, mtu=1500`:配置 eth0 接口,把它设置为 UP 状态,MTU 值为 1500。
- `Interface tun0: configured UP, mtu=1500`:配置 tun0 接口,把它设置为 UP 状态,MTU 值为 1500。
- `Adding local 192.168.1.2/32 dev tun0`:添加本地 IP 地址 192.168.1.2/32 到 tun0 接口上。
- `Adding local 192.168.1.255/32 alias 192.168.1.2 dev tun0`:添加本地 IP 地址 192.168.1.255/32 到 tun0 接口上,并设置别名 192.168.1.2。
- `Adding local-route 192.168.2.0/24 nexthop 192.168.1.1 dev tun0`:添加本地路由,将 192.168.2.0/24 网络的下一跳指向 192.168.1.1,使用 tun0 接口。
- `Adding local 192.168.3.0/24 dev eth0`:添加本地 IP 地址 192.168.3.0/24 到 eth0 接口上。
- `Filter code installed (23 opcodes)`:安装一个过滤器,它有 23 个操作码。
这段日志没有显示任何错误信息,说明 opennhrp 启动成功。
阅读全文