创建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 VerificationPassword: zebra
Router>
Router>
Router>
Router> ?
echoEcho a message back to the vty
enableTurn on privileged mode command
exitExit current mode and down to previous mode
helpDescription of the interactive help system
listPrint command list
quitExit current mode and down to previous mode
showShow running system information
terminalSet terminal line parameters
whoDisplay 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 VerificationPassword:
ospfd>
ospfd>
ospfd>
ospfd>
echoEcho a message back to the vty
enableTurn on privileged mode command
exitExit current mode and down to previous mode
helpDescription of the interactive help system
listPrint command list
quitExit current mode and down to previous mode
showShow running system information
terminalSet terminal line parameters
whoDisplay 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 allNeighbor ID Pri StateDead Time AddressInterfaceRXmtL RqstL DBsmL
2.2.2.21 Full/DR39.460s 10.92.18.1eth0:10.92.18.2000
ospfd# write
Configuration saved to /usr/local/etc/ospfd.conf
ospfd#
OSPF配置完成!
【网络开发|CentOS配置zebra OSPF】