# File lib/rubyipmi/ipmitool/commands/lan.rb, line 125
    def parse(landata)
      multikey = ""
      multivalue = {}

      landata.lines.each do |line|
        # clean up the data from spaces
        item = line.split(':', 2)
        key = item.first.strip.downcase
        value = item.last.strip
        @info[key] = value

      end
      return @info
    end