net port-listΒΆ

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



NAME
       port-list - A port list is a list of IP ports.

MODULE
       net

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

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

   DISPLAY
	list port-list [[name] | all | [property]]
	show running-config port-list [[name] | all | [property]]

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

DESCRIPTION
       You can use the port-list component to define reusable lists of ports.

EXAMPLES
       create port-list plist1 ports add { 80 443 }

       Creates a new port list, "plist1," with two ports.

       modify port-list plist1 description "my port list"

       Modifies the above port list with a description.

       modify port-list plist1 ports add { 999 }

       Modifies the same port list by adding port 999 to it.

	list port-list plist1
	net port-list plist1 {
	   ports {
	       description "my port list"
	       999 { }
	       http { }
	       https { }
	   }
	}

       Shows the modified port list.

OPTIONS
       ports
	    Specifies a list of IP ports.

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

	    add  Creates a new port list.

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

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

	    replace-all-with
		 Replaces the current set of IP ports with the port(s) that
		 you specify next, in curly braces ({}).

       app-service
	    Associates this port 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 port 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. All rights
       reserved.



BIG-IP				  2017-12-04		      net port-list(1)