{
    #------------------------------------------------------------
    # Compute "localAccess" string for use in template below.
    #------------------------------------------------------------
    my %networks;
    tie %networks, 'esmith::config', '/home/e-smith/networks';

    use esmith::util;	    
    
    my @access = esmith::util::computeLocalAccessSpec( $LocalIP, 
			$LocalNetmask, \%networks, 'private');

    $localAccess = "@access";
    $localAccess =~ s#/255\.255\.255\.255##g;

    "";
}

