# File lib/vagrant-lxc/action/prepare_nfs_settings.rb, line 56
        def read_host_ip
          @machine.communicate.execute 'echo $SSH_CLIENT' do |buffer, output|
            return output.chomp.split(' ')[0] if buffer == :stdout
          end
        end