Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Zebra manage the routing protocol ( not the 128T interfaces )


Access


Config filego into the config mode


from the linux shell:

vtysh

configure

show configuration candidateĀ [ ospfd or bgpd or any other optionĀ ]


Code Block
titleconfig
lr202007009846(config)# show configuration candidate
  bgpd           For the bgp daemon
  changes        Show changes applied in the candidate configuration
  fabricd        For the fabricd daemon
  isisd          For the isis daemon
  json           Change output format to JSON
  ldpd           For the ldpd daemon
  ospf6d         For the ospfv6 daemon
  ospfd          For the ospf daemon
  pbrd           For the pbr daemon
  pimd           For the pim daemon
  ripd           For the rip daemon
  ripngd         For the ripng daemon
  sharpd         For the sharpd daemon
  staticd        For the static daemon
  vrrpd          For the vrrpd daemon
  with-defaults  Show default values
  xml            Change output format to XML
  zebra          For the zebra daemon
lr202007009846(config)# 


OSPF config

show configuration candidate ospfd


Code Block
titleOSPF
lr202007009846(config)# show configuration candidate ospfd
Configuration:
!
frr version 7.5.1
frr defaults traditional
ip prefix-list only_static_routes seq 1 permit 1.0.0.1/32
!
interface g26
!
interface loopback0
!
interface loopback21
route-map allow_prefix_1001 permit 1
 match ip address prefix-list only_static_routes
!
end


BGP config


Code Block
titleBGP config
lr202007009846(config)# show configuration candidate bgpd
Configuration:
!
frr version 7.5.1
frr defaults traditional
ip prefix-list only_static_routes seq 1 permit 1.0.0.1/32
route-map allow_prefix_1001 permit 1
 match ip address prefix-list only_static_routes
!
end


show interface

show interface brief

Code Block
titleinterfaces
lr202007009846# show interface brief
Interface       Status  VRF             Addresses
---------       ------  ---             ---------
g4              up      default         169.254.128.130/31
g5              up      default         192.168.0.176/24
g6              up      default         192.168.126.1/24
g7              up      default         169.254.130.1/32
g9              up      default         169.254.130.2/32
g10             up      default         192.168.124.1/24
g15             up      default         192.168.193.1/30
g16             up      default         10.100.11.1/24
g22             up      default         192.168.128.1/24
g23             up      default         169.254.130.3/32
g26             up      default         10.200.21.1/2
g4294967294     up      default         169.254.127.126/31
lo              up      default
loopback0       up      default         192.168.111.1/32
loopback21      up      default         10.100.210.22/32

lr202007009846#










...