Centos 7.3 Quagga(ospf)configuration在重新启动后更改

我已经configuration了ospf,如下所示:

cat /etc/quagga/ospfd.conf

! ! Zebra configuration saved from vty ! 2017/05/31 10:13:20 ! ... ... ... ! interface foo1 description Tunnel foo1 ip ospf cost 250 ip ospf dead-interval minimal hello-multiplier 4 ! router ospf ospf router-id 10.0.0.1 log-adjacency-changes compatible rfc1583 timers throttle spf 200 400 10000 redistribute kernel network 10.0.0.0./24 area 0.0.0.1 network 192.168.0.0/16 area 0.0.0.0 ! line vty ! 

完成configuration并保存后,ospf工作正常,configuration保存在/etc/quagga/ospfd.conf中。

问题是当我重新启动我的机器(这是一个VPS)的configuration文件没有改变,但quaggaconfiguration。 当我input端口2604与telnet,并键入“显示正在运行的configuration”,它显示了我这个:

 ospfd# show running-config Current configuration: ! ... ... ... ! interface foo1 description Tunel foo1 ip ospf network broadcast ip ospf cost 250 ip ospf dead-interval minimal hello-multiplier 4 ! router ospf ospf router-id 10.0.0.1 log-adjacency-changes compatible rfc1583 timers throttle spf 200 400 10000 redistribute kernel network 10.0.0.0./24 area 0.0.0.1 network 192.168.0.0/16 area 0.0.0.0 ! line vty 

正如你所看到的,拓扑结构从点对点变为广播 。 所以我必须在每次重新启动后手动将ip ospfnetworking更改为点对点。

有人能帮我吗?