Author's posts

시스코 스위치 TDR 테스트

시스코 스위치 TDR 테스트 TDR(Time Domain Reflectometer)은 전송 케이블에 신호를 보내고 그 신호가 반사되어 되돌아오는 시간을 측정하여 케이블의 결함 유무를 확인하는 방법이다. 시스코 스위치의 TDR 테스트는 아래와 같은 방법으로 실행 할 수 있으며, 광케이블은 TDR 테스트가 지원되지 않는다. 아래는 시스코 C9200L 스위치에서 실행했다. 스위치가 tdr 테스트를 지원하지 않을 수도 있다. * 인터페이스 상태 확인하고, TDR …

Continue reading

주니퍼 스위치 PoE 관련 명령어.

주니퍼 스위치 PoE 관련 명령어. 스위치 모델 : Juniper EX2300-48P 1. PoE 인터페이스 보기 admin@Switch> show poe interface Interface Admin Oper Pair/Mode Max Priority Power Class status status status power consumption ge-0/0/0 Enabled ON 2P/AT 30.0W Low 4.2W 4 ge-0/0/1 Enabled ON 2P/AT 30.0W Low 4.2W 4 ge-0/0/2 Enabled ON 2P/AT 30.0W Low 4.2W 4 …

Continue reading

VMware guest vm OVF 내보내기/가져오기

vsphere vm OVF 내보내기(6.0)/가져오기(8.0) vsphere 6.0에서 운영중인 VM 을 vsphere 8.0 사용중인 서버로 이동해야 할 일이 생겼다. vm을 ovf 포맷으로 내보내고, 8.0 에서 ovf 파일을 가져오는 방법을 사용했다. * OVF 포맷으로 내보내기 1. 이동하고자하는 vm의 전원을 끈다. 사용중이면 메뉴가 활성화되지 않는다. 해당 vm을 선택한다.

Continue reading

CentOS를 RedHat Enterprise 리눅스로 변환하는 방법

CentOS를 RedHat Enterprise 리눅스로 변환하는 방법 CentOS 특히 CentOS7의 지원 종료에 따라, VMware를 비롯한 가상머신에 배포된 centos를 rhel로 변환하기 위한 안내서. https://www.redhat.com/en/resources/converting-centos-linux-to-enterprise-linux-overview

cisco 스위치 PoE 관련 명령어.

시스코 스위치(ios-xe) PoE 관련 명령어 1. poe 상태 확인 show power inline 명령으로 확인 할 수 있다. Switch#show power inline Module Available Used Remaining (Watts) (Watts) (Watts) —— ——— ——– ——— 1 740.0 30.8 709.2 Interface Admin Oper Power Device Class Max (Watts) ——— —— ———- ——- ——————- —– —- Gi1/0/1 auto off 0.0 n/a …

Continue reading

vCSA 6.0 cli 명령어로 설치하기.

vCSA 6.0 cli에서 명령어로 설치하기. 사용중이던 vCSA6.0이 아래처럼 인벤토리 서비스를 실행하지 못하는 현상이 발생하였다. localhost:~ # service-control –all –status …. applmgmt (VMware Appliance Management Service) vmafdd (VMware Authentication Framework) vmcad (VMware Certificate Service) vmdird (VMware Directory Service) vmware-cis-license (VMware License Service) vmware-cm (VMware Component Manager) vmware-rhttpproxy (VMware HTTP Reverse Proxy) vmware-sca (VMware Service Control Agent) …

Continue reading

시스코 ios-xe 업그레이드 (스택 구성에서)

시스코 스위치 C9200L-48-TX의 os 업그레이드 하기.

PostgreSQL 기초 사용법.

postgresql 기초 사용법 – 처음 사용해봄. *작업환경 OS: ubuntu 22.04 PostgreSQL: 14.12 1. 데이터베이스 접속. 데이터베이스에 접속하기위해서는 postgres 계정을 이용한다. 리눅스 패키지로 설치한 경우에는 postgres 계정이 만들어져 있다. su 명령으로 계정을 전환한다. $ sudo su – postgres 데이터베이스에 접속하기 위해 psql 명령을 사용한다. $ psql psql (14.12 (Ubuntu 14.12-0ubuntu0.22.04.1)) Type “help” for help. postgres=#

Continue reading

[eve-ng labs.] Juniper 스위치 OSPF 설정

주니퍼 vEX 스위치 OSPF(open shortest path first) 설정하기. * 시험환경: eve-ng. 사용 스위치: Juniper vEX 스위치, cisco vIOS 스위치 R1, R2, R3 : 주니퍼 vEX 스위치 Switch-1, Switch-2: 시스코 vIOS 스위치 구성은 아래 처럼. 1. R1 설정(Designated Router) 각 라우터와 연결된 인터페이스 설정 [edit] root@R1# set interfaces ge-0/0/0 unit 0 family inet address 10.10.1.1/30 [edit] …

Continue reading

[eve-ng labs.] Juniper 스위치 VRRP 설정.

주니퍼 스위치 VRRP(Virtual Router Redundancy Protocol) 설정하기. * 작업환경: eve-ng 커뮤니티 버전, 주니퍼 vEX 스위치. * 구성 : 아래 그림과 같이 시험환경 구성. 1. 스위치1, 스위치2의 vrrp 설정. 1.1. R1 스위치 설정 L2 스위치와 연결된 인터페이스에 IP 주소와 VRRP설정을한다. [edit] root# set interfaces ge-0/0/0 unit 10 family inet address 10.10.1.5/29 vrrp-group 10 virtual-address 10.10.1.1 priority …

Continue reading