Defining nodes using generics

You can minimize the number of statements needed to define your network by using generics to define your nodes. You use generics to define :
  1. Common characteristics of all nodes
  2. Unique characteristics for individual nodes
  3. Unique characteristics for groups of nodes.

To clarify this point, study Figure 1 and its explanation immediately following.

Figure 1. Defining Nodes Using Generics
    NODE(*) REST=125
    NODE(1) NAME=WASH1,AUTH=(DEVICE=NO,NET=YES)
    NODE(2) NAME=WASH2,AUTH=(SYSTEM=NO,JOB=NO)
    NODE(3) NAME=WASH3,AUTH=(SYSTEM=NO,NET=YES),HOLD=JOBS
    NODE(4) NAME=NYORK1,AUTH=(JOB=NO,NET=YES)
    NODE(5) NAME=NYORK2,AUTH=(DEVICE=NO,SYSTEM=NO)
    ⋮
    NODE(WASH*) REST=250,AUTH=(JOB=NO)
    NODE(NYORK*) HOLD=JOBS

Defining nodes in the network requires careful planning and coordination among participating installations to ensure that JES2 does not encounter duplicate node names. You must ensure that a name known to any node is reachable from all nodes.