일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 라우터
- eigrpv2
- tunneling
- Vlan
- 장비
- 스위치
- NAT
- ospfv3
- OSI 7 layer
- ACL
- GLBP
- Etherchannel
- rip
- DHCP
- 헤더
- ipv6
- eigrp
- CKA
- Inter VLAN
- 명령어
- Chrony
- Redistribute
- stp
- vrrp
- crontab
- OSPF
- ripng
- Today
- Total
Net Eng
Static Routing 본문
■ 라우터의 핵심기능
1. Packet Switching : 패킷을 보낼지 말지 결정
2. Path Selection : 보낸다면 어느 인터페이스로 보낼 것인지 결정
■ 라우터 필수 구성
1. Routed Protocol : 로컬 네트워크 등록
-라우터 인터페이스에 유니캐스트 IP할당, 포트 활성화
-라우팅 테이블에서 확인하면 NetID로 표시
-sh run 명령으로 각 인터페이스별 IP확인 가능
2. Routing Protocol : 원격지 네트워크 학습
■Static구성
-일반 구성 : 목적지주소, 목적지 서브넷마스크, 로컬 인터페이스 이름(다음 홉 IP)
ip route 192.168.1.0 255.255.255.0 192.168.12.2
□ Default-route : Stub network에서 불특정 다수의 목적지를 가지는 경우. ip route 0.0.0.0 0.0.0.0 s2/0
□ Floating-route : 2개 이상의 회선으로 연결된 네트워크에서 주 경로와 백업 경로를 이용해 장애 내성(Fault-Tolerante)기능을 가지는 구성. AD값을 이용함.
■ 라우터 주소부여
R1 라우터
en
conf t
hostname R1
no ip domain-lookup
int fa0/0
no sh
ip addr 192.168.1.254 255.255.255.0
int s2/0
ip addr 192.168.12.1 255.255.255.0
no sh
R2 라우터
en
conf t
hostname R2
no ip domain-lookup
int s3/0
ip addr 192.168.12.2 255.255.255.0
no sh
int s2/0
ip addr 192.168.23.1 255.255.255.0
no sh
int fa0/0
ip addr 192.168.2.254 255.255.255.0
no sh
R3 라우터
en
conf t
hostname R3
no ip domain-lookup
int s3/0
ip addr 192.168.23.2 255.255.255.0
no sh
int fa0/0
ip addr 192.168.3.254 255.255.255.0
no sh
■ 원격지 네트워크 등록
R1 라우터
conf t
ip route 192.168.2.0 255.255.255.0 s2/0
ip route 192.168.3.0 255.255.255.0 s2/0
ip route 192.168.23.0 255.255.255.0 192.168.12.2
R2 라우터
conf t
ip route 192.168.1.0 255.255.255.0 s3/0
ip route 192.168.3.0 255.255.255.0 192.168.23.2
R3 라우터
conf t
ip route 192.168.1.0 255.255.255.0 s3/0
ip route 192.168.2.0 255.255.255.0 s3/0
ip route 192.168.12.0 255.255.255.0 s3/0
▶ 설정을 마친 후 R4를 추가하고, 172.16.0.0/24, 172.16.1.0/24, 192.168.34.0/24네트워크를 구성한다.
R4 라우터
en
conf t
hostname R4
no ip domain-lookup
int fa0/0
ip addr 172.16.0.254 255.255.255.0
no sh
int fa1/0
ip addr 172.16.1.254 255.255.255.0
no sh
int s3/0
ip addr 192.168.34.2 255.255.255.0
no sh
exit
ip route 192.168.0.0 255.255.252.0 s3/0
ip route 192.168.12.0 255.255.255.0 s3/0
ip route 192.168.23.0 255.255.255.0 s3/0
R3 라우터
en
conf t
int s2/0
ip addr 192.168.34.1 255.255.255.0
no sh
exit
ip route 172.16.0.0 255.255.254.0 s2/0
R1, R2에도 R4의 로컬 네트워크 정보 추가 구성
conf t
ip route 172.16.0.0 255.255.254.0 s2/0
ip route 192.168.34.0 255.255.255.0 s2/0
■ Static Default-route구성
-Stub Nework : 외부로 통하는 경로가 단 1개인 네트워크
스텁 네트워크를 구성하는 라우터에서는 Static Default-route를 구성하여 불특정 다수의 목적지와 통신이 가능하도록 구성함.
ip route 0.0.0.0 0.0.0.0 (next홉 IP or 인터페이스)
■ Static Floating Route
■ 라우터 IP 설정
R1 라우터
en
conf t
int s2/0
ip addr 172.16.12.1 255.255.255.0
no sh
int s3/0
ip addr 172.16.31.1 255.255.255.0
no sh
int fa0/0
ip addr 192.168.1.254 255.255.255.0
no sh
R2 라우터
en
conf t
int s2/0
ip addr 172.16.23.1 255.255.255.0
no sh
int s3/0
ip addr 172.16.12.2 255.255.255.0
no sh
int fa0/0
ip addr 192.168.2.254 255.255.255.0
no sh
R3 라우터
en
conf t
int s2/0
ip addr 172.16.31.2 255.255.255.0
no sh
int s3/0
ip addr 172.16.23.2 255.255.255.0
no sh
int fa0/0
ip addr 192.168.3.254 255.255.255.0
no sh
■ 원격지 네트워크 등록
R1 라우터
conf t
ip route 192.168.2.0 255.255.255.0 s2/0
ip route 192.168.3.0 255.255.255.0 s3/0
R2 라우터
conf t
ip route 192.168.1.0 255.255.255.0 s3/0
ip route 192.168.3.0 255.255.255.0 s2/0
R3 라우터
conf t
ip route 192.168.1.0 255.255.255.0 s2/0
ip route 192.168.2.0 255.255.255.0 s3/0
▶ 이 상태에서 R1에 192.168.2.0/24을 목적지로 하는 정적 설정을 추가해 본다.
R1 라우터
conf t
ip route 192.168.2.0 255.255.255.0 s3/0
설정 후 R1의 라우팅 테이블 확인
R1#sh ip route
-------------------중간 생략-----------------
S 192.168.2.0/24 is directly connected, Serial2/0
is directly connected, Serial3/0
S 192.168.3.0/24 is directly connected, Serial3/0
▶ 192.168.2.0이 2줄이 된걸 볼 수 있는데, 이 경우는 부하분산(Load Balance)상태임.
ip route 192.168.2.0 255.255.255.0 s3/0설정을 삭제 후 플로팅 설정
conf t
no ip route 192.168.2.0 255.255.255.0 s3/0
ip route 192.168.2.0 255.255.255.0 s3/0 10
ip route 192.168.2.0 255.255.255.0 s2/0
ip route 192.168.3.0 255.255.255.0 s2/0 10
▶ 인터페이스 뒤에 AD 값을 부여해 라우팅 정보를 넣어준다.
R2 라우터
conf t
ip route 192.168.1.0 255.255.255.0 s2/0 10
ip route 192.168.3.0 255.255.255.0 s3/0 10
R3 라우터
conf t
ip route 192.168.1.0 255.255.255.0 s3/0 10
ip route 192.168.2.0 255.255.255.0 s2/0 10
■ AD(Administrative Distance-관리거리)
라우터가 동일한 목적지에 대한 학습을 최소한 2개 이상으로 한 경우 어느것을 우선할 것인지의 여부를 결정하기 위해 사용.
0~255까지의 숫자로 구성하며 낮을수록 우선함.
=>직접 연결된 네트워크는 AD값 0을 갖고, 다음 홉 IP를 사용한 경우 AD값 1을 가짐.
▶ 등록 후 R1 라우터의 S2/0 인터페이스를 셧다운 시키면 자동으로 부경로가 대체되어 라우팅 테이블에 올라온것을 볼 수 있다.
▶ 주 경로가 셧다운 되었지만 정상적으로 부 경로를 통해 Ping 통신이 가능한 것을 확인할 수 있고, 이를 통해 장애 내성이 가능한 것을 확인할 수 있다.
■ 실습파일
'Network > 실습' 카테고리의 다른 글
Routing Protocol - OSPF - 1 (0) | 2024.06.14 |
---|---|
Routing Protocol - RIP (0) | 2024.06.14 |
STP(Spaning Tree Protocol) (0) | 2024.06.14 |
Inter Vlan - (3) (0) | 2024.06.14 |
Inter Vlan - (2) (0) | 2024.06.14 |