通过 IPSEC 隧道路由所有流量

通过 IPSEC 隧道路由所有流量

我在 CentOS 上使用 Strongswan 作为 IPSEC VPN 服务器。隧道启动后,是否可以告诉客户端(win7)将所有流量路由到隧道接口?

这是我的 ipsec.conf

config setup

conn %default
    ikelifetime=60m
    keylife=20m
    rekeymargin=3m
    keyingtries=1
config setup

conn %default
    ikelifetime=60m
    keylife=20m
    rekeymargin=3m
    keyingtries=1
    keyexchange=ikev2
    ike=aes256-sha1-modp1024!
    esp=aes256-sha1!
    dpdaction=clear
    dpddelay=300s
    rekey=no

conn rw-eap
    left=%defaultroute
    leftsubnet=0.0.0.0/0
    leftsourceip=62.244.57.9
    [email protected]
    leftcert=server.crt
    leftauth=pubkey
    leftfirewall=no
    right=%any
    rightauth=eap-mschapv2
    rightsourceip=62.244.57.9/29
    rightsendcert=never
    eap_identity=%any
    auto=add

相关内容