# File lib/ohai/plugins/darwin/network.rb, line 62
  def scope_lookup(scope)
    return "Node" if scope.eql?("::1")
    return "Link" if scope.match(/^fe80\:/)
    return "Site" if scope.match(/^fec0\:/)
    "Global"
  end