반응형 전체 글213 Openpyxl - Make a report template Let's create a report template as shown above. import datetime import openpyxl from openpyxl.styles import Border, Side, Font, Alignment, PatternFill def createExcelFile(): # Excel File Creation nowDate = 'Report Date: ' + str(datetime.datetime.now().strftime('%Y-%m-%d')) wb = openpyxl.Workbook() ws = wb.active ws.title = 'SNMP Community' # Pretty display for the File font = Font(bold=True) alig.. 2020. 7. 30. Etherchannel - Intro (PAgP, LACP) There are three different EtherChannel modes: PAgP, LACP, and on. Both in PAgP and LACP mode negotiate to decide active ports. However, on mode so called static mode no negotiations happen. In other words, unlike dynamic methods, on mode cannot detect connectivity between devices. First, let's look into dynamic link aggregation protocols [PAgP] - Cisco proprietary protocol - Advertise messages w.. 2020. 7. 24. NAT - Inside local, inside global, outside local, outside global In this post, I briefly summary NAT terms which are inside local, inside global, ouside local, and outside global. I would like to elaborate the terms using the ablove topology. ip nat inside source static 10.10.10.1 171.16.68.5 interface s 0 ip nat inside interface s 1 ip nat outside In order to verify the NAT tranlations, we can use show ip nat translations command. If you look at the output a.. 2020. 7. 18. #2-1. Job fair 그리고 동아리 최근에 우연히 링크드인에 올라온 글 중에 공감가는 내용이 있었다. 요약하면 99% 나는 실패했고, 그 실패는 인생에 있어서 당연한 것이고 그걸 딛고 계속 앞으로 나아가는게 중요하다. 뭐 이런 이야기였다. 잘 알지만 실패가 반복되고 정신적인 데미지가 쌓이면 묵묵히 간다는것도 참 쉽지않다. 나는 앞서서 올린 포스트에서 본 것과 같이 3학기로 석사학위를 마쳤고 3학기 내내 Job fair를 다녔다. 아무것도 모른채로 첫 학기 Computer Science 학부에서 진행하는 Job fair를 참석했다. 결과는 창피함 가득을 얻었다. Job fair를 준비도 안된 채로 임했으니 당연한 결과다. 준비가 안된 채라 한다면 촌스러운 디자인에 담긴 두 장짜리 CV 최소한의 인터뷰 질문도 준비하지 않은 나 지금 생각해보면.. 2020. 7. 15. 이전 1 ··· 38 39 40 41 42 43 44 ··· 54 다음 반응형