본문 바로가기

728x90

전체 글

[보안] OpenSSL 취약점 보안 업데이트 권고 OpenSSL 취약점 보안 업데이트 권고 □ 개요 o OpenSSL 프로젝트는 OpenSSL에서 발생하는 취약점을 해결한 보안 업데이트 발표 o 공격자는 해당 취약점을 악용하여 피해를 발생시킬 수 있으므로, 해당 제품을 사용하는 이용자들은 최신 버전으로 업데이트 권고 □ 설명 [1] o OpenSSL에서 버퍼오버플로우로 인해 발생하는 원격 코드 실행 취약점 (CVE-2022-3602) o OpenSSL에서 버퍼오버플로우로 인해 발생하는 서비스 거부 취약점 (CVE-2022-3786) □ 영향을 받는 버전 및 해결 버전 제품명 영향받는 버전 해결 버전 OpenSSL 3.0.0 ~ 3.0.6 버전 3.0.7 버전 ※ 하단의 참고사이트를 확인하여 해결 버전으로 업데이트 수행 [2] ※ OpenSSL 1.0.2.. 더보기
[Ansible] ansible-playbook apache(httpd) install ansible-playbook apache(httpd) install os-pkg-apache.yaml edit vim os-pkg-apache.yaml --- ### ansible -i ~/ansible-spec/inventory kube-node1 -m gather_facts ### ansible-doc yum ### ansible-doc apt - hosts: all gather_facts: yes tasks: - name: install apache on centos yum: name: httpd state: present when: ansible_facts['distribution'] == "CentOS" and ansible_facts['lsb']['major_release'] | int >=.. 더보기
앤서블 플레이북 키워드 앤서블 플레이북 키워드(Playbook Keywords)Ansible 플레이북(Playbook)은 Ansible에서 자동화 작업을 수행하기 위한 주요 구성 파일입니다. 각 플레이북은 여러 작업(task)들을 정의하며 시스템이나 네트워크 장비 등의 상태를 원하는 방향으로 변경하는 데 사용됩니다.주요 Ansible 플레이북 키워드name설명 : 작업 또는 플레이의 이름을 정의합니다. 사람이 이해하기 쉽게 설명하는 부분입니다위치 : 플레이북 또는 개별 작업에서 사용됩니다.name: Install NGINXhosts설명 : 이 플레이를 실행할 호스트 그룹을 지정합니다.위치 : 플레이 단위에서 사용됩니다.hosts: webserverstasks설명 : 실행할 작업 목록을 정의하는 곳입니다. 각 작업은 모듈 호출 .. 더보기
[Ansible] facts 모듈(facts module) Ansible facts 모듈(facts module) : 원격 호스트에 대한 정보 수집 kube-node1에 대한 정보 수집 ansible -i ~/ansible-spec/inventory kube-node1 -m gather_facts $ ansible -i ~/ansible-spec/inventory -m setup kube-node1 kube-node1 | SUCCESS => { "ansible_facts": { "ansible_all_ipv4_addresses": [ "172.17.0.1", "169.254.25.10", "10.233.0.1", "10.233.0.3", "10.233.51.47", "192.168.0.61", "10.233.73.64" ], "ansible_all_ipv6_ad.. 더보기
[Ansible] ansible-config 명령 ansible-config 명령 ansible-config -h $ ansible-config -h usage: ansible-config [-h] [--version] [-v] {list,dump,view,init} ... View ansible configuration. positional arguments: {list,dump,view,init} list Print all config options dump Dump configuration view View configuration file init Create initial configuration optional arguments: --version show program's version number, config file location, .. 더보기
[Ansible] ansible-doc 명령 ansible-doc 명령 : plugin documentation tool ansible-doc 사용법 ansible-doc -h $ ansible-doc -h usage: ansible-doc [-h] [--version] [-v] [-M MODULE_PATH] [--playbook-dir BASEDIR] [-t {become,cache,callback,cliconf,connection,httpapi,inventory,lookup,netconf,shell,vars,module,strategy,role,keyword}] [-j] [-r ROLES_PATH] [-e ENTRY_POINT | -s | -F | -l | --metadata-dump] [plugin [plugin ...]] plugin doc.. 더보기
[제품] ipTIME AX2004BCM 유무선공유기 ipTIME AX2004BCM 유무선공유기 2022년 10월 21일 가격비교 참고URL - http://iptime.com/iptime/?page_id=11&pf=2&page=&pt=495&pd=1 더보기
Ansible 인벤토리를 YAML 파일로 설정하는 방법 Ansible 인벤토리를 YAML 파일로 설정하는 방법 YAML 파일을 사용하여 호스트 그룹 및 호스트에 대한 정보를 정의할 수 있습니다. 기본적인 YAML 형식의 Ansible 인벤토리 예제 Ansible 인벤토리 파일 편집 vim hosts.yml --- all: # all 그룹 정의 hosts: webserver: ansible_host: 192.168.1.10 ansible_user: ubuntu ansible_ssh_private_key_file: /path/to/private_key.pem database: ansible_host: 192.168.1.11 ansible_user: centos ansible_password: your_password webservers: # webservers .. 더보기

반응형