class Havox::Configuration
Attributes
gurobi_path[RW]
merlin_host[RW]
merlin_password[RW]
merlin_path[RW]
merlin_user[RW]
protocol_daemons[RW]
rf_host[RW]
rf_lxc_names[RW]
rf_password[RW]
rf_user[RW]
Public Class Methods
new()
click to toggle source
# File lib/havox/configuration.rb, line 7 def initialize @rf_host = '192.168.56.101' @rf_user = 'routeflow' @rf_password = 'routeflow' @rf_lxc_names = %w(rfvmA rfvmB rfvmC rfvmD) @merlin_host = '192.168.56.102' @merlin_user = 'frenetic' @merlin_password = 'frenetic' @merlin_path = '/home/frenetic/merlin' @gurobi_path = '/opt/gurobi701/linux64' @protocol_daemons = [:bgpd] end