public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: network@lists.ipfire.org
Subject: Re: [PATCH v2] Add new function ip_get__assigned_addresses_from_net()
Date: Thu, 01 Mar 2018 20:58:09 +0000	[thread overview]
Message-ID: <1519937889.11896.69.camel@ipfire.org> (raw)
In-Reply-To: <1519838476.2290.15.camel@ipfire.org>

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

All merged.

On Wed, 2018-02-28 at 17:21 +0000, Michael Tremer wrote:
> Okay, I will merge this one.
> 
> Best,
> -Michael
> 
> On Wed, 2018-02-28 at 16:31 +0000, Jonatan Schlag wrote:
> > This function is neede by IPsec to set the routes correctly.
> > We can now now find a source IP for a given net.
> > This way is ugly because the source IP
> > is unpredictable if we get multiple IPs.
> > 
> > Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> > ---
> >  src/functions/functions.ip | 28 ++++++++++++++++++++++++++++
> >  1 file changed, 28 insertions(+)
> > 
> > diff --git a/src/functions/functions.ip b/src/functions/functions.ip
> > index 3b43da7..70bd92c 100644
> > --- a/src/functions/functions.ip
> > +++ b/src/functions/functions.ip
> > @@ -205,3 +205,31 @@ ip_address_del() {
> >  
> >  	return ${EXIT_OK}
> >  }
> > +
> > +# Get all currently assigned addresse for a given network
> > +ip_get_assigned_addresses_from_net() {
> > +	local net=${1}
> > +	shift
> > +	local args="$@"
> > +
> > +	if ! ip_net_is_valid ${net}; then
> > +		log ERROR "IP net ${net} is invalid"
> > +		return ${EXIT_ERROR}
> > +	fi
> > +
> > +	local line
> > +	local addresses
> > +
> > +	# We read the output of $(ip addr show to ${net} ${args})
> > +	while read -r line; do
> > +		# We are only interested in lines which start with inet or
> > inet6
> > +		[[ "${line}" =~ ^(inet6 |inet ) ]] || continue
> > +
> > +		# We need the second word the line
> > +		line=(${line})
> > +		list_append "addresses" "$(ip_split_prefix "${line[1]}")"
> > +	done <<< "$(ip addr show to "${net}" ${args})"
> > +
> > +	# We sort the list to get the lowest IP as first item
> > +	list_sort ${addresses}
> > +}

           reply	other threads:[~2018-03-01 20:58 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <1519838476.2290.15.camel@ipfire.org>]

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=1519937889.11896.69.camel@ipfire.org \
    --to=michael.tremer@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