김창현
-
BGP(iBGP, eBGP)김창현 2021. 9. 29. 13:46
> BGP란? - 서로다른 AS(autonomous system) 사이에서 사용 되는 라우팅 프로토콜이다. - ISP 업체 연결하거나, 두개이상 ISP 동시 접속할때 (Multihoming), BGP 를 사용 한다. - 다른 BGP 시스템과 네트워크 도달 가능성 정보를 교환하는 것 Open - BGP Peer를 형성하기 위한 메시지 - TCP Connection 맺고 BGP까지 처음 정보 교환 version : bgp version - AS number, Hold time, BGP ID 등 Keepalive - BGP Peer 상태를 확인하기 위한 메시지이다. - BGP peer간에 connection이 유효한지 확인하기위한 message - keepalive : 60초, Hold time : 180초 ..
-
윈도우 서버 NTP, Vsphere AD 설정, BGP 토폴로지 구성김창현 2021. 9. 28. 11:57
> 윈도우 서버 NTP 설정 W32tm /config /manualpeerlist:time.windows.com /syncfromflags:manual /reliable:yes /update W32tm /resync /rediscover Net stop w32time && net start w32time 만일 기관에 NTP 서버가 존재 한다면 :time.windows.com 부분에 해당 IP입력 > Domain 정보 등록 1. 도메인 구분 win2016 - vsphere.local -> Administrator@vsphere.local.com sso - sso.local 2. Restart https://vcsa7.vsphere.local:5480 -> vcenter management > Vsphere..
-
vSphere 환경설치 및 자동화김창현 2021. 9. 27. 16:53
설정 – Manual, 자동 – ansible, bash shell, windows - powershell, vmware –power cli Ø Vsphere 환경 설치 (자동화, power cli) Set-ExecutionPolicy remoteSigned Install-PackageProvider -Name Nuget -RequiredVersion 2.8.5.201 -force mkdir c:\PowerCLI Save-Module -name VMWARE.PowerCLI -Path c:\PowerCLI Install-Module Vmware.PowerCLI -Force Copy-Item -Recurse C:\PowerCLI* -Destination C:\Windows\System32\WindowsPow..