[CCNAS] 덤프 11장 문제
·
CCNA/문제
Which type of security policy document is it that includes implementation details that usually contain step-by-step instructions and graphics? ◦best practices document ◦procedure document ◦standards document ◦guideline document ​ 일반적으로 단계별 지침과 그래픽을 포함하는 구현 세부 정보를 포함하는 보안 정책 문서의 유형은 무엇인가? ◦ 모범사례문서 ◦절차서류* ◦표준서 ◦가이드라인 문서 ​ What is the purpose of a security awareness campaign? ◦to teach skills so em..
[CCNAS] 덤프 10장 문제
·
CCNA/문제
What must be configured on an ASA before it can be accessed by ASDM? ◦web server access ◦Telnet or SSH ◦an Ethernet port other than 0/0 ◦Ethernet 0/0 IP address ​ ASDM에서 ASA에 액세스하기 전에 구성해야 하는 구성 항목은? ◦웹서버 접속* ◦텔넷 또는 SSH ◦0/0이 아닌 이더넷 포트 ◦이더넷 0/0 IP 주소 ​ How is an ASA interface configured as an outside interface when using ASDM? ◦Select a check box from the Interface Type option that shows inside,..
[CCNAS] 덤프 9장 문제
·
CCNA/문제
What command defines a DHCP pool that uses the maximum number of DHCP client addresses available on an ASA 5505 that is using the Base license? ◦CCNAS-ASA(config)# dhcpd address 192.168.1.20-192.168.1.50 inside ◦CCNAS-ASA(config)# dhcpd address 192.168.1.10-192.168.1.100 inside ◦CCNAS-ASA(config)# dhcpd address 192.168.1.25-192.168.1.56 inside ◦CCNAS-ASA(config)# dhcpd address 192.168.1.30-192.1..
[CCNAS] 덤프 8장 문제
·
CCNA/문제
Which transform set provides the best protection? ◦crypto ipsec transform-set ESP-DES-SHA esp-aes-256 esp-sha-hmac ◦crypto ipsec transform-set ESP-DES-SHA esp-3des esp-sha-hmac ◦crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac ◦crypto ipsec transform-set ESP-DES-SHA esp-aes esp-des esp-sha-hmac ​ 최고의 보호 기능을 제공하는 변환 세트는? ◦crypto ipsec 변환 세트 ESP-DES-SHA esp-aes-256 esp-sha-hmac* ◦crypto..
[React] Code Splitting
·
React/실험실
0. 들어가면서 webpack과 babel을 통해서 만든 프로젝트에 Code Splitting을 공부하기 위해서 추가로 작업한 것이다. 1. Code Splitting? 우리가 일반적으로 yarn build을 사용하면 하나의 번들 파일이 만들어진다. 프로젝트의 규모가 커지면서 번들 파일도 같이 점점 커지게 된다. 크기가 커진 번들 파일을 화면에 로드하는 경우 시간이 걸어지는 결과가 발생한다. 즉, 사용자가 느끼는 서비스의 만족도가 낮아지게 된다. 이때, 하나의 번들 파일을 여러 개의 번들 파일로 나누는 것이 Code Splitting이다. 여러 개의 번들 파일로 나누어서 실제 로드가 될 화면에 필요한 번들 파일만 불러오고 나머지 번들 파일은 호출하지 않고 필요할 때 호출하면서 더 빠른 속도로 화면에 보이..
[React] html-webpack-plugin?
·
React/실험실
0. 들어가면서 Webpack과 Babel을 사용한 프로젝트에서 html-webpack-plugin은 webpack이 html 파일을 읽어서 로드할 수 있도록 도와준다고 했다. 근데 이게 무슨 말일까? 여기서부터 시작된 의문이 ' 과연 이게 진짜 해당 기능을 하는 걸까? ', ' 사실 더 어썸 한 기능이 있는 것은 아닐까? ', ' 아에 다른 기능인가? ', ' 쓸모없는 기능일까? ' 등 별에 별 의문이 생겨서 한번 알아보게 되었다. 1. html-webpack-plugin ? Custom Html html-webpack-plugin은 webpack 번들을 제공하는 HTML 파일 생성을 단순화시켜준다. const path = require("path"); const HtmlWebpackPlugin = r..
[React] webpack 과 babel로 프로젝트에 폰트 파일 적용하기
·
React/실험실
0. 들어가며 해당 프로젝트는 webpack과 babel을 사용해서 만든 프로젝트에 그동안 React 프로젝트를 할 때마다 헷갈리던 폰트 파일을 적용하는 방법을 작성하였다. 1. 준비물 특별하게 사용한 것은 React 프로젝트, 구글에서 가져온 Font 파일(ttf), styled-components 패키지가 있다. 2. 시작 public 폴더 이용하기 먼저 구글에서 가져온 폰트를 public 폴더에 넣어주었다. import React from "react"; import styled from "styled-components"; const CustomDiv = styled.div` @font-face { font-family: "BlackHanSans"; src: url("./assets/fonts/B..
[React] Webpack styled-component
·
React/버그
0. 사건의 발단 평화로운 어느날, Custom Webpack을 사용해서 만든 프로젝트에 styled-component를 사용할때 발생하였다.... 나는 분명 yarn add styled-component를 입력하고 package.json에 제대로 입력되어있는 것까지 확인하였는데, 왜 모듈이 없다고 나오는 것일까?! 1. 바로 해결 Holy!! yarn add styled-components 를 사용해서 설치해야하는 것이였다!?