Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Vlan
- tunneling
- OSI 7 layer
- GLBP
- 장비
- OSPF
- eigrp
- rip
- 명령어
- ACL
- Chrony
- 헤더
- crontab
- 스위치
- 라우터
- ospfv3
- vrrp
- Etherchannel
- Inter VLAN
- ipv6
- eigrpv2
- ripng
- stp
- CKA
- NAT
- DHCP
- Redistribute
Archives
- Today
- Total
Net Eng
IPv6 over IPv4 Tunneling - 2 본문
■ 작업 순서
1. R1 ~ R5까지 IPv4에 대한 경로 학습이 모두 이루어 지도록 함.
2. 본사 <==> 지사-A에 대한 터널 구성 및 IPv6용 라우팅 프로토콜 구성
3. 본사 <==> 지사-B에 대한 터널 구성 및 IPv6용 라우팅 프로토콜 구성
■ 라우터 & PC IP 주소 부여
R1 라우터
conf t
ipv6 unicast-routing
int s1/0
ip addr 192.168.12.1 255.255.255.0
no sh
int fa0/0
ipv6 addr 2001:1:1:1::1/64
no sh
R2 라우터
conf t
int s1/0
ip addr 192.168.12.2 255.255.255.0
no sh
int s1/1
ip addr 192.168.23.1 255.255.255.0
no sh
int s1/2
ip addr 192.168.24.1 255.255.255.0
no sh
R3 라우터
conf t
int s1/1
ip addr 192.168.23.2 255.255.255.0
no sh
int s1/0
ip addr 192.168.35.1 255.255.255.0
no sh
R4 라우터
conf t
ipv6 unicast-routing
int s1/2
ip addr 192.168.24.2 255.255.255.0
no sh
int fa0/0
ipv6 addr 2001:2:2:2::1/64
no sh
R5 라우터
conf t
ipv6 unicast-routing
int s1/0
ip addr 192.168.35.2 255.255.255.0
no sh
int fa0/0
ipv6 addr 2001:3:3:3::1/64
no sh
PC1 ~ PC3
PC1
ip 2001:1:1:1::2/64 2001:1:1:1::1
PC2
ip 2001:2:2:2::2/64 2001:2:2:2::1
PC3
ip 2001:3:3:3::2/64 2001:3:3:3::1
■ 라우팅 프로토콜 설정
□ RIPv2
R1 라우터
conf t
router rip
ver 2
no auto-summary
net 192.168.12.0
R2 라우터
conf t
router rip
ver 2
no auto-summary
net 192.168.12.0
□ OSPF 설정
R2 라우터
conf t
router ospf 1
net 192.168.23.0 0.0.0.255 area 1
net 192.168.24.0 0.0.0.255 area 0
R3 라우터
conf t
router ospf 1
net 192.168.23.0 0.0.0.255 area 1
R4 라우터
conf t
router ospf 1
net 192.168.24.0 0.0.0.255 area 0
□ EIGRP 설정
R3 라우터
conf t
router eigrp 200
net 192.168.35.0
no auto-summary
R5 라우터
conf t
router eigrp 200
net 192.168.35.0
no auto-summary
■ 재분배 설정
▶ R2 라우터에서는 RIPv2 구역에 OSPF 정보를, OSPF 구역에 RIPv2 정보를 전달해야 한다.
R2 라우터
conf t
router rip
redistribute ospf 1 metric 1
router ospf 1
redistribute rip subnets
▶ R3 라우터에서는 OSPF 구역에 EIGRP 정보를, EIGRP 구역에 OSPF 정보를 전달해야 한다.
R3 라우터
conf t
router ospf 1
redistribute eigrp 200 metric 1
router eigrp 200
redistribute ospf 1 metric 1544 2000 255 1 1500
■ 터널링 구성
□ 본사 <=> 지사-A 로 터널링 구성
R1 라우터
conf t
int tu 0
ipv6 addr 2001:13:13:13::1/64
tun source 192.168.12.1
tu dest 192.168.24.2
R4 라우터
conf t
int tu 0
ipv6 addr 2001:13:13:13::2/64
tun source 192.168.24.2
tu dest 192.168.12.1
□ 본사 <=> 지사-B 로 터널링 구성
R1 라우터
conf t
int tu 1
ipv6 addr 2001:14:14:14::1/64
tun source 192.168.12.1
tu dest 192.168.35.2
R5 라우터
conf t
int tu 1
ipv6 addr 2001:14:14:14::2/64
tun source 192.168.35.2
tu dest 192.168.12.1
■ 터널 인터페이스 라우팅 프로토콜 설정
□ 본사 <=> 지사-A RIP 라우팅 프로토콜
R1 라우터
conf t
ipv6 router rip 1
int fa0/0
ipv6 rip 1 enable
int tu 0
ipv6 rip 1 enable
R4 라우터
conf t
ipv6 router rip 1
int fa0/0
ipv6 rip 1 enable
int tu 0
ipv6 rip 1 enable
□ 본사 <=> 지사-B RIP 라우팅 프로토콜
R1 라우터
conf t
ipv6 router rip 2
int fa0/0
ipv6 rip 2 enable
int tu 1
ipv6 rip 2 enable
R5 라우터
conf t
ipv6 router rip 2
int fa0/0
ipv6 rip 2 enable
int tu 1
ipv6 rip 2 enable
■ 실습파일
'Network > 실습' 카테고리의 다른 글
원격 접근 ACL (0) | 2024.06.18 |
---|---|
ACL (접근통제목록) (0) | 2024.06.14 |
IPv6 over IPv4 Tunneling (0) | 2024.06.14 |
IPv6 - Routing Protocol - EIGRPv2 (1) | 2024.06.14 |
IPv6 - Routing Protocol - OSPFv3 (0) | 2024.06.14 |