지니의 따듯한 공간

CCNA2 1.1.4.5 / 기본 보안 설정 및 배너 본문

Network/CCNA

CCNA2 1.1.4.5 / 기본 보안 설정 및 배너

Jineer 2019. 12. 2. 14:34

 

배너 및 기본 보안설정

 [         ] 는 매개변수 및 사용자 설정 값

Router(config)# hostname RTA

RTA(config)#banner motd #This is RTA router# 

RTA(config)# line con 0
RTA(config-line)# password cisco
RTA(config-line)# login

RTA(config-line)# line vty 0 15
RTA(config-line)# pass cisco
RTA(config-line)# login

RTA(config-line)#enable secret class

 

인터페이스에 IP 할당 및 저장

RTA(config)#int g0/0
RTA(config-if)#ip add 10.10.10.1 255.255.255.0
RTA(config-if)#no sh

RTA(config-if)#int g0/1
RTA(config-if)#ip add 10.10.20.1 255.255.255.0
RTA(config-if)#no sh

RTA(config-if)#end
RTA#copy running-config startup-config   = 저장

 

VLAN에 IP 및 Default-gateway 구성

SW1(config)#int vlan 1
SW1(config-if)#ip address 10.10.10.2 255.255.255.0
SW1(config-if)#no sh
SW1(config-if)#ip default-gateway 10.10.10.1

SW1(config-if)#end
SW1#copy running-config startup-config

 

'Network > CCNA' 카테고리의 다른 글

CCNA2 / 2.2.5.5 Floating Static Routes  (0) 2019.12.02
CCNA2 / 2.2.2.4 정적 라우팅  (0) 2019.12.02
5.2.1.4 Configuring SSH / SSH 기초 설정  (0) 2019.10.17
3.2.1.8 Configuring RIP / RIP 기초  (0) 2019.10.17
STP ( Spanning Tree Protocol )  (0) 2019.10.10
Comments