일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 가상머신 추가
- IT
- VMware 사용법
- Vmware
- 대양고등학교
- 가상머신 삭제
- web
- inter-vlan
- 통신설비
- 사이버 보안
- Azure체험
- RIP
- 프로그래밍
- 원격접속(telnet)
- MS Azure 체험
- trunk port
- Debian 설치
- 특성화고
- dhcp
- VLAN
- 부산
- packtracer
- 네트워크
- 콘솔(console)
- 클라우드컴퓨팅
- 통신설비기능장 샘플문제
- 통신설비기능장 실기
- 통신설비기능장
- 가상머신
- Today
- Total
JY Academy
정보기기운용기능사 과정평가형 작업형 공개문제(3형) 풀이 본문
정보기기운용기능사 과정평가형 작업형 공개문제(3형) 풀이
isimtong 2024. 8. 21. 20:20[ 토폴리지 원본]
[공개과제 3형 문제지]
[PC0]
192.168.10.0/25 // C Class로 네트워크 개수를 2개로 나누고
// 호스트 수를 8비트에서 7비트로 줄임
11111111.11111111.11111111.1 0000000 // 서브넷 마스크 255.255.255.128
----------------------------------------------
192. 168. 10. 0 0000000 // 첫번째 사용불가, 네트워크 대역(ID)
192. 168. 10. 0 0000001 192.168.10.1
192. 168. 10. 0 0000010 192.168.10.2 // 호스트에 할당 가능한 2번째 IP 주소
192. 168. 10. 0 0000011
:
192. 168. 10. 0 1111110 192.168.10.126 // 호스트에 할당 가능한 마지막 IP 주소
192. 168. 10. 0 1111111 // 마지막 사용불가, 브로드캐스트
-------------------------------------------------
192. 168. 10. 1 0000000 // 첫번째 사용불가, 네트워크 대역(ID)
192. 168. 10. 1 0000001 192.168.10.129
192. 168. 10. 1 0000010 192.168.10.130
192. 168. 10. 1 0000011
:
192. 168. 10. 1 1111110 192.168.10.254
192. 168. 10. 1 1111111 // 마지막 사용불가, 브로드캐스트
---------------------------------------------
나머지 PC1, PC2 등 네트워크 대역만 다르고 서브넷 결과 값은 같기 때문에 바로 처리
[PC1]
호스트에 할당 가능한 2번째 IP 주소: 192.168.20.2
호스트에 할당 가능한 마지막 IP 주소: 192.168.20.126
[PC2]
호스트에 할당 가능한 2번째 IP 주소: 192.168.30.2
호스트에 할당 가능한 마지막 IP 주소: 192.168.30.126
나. 스위치 설정
// SW0
Switch>en
Switch#conf t
Switch(config)#hostname SW0
SW0(config)#vlan 100
SW0(config-vlan)#name Kim_net
SW0(config-vlan)#vlan 200
SW0(config-vlan)#name Lee_net
SW0(config-vlan)#vlan 300
SW0(config-vlan)#name Park_net
SW0(config-vlan)#exit
SW0(config)#interface fastEthernet 0/1
SW0(config-if)#switchport mode access
SW0(config-if)#sw ac vlan 100
SW0(config-if)#int fa0/2
SW0(config-if)#sw mo ac
SW0(config-if)#spanning-tree portfast // SW0 스위치 Lee_net 속한 포트는 연결하는 즉시 사용 가능
// portfast 는 단일 호스트에 연결된 포트에만 활성화 시켜야 하며
// spanning-tree 로 인한 체크로 접속시 속도가 느려지는것을 없애주는 방법
SW0(config-if)#sw ac vlan 200
SW0(config-if)#int ran fa0/11-fa0/20
SW0(config-if-range)#sw mo ac
SW0(config-if-range)#sw ac vlan 300
SW0(config-if-range)#do sh vlan
다. 라우터 설정
// R1
Router>en
Router#conf t
Router(config)#hostname R1
R1(config)#int s0/0/0
R1(config-if)#ip add 200.200.200.5 255.255.255.252
R1(config-if)#no sh
R1(config-if)# ex
R1(config)#no ip domain-lookup
R1(config)#ex
R1#terminal history size 7
R1#conf t
R1(config)#line vty 0 4
R1(config-line)#password test@@
R1(config-line)#login
// ISP
Router>en
Router#conf t
Router(config)#hostname ISP
ISP(config)#no ip domain-lookup
ISP(config)#banner motd $#@ Welcome to ISP Router @#$
ISP(config)#int s0/0/0
ISP(config-if)#ip add 200.200.200.6 255.255.255.252
ISP(config-if)#no sh
ISP(config-if)#int fa0/0
ISP(config-if)#ip add 172.16.255.254 255.255.0.0
ISP(config-if)#no sh
라. Inter-VLAN
// R1
R1>en
R1#conf t
R1(config)#int fa0/0
R1(config-if)#no sh
R1(config-if)#int fa0/0.100
R1(config-subif)#encapsulation dot1Q 100
R1(config-subif)#ip add 192.168.10.126 255.255.255.128
R1(config-subif)#int fa0/0.200
R1(config-subif)#encapsulation dot1Q 200
R1(config-subif)#ip add 192.168.20.126 255.255.255.128
R1(config-subif)#int fa0/0.300
R1(config-subif)#encapsulation dot1Q 300
R1(config-subif)#ip add 192.168.30.126 255.255.255.128
// SW0 Trunk Port 설정
SW0(config)#int fa0/24
SW0(config-if)#sw mo tr
마. 라우팅 프로토콜 설정
// R1
R1>en
R1#conf t
R1(config)#do sh ip int bri
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES unset up up
FastEthernet0/0.100 192.168.10.126 YES manual up up
FastEthernet0/0.200 192.168.20.126 YES manual up up
FastEthernet0/0.300 192.168.30.126 YES manual up up
FastEthernet0/1 unassigned YES unset administratively down down
Serial0/0/0 200.200.200.5 YES manual up up
Serial0/0/1 unassigned YES unset administratively down down
Vlan1 unassigned YES unset administratively down down
R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#network 192.168.10.0
R1(config-router)#network 192.168.20.0
R1(config-router)#network 192.168.30.0
R1(config-router)#network 200.200.200.0
R1(config-router)#no auto-summary
// ISP
ISP(config)#do sh ip route
ISP(config)#do sh ip int bri
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 172.16.255.254 YES manual up up
FastEthernet0/1 unassigned YES unset administratively down down
Serial0/0/0 200.200.200.6 YES manual up up
Serial0/0/1 unassigned YES unset administratively down down
Vlan1 unassigned YES unset administratively down down
ISP(config)#router rip
ISP(config-router)#version 2
ISP(config-router)#network 172.16.0.0
ISP(config-router)#network 200.200.200.0
ISP(config-router)#no auto-summary
ISP(config-router)#do sh ip rout
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
C 172.16.0.0/16 is directly connected, FastEthernet0/0
192.168.10.0/25 is subnetted, 1 subnets
R 192.168.10.0 [120/1] via 200.200.200.5, 00:00:00, Serial0/0/0
192.168.20.0/25 is subnetted, 1 subnets
R 192.168.20.0 [120/1] via 200.200.200.5, 00:00:00, Serial0/0/0
192.168.30.0/25 is subnetted, 1 subnets
R 192.168.30.0 [120/1] via 200.200.200.5, 00:00:00, Serial0/0/0
200.200.200.0/30 is subnetted, 1 subnets
C 200.200.200.4 is directly connected, Serial0/0/0
ISP(config-router)#
바. IOS 백업 설정(백업 서버는 Servier 172.16.0.2 로 설정)
// ISP
ISP#copy flash: tftp: // flash: tftp: 로 복사
Source filename []? c2800nm-advipservicesk9-mz.124-15.T1.bin // IOS 파일 이름
Address or name of remote host []? 172.16.0.2 // 백업할 서버 주소
Destination filename [c2800nm-advipservicesk9-mz.124-15.T1.bin]? // 엔터(파일 이름을 목적지로 보낼까요?
Writing c2800nm-advipservicesk9-mz.124-15.T1.bin...!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[OK - 50938004 bytes]
50938004 bytes copied in 0.318 secs (11614351 bytes/sec)
ISP#
[ 풀이 완료]
'Technical Certification > 정보기기운용기능사(과정평가형)' 카테고리의 다른 글
정보기기운용기능사 과정평가형 작업형 공개문제(5형) 풀이 (0) | 2024.08.23 |
---|---|
정보기기운용기능사 과정평가형 작업형 공개문제(4형) 풀이 (0) | 2024.08.23 |
정보기기운용기능사 과정평가형 작업형 공개문제(2형) 풀이 (0) | 2024.08.20 |
정보기기운용기능사 과정평가형 작업형 공개문제(1형) 풀이 (0) | 2024.08.19 |
VMware Workstation Player Download URL (0) | 2022.02.27 |