분류 전체보기(281)
-
MFA
MFA 실습
2023.11.06 -
언어 수정 및 S3 CLI 명령어
기본 설정 CLI로 S3 생성 및 이미지 업로드 aws s3 mb s3://labclibucket-123 aws s3 ls aws s3 cp /home/ssm-user/HappyFace.jpg s3://labclibucket-123 aws s3 ls s3://labclibucket-123
2023.11.06 -
수업 필요 링크
실습 사이트 주소 Amazon Web Services (AWS) - Classroom Amazon Web Services (AWS) - Classroom us-east-1.student.classrooms.aws.training 교재 주소 https://online.vitalsource.com/reader/books/200-ARCHIT-75-KO-SG-E/pageid/0 https://online.vitalsource.com/reader/books/200-ARCHIT-75-KO-SG-E/pageid/0 online.vitalsource.com 보충 수업 AWS Skill Builder Self-paced digital training on AWS - AWS Skill Builder Your learnin..
2023.11.06 -
온프레미스 서비스
HSRP DHCP relay agent NTP SVI RIP NAT
2023.11.03 -
프로젝트 온프레미스 구성
토폴로지 NAT, SVI, RIP, HSRP 구성 NAT_GW conf t int e 1/0 no shut ip add 10.1.30.11 255.255.255.0 ip nat inside exi int e 0/0 no shut ip add dhcp ip nat outside exi access-list 1 permit 10.1.10.0 0.0.0.255 access-list 1 permit 10.1.20.0 0.0.0.255 ip nat inside source list 1 int e 0/0 over router rip ver 2 no auto net 10.0.0.0 tim ba 1 6 0 8 default-information ori exi GW_SW conf t vlan 30 exi int e 1/..
2023.11.01 -
Endpoint
Endpoint Kubernetes에서 Endpoint란 서비스와 관련이 깊은 중요한 개념이다. Endpoint은 서비스를 백엔드 Pod들과 연결하는 방법을 정의한다. 간단히 말하면, Endpoint은 서비스가 요청을 어떤 Pod로 라우팅해야 하는지를 결정하는 매핑 역할을 한다. 참고 사이트 Endpoints | Kubernetes Endpoints Endpoints is a collection of endpoints that implement the actual service. kubernetes.io endpoint.yml 파일 생성 apiVersion: v1 kind: Service metadata: name: my-service spec: ports: - protocol: TCP port: 80 ..
2023.10.31