Contents

IPv6, RIPng / EIGRP / OSPF / Redistrubute

   Feb 24, 2023     3 min read

IPv4

  • IPv4
    = x.x.x.x
    = 8bit.8bit.8bit.8bit
    = 32bit
    =10진수.10진수.10진수.10진수

※ 8bit = 11111111(0~255)
Broadcast 주소 = 255.255.255.255
Loopback 주소 = 127.0.0.1
주소 없음 = 0.0.0.0

A Class (1-126), B Class (128-191), C Class (192-223) // D Class (224-239), E Class (240-255)
통신 방법 : Unicast(1:1), Multicast(1:Group), Broadcast(1:다)

ex. 192.168.10.1

IPv4 연습

  • 192.168.10.1/24 = Network 자리(192.168.10) + Host 자리(1)

IPv6

  • IPv6
    = x:x:x:x:x:x:x:x
    = 16bit:16bit:16bit:16bit:16bit:16bit:16bit:16bit
    = 16진수:16진수:16진수:16진수:16진수:16진수:16진수:16진수

※ 16bit = 1111 1111 1111 1111(0000~FFFF)
Broadcast 주소 = FFFF.FFFF.FFFF.FFFF.FFFF.FFFF.FFFF.FFFF
Loopback 주소 = ::1
주소 없음 = ::

글로벌 주소 = 2000 - 3FFF::
사이트 로컬 주소 = FDC0 - FEFF::
링크 로컬 주소 = FE80 - FEBF:: // 같은 물리적인 네트워크 내에서만 유일하면 됨.
통신 방법 : Unicast(1:1), Multicast(1:Group), Anycast(1:Nearest 1=주소 중복 가능) 주의)Broadcast 없음

ex. 2011:2022:2033:2044:2055:2066:2077:2088

-16진수 콜론 표기법
-128비트를 16비트씩 8개의 필드로 나누어 콜론(:)으로 구분
IPv6 = x:x:x:x:x:x:x:x → 1111 1111 1111 1111:

IPv6 주소 생략

방법 01.

  • 상위 0 또는 연속적인 0일 경우 생략 (중간이나 하위 0은 생략 불가)

사진첨부

방법 02.

  • 방법 02. 필드에 연속적인 0을 한 번 이상 생략 불가 (연속된 0의 필드를 생략 후 콜론(::)으로 표기)

사진첨부

연습

  • 2000:0024:3300:7777:0000:0000:999A:BBCF
    = 2000:24:3300:7777::999A:BBCF

  • 2000:0024:0000:0000:2457:0000:0000:0000
    = 2000:24:0:0:2457::

  • 2011:2022:2033:2044:2055:2066:2077:2088/64
    = Network 자리(2011:2022:2033:2044) + Host 자리(2055:2066:2077:2088)


IPv6 RIPng

Multicast (Hello Packet)
RIPv2 : 224.0.0.9
RIPng : FF02::9

ipv6 unicast-routing

interface s0/0
ipv6 address 2011::1/64
ipv6 rip 100 enable
no shut

interface g0/0
ipv6 address 2022::2/64
ipv6 rip 100 enable
no shut

ipv6 router rip 100



IPv6 EIGRP

Multicast (Hello Packet)
IPv4 : 224.0.0.10
IPv6 : FF02::10

ipv6 unicast-routing

interface s0/0
ipv6 address 2011::1/64
ipv6 eigrp 100
no shut

interface f0/0
ipv6 address 2022::2/64
ipv6 eigrp 100
no shut

ipv6 router eigrp 100
router-id 1.1.1.1
no shutdown



IPv6 OSPF

Multicast (Hello Packet)
IPv4 : 224.0.0.5 - 6
IPv6: FF02::5 - 6

ipv6 unicast-routing

interface s0/0
ipv6 address 2011::1/64
ipv6 ospf 1 area 0
no shut

interface f0/0
ipv6 address 2022::2/64
ipv6 ospf 1 area 0
no shut

ipv6 router ospf 1
router-id 1.1.1.1



R1)

ipv6 router ospf 1
router-id 1.1.1.1
area 123 virtual-link 1.1.3.3



R3)

ipv6 router ospf 1
router-id 1.1.3.3
area 123 virtual-link 1.1.1.1



IPv6 Redistribute

ipv6 router rip cisco
redistribute digrp 100 metric include-connected

ipv6 router eigrp 100
router-id 2.2.2.2
redistribute rip cisco metric 1 1 1 1 1 include-connected
no shutdown



Ex.

사진첨부

결과

사진첨부