Class: Serverspec::Type::Interface

Inherits:
Base
  • Object
show all
Defined in:
lib/serverspec/type/interface.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize, #to_ary, #to_s

Constructor Details

This class inherits a constructor from Serverspec::Type::Base

Instance Method Details

#has_ipv4_address?(ip_address) ⇒ Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/serverspec/type/interface.rb', line 10

def has_ipv4_address?(ip_address)
  @runner.check_interface_has_ipv4_address(@name, ip_address)
end

#has_ipv6_address?(ip_address) ⇒ Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/serverspec/type/interface.rb', line 14

def has_ipv6_address?(ip_address)
  @runner.check_interface_has_ipv6_address(@name, ip_address)
end

#speedObject



3
4
5
6
7
8
# File 'lib/serverspec/type/interface.rb', line 3

def speed
  ret = @runner.get_interface_speed_of(@name)
  val = ret.stdout.strip
  val = val.to_i if val.match(/^\d+$/)
  val
end