CentOS配置zebra OSPF

創建zebra和ospfd的配置文件:

[root@localhost ~]# cp /usr/local/etc/zebra.conf.sample /usr/local/etc/zebra.conf
[root@localhost ~]# cp /usr/local/etc/ospfd.conf.sample /usr/local/etc/ospfd.conf

啓動zebra和ospfd進程:

[root@localhost ~]# zebra -d
[root@localhost ~]# ospfd -d

登錄zebra路由器:【默認端口爲2601,密碼默認爲zebra】

[root@localhost ~]# telnet localhost 2601
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.


Hello, this is Quagga (version 1.0.20160309).
Copyright 1996-2005 Kunihiro Ishiguro, et al.




User Access Verification


Password: zebra
Router>
Router>
Router>
Router> ?
  echo      Echo a message back to the vty
  enable    Turn on privileged mode command
  exit      Exit current mode and down to previous mode
  help      Description of the interactive help system
  list      Print command list
  quit      Exit current mode and down to previous mode
  show      Show running system information
  terminal  Set terminal line parameters
  who       Display who is on vty
Router>

登錄ospfd服務:【默認端口爲2604,默認密碼爲zebra】

[root@localhost ~]# telnet localhost 2604
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.

Hello, this is Quagga (version 1.0.20160309).
Copyright 1996-2005 Kunihiro Ishiguro, et al.


User Access Verification

Password:
ospfd>
ospfd>
ospfd>
ospfd>
  echo      Echo a message back to the vty
  enable    Turn on privileged mode command
  exit      Exit current mode and down to previous mode
  help      Description of the interactive help system
  list      Print command list
  quit      Exit current mode and down to previous mode
  show      Show running system information
  terminal  Set terminal line parameters
  who       Display who is on vty
ospfd>

配置ospf

ospfd> enable
ospfd# configure terminal
ospfd(config)# router
ospfd(config)# router ospf
ospfd(config-router)#network 10.92.18.0/30 area 0
ospfd(config-router)# exit
ospfd(config)# exit
ospfd# show ip ospf neighbor all


    Neighbor ID Pri State           Dead Time Address         Interface            RXmtL RqstL DBsmL
2.2.2.2           1 Full/DR           39.460s 10.92.18.1      eth0:10.92.18.2          0     0     0
ospfd# write
Configuration saved to /usr/local/etc/ospfd.conf
ospfd#

OSPF配置完成!


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章