Versions Compared

Key

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

...

Code Block
[DEFAULT]
routerBridge = "of:00000000000000b1" #Unique device ID of the router bridge
#Note: There should be no space between floating ip ranges
floatingCidr = "172.27.0.0/24,172.28.0.0/24" #Floating IP ranges
dummyHostIp = "172.27.0.1" #Gateway IP address of the floating IP subnet 
quaggaMac = "fe:00:00:00:00:01" #Quagga MAC address
quaggaIp = "172.18.0.254/30" #Quagga instance IP address
gatewayName = "gateway-01" #Quagga instance name
bgpNeighborIp = "172.18.0.253/30" #IP address of the external BGP router that quagga instance peered to
asNum = 65101 #AS number of Quagga instance
peerAsNum = 65100 #AS number of external BGP router
uplinkPortNum = "26" #Port number of uplink interface

 

If you want to set multiple floating ip ranges up, 'floatingCidr' would be like below,

Code Block
[DEFAULT]
......
#Note: There should be no space between floating ip ranges
floatingCidr = "172.27.0.0/24,172.28.0.0/24" #Floating IP ranges
......

 

6. Next, run createJsonAndvRouter.sh which automatically create vrouter.json and runs ONOS container with vRouter application activated.

...