JY Academy

정보기기운용기능사 과정평가형 작업형 공개문제(3형) 풀이 본문

Technical Certification/정보기기운용기능사(과정평가형)

정보기기운용기능사 과정평가형 작업형 공개문제(3형) 풀이

isimtong 2024. 8. 21. 20:20

[ 토폴리지 원본]

정보기기운용기능사 작업형 문제(3형).pdf
0.10MB

 

[공개과제 3형 문제지]

정보기기운용기능사 작업형 문제(3형).pdf
0.10MB

 

[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

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

Inter-VLAN 설정 후 반드시 PC간 통신이 되는지 확인

 

 

 마.  라우팅 프로토콜 설정

// 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 라우터에 IOS 파일을 확인 후 블럭 설정하고 마우스 오른쪽 버튼 누르고 복사

 

// 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#

 

파일이 Server 172.16.0.2 에 저장이 되었는지 반드시 확인

 

[ 풀이 완료]

[토폴리지] 과정평가형 국가기술자격 2차평가 공개문제 3형 풀이 완료.pkt
0.10MB