Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- endpoint security
- macos
- 보안양파
- ansible
- G-suite
- XCP-ng
- xe guest utilities
- Windows
- proxycfg
- x-pack
- pfsense
- Proxy
- Kibana server is not ready yet
- docker
- freebsd
- elastic stack
- hardening
- centos 8
- application security
- PlayBook
- 한글가이드
- ssh key 배포
- GitLab
- Kibana
- ELASTIC
- Elasticsearch
- 로그인불가
- bash
- miniconda
Archives
- Today
- Total
목록Windows (3)
선 밖에 선 자유인
윈도 10 proxy 설정 (command)
- 관리자 권한으로 cmd 실행 cmd> netsh winhttp set proxy proxy-server="http=:3128;https=:3128" bypass-list="localhost;" - proxy 설정 제거 cmd> netsh winhttp reset proxy - ansible playbook - name: Windows Proxy 설정 community.windows.win_http_proxy: proxy: http=:;https=: bypass: locahost;server1,server2,
IT/System & Network
2021. 1. 28. 16:50
Windows Package 설치 playbook
--- - name: Install msi package hosts: windows user: vagrant become: yes tasks: - name: Download msi installer win_get_url: url: 'http://' dest: C:\Users\user\Downloads\filename - name: file copy win_copy: source: C:\Users\user1\Downloads\sourcefile dest: C:\Users\user2\Downloads\destfile - name: Install msi win_package: path: C:\Users\user2\Downloads\file state: present
IT/System & Network
2021. 1. 1. 20:46