strongSwan IKEv2 Client

Hi All,

I'm trying to setup a strongSwan IKEv2 VPN client on my router running openWRT. I've managed to get the VPN client connecting to the server but I can't figure out how to route any traffic through the VPN.

This is my /etc/swanctl/swanctl.conf:

connections {
    ikev2-vpn {
        vips = 0.0.0.0,::
        version = 2
        proposals = aes128-sha1-modp1024  # Phase 1 proposals

        remote_addrs = ...

        local {
            auth = eap-mschapv2
            eap_id = ...
        }
        remote {
            auth = pubkey
            id = %any
            cacerts = tarbits.pem
        }
        rekey_time = 1h
        keyingtries = 1
        send_certreq = no
        children {
            net {
                remote_ts = 0.0.0.0/0,::/0
                start_action = start
                esp_proposals = 3des-sha1-modp1024  # Phase 2 proposals
            }
        }
    }
}