天藍色:

天藍色:

我想將我的 Ubuntu 14.04 伺服器與 Strongswan 連接到 Microsoft Azure 網關。我只想在 Azure 和 Ubuntu 伺服器之間建立連線。在Azure中,我設定了一個動態網關。

天藍色:

虛擬網路:

10.0.1.0/24(整個虛擬網路)
10.0.1.0/27(虛擬機器子網路)
10.0.1.32/29(網關子網路)
1.1.1.1(網關 IP)

本地網路:

10.0.2.15/32(網路)
2.2.2.2(網關位址)

附 Strongswan 的 Ubuntu Server 14.04:

StrongSwan:Linux StrongSwan U5.1.2/K3.16.0-49-generic

網路:

10.0.2.15(附strongswan的ubuntu伺服器)
2.2.2.2(附NAT的閘道)

配置:

/etc/ipsec.conf:

conn azure
        type=tunnel
        closeaction=restart
        dpdaction=restart
        ike=aes256-sha1-modp1024
        esp=aes256-sha1
        reauth=no
        keyexchange=ikev2
        mobike=no
        ikelifetime=28800s
        keylife=3600s
        keyingtries=%forever
        leftauth=psk
        left=10.0.2.15             # local instance ip (strongswan)
        leftsubnet=0.0.0.0/0
        leftid=10.0.2.15           # local instance ip (strongswan)
        right=1.1.1.1              # vpn gateway ip (azure)
        rightid=1.1.1.1            # vpn gateway ip (azure)
        rightsubnet=10.0.1.0/24    # private ip segment (azure)
        auto=start

/etc/ipsec.secrests:

10.0.2.15 1.1.1.1 : PSK "secret-pre-shared-key"

系統日誌:

Sep 24 10:34:50 vpn-test charon: 04[CFG] received stroke: add connection 'azure'
Sep 24 10:34:50 vpn-test charon: 04[CFG] added configuration 'azure'
Sep 24 10:34:50 vpn-test charon: 06[CFG] received stroke: initiate 'azure'
Sep 24 10:34:50 vpn-test charon: 06[IKE] initiating IKE_SA azure[1] to 1.1.1.1
Sep 24 10:34:50 vpn-test charon: 06[ENC] generating IKE_SA_INIT request 0 [ SA KE No N(NATD_S_IP) N(NATD_D_IP) ]
Sep 24 10:34:50 vpn-test charon: 06[NET] sending packet: from 10.0.2.15[500] to 1.1.1.1[500] (1044 bytes)
Sep 24 10:34:50 vpn-test charon: 08[NET] received packet: from 1.1.1.1[500] to 10.0.2.15[500] (865 bytes)
Sep 24 10:34:50 vpn-test charon: 08[ENC] parsed IKE_SA_INIT response 0 [ SA KE No N(NATD_S_IP) N(NATD_D_IP) V V CERTREQ ]
Sep 24 10:34:50 vpn-test charon: 08[ENC] received unknown vendor ID: 2b:51:69:05:7d:7c:96:fc:bf:b5:e4:61:00:00:00
Sep 24 10:34:50 vpn-test charon: 08[ENC] received unknown vendor ID: 1d:e3:cd:b7:ea:16:b7:e5:be:08:f1
Sep 24 10:34:50 vpn-test charon: 08[IKE] local host is behind NAT, sending keep alives
Sep 24 10:34:50 vpn-test charon: 08[IKE] received 25 cert requests for an unknown ca
Sep 24 10:34:50 vpn-test charon: 08[IKE] authentication of '10.0.2.15' (myself) with pre-shared key
Sep 24 10:34:50 vpn-test charon: 08[IKE] establishing CHILD_SA azure
Sep 24 10:34:50 vpn-test charon: 08[ENC] generating IKE_AUTH request 1 [ IDi N(INIT_CONTACT) IDr AUTH SA TSi TSr N(EAP_ONLY) ]
Sep 24 10:34:50 vpn-test charon: 08[NET] sending packet: from 10.0.2.15[4500] to 1.1.1.1[4500] (316 bytes)
Sep 24 10:34:50 vpn-test charon: 09[NET] received packet: from 1.1.1.1[4500] to 10.0.2.15[4500] (68 bytes)
Sep 24 10:34:50 vpn-test charon: 09[ENC] parsed IKE_AUTH response 1 [ N(AUTH_FAILED) ]
Sep 24 10:34:50 vpn-test charon: 09[IKE] received AUTHENTICATION_FAILED notify error

相關內容