Versions Compared

Key

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

...

Code Block
titlevRouterConfig.ini
linenumberstrue
[DEFAULT]
routerBridge = "of:00000000000000b1"
floatingCidr = "172.27.0.0/24,172.28.0.0/24"
floatingGateway = "172.27.0.1/24, 172.28.0.1/24"
localPeerMac = "fe:00:00:00:00:01"
localPeerIp = "172.18.0.254/30"
vRouterName = "gateway-01"
bgpNeighborIp = "172.18.0.253/30"
localAsNum = 65101
remoteAsNum = 65100
uplinkPortNum = "3"
  • line 2, routerBridge: Router bridge device ID configured in the network configuration. It should be unique across the system.
  • line 3, floatingCidr: Floating IP address ranges. It can be comma separated list.
  • line 4, floatingGateway: Gateway IP of Floating IP address range. It can be comma separated list.line 5, localPeerMac: Local MAC address used for peering. It should be unique across the system.
  • line 65, localPeerIp: Local IP address used for peering. It should be unique across the system.
  • line 76, vRouterName: Hostname to be configured in Quagga.
  • line 87, bgpNeighborIp: Remote peer's IP address.
  • line 98, localAsNum: Local AS number.
  • line 109, remoteAsNum: Remote peer's AS number.
  • line 1110, uplinkPortNum: Port number of uplink interface on br-router bridge.

...