일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- lambda
- 전기차
- 라즈베리파이
- STM32
- 보안
- Android
- thread
- 에버온
- raspberry
- homeassistant
- 전기차충전기
- IOT Core
- 안드로이드
- dynamodb
- everon
- AWS
- 홈어시스턴트
- 전기차충전
- 완속충전기
- 충전기
- 파이썬
- 서버리스
- flask
- esp8266
- OCPP
- 플라스크
- 디자인패턴
- YMODEM
- 펌웨어
- 급속충전기
- Today
- Total
Louie NRT Story
[Cloud_Training] 181101 NAT, HSRP 본문
Index
1. NAT(Network Address Translation)
2. NAT 실습 - 1
3. NAT 실습 - 2
4. HSRP(Hot Standby Router Protocol)
5. HSRP 실습
1. NAT(Network Address Translation)
NAT 기능
하나의 외부IP가지고
사설IP가 사용함
사설IP를 외부IP로 변경해줌
주소 변환이 되어야함
공유기에서 IP를
IP:port - 공인 IP
공인IP:port - 공인 IP
https://한국인터넷정보센터.한국
- krnic - kisa.or.kr
공인IP를 관리함
2. NAT 실습 - 1
//=== router2 ===
line con 0
logg sy
int f0/0
ip add 10.0.1.254 255.255.255.0
no shutdown
do write
int f0/1
ip add 100.100.100.2 255.255.255.248
no shutdown
do write
rou os 10
net 10.0.1.0 0.0.0.255 area 10
net 100.100.100.0 0.0.0.7 area 10
passive-interface f0/0
do write
show ip nat translations
3. NAT 실습 - 2
#### Router1 ####
host seoul_R1
ena se babo
no ip domain-l
ser p
line con 0
exec 0 0
logg syn
pass babo1
login
line vty 0 0
exec 0 0
logg syn
pass babo2
login
int f0/0
ip add 10.0.0.254 255.255.255.0
no shutdown
int f0/1
ip add 200.200.200.1 255.255.255.248
no shutdown
do write
exit
rout ei 100
net 10.0.0.0 0.0.0.255
net 200.200.200.0 0.0.0.7
pass f0/0
do write
#### Router2 ####
enable
conf ter
host Busan_R1
no ip domain-l
ena se babo
ser p
line con 0
exec 0 0
logg syn
pass babo1
login
line vty 0 4
exec 0 0
logg syn
pass babo2
login
int f0/0
ip add 172.16.0.254 255.255.255.0
no shutdown
do write
int f0/1
ip add 200.200.200.2 255.255.255.248
no shutdown
do write
exit
rout ei 100
net 172.16.0.0 0.0.0.255
net 200.200.200.0 0.0.0.7
pass f0/0
do write
4. HSRP(Hot Standby Router Protocol)
HSRP(Hot Stadnby Router Protocol)
Cisco
VRRP(Virtual Router Redundancy Protocol)
IBM
GLBP(Gateway Load Balancing Protocol)
Down Time 시간이 없음
5. HSRP 실습
### Router 1 ###
enable
conf ter
int f0/0
ip add 1.0.0.251 255.255.255.0
no shutdown
int f0/1
ip add 10.0.0.1 255.255.255.252
no shutdown
exit
rout os 10
net 1.0.0.0 0.0.0.255 area 0
net 10.0.0.0 0.0.0.3 area 0
do write
'서버시스템' 카테고리의 다른 글
[Cloud_Class] 181105 포렌직 파일만들기,확장파티션 (0) | 2018.11.05 |
---|---|
[Cloud_Training] XenServer License Download (0) | 2018.11.02 |
[Cloud_Class] 181024,25 SVI, VLAN, VTP (0) | 2018.10.31 |
[Cloud_Class] 181023,26 Citrix 설치 (0) | 2018.10.31 |
[Cloud_Class] 181031 ACL (0) | 2018.10.31 |