728x90
반응형
1. Ethernet 0 의 description 을 설정하고 NVRAM 에 저장
description : ICQA
* description 을 주석 이라고 생각하면 된다.
* ethernet 확인
#show interface ethernet 0
↓↓↓↓↓↓아래 처럼 표현 가능 ↓↓↓↓↓↓
#sh int e0
> en
# conf t
(config) # int e 0
(config-if) description ICQA
(config-if) exit
(config) exit
# copy r s
단축어
description는 des 로 사용 가능
ethernet 은 e 로 사용 가능
#show int e0
명령어를 사용하면 내가 설정한 interface 내용을 쉽게 확인 할 수 있다.
2. Ethernet 0의 IP ADDRESS 를 192.168.2.1 / 30 과
192.168.3.1 / 30 Secondary 로
설정하고 저장하시오.
슬롯 번호 / 포트 번호
Secondary 란?
Secondary 는 두번째 ip 주소! 최근에 많이 사용하지는 않는다.
>en
#conf t
(config)# int e 0;
(config-if)# ip add 192.168.3.1 255.255.255.252 Secondary
(config-if)# exit
(config)# exit
# copy r s
" 30 "
255. 255. 255. 1111 1100 = 30
255. 255. 255. 1111 1100 = 24
255. 255. 255. 1111 1100 = 6
728x90
반응형