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配置完成!


你可能感兴趣的:(网络开发,OSPF,zebra,OSPF)