2024년 2월 21일
3대 서버 : 웹서버, 도메인, 메일서버 3대 암호 : 시스템암호, 데이터베이스암호, 네트워크암호 시스템암호, 데이터베이스암호, 네트워크장비암호 초기화 하는 방법을 알아야 한다. #R1 //비밀번호 설정 enable config t line console 0 password 123456 login exit exit + show running-config -> 설정해 둔 비밀번호가 그대로 다 보인다. //비밀번호 암호화 설정 enable config t enable secret 123456 exit exit + show running-config -> 암호화 설정으로 비밀번호 노출 X (?) //비밀번호 복잡성 설정 enable conf t security passwords min-length ? security passwords min-length 8 exit copy running-config start-config //총정리 #R1 config t hostname korea security passwords min-length 8 line consol 0 password 12345678 login exit service password-encryption enable secret 12345678 exit line vty 0 4 password 12345678 login enable password 12345678 enable secret 12345678 exit #R2 config t hostname Australia security passwords min-length 8 line consol 0 password 12345678 login exit service password-encryption enable secret 12345678 exit line vty 0 4 password 12345678 login enable password 12345678 enable secret 12345678 exit config t access-list 1 permit 220.87.199.59 0.0.0.0 access-list 1 deny any interface fa0/0 ip access-group 1 in exit show access-lists