net address-listΒΆ

net address-list(1)				  BIG-IP TMSH Manual				  net address-list(1)

NAME
       address-list - An address-list is a list of IP addresses.

MODULE
       net

SYNTAX
   CREATE/MODIFY
	create address-list [name]
	modify address-list [[name] | all]
	 options:
	  addresses [add | delete | modify | replace-all-with] {
	   [ [ip address] ]
	  }
	  app-service [name]
	  description [string]

	edit address-list [[name] | all]
	  options:
	    all-properties
	    non-default-properties

   DISPLAY
	list address-list [[name] | all | [property]]

   DELETE
	delete address-list [[name] | all]

DESCRIPTION
       You can use the address-list component to define reusable lists of addresses.

EXAMPLES
       create address-list alist1 addresses add { 10.10.1.1 10.10.1.2 192.168.24.0/24 }

       Creates a new address list, "alist1," with two IPv4 addresses and one IPv4 subnet.

       modify address-list alist1 addresses modify { 10.10.1.1 { description "management IP at wwmed site3" } }

       Modifies the above address list with a description for the first address.

       modify address-list alist1 addresses add { 2001:DB8:a::/64 }

       Modifies the same address list by adding an IPv6 subnet.

	list address-list alist1
	net address-list alist1 {
	   addresses {
	       10.10.1.1 {
		   description "management IP at wwmed site3"
	       }
	       10.10.1.2 { }
	       192.168.24.0/24 { }
	       2001:db8:a::/64 { }
	   }
	}

       Shows the modified address list.

OPTIONS
       addresses
	    Specifies a list of individual IP addresses and/or subnets. The format for an IPv4 address is
	    a.b.c.d[/prefix]. The general format for an IPv6 address is a:b:c:d:e:f:g:h[/prefix]; you can shorten
	    this by eliminating leading zeros from each field (for example, you can shorten
	    "2001:0db7:3f4a:09dd:ca90:ff00:0042:8329" to "2001:db7:3f4a:9dd:ca90:ff00:42:8329"), and/or by removing
	    the longest contiguous field of zeros (for example, you can shorten "2001:0:0:0:c34a:0:23ff:678" to
	    "2001::c34a:0:23ff:678"). TMSH accepts any valid text representation of IPv6 addresses, as defined in RFC
	    2373 (see ).

	    The next keyword specifies the action to take with the addresses (add, delete, modify, or replace the
	    current set of addresses).

	    add  Creates a new address list, which you specify next with IP addresses and/or prefixes in curly braces
		 ({}).

	    delete
		 Deletes the address(es) that you specify next, in curly braces ({}).

	    modify
		 Makes it possible to replace the optional description(s) for the address(es). You can specify a
		 description in a nested set of curly braces after each address.

	    replace-all-with
		 Replaces the current set of IP addresses with the address(es) that you specify next, in curly braces
		 ({}).

       app-service
	    Associates this address list with a particular Application Service. An Application Service is a major
	    component of an iApp, an advanced configuration tool for creating and maintaining similar applications on
	    multiple servers.

       description
	    Is your description for this address list.

SEE ALSO
       edit, list, modify, ltm virtual, tmsh

COPYRIGHT
       No part of this program may be reproduced or transmitted in any form or by any means, electronic or
       mechanical, including photocopying, recording, or information storage and retrieval systems, for any purpose
       other than the purchaser's personal use, without the express written permission of F5 Networks, Inc.

       F5 Networks and BIG-IP (c) Copyright 2008, 2012-2013, 2017-2018. All rights reserved.

BIG-IP						      2019-04-25				  net address-list(1)