Azure:

Azure:

我想使用 Strongswan 将我的 Ubuntu 14.04 服务器连接到 Microsoft Azure Gateway。我只想在 Azure 和该 Ubuntu 服务器之间建立连接。在 Azure 中我配置了一个动态网关。

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

相关内容