Class: Specinfra::Command::Freebsd::Base::Interface
- Inherits:
-
Base::Interface
- Object
- Base
- Base::Interface
- Specinfra::Command::Freebsd::Base::Interface
- Defined in:
- lib/specinfra/command/freebsd/base/interface.rb
Direct Known Subclasses
Class Method Summary collapse
- .check_exists(name) ⇒ Object
- .check_has_ipv4_address(interface, ip_address) ⇒ Object
- .check_has_ipv6_address(interface, ip_address) ⇒ Object
- .get_ipv4_address(interface) ⇒ Object
- .get_ipv6_address(interface) ⇒ Object
- .get_link_state(interface) ⇒ Object
- .get_mtu_of(name) ⇒ Object
- .get_speed_of(name) ⇒ Object
Methods inherited from Base
Class Method Details
.check_exists(name) ⇒ Object
3 4 5 |
# File 'lib/specinfra/command/freebsd/base/interface.rb', line 3 def check_exists(name) "ifconfig #{name}" end |
.check_has_ipv4_address(interface, ip_address) ⇒ Object
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/specinfra/command/freebsd/base/interface.rb', line 15 def check_has_ipv4_address(interface, ip_address) ip_address = ip_address.dup if ip_address =~ /\/\d+$/ # remove the prefix - better would be to calculate the netmask ip_address.gsub!(/\/\d+$/, "") end ip_address << " " ip_address.gsub!(".", "\\.") "ifconfig #{interface} inet | grep 'inet #{ip_address}'" end |
.check_has_ipv6_address(interface, ip_address) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/specinfra/command/freebsd/base/interface.rb', line 26 def check_has_ipv6_address(interface, ip_address) ip_address = ip_address.dup (ip_address, prefixlen) = ip_address.split(/\//) ip_address.downcase! if ip_address =~ /^fe80::/i # link local needs the scope (interface) appended ip_address << "%#{interface}" end unless prefixlen.to_s.empty? # append prefixlen ip_address << " prefixlen #{prefixlen}" else ip_address << " " end "ifconfig #{interface} inet6 | grep 'inet6 #{ip_address}'" end |
.get_ipv4_address(interface) ⇒ Object
43 44 45 |
# File 'lib/specinfra/command/freebsd/base/interface.rb', line 43 def get_ipv4_address(interface) "ifconfig #{interface} inet | grep inet | awk '{print $2}'" end |
.get_ipv6_address(interface) ⇒ Object
47 48 49 50 |
# File 'lib/specinfra/command/freebsd/base/interface.rb', line 47 def get_ipv6_address(interface) # Awk refuses to print '/' even with using escapes or hex so workaround with sed employed here. "ifconfig #{interface} inet6 | grep inet6 | awk '{print $2$3$4}' | sed 's/prefixlen/\//'; exit" end |
.get_link_state(interface) ⇒ Object
52 53 54 55 56 57 |
# File 'lib/specinfra/command/freebsd/base/interface.rb', line 52 def get_link_state(interface) # Checks if interfaces is administratively up with the -u arg. # L1 check via status. Virtual interfaces like tapX missing the status will report up. # Emulates operstate in linux with exception of the unknown status. %Q{ifconfig -u #{interface} 2>&1 | awk -v s=up '/status:/ && $2 != "active" { s="down" }; END {print s}'} end |
.get_mtu_of(name) ⇒ Object
11 12 13 |
# File 'lib/specinfra/command/freebsd/base/interface.rb', line 11 def get_mtu_of(name) "ifconfig #{name} | awk '/mtu /{print $NF}'" end |
.get_speed_of(name) ⇒ Object
7 8 9 |
# File 'lib/specinfra/command/freebsd/base/interface.rb', line 7 def get_speed_of(name) "ifconfig #{name} | awk '/media:/{if(match($0,/[0-9]+/)){ print substr($0, RSTART, RLENGTH);}}'" end |