public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH 3/4] Add new function device_get_by_mac_address()
Date: Sat, 28 Jul 2018 13:59:15 +0200	[thread overview]
Message-ID: <20180728115916.10766-3-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <20180728115916.10766-1-jonatan.schlag@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1228 bytes --]

We need this function and the command to identify ports in a nitsi test.

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/functions/functions.device | 18 ++++++++++++++++++
 src/network                    |  3 +++
 2 files changed, 21 insertions(+)

diff --git a/src/functions/functions.device b/src/functions/functions.device
index 0cd6e4e..ace4022 100644
--- a/src/functions/functions.device
+++ b/src/functions/functions.device
@@ -1111,3 +1111,21 @@ device_get_by_assigned_ip_address() {
 	print "${device}"
 	return ${EXIT_OK}
 }
+
+device_get_by_mac_address() {
+	local mac=${1}
+
+	assert isset mac
+
+	local device
+
+	for device in $(device_list); do
+		if [ "${mac}" = "$(device_get_address ${device})" ]; then
+			print "${device}"
+			return ${EXIT_OK}
+		fi
+	done
+
+	# We could not found a port to the given mac address so we return exit error
+	return ${EXIT_ERROR}
+}
diff --git a/src/network b/src/network
index b28ecdb..f26c0dc 100644
--- a/src/network
+++ b/src/network
@@ -1286,6 +1286,9 @@ cli_raw() {
 		db-dump)
 			db_dump
 			;;
+		device-get-by-mac-address)
+			device_get_by_mac_address "$@"
+			;;
 		ipsec-connection-exists)
 			ipsec_connection_exists "$@"
 			;;
-- 
2.11.0


  parent reply	other threads:[~2018-07-28 11:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-28 11:59 [PATCH 1/4] Add recipe to reset network configuration Jonatan Schlag
2018-07-28 11:59 ` [PATCH 2/4] Add recipe to set network settings Jonatan Schlag
2018-07-28 11:59 ` Jonatan Schlag [this message]
2018-07-28 11:59 ` [PATCH 4/4] Add test for command raw device-get-by-mac-address Jonatan Schlag

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180728115916.10766-3-jonatan.schlag@ipfire.org \
    --to=jonatan.schlag@ipfire.org \
    --cc=network@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox