Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add network interface loopback #254

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions lib/linux_admin/network_interface.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def self.new(*args)
end

# @return [String] the interface for networking operations
attr_reader :interface
attr_reader :interface, :link_type

# @param interface [String] Name of the network interface to manage
def initialize(interface)
Expand All @@ -61,7 +61,8 @@ def reload
return false
end

addr_info = ip_output["addr_info"]
@link_type = ip_output["link_type"]
addr_info = ip_output["addr_info"]

parse_ip4(addr_info)
parse_ip6(addr_info, "global")
Expand All @@ -75,6 +76,10 @@ def reload
true
end

def loopback?
@link_type == "loopback"
end

# Retrieve the IPv4 address assigned to the interface
#
# @return [String] IPv4 address for the managed interface
Expand Down