New Entity AI

Draft 1.0:
Index


dugout-> network_ops_id.dugout



Create default network access locations, routines, and up/down/operation hooks. This section only tracks your resources in a 1->N method, while specific routines and connections types are to be stored in connection_mainframe.dugout


           

#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/02/13
## INSTANCE: network_ops_id.dugout
## MODIFIED: 2024/01/22
## OVERVIEW: create default network access locations, routines, and
## up/down/operation hooks. This section only tracks your resources in a
## 1->N method, while specific routines and connections types are to be stored
## in connection_mainframe.dugout
## HISTORY: VERSION 1.3
## -> 2022/02/13 (VERSION 1.0) Development
## -> 2023/11/18 (VERSION 1.1)
## -> 2023/12/17 (VERSION 1.2)
## -> 2023/12/19 (VERSION 1.3)
## -> 2024/01/22 (VERSION 1.4) Production
###############################################################################
## Input data here: The convention is add a SERVER_NAME_EXTENSION ip and
## also add a SSH_TO_NAME_EXTENSION () block below. Follow the provided
## convention.
###############################################################################
## N->1 (Acces: CORE.HOST)
###############################################################################
export SERVER_CORE_HOST="${CONFIGURATION_SERVER_CORE_HOST}"

## Default Access User
export DEFAULT_ACCESS_USER="${OPERATOR_DEFAULT_ACCESS}"

## Default Server Access KEY
export SLUG_SERVER_KEY="${PATH_SSH}${DEFAULT_SSH_KEY}"

SSH_TO_CORE_HOST() {
 alert_connection_initiated_ssh "CORE.HOST"
 td_dash_forty
 alert_connection_to_destination_with_user "${SERVER_CORE_HOST}" "${DEFAULT_ACCESS_USER}"
 td_dash_forty
 alert_connection_ssh_summary "${SLUG_SERVER_KEY}" "${DEFAULT_ACCESS_USER}" "${SERVER_CORE_HOST}"
 td_dash_forty
 ssh -i "${SLUG_SERVER_KEY}" "${DEFAULT_ACCESS_USER}@${SERVER_CORE_HOST}"
}

###############################################################################
## Nth Server
###############################################################################
## YOUR_SITE_HERE_EXTENSION_HERE
#export SERVER_*CHANGE_ME*=$CONFIGURATION_SERVER_*CHANGE_ME*

## Default Access User
#export DEFAULT_*CHANGEME*_USER="${OPERATOR_DEFAULT_ACCESS}"

## Default Server Access KEY
#export SLUG_*CHANGEME*_KEY="${PATH_SSH_*CHANGE*}${DEFAULT_SSH_KEY_*CHANGE*}"

#*TYPE_EXTENSION_HERE*_*TO_YOUR_DESTINATION_EXTENSION_HERE*() {
# alert_connection_initiated_*TYPE_EXTENSION_HERE* "*DESTINATION LOCATION HERE*"
# td_dash_forty
# alert_connection_to_destination_with_user "*DESTINATION ENDPOINT ADDRESS HERE*" "*ACCESS_USER_HERE*"
# td_dash_forty
# alert_connection_*TYPE_EXTENSION_HERE*_summary "*DESTINATION ENDPOINT TYPE HERE*" "*EXTERNAL ACCESS UER HERE*" "*DESTINATION ENDPOINT ADDRESS HERE*"
# td_dash_forty
# *TYPE_EXTENSION_FOR_ROUTINE_HERE* *TYPE_EXTENSION_OPTIONS*
#}