ensp防火墙配置gre 隧道和ospf
时间: 2023-12-10 13:33:16 浏览: 186
eNSP:单区域OSPF配置示例.zip
以下是在ensp防火墙上配置GRE隧道和OSPF的步骤:
1. 配置GRE隧道
```python
[FW2] interface Tunnel 0
[FW2-Tunnel0] ip address 192.168.1.1 24
[FW2-Tunnel0] tunnel-protocol gre
[FW2-Tunnel0] source GigabitEthernet 0/0/1
[FW2-Tunnel0] destination 10.1.1.2
[FW2-Tunnel0] quit
```
2. 配置OSPF
```python
[FW2] ospf 1 router-id 1.1.1.1
[FW2-ospf-1] area 0
[FW2-ospf-1-area-0.0.0.0] network 192.168.1.0 0.0.0.255
[FW2-ospf-1-area-0.0.0.0] quit
[FW2-ospf-1] quit
```
注意:在配置OSPF之前,需要在GRE隧道两端的设备上配置IP地址,并且确保两端设备之间可以互相ping通。
阅读全文