USB మోడెమ్ ద్వారా Mikrotik hEX S మరియు Juniper SRX మధ్య IPSec GRE సొరంగం సృష్టించడం

లక్ష్యం

Mikrotik మరియు Juniper SRX లైన్ వంటి రెండు పరికరాల మధ్య VPN టన్నెల్‌ను నిర్వహించడం అవసరం.

మన దగ్గర ఏమి ఉంది?

Mikrotik నుండి, మేము Mikrotik వికీ వెబ్‌సైట్‌లో IPSec హార్డ్‌వేర్ ఎన్‌క్రిప్షన్‌కు మద్దతు ఇవ్వగల మోడల్‌ను ఎంచుకున్నాము; మా అభిప్రాయం ప్రకారం, ఇది చాలా కాంపాక్ట్ మరియు చవకైనదిగా మారింది, అవి Mikrotik hEXS.

USB మోడెమ్ సమీప మొబైల్ ఆపరేటర్ నుండి కొనుగోలు చేయబడింది; మోడల్ Huawei E3370. మేము ఆపరేటర్ నుండి డిస్‌కనెక్ట్ చేయడానికి ఎటువంటి కార్యకలాపాలను నిర్వహించలేదు. ప్రతిదీ ప్రామాణికమైనది మరియు ఆపరేటర్ స్వయంగా కుట్టినది.

కోర్ జునిపర్ SRX240H సెంట్రల్ రూటర్‌ని కలిగి ఉంది.

ఏం జరిగింది

GRE టన్నెల్ చుట్టబడిన మోడెమ్‌ను ఉపయోగించి, స్టాటిక్ చిరునామా లేకుండా, సెల్యులార్ ఆపరేటర్ ద్వారా IPsec కనెక్షన్‌ని సృష్టించడానికి మిమ్మల్ని అనుమతించే పని పథకాన్ని అమలు చేయడం సాధ్యమైంది.

ఈ కనెక్షన్ రేఖాచిత్రం బీలైన్ మరియు మెగాఫోన్ USB మోడెమ్‌లలో ఉపయోగించబడుతుంది మరియు పని చేస్తుంది.

కాన్ఫిగరేషన్ క్రింది విధంగా ఉంది:

జునిపెర్ SRX240H కోర్‌లో ఇన్‌స్టాల్ చేయబడింది
స్థానిక చిరునామా: 192.168.1.1/24
బాహ్య చిరునామా: 1.1.1.1/30
GW: 1.1.1.2

రిమోట్ పాయింట్

మైక్రోటిక్ హెక్స్ ఎస్
స్థానిక చిరునామా: 192.168.152.1/24
బాహ్య చిరునామా: డైనమిక్

ఇది ఎలా పని చేస్తుందో అర్థం చేసుకోవడంలో మీకు సహాయపడే చిన్న రేఖాచిత్రం:

USB మోడెమ్ ద్వారా Mikrotik hEX S మరియు Juniper SRX మధ్య IPSec GRE సొరంగం సృష్టించడం

జునిపెర్ SRX240 కాన్ఫిగరేషన్:

JUNOS సాఫ్ట్‌వేర్ విడుదల [12.1X46-D82]

జునిపెర్ కాన్ఫిగరేషన్

interfaces {
    ge-0/0/0 {
        description Internet-1;
        unit 0 {
            family inet {
                address 1.1.1.1/30;
            }
        }
    }
    gr-0/0/0 {
        unit 1 {
            description GRE-Tunnel;
            tunnel {
                source 172.31.152.2;
                destination 172.31.152.1;
            }
            family inet;    
    vlan {
        unit 0 {
            family inet {
                address 192.168.1.1/24;
            }
        }
    st0 {
        unit 5 {
            description "Area - 192.168.152.0/24";
            family inet {
                mtu 1400;
            }
        }
routing-options {
    static {
        route 0.0.0.0/0 next-hop 1.1.1.2;
        route 192.168.152.0/24 next-hop gr-0/0/0.1;
        route 172.31.152.0/30 next-hop st0.5;
    }
    router-id 192.168.1.1;
}
security {
    ike {
        traceoptions {
            file vpn.log size 256k files 5;
            flag all;
        }
        policy ike-gretunnel {
            mode aggressive;
            description area-192.168.152.0;
            proposal-set standard;
            pre-shared-key ascii-text "mysecret"; ## SECRET-DATA
        }
        gateway gw-gretunnel {
            ike-policy ike-gretunnel;
            dynamic inet 172.31.152.1;
            external-interface ge-0/0/0.0;
            version v2-only;
        }
    ipsec {
        }
        policy vpn-policy0 {
            perfect-forward-secrecy {
                keys group2;
            }
            proposal-set standard;
        }
        vpn vpn-gretunnel {
            bind-interface st0.5;
            df-bit copy;
            vpn-monitor {
                optimized;
                source-interface st0.5;
                destination-ip 172.31.152.1;
            }
            ike {
                gateway gw-gretunnel;
                no-anti-replay;
                ipsec-policy vpn-policy0;
                install-interval 10;
            }
            establish-tunnels immediately;
        }
    }
    policies {  
        from-zone vpn to-zone vpn {
            policy st-vpn-vpn {
                match {
                    source-address any;
                    destination-address any;
                    application any;
                }
                then {
                    permit;
                    log {
                        session-init;   
                        session-close;
                    }
                    count;
                }
            }
        }
        from-zone trust to-zone vpn {
            policy st-trust-to-vpn {
                match {
                    source-address any;
                    destination-address any;
                    application any;
                }
                then {                  
                    permit;
                    log {
                        session-init;
                        session-close;
                    }
                    count;
                }
            }
        }
        from-zone vpn to-zone trust {
            policy st-vpn-to-trust {
                match {
                    source-address any;
                    destination-address any;
                    application any;
                }
                then {
                    permit;
                    log {
                        session-init;
                        session-close;
                    }
                    count;
                }
            }
        }
    zones {                             
        security-zone trust {
                vlan.0 {
                    host-inbound-traffic {
                        system-services {
                            all;
                        }
                        protocols {
                            all;
                        }
                    }
                }
        security-zone vpn {
            interfaces {
                st0.5 {
                    host-inbound-traffic {
                        protocols {
                            ospf;
                        }
                    }
                }
                gr-0/0/0.1 {
                    host-inbound-traffic {
                        system-services {
                            all;
                        }
                        protocols {
                            all;        
                        }
                    }
                }
        security-zone untrust {
            interfaces {
                ge-0/0/0.0 {
                    host-inbound-traffic {
                        system-services {
                            ping;
                            ssh;
                            ike;
                        }
                    }
                }
            }
        }
vlans {                                 
    vlan-local {
        vlan-id 5;
        l3-interface vlan.1;
    }

Mikrotik hEX S కాన్ఫిగరేషన్:

RouterOS సాఫ్ట్‌వేర్ వెర్షన్ [6.44.3]

Mikrotik కాన్ఫిగరేషన్

/ip address
add address=172.31.152.1/24 comment=GRE-Tunnel interface=gre-srx network=172.31.152.0
add address=192.168.152.1/24 comment=Local-Area interface=bridge network=192.168.152.0

/interface gre
add comment=GRE-Tunnel-SRX-HQ !keepalive local-address=172.31.152.1 name=gre-srx remote-address=172.31.152.2

/ip ipsec policy group
add name=srx-gre

/ip ipsec profile
add dh-group=modp1024 dpd-interval=10s name=profile1

/ip ipsec peer
add address=1.1.1.1/32 comment=GRE-SRX exchange-mode=aggressive local-address=172.31.152.1 name=peer2 profile=profile1

/ip ipsec proposal
set [ find default=yes ] enc-algorithms=aes-256-cbc,aes-128-cbc,3des
add enc-algorithms=aes-128-cbc,3des name=proposal1

/ip route
add distance=10 dst-address=192.168.0.0/16 gateway=gre-srx

/ip ipsec identity
add comment=IPSec-GRE my-id=address:172.31.152.1 peer=peer2 policy-template-group=srx-gre secret=mysecret

/ip ipsec policy
set 0 disabled=yes
add dst-address=0.0.0.0/0 proposal=proposal1 sa-dst-address=1.1.1.1 sa-src-address=172.31.152.1 src-address=172.31.152.0/30 tunnel=yes

/ip address
add address=172.31.152.1/24 comment=GRE-Tunnel interface=gre-srx network=172.31.152.0
add address=192.168.152.1/24 comment=Local-Area interface=bridge network=192.168.152.0

ఫలితంగా:
జునిపెర్ SRX వైపు నుండి

netscreen@srx240> ping 192.168.152.1  
PING 192.168.152.1 (192.168.152.1): 56 data bytes
64 bytes from 192.168.152.1: icmp_seq=0 ttl=64 time=29.290 ms
64 bytes from 192.168.152.1: icmp_seq=1 ttl=64 time=28.126 ms
64 bytes from 192.168.152.1: icmp_seq=2 ttl=64 time=26.775 ms
64 bytes from 192.168.152.1: icmp_seq=3 ttl=64 time=25.401 ms
^C
--- 192.168.152.1 ping statistics ---
4 packets transmitted, 4 packets received, 0% packet loss
round-trip min/avg/max/stddev = 25.401/27.398/29.290/1.457 ms

మైక్రోటిక్ నుండి

net[admin@GW-LTE-] > ping 192.168.1.1 
  SEQ HOST                                     SIZE TTL TIME  STATUS                                                                                                                                               
    0 192.168.1.1                                56  64 34ms 
    1 192.168.1.1                                56  64 40ms 
    2 192.168.1.1                                56  64 37ms 
    3 192.168.1.1                                56  64 40ms 
    4 192.168.1.1                                56  64 51ms 
    sent=5 received=5 packet-loss=0% min-rtt=34ms avg-rtt=40ms max-rtt=51ms 

కనుగొన్న

పని పూర్తయిన తర్వాత, మేము స్థిరమైన VPN టన్నెల్‌ని అందుకున్నాము, రిమోట్ నెట్‌వర్క్ నుండి మేము జునిపెర్ వెనుక ఉన్న మొత్తం నెట్‌వర్క్‌ను యాక్సెస్ చేయవచ్చు మరియు తదనుగుణంగా వెనుకకు.

ఈ పథకంలో IKE2ని ఉపయోగించమని నేను సిఫార్సు చేయను; నిర్దిష్ట పరికరాన్ని రీబూట్ చేసిన తర్వాత, IPSec పెరగని పరిస్థితి ఏర్పడింది.

మూలం: www.habr.com

ఒక వ్యాఖ్యను జోడించండి