ssh
스타2
포크0
업데이트2026년 7월 15일 01:54
Manage SSH access to the OCI instance — open, connect, or close
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Manage SSH access to the OCI instance — open, connect, or close
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Scaffold a new OCI Terraform module following project conventions
Open or close a TCP/UDP port on the instance — updates security list and iptables
Deploy or update OCI infrastructure — runs plan and apply
Interactive setup wizard — walks through OCI configuration with guided questions
Show current state of OCI infrastructure — IPs, resources, drift
| name | ssh |
| description | Manage SSH access to the OCI instance — open, connect, or close |
| disable-model-invocation | true |
| allowed-tools | Bash, Read |
| argument-hint | [allow|revoke|connect] |
Manage SSH access to the OCI compute instance. SSH is blocked by default and must be opened from a specific IP.
Arguments:
allow (default): Open SSH from the user's current public IP and apply the security list changerevoke: Close SSH access (remove the IP from the security list) and applyconnect: SSH into the instancetunnel: Open MySQL SSH tunnel (localhost:3306)curl -4 -s --max-time 5 https://ifconfig.meterraform -chdir=terraform/environments/oci-prod apply -var="ssh_source_cidr=<IP>/32" -target=module.network.oci_core_security_list.mainterraform -chdir=terraform/environments/oci-prod apply -var="ssh_source_cidr=" -target=module.network.oci_core_security_list.mainterraform -chdir=terraform/environments/oci-prod output -raw instance_ipssh ubuntu@<IP>ssh -N -L 3306:<mysql_ip>:3306 ubuntu@<instance_ip>mysql -h 127.0.0.1 -P 3306 -u admin -p