  CONST
    nac$max_nam_attributes = 16;
  TYPE
    nat$nam_attribute_kind = (
          nac$enable_statistics_attr, nac$max_connections_attr,
          nac$current_connections_status,
          nac$maximum_login_attempts_attr,
          nac$ica_reset_down_thresh_attr, nac$mci_reset_down_thresh_attr,
          nac$system_identifier_attr,
          nac$force_password_prompt_attr,
          nac$prompt_for_account_attr,
          nac$prompt_for_family_name_attr, nac$prompt_for_project_attr,
          nac$tcpip_refresh_interval, nac$tcpip_stale_release_intervl,
          nac$log_tcpip_routing,
          nac$directory_version, nac$display_directory_traffic),

    nat$nam_attribute = record
      CASE kind: nat$nam_attribute_kind OF
      = nac$enable_statistics_attr =
        enable_statistics: boolean,
      = nac$max_connections_attr =
        maximum_connections: nlt$connections_per_system,
      = nac$maximum_login_attempts_attr =
        maximum_login_attempts: nat$maximum_login_attempts,
      = nac$force_password_prompt_attr =
        force_password_prompt: boolean,
      = nac$ica_reset_down_thresh_attr =
        ica_reset_down_threshold: nat$ica_reset_down_threshold,
      = nac$mci_reset_down_thresh_attr =
        mci_reset_down_threshold: nat$mci_reset_down_threshold,
      = nac$prompt_for_account_attr =
        prompt_for_account: boolean,
      = nac$prompt_for_family_name_attr =
        prompt_for_family_name: boolean,
      = nac$prompt_for_project_attr =
        prompt_for_project: boolean,
      = nac$current_connections_status =
        current_connections: nlt$connections_per_system,
      = nac$tcpip_refresh_interval =
        tcpip_refresh_interval: nlt$tm_cache_interval,
      = nac$tcpip_stale_release_intervl =
        tcpip_stale_release_interval: nlt$tm_cache_interval,
      = nac$log_tcpip_routing =
        log_tcpip_routing: boolean,
      = nac$system_identifier_attr =
        system_id: nat$system_identifier,
      = nac$directory_version =
        directory_version: 2 .. 3,
      = nac$display_directory_traffic =
        display_directory_traffic: boolean,
      CASEND,
    recend,

    nat$nam_attributes = array [1..*] of nat$nam_attribute;

*copyc nlt$connections_per_system
*copyc nat$maximum_login_attempts
*copyc nat$net_device_config_param
*copyc nat$system_identifier
*copyc nlt$tm_cache_interval

