일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 통신설비기능장 실기
- 통신설비
- 네트워크
- 사이버 보안
- 원격접속(telnet)
- trunk port
- 통신설비기능장
- 가상머신 추가
- Vmware
- dhcp
- 통신설비기능장 샘플문제
- 가상머신 삭제
- 특성화고
- 콘솔(console)
- 클라우드컴퓨팅
- packtracer
- Azure체험
- MS Azure 체험
- VMware 사용법
- RIP
- 대양고등학교
- 가상머신
- web
- inter-vlan
- VLAN
- Debian 설치
- 프로그래밍
- IT
- 부산
- Today
- Total
JY Academy
(2025-09-19, 사이버 보안 동아리) 다중 라우팅 , VPN, HSRP, EtherChannel 등 실습해 보기 본문
(2025-09-19, 사이버 보안 동아리) 다중 라우팅 , VPN, HSRP, EtherChannel 등 실습해 보기
isimtong 2025. 9. 19. 11:21[ 실습 토폴리지 ]
1. 토폴리지를 직접 그리고 각 장치에 IP 설정하기
2. 라우팅 프로토콜 재분배
조건>> 토폴리지와 같이 OSPF 1 Area 0, EIGRP AS 10 라우팅 프로토콜을 적용하고 재분배 하시오.
가. (경계선 기준) 각 라우터 해당하는 라우팅 프로토콜 설정
R1(config)#router ospf 1
R1(config-router)#router-id 1.1.1.1
// router-id는 라우터 번호로 표기 함, 실제는 자동으로 부여됨
R1(config-router)#network 192.168.0.0 0.0.0.255 area 0
R1(config-router)#network 20.0.0.0 0.0.0.3 area 0
R2(config)#router ospf 1
R2(config-router)#router-id 2.2.2.2
R2(config-router)#network 30.0.0.0 0.0.0.3 area 0
R2(config-router)#network 192.168.0.0 0.0.0.255 area 0
R3(config)#router ospf 1
R3(config-router)#router-id 3.3.3.3
R3(config-router)#network 10.10.10.0 0.0.0.3 area 0
R3(config-router)#network 20.0.0.0 0.0.0.3 area 0
R3(config-router)#network 30.0.0.0 0.0.0.3 area 0
R3(config-router)#do sh ip os ne
// 네이버(이웃) 확인
Neighbor ID Pri State Dead Time Address Interface
4.4.4.4 0 FULL/ - 00:00:38 10.10.10.2 Serial0/0/0
R4(config)#router eigrp 10
R4(config-router)#no auto-summary
R4(config-router)#eigrp router-id 4.4.4.4
// router-id는 라우터 번호로 표기 함, 실제는 자동으로 부여됨
R4(config-router)#network 50.10.10.0 0.0.0.3
R4(config-router)#exit
R4(config)#router ospf 1
R4(config-router)#router-id 4.4.4.4
R4(config-router)#network 10.10.10.0 0.0.0.3 area 0
R4(config-router)#network 40.10.10.0 0.0.0.3 area 0
R5(config)#router ospf 1
R5(config-router)#router-id 5.5.5.5
R5(config-router)#network 40.10.10.0 0.0.0.3 area 0
R5(config-router)#network 200.200.10.0 0.0.0.255 area 0
R6(config)#router eigrp 10
R6(config-router)#no auto-summary
R6(config-router)#eigrp router-id 6.6.6.6
R6(config-router)#net 50.10.10.0 0.0.0.3
R6(config-router)#net 200.200.20.0 0.0.0.255
R6(config-router)#net 192.168.10.0 0.0.0.255
나. (경계선 기준) 라우팅 프로토콜 재분배
R4(config)#router eigrp 10
R4(config-router)#redistribute ospf 1 metric 1544 2000 255 1 1500
// eigrp 10 한테, ospf를 조건에 맞게
R4(config-router)#exit
R4(config)#router ospf 1
R4(config-router)#redistribute eigrp 10 subnets
// ospf 1 한테, eigrp를 조건에 맞게