5월 4일 (토) 오후 1:11

logo

  • home
  • head
  • itnews
  • product
  • mobile
  • game
  • benchmark
  • analysis
  • blog

개봉 2024.06.05. / 장르 드람 / 국가 대한민국 감독 : 조지 밀러 출연 : 안야 테일러 조이, 크리스 헴스워스 등 ...
개봉 2024.05.22. / 장르 액션 / 국가 미국 감독 : 조지 밀러 출연 : 안야 테일러 조이, 크리스 헴스워스 등 ...

IPsec VPN - HSRP 2중 경로


VPN을 구성함에 있어 하나의 경로로만 구성하면 안정성이 낮아진다.

그러므로, Intranet을 위한 VPN에 HSRP를 활용하여 이중화를 하여 안정성을 높일 수 있다.

Company_Active 라우터가 192.168.20.0/24 네트워크에 대하여 Active 상태로 작동하고

Company_Stanby 라우터는 Standby 상태로 대기중이다.

그러다가 Company_Active의 ethernet 0/1포트에 장애가 발생하면 Company_Stanby 라우터가

preempt에 의해 권한은 위임받아 Active 상태가 된다.


11.png



 


■ Client 라우터 기본 설정

Router(config)# hostname Client
Client(config)# interface ethernet 0/3
Client(config-if)# ip address 192.168.10.1 255.255.255.0
Client(config-if)# no shutdown
Client(config-if)# exit
Client(config)# interface ethernet 0/0
Client(config-if)# ip address 100.10.10.2 255.255.255.0
Client(config-if)# no shutdown
Client(config-if)# exit
Client(config)# router eigrp 10
Client(config-router)# no auto-summary
Client(config-router)# network 100.10.10.0
Client(config-router)# network 192.168.10.0
Client(config-router)# exit
Client(config)#


■ Company_Active 라우터 기본 설정

Router(config)# hostname Company_Active
Company_Active(config)# interface ethernet 0/0
Company_Active(config-if)# ip address 100.10.20.2 255.255.255.0
Company_Active(config-if)# no shutdown
Company_Active(config-if)# exit
Company_Active(config)# interface ethernet 0/1
Company_Active(config-if)# ip address 192.168.20.1 255.255.255.0
Company_Active(config-if)# no shutdown
Company_Active(config-if)# exit
Company_Active(config)# router eigrp 10
Company_Active(config-router)# no auto-summary
Company_Active(config-router)# network 100.10.20.0
Company_Active(config-router)# network 192.168.20.0
Company_Active(config-router)# exit
Company_Active(config)#

 

■ Company_Standby 라우터 기본 설정

Router(config)# hostname Company_Standby
Company_Standby(config)# interface ethernet 0/0
Company_Standby(config-if)# ip address 100.10.20.3 255.255.255.0
Company_Standby(config-if)# no shutdown
Company_Standby(config-if)# exit
Company_Standby(config)# interface ethernet 0/1
Company_Standby(config-if)# ip address 192.168.20.2 255.255.255.0
Company_Standby(config-if)# no shutdown
Company_Standby(config-if)# exit
Company_Standby(config)# router eigrp 10
Company_Standby(config-router)# no auto-summary
Company_Standby(config-router)# network 100.10.20.0
Company_Standby(config-router)# network 192.168.20.0
Company_Standby(config-router)# exit


■ ISP 라우터 기본 설정

Router(config)# hostname ISP
ISP(config)# interface ethernet 0/0
ISP(config-if)# ip address 100.10.10.1 255.255.255.0
ISP(config-if)# no shutdown
ISP(config-if)# exit
ISP(config)# interface ethernet 0/1
ISP(config-if)# ip address 100.10.20.1 255.255.255.0
ISP(config-if)# no shutdown
ISP(config-if)# exit
ISP(config)# router eigrp 10
ISP(config-router)# no auto-summary
ISP(config-router)# network 100.10.10.0
ISP(config-router)# network 100.10.20.0
ISP(config-router)# exit
ISP(config)# exit
ISP#show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     100.0.0.0/24 is subnetted, 2 subnets
C       100.10.10.0 is directly connected, Ethernet0/0
C       100.10.20.0 is directly connected, Ethernet0/1
D    192.168.10.0/24 [90/307200] via 100.10.10.2, 00:01:53, Ethernet0/0
D    192.168.20.0/24 [90/307200] via 100.10.20.3, 00:01:36, Ethernet0/1    

                     [90/307200] via 100.10.20.2, 00:01:36, Ethernet0/1

Intranet의 192.168.20.0/24 네트워크에 대한 경로가 2중으로 설정되었다.
 


----------------------------------------------------------------

게이트웨이 이중화 설정​ - SDM 접속을 위하여 로컬 계정을 추가한다.

----------------------------------------------------------------

■ HSRP 설정 - Company_Standby 라우터

Company_Standby(config)# username Hoony privilege 15 password 0 1234
Company_Standby(config)# interface ethernet 0/1
Company_Standby(config-if)# standby 1 ip 192.168.20.254
Company_Standby(config-if)# standby 1 preempt
Company_Standby(config-if)# standby 1 track ethernet 0/0
Company_Standby(config-if)# exit
Company_Standby(config)# exit
Jan 19 13:48:44.239: %HSRP-6-STATECHANGE: Ethernet0/1 Grp 1 state Standby -> Active
Jan 19 13:48:47.259: %HSRP-6-STATECHANGE: Ethernet0/1 Grp 1 state Active -> Speak

Company_Standby# show standby brief
                     P indicates configured to preempt.
                     |
Interface   Grp Prio P State    Active          Standby         Virtual IP    
Et0/1       1   100  P Standby  192.168.20.1    local           192.168.20.254
Company_Standby#


■ HSRP 설정 - Company_Active 라우터

Company_Active(config)# username Hoony privilege 15 password 0 1234
Company_Active(config)# interface ethernet 0/1
Company_Active(config-if)# standby 1 ip 192.168.20.254
Company_Active(config-if)# standby 1 priority 150
Company_Active(config-if)# standby 1 preempt
Company_Active(config-if)# standby 1 track ethernet 0/0 60
Company_Active(config-if)# exit
Company_Active(config)#exit
Jan 19 13:48:56.131: %HSRP-6-STATECHANGE: Ethernet0/1 Grp 1 state Listen -> Active
Company_Active# show standby brief
                     P indicates configured to preempt.
                     |
Interface   Grp Prio P State    Active          Standby         Virtual IP    
Et0/1       1   150  P Active   local           192.168.20.2    192.168.20.254
Company_Active#


■ SDM을 이용한 IPsec VPN 서버 설정

22.gif



■ VPN Client 프로그램을 이용한 Intranet (192.168.20.0/24) 접속


33.gif


■ isakmp on 상태 및 VPN client 접속 완료

44.png





■ 사설 Intranet 의 IP를 할당 받은 상태 확인


55.png




■ show running-config - Company-Active 라우터

...중략

username Hoony privilege 15 password 0 1234
!
aaa new-model
aaa authentication login default local   
aaa authentication login sdm_vpn_xauth_ml_1 local
aaa authorization exec default local
aaa authorization network sdm_vpn_group_ml_1 local
aaa session-id common
!
crypto isakmp policy 1
 encr 3des
 authentication pre-share
 group 2
crypto isakmp xauth timeout 15
!
crypto isakmp client configuration group Company
 key 123123
 pool SDM_POOL_1
 max-users 20
!
crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
!
crypto dynamic-map SDM_DYNMAP_1 1
 set transform-set ESP-3DES-SHA
 reverse-route
!
crypto map SDM_CMAP_1 client authentication list sdm_vpn_xauth_ml_1
crypto map SDM_CMAP_1 isakmp authorization list sdm_vpn_group_ml_1
crypto map SDM_CMAP_1 client configuration address respond
crypto map SDM_CMAP_1 65535 ipsec-isakmp dynamic SDM_DYNMAP_1
!
interface Ethernet0/0
 ip address 100.10.20.2 255.255.255.0
 half-duplex
 crypto map SDM_CMAP_1
!
ip local pool SDM_POOL_1 192.168.20.100 192.168.20.150
ip http server


출처 - http://things.blog.me/220242263076






  1. 2016년 예상되는 인공지능(artificial intelligence) 분야의 6대 트렌드

    머신러닝, 딥러닝, IoT 등의 확산에 힘입어 지난 2015년 한 해 동안 큰 주목을 받아왔던 인공지능 분야가 2016년을 맞이해 비약적 발전이 예상되고 있는 가운데... 첨부 PDF 확인 /...
    Date2015.12.29
    Read More
  2. 2015년 기업 위협 결산: 랜섬웨어 공격이 증가한 한해

    카스퍼스키랩이 지난 1년 동안 기업 대상 보안 위협을 분석한 결과, 2015년에 기업 대상 공격은 일반 공격과는 다른 사이버 공격 툴을 사용한 것으로 나타났습니다. 악성 파일을 장기간 숨기기 위해 합법적...
    Date2015.12.17
    Read More
  3. 2015년 12월 마이크로소프트 월례 패치

    마이크로소프트가 2015년 12월 월례 패치를 공개 했습니다. 이달은 모두 12건(심각성이 가장 높은 "긴급"이 9건, 2번째로 높은 "중요"가 3건이며, "긴급"패치는 인터넷 익스플로러나 엣지, 윈도우 ...
    Date2015.12.09
    Read More
  4. 구글 투명성 보고서 발표 - 페이스북이 최대

    유럽 개인정보 보호 위한 검색결과 삭제 요청 2014년 5월 유럽연합 사법재판소는 Google Spain 대 AEPD, Mario Costeja González 사건에 대한 판결에서 개인은 자신에 관한 특정 검색결과에 대해 Goog...
    Date2015.11.28
    Read More
  5. 윈도우10 PC사양 및 버전, 기능 설명

    [ 윈도우10 사양 ] Windows 7 SP1 또는 Windows 8.1 업데이트의 최신 버전을 실행 중인지 확인하세요. 최신 버전을 다운로드하려는 경우 Windows 7 SP1 또는 Windows 8.1 업데이트를 클릭하세요. ...
    Date2015.11.28
    Read More
  6. 윈도우10 메이저 업데이트 November Update ISO 파일 공개

    MS가 윈도우10 첫 메이저 업데이트 November Update의 ISO파일 제공 시작 November Update는 세부 버전으로 1511,10586 ISO 파일. ISO 파일은 MSDN 가입자용으로 출시, 다운로드한 ISO 파...
    Date2015.11.13
    Read More
  7. 윈도우 서버2012 백신 설치 (Windows Server)

    NT 서버 제품군(서버 2012 등)에서 일반적인 백신 프로그램 설치 불가 방법은 마이크로소프트의 시큐리티 에센셜을 설치 아래 내용에 따라 진행 1. http://windows.microsoft...
    Date2015.10.26
    Read More
  8. 윈도우10 빌드 10565 ISO 파일 다운로드

    마이크로소프트가 최근 발표한 윈도우10 build 10565의 ISO파일 제공을 시작 했습니다. 다운로드는 아래 링크를 클릭하시고, 클린 설치가 필요한 사용자들은 필수 다운로드 입니다. 윈도...
    Date2015.10.16
    Read More
  9. 2015년 10월 마이크로소프트 정기 패치

    다음 표에는 이번 달의 보안 공지가 심각도 순으로 요약되어 있습니다. 영향받는 소프트웨어에 대한 자세한 내용은 영향받는 소프트웨어라는 다음 절을 참조하십시오. 공지 ID 공지 제목 및 요...
    Date2015.10.15
    Read More
  10. 라데온 HBM 메모리 기술 소개

    HBM ​'최초'라는 타이틀을 놓치지 않는 AMD의 HBM가능성의 한계를 극복하는 개방형 표준 기술을 개척해 온 AMD의 또 다른 혁신   저전력 소모, 초광범위한 통신선과 혁신적인 스택트 구성...
    Date2015.10.08
    Read More
  11. AMD + 다이렉트x12 API 기술 소개

    AMD + DirectX® 12 기술Microsoft®의 새로운 DirectX® 12 API를 사용하면 현재 장착된 하드웨어에서도 성능이 현저히 빨라지고 초 당 프레임 속도가 높아지는 반면, 지연 시간은 줄어듭니다. ...
    Date2015.10.08
    Read More
  12. 최고 정보 보안 책임자(CISO)가 직면한 문제들

    당신은 보다 나은 그 무엇을 꿈꾸는 IT 보안 전문가 입니까? 당신의 승진 경력 계발은 한계가 있습니까? CISO(최고 정보 보안 책임자)란 무엇일까요? 과거에는, 기업의 사장이나 이사회에 보고를 담당하고 ...
    Date2015.10.04
    Read More
  13. AWS Lambda 이벤트 기반 클라우드 함수

    서버 없는 클라우드 프로그래밍 도전기 AWS Lambda 이벤트 기반 클라우드 함수 아마존웹서비스(AWS, Amazon Web Service)는 인터넷을 통해 IT 리소스와 애플리케이션을 필요할 때만 사용하는 대표적인...
    Date2015.09.22
    Read More
  14. [만화] 체했을 때 바늘로 손가락 따면 낫는다?!

    대식가 태연에게는 일 년에 정확히 다섯 번의 경축일이 있다. 생일, 어린이날, 크리스마스 그리고 설과 추석. 이유는 단 하나, 맛있는 음식을 원하는 만큼 모조리! 그것도 잔소리 한번 듣지 않고 먹을 ...
    Date2015.09.22
    Read More
  15. 윈도우 메일 서버 만들기 HMail Server 4.4.1

    hMail Server에 대한 전반적인 사항을 정리한다. 메일 서버로 SMTP, POP3, IMAP을 지원한다. 홈페이지 : http://www.hmailserver.com/ 다운로드 : http://www.hmailserver.com/?page=download 라이센스 :...
    Date2015.09.11
    Read More
  16. IPsec VPN - HSRP 이중 경로 설정 방법

    IPsec VPN - HSRP 2중 경로​ ​ VPN을 구성함에 있어 하나의 경로로만 구성하면 안정성이 낮아진다. 그러므로, Intranet을 위한 VPN에 HSRP를 활용하여 이중화를 하여 안정...
    Date2015.09.02
    Read More
  17. IPsec VPN 본사 - 지사 설정 방법

    IPsec VPN (Site-to-Site) VPN Site-to-Site 는 각각의 사설망 접속시에 자신이 속한 Network의 IP 주소를 그대로 가지고 연결된다. ​ ■ Interne...
    Date2015.09.02
    Read More
  18. 국내 미러리스 카메라 인기 순위 - 소니 왕국

    다시돌아온 카메라 인기순위~ 지난번은 하이엔드 카메라 인기순위를 다루어보았는데요 쟁쟁한 미러리스 카메라들이 많이 나온만큼 미러리스 카메라 인기순위를 살펴보도록 ...
    Date2015.09.01
    Read More
  19. 안드로이드 마시멜로: 안드로이드 6.0 SDK와 마지막 개발자 프리뷰

    말랑 말랑한 마시멜로를 싫어하는 분이 있을까요? 분명히 말씀드리자면 안드로이드 팀은 마시멜로를 정말 좋아합니다. 5월 구글 I/O 에서 안드로이드 M 개발자 프리뷰 버전을 공개한 이 후, 많은 분들이 M ...
    Date2015.08.28
    Read More
  20. 이제 안드로이드 웨어 시계에서도 구글 번역을 사용해보세요

    매달 5억 명 이상의 전 세계 사용자들이 모바일이나 웹으로 구글 번역을 이용해 일일 1,000억 개 이상의 단어를 번역합니다. 이제 모바일과 웹을 넘어 안드로이드 웨어가 탑재된 시계에서도 구글 번역을 사...
    Date2015.08.28
    Read More
  21. Airbnb (에어비앤비) - 색다른 숙소 특별한 여행

    Airbnb (에어비앤비) - 색다른 숙소 특별한 여행 여행을 떠나기 전, 처음 가는 여행지라면 어디에서 하루를 보내게 될지 신중히 결정하게 됩니다. 여행 경비를 줄이기 위해 도심 외곽에 숙소를 정...
    Date2015.08.28
    Read More
  22. 데이터를 잘 써먹을 수 있는 구체적인 방법들 : 연재를 마치며 - Data Movement의 미래는?

    ◎ 연재기사 ◎ ▷ 데이터를 잘 써먹을 수 있는 구체적인 방법들 ▷ 데이터를 잘 써먹을 수 있는 구체적인 방법들 : (2) 데이터의 종류와 프라이버시 ▷ 데이터를 잘 써먹을 수 있는 구체적인 방법들 : (3...
    Date2015.08.28
    Read More
  23. 2015년 8월 마이크로소프트 보안 공지

    다음 표에는 이달에 해결된 각 취약성의 악용 가능성 평가가 나와 있습니다. 취약성은 공지 ID 및 CVE ID 순으로 나열되어 있습니다. 공지에서 심각도가 긴급 또는 중요인 취약성만 포함됩니다. 이 표...
    Date2015.08.12
    Read More
  24. DDoS 봇넷 공격 72%가 10개국에 집중 (카스퍼스키)

    2015년 2분기 Kaspersky DDoS 인텔리전스 통계 조사에 따르면 봇넷 공격을 받은 곳 중 4분의 3 가량이 단 10개 국가에 집중적으로 위치하고 있는 것으로 나타났습니다. 그 중 미국과 중국은 가장 많은 공격...
    Date2015.08.06
    Read More
  25. 안드로이드 stagefright 미디어 라이브러리 취약점 주의 권고

    개요 안드로이드의 미디어 파일(동영상, 이미지 등) 처리를 담당하는 stagefright에서 다수의 정수 오버플로우 취약점이 발견됨 공격자가 악성 미디어 파일이 포함된 MMS 메시지를 안드로이드 스마트 기기...
    Date2015.08.04
    Read More
  26. 전염병의 제왕, 천연두를 박멸하기까지

    가뭄과 역병은 역사적으로 큰 위기다. 한 나라가 망하기도 하고, 전쟁에서 패하는 원인이 되기도 한다. 나라가 망하는 원인을 딱 한 가지로 속단할 순 없지만, 기근(饑饉, 흉년으로 양식이 모자라 굶주리...
    Date2015.08.04
    Read More
  27. 윈도우10 업데이트 방법 (반드시 하세요)

    하단 32비트 / 64비트 버전에 맞춰서 실행 기존 설치된 프로그램 및 데이터 모두 유지 가능 Windows 10을 설치하거나 다시 설치해야 하는 경우 이 페이지의 도구를 사용하여 USB...
    Date2015.07.31
    Read More
  28. 오피스에서 구글 드라이브 파일을 직접 여는 플러그인

    구글이 윈도우 데스크탑 버전 오피스에서 구글 드라이브(Google Drive)에 저장된 클라우드 상의 Word와 Excel파일을 직접 열게 하는 오피스용 플러그인 Google Drive plug-in for Microsoft O...
    Date2015.07.22
    Read More
Board Pagination Prev 1 ... 10 11 12 13 14 15 16 17 18 19 ... 47 Next
/ 47