728x90

IT 40

windows10 원격 다중 접속 설정하기(RDpWrap Install)

1. Download https://github.com/stascorp/rdpwrap/releases 2. 압축 풀기 3. 관리자 권한 실행 4. Config 설정 RDP Wrapper Configuration 에서 Ver 버전 확인 5.호환성 체크 https://github.com/stascorp/rdpwrap/issues 6. Remote Desktop Service 중지 7. C:\Program Files (x86) 또는 C:\Program Files 의 RDP wrap 디렉토리 의 Rdpwrap.ini 수정 위 RDP Wrapper Configuration 에서 Ver 맞는 ini 찾아 수정 8. Remote Desktop Service 시작 9.확인

IT/Windows 2023.04.19

ubuntu timezone 변경

현재 시스템의 타임존을 확인합니다. # timedatectl Local time: Fri 2019-04-19 07:53:45 UTC Universal time: Fri 2019-04-19 07:53:45 UTC RTC time: n/a Time zone: Etc/UTC (UTC, +0000) System clock synchronized: yes systemd-timesyncd.service active: yes RTC in local TZ: no 설정할 타임존 값을 확인합니다. 여기선 서울로 설정합니다. # timedatectl list-timezones | grep Seoul Asia/Seoul 위에서 확인한 타임존 값으로 설정합니다. # timedatectl set-timezone Asia/Seou..

IT/LINUX 2023.04.18

tcpdump 사용법

가끔씩 통신 확인 하기 위해 사용하는 tcpdump 명령어 # tcpdump -i eth0 ⇒ 인터페이스 eth0 을 보여줌 # tcpdump -w tcpdump.log ⇒ 결과를 파일로 저장, txt 가 아닌 bin 형식으로 저장됨 # tcpdump -r tcpdump.log ⇒ 저장한 파일을 읽음 # tcpdump -i eth0 -c 10 ⇒ 카운터 10개만 보여줌 # tcpdump -i eth0 tcp port 80 ⇒ tcp 80 포트로 통신하는 패킷 보여줌 # tcpdump -i eth0 tcp port 80 ⇒ tcp 80 포트로 통신하는 패킷 보여줌 # tcpdump -i eth0 src 192.168.0.1 ⇒ source ip 가 이것인 패킷 보여줌 # tcpdump -i eth0 dst..

IT/LINUX 2023.02.09

Docker 기본 명령어

- docker 설치 yum install -y yum-utils yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo yum install docker-ce docker-ce-cli containerd.io -y systemctl start docker systemctl enable docker systemctl status docker docker ps - docker root 접속 docker exec -itu 0 [컨테이너 ID] /bin/bash - docker 컨테이너 삭제 docker stop [컨테이너 ID] docker rm [컨테이너 ID] - Docker 종료 없이 나가기 Ctrl + ..

IT/LINUX 2022.11.18

스위치 펌웨어 업그레이드

1. TFTP 다운 2. 펌웨어 파일 디렉토리 위치 지정 3. 통신 IP 임시 설정 Switch# Switch#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#interface vlan1 Switch(config-if)#ip address 192.168.10.1 255.255.255.0 Switch(config-if)#no shutdown Switch(config-if)#end Switch(config)#show run 3-1. 설정 확인 Switch#show run Building configuration... Current configuration : 2095 bytes ! ver..

IT/Switch 2022.08.10
728x90