R's Note

SVI,routing protocol 본문

Network/기초

SVI,routing protocol

Nenlin2 2015. 8. 17. 15:06
    • Switch Port 종류
      • L2 Port : access / trunk / tunnel
      • L3 Port : routed port / SVI

     

    • L3 switch에서 routing 기능을 이용하기 위해서 입력하는 명령어

    config)#ip routing //활성화 해줘야 routing기능이 동작

    • L3 switch에서 L3 Port 활성화 시키기 위해서 입력하는 명령어

    config-if)#no switchport // 2계층 Port 기능 비활성화 하여 3계층 Port 동작.

     

    Routing protocol 구분

    • distance vector : RIP, IGRP, EIGRP(Advensed Distance Vector)
    • link-state : OSPF, IS-IS

     

    router-id :  모양만 IP link-state방식(+eigrp)에서 사용하는 router 식별자.

    router-id 우선순위 : 자신의 정보 높은정보.

     1. 수동설정.

     2. 가상 인터페이스 (loop back)

     3. 실제 인터페이스 중에 선택.

    Neighbor : 관계를 맺어 변화에 대한 반응.

    관계맺는 조건

    1. Router-ID 서로 같으면 안됨.
    2. Hello Hold Time 다를경우
    3. area 번호가 다를 경우 .

     

    OSPF 복습

     ABR : Area들의 경계에 router

     ASBR : 재분배를 통해 분배되는 router.

     LSA 패킷 : 정보교환에 사용되는 패킷.

    sutb, totally stub, NSSA

     

     

    • L3 Switch
    1. Routed port
      1. router major interface 동일.!
      2. 차이점은 L3 switch에서 ip routing 통해 routing 활성화 해주어야한다는것과, L3 port 사용하기 위해 no switchport명령어를 사용하는것.
    2. SVI(Switch virtual interface)
      • vlan 으로 사용하는 가상의 interface
      • L2 switch 관리용으로 1개의 svi 사용가능. 여러개 생성시 마지막에 사용된것만 활성화 . 주로 원격접속에 사용.
      • L3 switch 여러개의 svi 사용가능.
      • SVI 존재 조건 2가지
        • vlan 존재해야 한다.
        • 해당 vlan 지나갈수 있는 port 1개라도 있어야한다.

    (trunk 가능! 아니면 access port 1 이상)

    • 연결 방법.
      1. BB GW 링크를 Trunk 설정한다.
      2. SVI 인터페이스마다 각각 생성후 IP 할당한다.
      3. routing 활성화 한다.
    • L2 switch gateway 입력명령어

    config)#ip default-gateway (gatewayIP)

     

    중요 Cisco Express Forwarding : 추후 설명 CEF 모델.

    http://en.wikipedia.org/wiki/Cisco_Express_Forwarding

     

    중요 3Lyaer Hierarchical Network Model

    원본 위치 <http://www.w7cloud.com/cisco-3-layer-hierarchical-network-model-core-distribution-access/>

    http://www.cisco.com/en/US/docs/solutions/Enterprise/Campus/HA_campus_DG/hacampusdg.html

    3단계로 구분하여 구성

    Core Layer : High Speed Switching 목적! 최소 10GB이상의 Ethernet port지원해야함. 네트워크 규모가 작을 경우엔 필요사항은 아님.

    • 요구사항 : High Speed!

    Distribution Layer : 최소 L3 이상의 기능을 가지는 Switch 사용.

    • 요구사항 : routing, 이중화(가용성 고려), vlan, etherchnel, acl,

    Access Layer : End User들과 연결되는 계층 주로 저렴한 switch 사용.

    • 요구사항 : Port Security, VLAN, QoS(퀄리티 오브 서비스), Etherchannel
    • QoS : 서비스의 중요도에 따라 우선순위를 정하여 처리하는 기술.


'Network > 기초' 카테고리의 다른 글

DHCP  (0) 2015.08.17
NAT(Network Address Translation)  (0) 2015.08.17
DHCP  (0) 2015.03.26
Gateway 이중화 기법 - FHRP  (0) 2015.03.26
VLAN(Virtual Local Area Network)  (0) 2015.03.26
Comments