config/hva.conf.example in wakame-vdc-agents-11.06.0 vs config/hva.conf.example in wakame-vdc-agents-11.12.0

- old
+ new

@@ -3,29 +3,37 @@ #------------------------ # directory to store VM local data. config.vm_data_dir = "/home/demo/vm" -# netfilter +# Decides what kind of edge networking will be used. If omitted, the default 'netfilter' option will be used +# * 'netfilter' +# * 'legacy_netfilter' #no longer supported, has issues with multiple vnic vm isolation +# * 'openflow' #experimental, requires additional setup +# * 'off' +config.edge_networking = 'netfilter' + +# netfilter and openflow config.enable_ebtables = true config.enable_iptables = true -# physical nic index -config.hv_ifindex = 2 # ex. /sys/class/net/eth0/ifindex => 2 - -# bridge device name prefix -config.bridge_prefix = 'br' - -# bridge device name novlan -config.bridge_novlan = 'br0' - -# display netfitler commands +# display netfilter and openflow commands config.verbose_netfilter = false +config.verbose_openflow = false # netfilter log output flag config.packet_drop_log = false # debug netfilter config.debug_iptables = false # Use ipset for netfilter config.use_ipset = false + +# Directory used by Open vSwitch daemon for run files +config.ovs_run_dir = '/usr/var/run/openvswitch' + +# Path for ovs-ofctl +config.ovs_ofctl_path = '/usr/bin/ovs-ofctl' + +# Trema base directory +config.trema_dir = '/home/demo/trema'