Linux					분류
				
						네크워크 관리사 - Router문제 실기 기출 문제
컨텐츠 정보
- 12,071 조회
- 0 추천
- 목록
본문
				# Router 문제 
en(enable): 사용자 모드에서 관리자 모드로 전환 
conf t(configure terminal): 관리자모드에서 전역설정 모드로 전환
## 문제2
Router2의 Serial2/0의 대역폭을 2048로 설정하시오
```
Router(config)# in s2/0 
Router(config-if)# bandwidth 2048 
Router# copy r s
```
## 문제3 
Router1의 Serial2/0의 클럭 속도를 72K로 설정하시오
```
Router(config)# in s2/0 
Router(config-if)# clock rate 72000
Router# copy r s
```
## 문제4
FaseEthernet 0/0의 Descriptiom을 설정하시오.(Description : ICQA)
```
Router(config)# in f0/0 
Router(config-if)# description ICQA 
Router# copy r s
```
## 문제5
Router1의 Serial2/0을 사용가능하게 192.168.0.102/24로 설정하고 활성화 하시오
```
Router(config)# in s2/0 
Router(config-if)# ip add 192.168.0.101 255.255.255.0 Router(config-if)# ip add 192.168.0.102 255.255.255.0 secondary
Router(config-if)# no sh RouteR# copy r s
```
##  문제6
기본 게이트웨이를 설정하시오. IP: 192.168.0.10
```
Router(config)# ip default-gateway 192.168.0.1 RouteR# copy r s
```
## 문제7 
Router1의 DHCP 네트워크를192.168.100.0/24 서버이름은 'icqa'로 설정하시오
```
Router(config)# ip dhcp pool icqa
Router(config-dhcp)# net 192.168.100.0 255.255.255.0 Router# copy r s
```
## 문제8) 
Hostname을 network2로 변경하고 console 0의 password를 route5로 변경 후 로그인 하시오.
```
Router(config)# hostname network2 
network2(config)# line console 0 
network2(config-line)# password route5 network2(config-line)# login 
network2# copy r s
```
## 문제9
Router1 telnet에 접근하는 Passwrod를 icqa로 설정하고 로그인 하시오.
```
Router(config)# line vty 0 4
Router(config-line)# password icqa 
Router(config-line)# login Router
# copy r s
```
## 문제10 
텔넷 연결 후 3분 50초 동안 입력이 없으면 세션이 자동 종료되도록 설정하시오.
```
Router(config)# line vty 0 4 
Router(config-line)# exec-timeout 03 50 =>3분 50초
Router# copy r s
```
## 문제11
Router1 console 0의 패스워드를 ICQA로 설정하고 로그인하시오.
```
Router(config)#line console 0 Router(config-line)# passwrod ICQA Router# copy r s
```
## 문제12
router1 serial2/0을 활성화시키시오
```
Router(config)# interface s2/0 
Router(config-if)# no sh 
Router# copy r s 
```			
					관련자료
			댓글 0
					
			
				등록된 댓글이 없습니다.
			
					 
								





