[support] error on dynamic keying racoon2

Brama Subhifajar first_shaboo at yahoo.com
Sun Jun 21 09:32:54 JST 2009


hello, sorry for late replay. 

I have done to try fix mip6d.conf :

> and I can't move to foreign network, this is the log:
> 
> root at crestlight:~# /usr/sbin/mip6d -d 10
> Error in configuration file /etc/mip6d.conf
> line 17: syntax error at 'HomeAddress'

the problem is because 

IPsecPolicySet	{
	HomeAddress		2001:660:4701:2::12/64;  <== error
	HomeAgentAddress	2001:660:4701:2::1;

	IPsecPolicy	HomeRegBinding	UseESP 200;
	IPsecPolicy	MobPfxDisc	UseESP 202;
	IPsecPolicy	TunnelPayload	UseESP 204;
}

then I try to shift this line on mip6d.conf (MN) 

HomeAgentAddress	        2001:660:4701:2::1;
HomeAddress		                  2001:660:4701:2::12/64;



then on default.conf  (HA) I only used 

acceptable_kmp { ikev2; }

=====>> here is my config for HA:

#racoon2.conf#
interface {
        ike { MY_IP; };
        spmd { unix "/var/run/racoon2/spmif"; };
        spmd_password "/etc/racoon2/spmd.pwd";
};
resolver {
        resolver off;
};
include "/etc/racoon2/default.conf";
include "/etc/racoon2/ha.conf";

default.conf

default
{
    remote {
#        acceptable_kmp { ikev2; ikev1; kink; };
         acceptable_kmp { ikev2; };
        ikev1 {
            logmode normal;
            kmp_sa_lifetime_time 600 sec;
            kmp_sa_lifetime_byte infinite;
            interval_to_send 10 sec;
            times_per_send 1;
            ipsec_sa_nego_time_limit 40 sec;
            kmp_enc_alg { aes192_cbc; aes128_cbc; 3des_cbc; };
            kmp_hash_alg { sha1; md5; };
            kmp_dh_group { modp3072; modp2048; modp1536; modp1024; };
            kmp_auth_method { psk; };
            random_pad_content on;
            # max_padlen 50 bytes;
        };
        ikev2 {
            logmode normal;
            kmp_sa_lifetime_time infinite;
            kmp_sa_lifetime_byte infinite;
            max_retry_to_send 3;
            interval_to_send 10 sec;
            times_per_send 1;
            kmp_sa_nego_time_limit 60 sec;
            ipsec_sa_nego_time_limit 40 sec;
            kmp_enc_alg { aes192_cbc; aes128_cbc; 3des_cbc; };
            kmp_prf_alg { hmac_md5; hmac_sha1; aes_xcbc; };
            kmp_hash_alg { hmac_sha1; hmac_md5; };
            kmp_dh_group { modp3072; modp2048; modp1536; modp1024;  };
            kmp_auth_method { psk; };
            random_pad_content on;
            random_padlen on;
            max_padlen 50 bytes;
        };
        kink {
            my_principal "kink/racoon2.wide.ad.jp";
            nonce_size 16 B;
        };
    };

    policy {
        ipsec_mode transport;
        ipsec_level require;
    };

    ipsec {
        ipsec_sa_lifetime_time infinite;
        ipsec_sa_lifetime_byte infinite;
    };

    sa {
        esp_enc_alg { aes128_cbc; 3des_cbc; };
        esp_auth_alg { hmac_sha1; hmac_md5; };
    };
};
ipsec ipsec_ah_esp {
    ipsec_sa_lifetime_time 28800 sec;
    sa_index { ah_01; esp_01; };
};
ipsec ipsec_esp {
    ipsec_sa_lifetime_time 28800 sec;
    sa_index esp_01;
};

sa ah_01 {
    sa_protocol ah;
    ah_auth_alg { hmac_sha1; hmac_md5; };
};
sa esp_01 {
    sa_protocol esp;
    esp_enc_alg { aes128_cbc; 3des_cbc; };
    esp_auth_alg { hmac_sha1; hmac_md5; };
};


ha.conf 

# Home Agent address:  2001:660:4701:2::1
# MN Home address   :  2001:660:4701:2::12

remote MobileNode {
    ikev2 {
        my_id        x509_subject "/etc/openssl-ca/public-www/cacert.pem";
        peers_id     x509_subject "/etc/openssl-ca/clients/certs/mn.mydomain.com.cert";
        kmp_auth_method { rsasig; };
        my_public_key    x509pem 
                "/etc/openssl-ca/public-www/cacert.pem"
                "/etc/openssl-ca/private/cakey.pem";
        peers_public_key x509pem
                "/etc/openssl-ca/clients/certs/mn.mydomain.com.cert"
                "";
    };
};

# Policy and selector for protecting the BU/BA messages for Home Registration.
policy HomeRegBinding {
    remote_index     MobileNode;
    ipsec_mode     transport;
    action         auto_ipsec;
    ipsec_index     { ipsec_esp; };
    ipsec_level    require;
    peers_sa_ipaddr    2001:660:4701:2::12;
    my_sa_ipaddr    2001:660:4701:2::1;
    install     off;
};
selector HomeRegBinding_out {
    direction     outbound;
    dst        2001:660:4701:2::12;
    src        2001:660:4701:2::1;
    policy_index     HomeRegBinding;
    upper_layer_protocol    135 6 5;
    reqid        201; # Note: you may choose whatever value you want but must be in sync with mip6d.conf and unique.
};

# Policy and selector for protecting the MPS/MPA messages for Mobile Prefix Discovery.
policy MobPfxDisc {
    remote_index     MobileNode;
    ipsec_mode     transport;
    action         auto_ipsec;
    ipsec_index     { ipsec_esp; };
    ipsec_level    require;
    peers_sa_ipaddr    2001:660:4701:2::12;
    my_sa_ipaddr    2001:660:4701:2::1;
    install     off;
};
selector MobPfxDisc_out {
    direction     outbound;
    dst        2001:660:4701:2::12;
    src        2001:660:4701:2::1;
    policy_index     MobPfxDisc;
    upper_layer_protocol    135 93 92;
    reqid        203;
};

# Tunnel all traffic between MN and HA when the MN is not at home.
policy TunnelPayload {
    remote_index     MobileNode;
    ipsec_mode     tunnel;
    action         auto_ipsec;
    ipsec_index     { ipsec_esp; };
    ipsec_level    require;
    peers_sa_ipaddr    2001:660:4701:2::12;
    my_sa_ipaddr    2001:660:4701:2::1;
    install     off;
};
selector TunnelPayload_out {
    direction     outbound;
    dst        2001:660:4701:2::12;
    src        2001:660:4701:2::1;
    policy_index     TunnelPayload;
    reqid        205;
};


mip6d.conf

# This is an example of mip6d Home Agent configuration file
NodeConfig HA;

## Indicates if a node should participate in route optimization with MN
#DoRouteOptimizationCN enabled;

## If set to > 0, will not detach from tty
DebugLevel 10;

## List of interfaces where we serve as Home Agent
Interface "eth1";
#Interface "eth12" {
#  MnIfPreference 2;
#  IfType HA;
#}

##
## IPsec configuration
##

## Indicates if the MN-HA MIPv6 signalling should be protected with IPsec
UseMnHaIPsec enabled;

## Key Management Mobility Capability
KeyMngMobCapability enabled;

IPsecPolicySet {
        HomeAgentAddress     2001:660:4701:2::1;
        HomeAddress         2001:660:4701:2::12/64;
 
        IPsecPolicy HomeRegBinding     UseESP    201;
        IPsecPolicy MobPfxDisc         UseESP    203;
        IPsecPolicy TunnelPayload    UseESP    205;
}

=====>>> here is the log

spmd -Fddd

/etc/racoon2/ha.conf:21:1[transport] len=9
/etc/racoon2/ha.conf:21:1[;] len=1
/etc/racoon2/ha.conf:22:1[action] len=6
/etc/racoon2/ha.conf:22:1[auto_ipsec] len=10
/etc/racoon2/ha.conf:22:1[;] len=1
/etc/racoon2/ha.conf:23:1[ipsec_index] len=11
/etc/racoon2/ha.conf:23:1[{] len=1
/etc/racoon2/ha.conf:23:1[ipsec_esp] len=9
/etc/racoon2/ha.conf:23:1[;] len=1
/etc/racoon2/ha.conf:23:1[}] len=1
/etc/racoon2/ha.conf:23:1[;] len=1
/etc/racoon2/ha.conf:24:1[ipsec_level] len=11
/etc/racoon2/ha.conf:24:1[require] len=7
/etc/racoon2/ha.conf:24:1[;] len=1
/etc/racoon2/ha.conf:25:1[peers_sa_ipaddr] len=15
/etc/racoon2/ha.conf:25:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:25:1[;] len=1
/etc/racoon2/ha.conf:26:1[my_sa_ipaddr] len=12
/etc/racoon2/ha.conf:26:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:26:1[;] len=1
/etc/racoon2/ha.conf:27:1[install] len=7
/etc/racoon2/ha.conf:27:1[off] len=3
/etc/racoon2/ha.conf:27:1[;] len=1
/etc/racoon2/ha.conf:28:1[}] len=1
/etc/racoon2/ha.conf:28:1[;] len=1
/etc/racoon2/ha.conf:29:1[selector] len=8
/etc/racoon2/ha.conf:29:1[HomeRegBinding_out] len=18
/etc/racoon2/ha.conf:29:1[{] len=1
/etc/racoon2/ha.conf:30:1[direction] len=9
/etc/racoon2/ha.conf:30:1[outbound] len=8
/etc/racoon2/ha.conf:30:1[;] len=1
/etc/racoon2/ha.conf:31:1[dst] len=3
/etc/racoon2/ha.conf:31:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:31:1[;] len=1
/etc/racoon2/ha.conf:32:1[src] len=3
/etc/racoon2/ha.conf:32:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:32:1[;] len=1
/etc/racoon2/ha.conf:33:1[policy_index] len=12
/etc/racoon2/ha.conf:33:1[HomeRegBinding] len=14
/etc/racoon2/ha.conf:33:1[;] len=1
/etc/racoon2/ha.conf:34:1[upper_layer_protocol] len=20
/etc/racoon2/ha.conf:34:1[135] len=3
/etc/racoon2/ha.conf:34:1[6] len=1
/etc/racoon2/ha.conf:34:1[5] len=1
/etc/racoon2/ha.conf:34:1[;] len=1
/etc/racoon2/ha.conf:35:1[reqid] len=5
/etc/racoon2/ha.conf:35:1[201] len=3
/etc/racoon2/ha.conf:35:1[;] len=1
/etc/racoon2/ha.conf:35:1[# Note: you may choose whatever value you want but must be in sync with mip6d.conf and unique.] len=94
/etc/racoon2/ha.conf:36:1[}] len=1
/etc/racoon2/ha.conf:36:1[;] len=1
/etc/racoon2/ha.conf:38:1[# Policy and selector for protecting the MPS/MPA messages for Mobile Prefix Discovery.] len=86
/etc/racoon2/ha.conf:39:1[policy] len=6
/etc/racoon2/ha.conf:39:1[MobPfxDisc] len=10
/etc/racoon2/ha.conf:39:1[{] len=1
/etc/racoon2/ha.conf:40:1[remote_index] len=12
/etc/racoon2/ha.conf:40:1[MobileNode] len=10
/etc/racoon2/ha.conf:40:1[;] len=1
/etc/racoon2/ha.conf:41:1[ipsec_mode] len=10
/etc/racoon2/ha.conf:41:1[transport] len=9
/etc/racoon2/ha.conf:41:1[;] len=1
/etc/racoon2/ha.conf:42:1[action] len=6
/etc/racoon2/ha.conf:42:1[auto_ipsec] len=10
/etc/racoon2/ha.conf:42:1[;] len=1
/etc/racoon2/ha.conf:43:1[ipsec_index] len=11
/etc/racoon2/ha.conf:43:1[{] len=1
/etc/racoon2/ha.conf:43:1[ipsec_esp] len=9
/etc/racoon2/ha.conf:43:1[;] len=1
/etc/racoon2/ha.conf:43:1[}] len=1
/etc/racoon2/ha.conf:43:1[;] len=1
/etc/racoon2/ha.conf:44:1[ipsec_level] len=11
/etc/racoon2/ha.conf:44:1[require] len=7
/etc/racoon2/ha.conf:44:1[;] len=1
/etc/racoon2/ha.conf:45:1[peers_sa_ipaddr] len=15
/etc/racoon2/ha.conf:45:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:45:1[;] len=1
/etc/racoon2/ha.conf:46:1[my_sa_ipaddr] len=12
/etc/racoon2/ha.conf:46:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:46:1[;] len=1
/etc/racoon2/ha.conf:47:1[install] len=7
/etc/racoon2/ha.conf:47:1[off] len=3
/etc/racoon2/ha.conf:47:1[;] len=1
/etc/racoon2/ha.conf:48:1[}] len=1
/etc/racoon2/ha.conf:48:1[;] len=1
/etc/racoon2/ha.conf:49:1[selector] len=8
/etc/racoon2/ha.conf:49:1[MobPfxDisc_out] len=14
/etc/racoon2/ha.conf:49:1[{] len=1
/etc/racoon2/ha.conf:50:1[direction] len=9
/etc/racoon2/ha.conf:50:1[outbound] len=8
/etc/racoon2/ha.conf:50:1[;] len=1
/etc/racoon2/ha.conf:51:1[dst] len=3
/etc/racoon2/ha.conf:51:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:51:1[;] len=1
/etc/racoon2/ha.conf:52:1[src] len=3
/etc/racoon2/ha.conf:52:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:52:1[;] len=1
/etc/racoon2/ha.conf:53:1[policy_index] len=12
/etc/racoon2/ha.conf:53:1[MobPfxDisc] len=10
/etc/racoon2/ha.conf:53:1[;] len=1
/etc/racoon2/ha.conf:54:1[upper_layer_protocol] len=20
/etc/racoon2/ha.conf:54:1[135] len=3
/etc/racoon2/ha.conf:54:1[93] len=2
/etc/racoon2/ha.conf:54:1[92] len=2
/etc/racoon2/ha.conf:54:1[;] len=1
/etc/racoon2/ha.conf:55:1[reqid] len=5
/etc/racoon2/ha.conf:55:1[203] len=3
/etc/racoon2/ha.conf:55:1[;] len=1
/etc/racoon2/ha.conf:56:1[}] len=1
/etc/racoon2/ha.conf:56:1[;] len=1
/etc/racoon2/ha.conf:58:1[# Tunnel all traffic between MN and HA when the MN is not at home.] len=66
/etc/racoon2/ha.conf:59:1[policy] len=6
/etc/racoon2/ha.conf:59:1[TunnelPayload] len=13
/etc/racoon2/ha.conf:59:1[{] len=1
/etc/racoon2/ha.conf:60:1[remote_index] len=12
/etc/racoon2/ha.conf:60:1[MobileNode] len=10
/etc/racoon2/ha.conf:60:1[;] len=1
/etc/racoon2/ha.conf:61:1[ipsec_mode] len=10
/etc/racoon2/ha.conf:61:1[tunnel] len=6
/etc/racoon2/ha.conf:61:1[;] len=1
/etc/racoon2/ha.conf:62:1[action] len=6
/etc/racoon2/ha.conf:62:1[auto_ipsec] len=10
/etc/racoon2/ha.conf:62:1[;] len=1
/etc/racoon2/ha.conf:63:1[ipsec_index] len=11
/etc/racoon2/ha.conf:63:1[{] len=1
/etc/racoon2/ha.conf:63:1[ipsec_esp] len=9
/etc/racoon2/ha.conf:63:1[;] len=1
/etc/racoon2/ha.conf:63:1[}] len=1
/etc/racoon2/ha.conf:63:1[;] len=1
/etc/racoon2/ha.conf:64:1[ipsec_level] len=11
/etc/racoon2/ha.conf:64:1[require] len=7
/etc/racoon2/ha.conf:64:1[;] len=1
/etc/racoon2/ha.conf:65:1[peers_sa_ipaddr] len=15
/etc/racoon2/ha.conf:65:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:65:1[;] len=1
/etc/racoon2/ha.conf:66:1[my_sa_ipaddr] len=12
/etc/racoon2/ha.conf:66:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:66:1[;] len=1
/etc/racoon2/ha.conf:67:1[install] len=7
/etc/racoon2/ha.conf:67:1[off] len=3
/etc/racoon2/ha.conf:67:1[;] len=1
/etc/racoon2/ha.conf:68:1[}] len=1
/etc/racoon2/ha.conf:68:1[;] len=1
/etc/racoon2/ha.conf:69:1[selector] len=8
/etc/racoon2/ha.conf:69:1[TunnelPayload_out] len=17
/etc/racoon2/ha.conf:69:1[{] len=1
/etc/racoon2/ha.conf:70:1[direction] len=9
/etc/racoon2/ha.conf:70:1[outbound] len=8
/etc/racoon2/ha.conf:70:1[;] len=1
/etc/racoon2/ha.conf:71:1[dst] len=3
/etc/racoon2/ha.conf:71:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:71:1[;] len=1
/etc/racoon2/ha.conf:72:1[src] len=3
/etc/racoon2/ha.conf:72:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:72:1[;] len=1
/etc/racoon2/ha.conf:73:1[policy_index] len=12
/etc/racoon2/ha.conf:73:1[TunnelPayload] len=13
/etc/racoon2/ha.conf:73:1[;] len=1
/etc/racoon2/ha.conf:74:1[reqid] len=5
/etc/racoon2/ha.conf:74:1[205] len=3
/etc/racoon2/ha.conf:74:1[;] len=1
/etc/racoon2/ha.conf:75:1[}] len=1
/etc/racoon2/ha.conf:75:1[;] len=1
2009-06-20 13:25:14 [INFO]: main.c:171: Racoon Spmd - Security Policy Management Daemon - Started
2009-06-20 13:25:14 [INFO]: main.c:172: Spmd Version: 20071227d
2009-06-20 13:25:15 [DEBUG]: spmd_pfkey.c:319: No install for (selector=HomeRegBinding_out)
2009-06-20 13:25:15 [DEBUG]: spmd_pfkey.c:319: No install for (selector=MobPfxDisc_out)
2009-06-20 13:25:15 [DEBUG]: spmd_pfkey.c:319: No install for (selector=TunnelPayload_out)
2009-06-20 13:25:15 [DEBUG]: task.c:86: === ALLOC TASK: 0x808db18
2009-06-20 13:25:15 [DEBUG]: task.c:122: === ADD TASK: 0x808db18
2009-06-20 13:25:15 [INFO]: main.c:450: 'files' found in nsswitch.conf hosts line, we will read hosts file
2009-06-20 13:25:15 [INFO]: main.c:459: 'dns' found in nsswitch.conf hosts line, we will start dns proxy service
2009-06-20 13:25:15 [DEBUG]: cfsetup.c:3866: read 16 bytes
2009-06-20 13:25:15 [DEBUG]: shell.c:765: Password=7E0F8487B6016141DCA1BE0780033F0F
2009-06-20 13:25:15 [DEBUG]: task.c:86: === ALLOC TASK: 0x8092af8
2009-06-20 13:25:15 [DEBUG]: task.c:122: === ADD TASK: 0x8092af8
2009-06-20 13:25:15 [DEBUG]: task.c:347: [READ Queue][00]:0x808db18:0x8058928
2009-06-20 13:25:15 [DEBUG]: task.c:347: [READ Queue][01]:0x8092af8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:161: === DEL TASK: 0x808db18
2009-06-20 13:25:18 [DEBUG]: task.c:385: [RUN Queue][00]:0x808db18:0x8058928
2009-06-20 13:25:18 [DEBUG]: if_pfkeyv2.c:279: REGISTER message is not interesting because pid 6334 is not mine
2009-06-20 13:25:18 [DEBUG]: task.c:86: === ALLOC TASK: 0x8090320
2009-06-20 13:25:18 [DEBUG]: task.c:122: === ADD TASK: 0x8090320
2009-06-20 13:25:18 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092af8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][01]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][00]:0x8092af8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][01]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:161: === DEL TASK: 0x8090320
2009-06-20 13:25:18 [DEBUG]: task.c:385: [RUN Queue][00]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: if_pfkeyv2.c:279: REGISTER message is not interesting because pid 6334 is not mine
2009-06-20 13:25:18 [DEBUG]: task.c:86: === ALLOC TASK: 0x808db18
2009-06-20 13:25:18 [DEBUG]: task.c:122: === ADD TASK: 0x808db18
2009-06-20 13:25:18 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092af8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][01]:0x808db18:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][00]:0x8092af8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][01]:0x808db18:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:161: === DEL TASK: 0x808db18
2009-06-20 13:25:18 [DEBUG]: task.c:385: [RUN Queue][00]:0x808db18:0x8058928
2009-06-20 13:25:18 [DEBUG]: if_pfkeyv2.c:279: REGISTER message is not interesting because pid 6334 is not mine
2009-06-20 13:25:18 [DEBUG]: task.c:86: === ALLOC TASK: 0x8090320
2009-06-20 13:25:18 [DEBUG]: task.c:122: === ADD TASK: 0x8090320
2009-06-20 13:25:18 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092af8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][01]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][00]:0x8092af8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][01]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:161: === DEL TASK: 0x8092af8
2009-06-20 13:25:18 [DEBUG]: task.c:385: [RUN Queue][00]:0x8092af8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: shell.c:691: Seed=7CED631F1D756640AAB3AC95C81DF2DA72368AE81CBBF2EF43EE711FC9C48A1B05FC486FC31275BF6C7D07A571EDC3BA354B423340FA73D54E0F732F0D878DFD5A082009-06-20 13:25:18 [DEBUG]: task.c:86: === ALLOC TASK: 0x808db18
2009-06-20 13:25:18 [DEBUG]: task.c:122: === ADD TASK: 0x808db18
2009-06-20 13:25:18 [DEBUG]: task.c:86: === ALLOC TASK: 0x8092ce8
2009-06-20 13:25:18 [DEBUG]: task.c:122: === ADD TASK: 0x8092ce8
2009-06-20 13:25:18 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][00]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][01]:0x808db18:0x805122c
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][02]:0x8092ce8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][00]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][01]:0x808db18:0x805122c
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][02]:0x8092ce8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:161: === DEL TASK: 0x808db18
2009-06-20 13:25:18 [DEBUG]: task.c:385: [RUN Queue][00]:0x808db18:0x805122c
2009-06-20 13:25:18 [DEBUG]: shell.c:615: SPMD Interface Command=>LOGIN
2009-06-20 13:25:18 [DEBUG]: cfsetup.c:3866: read 16 bytes
2009-06-20 13:25:18 [DEBUG]: shell.c:765: Password=7E0F8487B6016141DCA1BE0780033F0F
2009-06-20 13:25:18 [DEBUG]: shell.c:807: Spmd interface Login Password=>7E0F8487B6016141DCA1BE0780033F0F
2009-06-20 13:25:18 [DEBUG]: shell.c:808: Spmd interface Login Challenge=>4EC5EA15B0A26CBA799C432C30585705E072C87D
2009-06-20 13:25:18 [DEBUG]: shell.c:809: Spmd interface Login Hash=>D8357B720D7FA4ED41A45AED3033CD4CDC200A00
2009-06-20 13:25:18 [DEBUG]: shell.c:852: Spmd interface connected(fd=6)
2009-06-20 13:25:18 [DEBUG]: task.c:86: === ALLOC TASK: 0x8089690
2009-06-20 13:25:18 [DEBUG]: task.c:122: === ADD TASK: 0x8089690
2009-06-20 13:25:18 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][00]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][01]:0x8092ce8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:403: [=READ Queue][02]:0x8089690:0x805122c
2009-06-20 13:25:18 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][00]:0x8090320:0x8058928
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][01]:0x8092ce8:0x8050e8f
2009-06-20 13:25:18 [DEBUG]: task.c:347: [READ Queue][02]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:161: === DEL TASK: 0x8090320
2009-06-20 13:25:23 [DEBUG]: task.c:385: [RUN Queue][00]:0x8090320:0x8058928
2009-06-20 13:25:23 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2163: Found selector(=HomeRegBinding_out) suitable for the external policy.
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64832, selector_index=HomeRegBinding_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-20 13:25:23 [DEBUG]: task.c:86: === ALLOC TASK: 0x808e090
2009-06-20 13:25:23 [DEBUG]: task.c:122: === ADD TASK: 0x808e090
2009-06-20 13:25:23 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][02]:0x808e090:0x8058928
2009-06-20 13:25:23 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][02]:0x808e090:0x8058928
2009-06-20 13:25:23 [DEBUG]: task.c:161: === DEL TASK: 0x808e090
2009-06-20 13:25:23 [DEBUG]: task.c:385: [RUN Queue][00]:0x808e090:0x8058928
2009-06-20 13:25:23 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2163: Found selector(=HomeRegBinding_out) suitable for the external policy.
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64832, selector_index=HomeRegBinding_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64841, selector_index=HomeRegBinding_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-20 13:25:23 [DEBUG]: task.c:86: === ALLOC TASK: 0x808e828
2009-06-20 13:25:23 [DEBUG]: task.c:122: === ADD TASK: 0x808e828
2009-06-20 13:25:23 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][02]:0x808e828:0x8058928
2009-06-20 13:25:23 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][02]:0x808e828:0x8058928
2009-06-20 13:25:23 [DEBUG]: task.c:161: === DEL TASK: 0x808e828
2009-06-20 13:25:23 [DEBUG]: task.c:385: [RUN Queue][00]:0x808e828:0x8058928
2009-06-20 13:25:23 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2163: Found selector(=MobPfxDisc_out) suitable for the external policy.
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64832, selector_index=HomeRegBinding_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64841, selector_index=HomeRegBinding_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64848, selector_index=MobPfxDisc_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-20 13:25:23 [DEBUG]: task.c:86: === ALLOC TASK: 0x8090c90
2009-06-20 13:25:23 [DEBUG]: task.c:122: === ADD TASK: 0x8090c90
2009-06-20 13:25:23 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][02]:0x8090c90:0x8058928
2009-06-20 13:25:23 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][02]:0x8090c90:0x8058928
2009-06-20 13:25:23 [DEBUG]: task.c:161: === DEL TASK: 0x8090c90
2009-06-20 13:25:23 [DEBUG]: task.c:385: [RUN Queue][00]:0x8090c90:0x8058928
2009-06-20 13:25:23 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2163: Found selector(=MobPfxDisc_out) suitable for the external policy.
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64832, selector_index=HomeRegBinding_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64841, selector_index=HomeRegBinding_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64848, selector_index=MobPfxDisc_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2107: {spid=64857, selector_index=MobPfxDisc_out}
2009-06-20 13:25:23 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-20 13:25:23 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091c58
2009-06-20 13:25:23 [DEBUG]: task.c:122: === ADD TASK: 0x8091c58
2009-06-20 13:25:23 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:25:23 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:25:23 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:26:23 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:26:23 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:26:23 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:27:23 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:27:23 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:27:23 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:28:23 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:28:23 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:28:23 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:29:23 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:29:23 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:29:23 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:30:03 [DEBUG]: task.c:161: === DEL TASK: 0x8091c58
2009-06-20 13:30:03 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091c58:0x8058928
2009-06-20 13:30:03 [DEBUG]: spmd_pfkey.c:964: Delete: slid=HomeRegBinding_out, spid=64832
2009-06-20 13:30:03 [DEBUG]: task.c:86: === ALLOC TASK: 0x8090c90
2009-06-20 13:30:03 [DEBUG]: task.c:122: === ADD TASK: 0x8090c90
2009-06-20 13:30:03 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][02]:0x8090c90:0x8058928
2009-06-20 13:30:03 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][02]:0x8090c90:0x8058928
2009-06-20 13:30:03 [DEBUG]: task.c:161: === DEL TASK: 0x8090c90
2009-06-20 13:30:03 [DEBUG]: task.c:385: [RUN Queue][00]:0x8090c90:0x8058928
2009-06-20 13:30:03 [DEBUG]: spmd_pfkey.c:964: Delete: slid=HomeRegBinding_out, spid=64841
2009-06-20 13:30:03 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091c58
2009-06-20 13:30:03 [DEBUG]: task.c:122: === ADD TASK: 0x8091c58
2009-06-20 13:30:03 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:30:03 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:30:03 [DEBUG]: task.c:161: === DEL TASK: 0x8091c58
2009-06-20 13:30:03 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091c58:0x8058928
2009-06-20 13:30:03 [DEBUG]: spmd_pfkey.c:964: Delete: slid=MobPfxDisc_out, spid=64848
2009-06-20 13:30:03 [DEBUG]: task.c:86: === ALLOC TASK: 0x8090c60
2009-06-20 13:30:03 [DEBUG]: task.c:122: === ADD TASK: 0x8090c60
2009-06-20 13:30:03 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][02]:0x8090c60:0x8058928
2009-06-20 13:30:03 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][02]:0x8090c60:0x8058928
2009-06-20 13:30:03 [DEBUG]: task.c:161: === DEL TASK: 0x8090c60
2009-06-20 13:30:03 [DEBUG]: task.c:385: [RUN Queue][00]:0x8090c60:0x8058928
2009-06-20 13:30:03 [DEBUG]: spmd_pfkey.c:964: Delete: slid=MobPfxDisc_out, spid=64857
2009-06-20 13:30:03 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091c58
2009-06-20 13:30:03 [DEBUG]: task.c:122: === ADD TASK: 0x8091c58
2009-06-20 13:30:03 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:30:03 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:30:03 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][01]:0x8089690:0x805122c
2009-06-20 13:30:03 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c58:0x8058928
2009-06-20 13:30:05 [DEBUG]: task.c:161: === DEL TASK: 0x8089690
2009-06-20 13:30:05 [DEBUG]: task.c:385: [RUN Queue][00]:0x8089690:0x805122c
2009-06-20 13:30:05 [INTERNAL_ERR]: shell.c:517: Can't read spmd interface socket=6
2009-06-20 13:30:05 [INFO]: shell.c:596: Spmd interface closed(fd=6)
2009-06-20 13:30:05 [DEBUG]: task.c:258: Failed to exec handler
2009-06-20 13:30:05 [DEBUG]: task.c:394: === TASK RUN
2009-06-20 13:30:05 [DEBUG]: task.c:403: [=READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:05 [DEBUG]: task.c:403: [=READ Queue][01]:0x8091c58:0x8058928
2009-06-20 13:30:05 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-20 13:30:05 [DEBUG]: task.c:347: [READ Queue][00]:0x8092ce8:0x8050e8f
2009-06-20 13:30:05 [DEBUG]: task.c:347: [READ Queue][01]:0x8091c58:0x8058928
2009-06-20 13:30:06 [INFO]: signal.c:95: Signal(2) received, Start exit processing.
2009-06-20 13:30:06 [DEBUG]: spmd_pfkey.c:796: No flushing Security Policy
root at cnc-111040277-HA:~# 

iked -Fddd

/etc/racoon2/default.conf:35:1[hmac_md5] len=8
/etc/racoon2/default.conf:35:1[;] len=1
/etc/racoon2/default.conf:35:1[}] len=1
/etc/racoon2/default.conf:35:1[;] len=1
/etc/racoon2/default.conf:36:1[kmp_dh_group] len=12
/etc/racoon2/default.conf:36:1[{] len=1
/etc/racoon2/default.conf:36:1[modp3072] len=8
/etc/racoon2/default.conf:36:1[;] len=1
/etc/racoon2/default.conf:36:1[modp2048] len=8
/etc/racoon2/default.conf:36:1[;] len=1
/etc/racoon2/default.conf:36:1[modp1536] len=8
/etc/racoon2/default.conf:36:1[;] len=1
/etc/racoon2/default.conf:36:1[modp1024] len=8
/etc/racoon2/default.conf:36:1[;] len=1
/etc/racoon2/default.conf:36:1[}] len=1
/etc/racoon2/default.conf:36:1[;] len=1
/etc/racoon2/default.conf:37:1[kmp_auth_method] len=15
/etc/racoon2/default.conf:37:1[{] len=1
/etc/racoon2/default.conf:37:1[psk] len=3
/etc/racoon2/default.conf:37:1[;] len=1
/etc/racoon2/default.conf:37:1[}] len=1
/etc/racoon2/default.conf:37:1[;] len=1
/etc/racoon2/default.conf:38:1[random_pad_content] len=18
/etc/racoon2/default.conf:38:1[on] len=2
/etc/racoon2/default.conf:38:1[;] len=1
/etc/racoon2/default.conf:39:1[random_padlen] len=13
/etc/racoon2/default.conf:39:1[on] len=2
/etc/racoon2/default.conf:39:1[;] len=1
/etc/racoon2/default.conf:40:1[max_padlen] len=10
/etc/racoon2/default.conf:40:1[50] len=2
/etc/racoon2/default.conf:40:1[bytes] len=5
/etc/racoon2/default.conf:40:1[;] len=1
/etc/racoon2/default.conf:41:1[}] len=1
/etc/racoon2/default.conf:41:1[;] len=1
/etc/racoon2/default.conf:42:1[kink] len=4
/etc/racoon2/default.conf:42:1[{] len=1
/etc/racoon2/default.conf:43:1[my_principal] len=12
/etc/racoon2/default.conf:43:1["kink/racoon2.wide.ad.jp"] len=25
/etc/racoon2/default.conf:43:1[;] len=1
/etc/racoon2/default.conf:44:1[nonce_size] len=10
/etc/racoon2/default.conf:44:1[16] len=2
/etc/racoon2/default.conf:44:1[B] len=1
/etc/racoon2/default.conf:44:1[;] len=1
/etc/racoon2/default.conf:45:1[}] len=1
/etc/racoon2/default.conf:45:1[;] len=1
/etc/racoon2/default.conf:46:1[}] len=1
/etc/racoon2/default.conf:46:1[;] len=1
/etc/racoon2/default.conf:48:1[policy] len=6
/etc/racoon2/default.conf:48:1[{] len=1
/etc/racoon2/default.conf:49:1[ipsec_mode] len=10
/etc/racoon2/default.conf:49:1[transport] len=9
/etc/racoon2/default.conf:49:1[;] len=1
/etc/racoon2/default.conf:50:1[ipsec_level] len=11
/etc/racoon2/default.conf:50:1[require] len=7
/etc/racoon2/default.conf:50:1[;] len=1
/etc/racoon2/default.conf:51:1[}] len=1
/etc/racoon2/default.conf:51:1[;] len=1
/etc/racoon2/default.conf:53:1[ipsec] len=5
/etc/racoon2/default.conf:53:1[{] len=1
/etc/racoon2/default.conf:54:1[ipsec_sa_lifetime_time] len=22
/etc/racoon2/default.conf:54:1[infinite] len=8
/etc/racoon2/default.conf:54:1[;] len=1
/etc/racoon2/default.conf:55:1[ipsec_sa_lifetime_byte] len=22
/etc/racoon2/default.conf:55:1[infinite] len=8
/etc/racoon2/default.conf:55:1[;] len=1
/etc/racoon2/default.conf:56:1[}] len=1
/etc/racoon2/default.conf:56:1[;] len=1
/etc/racoon2/default.conf:58:1[sa] len=2
/etc/racoon2/default.conf:58:1[{] len=1
/etc/racoon2/default.conf:59:1[esp_enc_alg] len=11
/etc/racoon2/default.conf:59:1[{] len=1
/etc/racoon2/default.conf:59:1[aes128_cbc] len=10
/etc/racoon2/default.conf:59:1[;] len=1
/etc/racoon2/default.conf:59:1[3des_cbc] len=8
/etc/racoon2/default.conf:59:1[;] len=1
/etc/racoon2/default.conf:59:1[}] len=1
/etc/racoon2/default.conf:59:1[;] len=1
/etc/racoon2/default.conf:60:1[esp_auth_alg] len=12
/etc/racoon2/default.conf:60:1[{] len=1
/etc/racoon2/default.conf:60:1[hmac_sha1] len=9
/etc/racoon2/default.conf:60:1[;] len=1
/etc/racoon2/default.conf:60:1[hmac_md5] len=8
/etc/racoon2/default.conf:60:1[;] len=1
/etc/racoon2/default.conf:60:1[}] len=1
/etc/racoon2/default.conf:60:1[;] len=1
/etc/racoon2/default.conf:61:1[}] len=1
/etc/racoon2/default.conf:61:1[;] len=1
/etc/racoon2/default.conf:62:1[}] len=1
/etc/racoon2/default.conf:62:1[;] len=1
/etc/racoon2/default.conf:63:1[ipsec] len=5
/etc/racoon2/default.conf:63:1[ipsec_ah_esp] len=12
/etc/racoon2/default.conf:63:1[{] len=1
/etc/racoon2/default.conf:64:1[ipsec_sa_lifetime_time] len=22
/etc/racoon2/default.conf:64:1[28800] len=5
/etc/racoon2/default.conf:64:1[sec] len=3
/etc/racoon2/default.conf:64:1[;] len=1
/etc/racoon2/default.conf:65:1[sa_index] len=8
/etc/racoon2/default.conf:65:1[{] len=1
/etc/racoon2/default.conf:65:1[ah_01] len=5
/etc/racoon2/default.conf:65:1[;] len=1
/etc/racoon2/default.conf:65:1[esp_01] len=6
/etc/racoon2/default.conf:65:1[;] len=1
/etc/racoon2/default.conf:65:1[}] len=1
/etc/racoon2/default.conf:65:1[;] len=1
/etc/racoon2/default.conf:66:1[}] len=1
/etc/racoon2/default.conf:66:1[;] len=1
/etc/racoon2/default.conf:67:1[ipsec] len=5
/etc/racoon2/default.conf:67:1[ipsec_esp] len=9
/etc/racoon2/default.conf:67:1[{] len=1
/etc/racoon2/default.conf:68:1[ipsec_sa_lifetime_time] len=22
/etc/racoon2/default.conf:68:1[28800] len=5
/etc/racoon2/default.conf:68:1[sec] len=3
/etc/racoon2/default.conf:68:1[;] len=1
/etc/racoon2/default.conf:69:1[sa_index] len=8
/etc/racoon2/default.conf:69:1[esp_01] len=6
/etc/racoon2/default.conf:69:1[;] len=1
/etc/racoon2/default.conf:70:1[}] len=1
/etc/racoon2/default.conf:70:1[;] len=1
/etc/racoon2/default.conf:72:1[sa] len=2
/etc/racoon2/default.conf:72:1[ah_01] len=5
/etc/racoon2/default.conf:72:1[{] len=1
/etc/racoon2/default.conf:73:1[sa_protocol] len=11
/etc/racoon2/default.conf:73:1[ah] len=2
/etc/racoon2/default.conf:73:1[;] len=1
/etc/racoon2/default.conf:74:1[ah_auth_alg] len=11
/etc/racoon2/default.conf:74:1[{] len=1
/etc/racoon2/default.conf:74:1[hmac_sha1] len=9
/etc/racoon2/default.conf:74:1[;] len=1
/etc/racoon2/default.conf:74:1[hmac_md5] len=8
/etc/racoon2/default.conf:74:1[;] len=1
/etc/racoon2/default.conf:74:1[}] len=1
/etc/racoon2/default.conf:74:1[;] len=1
/etc/racoon2/default.conf:75:1[}] len=1
/etc/racoon2/default.conf:75:1[;] len=1
/etc/racoon2/default.conf:76:1[sa] len=2
/etc/racoon2/default.conf:76:1[esp_01] len=6
/etc/racoon2/default.conf:76:1[{] len=1
/etc/racoon2/default.conf:77:1[sa_protocol] len=11
/etc/racoon2/default.conf:77:1[esp] len=3
/etc/racoon2/default.conf:77:1[;] len=1
/etc/racoon2/default.conf:78:1[esp_enc_alg] len=11
/etc/racoon2/default.conf:78:1[{] len=1
/etc/racoon2/default.conf:78:1[aes128_cbc] len=10
/etc/racoon2/default.conf:78:1[;] len=1
/etc/racoon2/default.conf:78:1[3des_cbc] len=8
/etc/racoon2/default.conf:78:1[;] len=1
/etc/racoon2/default.conf:78:1[}] len=1
/etc/racoon2/default.conf:78:1[;] len=1
/etc/racoon2/default.conf:79:1[esp_auth_alg] len=12
/etc/racoon2/default.conf:79:1[{] len=1
/etc/racoon2/default.conf:79:1[hmac_sha1] len=9
/etc/racoon2/default.conf:79:1[;] len=1
/etc/racoon2/default.conf:79:1[hmac_md5] len=8
/etc/racoon2/default.conf:79:1[;] len=1
/etc/racoon2/default.conf:79:1[}] len=1
/etc/racoon2/default.conf:79:1[;] len=1
/etc/racoon2/default.conf:80:1[}] len=1
/etc/racoon2/default.conf:80:1[;] len=1
/etc/racoon2/racoon2.conf:10:1[include] len=7
/etc/racoon2/racoon2.conf:10:1["/etc/racoon2/ha.conf"] len=22
/etc/racoon2/racoon2.conf:10:1[;] len=1
reading config file /etc/racoon2/ha.conf
/etc/racoon2/ha.conf:1:1[# Home Agent address:  2001:DB8:0:2::1  ==>2001:660:4701:2::1] len=61
/etc/racoon2/ha.conf:2:1[# MN Home address   :  2001:DB8:0:2::2  ==>2001:660:4701:2::12] len=62
/etc/racoon2/ha.conf:4:1[remote] len=6
/etc/racoon2/ha.conf:4:1[MobileNode] len=10
/etc/racoon2/ha.conf:4:1[{] len=1
/etc/racoon2/ha.conf:5:1[ikev2] len=5
/etc/racoon2/ha.conf:5:1[{] len=1
/etc/racoon2/ha.conf:6:1[my_id] len=5
/etc/racoon2/ha.conf:6:1[x509_subject] len=12
/etc/racoon2/ha.conf:6:1["/etc/openssl-ca/public-www/cacert.pem"] len=39
/etc/racoon2/ha.conf:6:1[;] len=1
/etc/racoon2/ha.conf:7:1[peers_id] len=8
/etc/racoon2/ha.conf:7:1[x509_subject] len=12
/etc/racoon2/ha.conf:7:1["/etc/openssl-ca/clients/certs/mn.mydomain.com.cert"] len=52
/etc/racoon2/ha.conf:7:1[;] len=1
/etc/racoon2/ha.conf:8:1[kmp_auth_method] len=15
/etc/racoon2/ha.conf:8:1[{] len=1
/etc/racoon2/ha.conf:8:1[rsasig] len=6
/etc/racoon2/ha.conf:8:1[;] len=1
/etc/racoon2/ha.conf:8:1[}] len=1
/etc/racoon2/ha.conf:8:1[;] len=1
/etc/racoon2/ha.conf:9:1[my_public_key] len=13
/etc/racoon2/ha.conf:9:1[x509pem] len=7
/etc/racoon2/ha.conf:10:1["/etc/openssl-ca/public-www/cacert.pem"] len=39
/etc/racoon2/ha.conf:11:1["/etc/openssl-ca/private/cakey.pem"] len=35
/etc/racoon2/ha.conf:11:1[;] len=1
/etc/racoon2/ha.conf:12:1[peers_public_key] len=16
/etc/racoon2/ha.conf:12:1[x509pem] len=7
/etc/racoon2/ha.conf:13:1["/etc/openssl-ca/clients/certs/mn.mydomain.com.cert"] len=52
/etc/racoon2/ha.conf:14:1[""] len=2
/etc/racoon2/ha.conf:14:1[;] len=1
/etc/racoon2/ha.conf:15:1[}] len=1
/etc/racoon2/ha.conf:15:1[;] len=1
/etc/racoon2/ha.conf:16:1[}] len=1
/etc/racoon2/ha.conf:16:1[;] len=1
/etc/racoon2/ha.conf:18:1[# Policy and selector for protecting the BU/BA messages for Home Registration.] len=78
/etc/racoon2/ha.conf:19:1[policy] len=6
/etc/racoon2/ha.conf:19:1[HomeRegBinding] len=14
/etc/racoon2/ha.conf:19:1[{] len=1
/etc/racoon2/ha.conf:20:1[remote_index] len=12
/etc/racoon2/ha.conf:20:1[MobileNode] len=10
/etc/racoon2/ha.conf:20:1[;] len=1
/etc/racoon2/ha.conf:21:1[ipsec_mode] len=10
/etc/racoon2/ha.conf:21:1[transport] len=9
/etc/racoon2/ha.conf:21:1[;] len=1
/etc/racoon2/ha.conf:22:1[action] len=6
/etc/racoon2/ha.conf:22:1[auto_ipsec] len=10
/etc/racoon2/ha.conf:22:1[;] len=1
/etc/racoon2/ha.conf:23:1[ipsec_index] len=11
/etc/racoon2/ha.conf:23:1[{] len=1
/etc/racoon2/ha.conf:23:1[ipsec_esp] len=9
/etc/racoon2/ha.conf:23:1[;] len=1
/etc/racoon2/ha.conf:23:1[}] len=1
/etc/racoon2/ha.conf:23:1[;] len=1
/etc/racoon2/ha.conf:24:1[ipsec_level] len=11
/etc/racoon2/ha.conf:24:1[require] len=7
/etc/racoon2/ha.conf:24:1[;] len=1
/etc/racoon2/ha.conf:25:1[peers_sa_ipaddr] len=15
/etc/racoon2/ha.conf:25:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:25:1[;] len=1
/etc/racoon2/ha.conf:26:1[my_sa_ipaddr] len=12
/etc/racoon2/ha.conf:26:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:26:1[;] len=1
/etc/racoon2/ha.conf:27:1[install] len=7
/etc/racoon2/ha.conf:27:1[off] len=3
/etc/racoon2/ha.conf:27:1[;] len=1
/etc/racoon2/ha.conf:28:1[}] len=1
/etc/racoon2/ha.conf:28:1[;] len=1
/etc/racoon2/ha.conf:29:1[selector] len=8
/etc/racoon2/ha.conf:29:1[HomeRegBinding_out] len=18
/etc/racoon2/ha.conf:29:1[{] len=1
/etc/racoon2/ha.conf:30:1[direction] len=9
/etc/racoon2/ha.conf:30:1[outbound] len=8
/etc/racoon2/ha.conf:30:1[;] len=1
/etc/racoon2/ha.conf:31:1[dst] len=3
/etc/racoon2/ha.conf:31:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:31:1[;] len=1
/etc/racoon2/ha.conf:32:1[src] len=3
/etc/racoon2/ha.conf:32:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:32:1[;] len=1
/etc/racoon2/ha.conf:33:1[policy_index] len=12
/etc/racoon2/ha.conf:33:1[HomeRegBinding] len=14
/etc/racoon2/ha.conf:33:1[;] len=1
/etc/racoon2/ha.conf:34:1[upper_layer_protocol] len=20
/etc/racoon2/ha.conf:34:1[135] len=3
/etc/racoon2/ha.conf:34:1[6] len=1
/etc/racoon2/ha.conf:34:1[5] len=1
/etc/racoon2/ha.conf:34:1[;] len=1
/etc/racoon2/ha.conf:35:1[reqid] len=5
/etc/racoon2/ha.conf:35:1[201] len=3
/etc/racoon2/ha.conf:35:1[;] len=1
/etc/racoon2/ha.conf:35:1[# Note: you may choose whatever value you want but must be in sync with mip6d.conf and unique.] len=94
/etc/racoon2/ha.conf:36:1[}] len=1
/etc/racoon2/ha.conf:36:1[;] len=1
/etc/racoon2/ha.conf:38:1[# Policy and selector for protecting the MPS/MPA messages for Mobile Prefix Discovery.] len=86
/etc/racoon2/ha.conf:39:1[policy] len=6
/etc/racoon2/ha.conf:39:1[MobPfxDisc] len=10
/etc/racoon2/ha.conf:39:1[{] len=1
/etc/racoon2/ha.conf:40:1[remote_index] len=12
/etc/racoon2/ha.conf:40:1[MobileNode] len=10
/etc/racoon2/ha.conf:40:1[;] len=1
/etc/racoon2/ha.conf:41:1[ipsec_mode] len=10
/etc/racoon2/ha.conf:41:1[transport] len=9
/etc/racoon2/ha.conf:41:1[;] len=1
/etc/racoon2/ha.conf:42:1[action] len=6
/etc/racoon2/ha.conf:42:1[auto_ipsec] len=10
/etc/racoon2/ha.conf:42:1[;] len=1
/etc/racoon2/ha.conf:43:1[ipsec_index] len=11
/etc/racoon2/ha.conf:43:1[{] len=1
/etc/racoon2/ha.conf:43:1[ipsec_esp] len=9
/etc/racoon2/ha.conf:43:1[;] len=1
/etc/racoon2/ha.conf:43:1[}] len=1
/etc/racoon2/ha.conf:43:1[;] len=1
/etc/racoon2/ha.conf:44:1[ipsec_level] len=11
/etc/racoon2/ha.conf:44:1[require] len=7
/etc/racoon2/ha.conf:44:1[;] len=1
/etc/racoon2/ha.conf:45:1[peers_sa_ipaddr] len=15
/etc/racoon2/ha.conf:45:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:45:1[;] len=1
/etc/racoon2/ha.conf:46:1[my_sa_ipaddr] len=12
/etc/racoon2/ha.conf:46:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:46:1[;] len=1
/etc/racoon2/ha.conf:47:1[install] len=7
/etc/racoon2/ha.conf:47:1[off] len=3
/etc/racoon2/ha.conf:47:1[;] len=1
/etc/racoon2/ha.conf:48:1[}] len=1
/etc/racoon2/ha.conf:48:1[;] len=1
/etc/racoon2/ha.conf:49:1[selector] len=8
/etc/racoon2/ha.conf:49:1[MobPfxDisc_out] len=14
/etc/racoon2/ha.conf:49:1[{] len=1
/etc/racoon2/ha.conf:50:1[direction] len=9
/etc/racoon2/ha.conf:50:1[outbound] len=8
/etc/racoon2/ha.conf:50:1[;] len=1
/etc/racoon2/ha.conf:51:1[dst] len=3
/etc/racoon2/ha.conf:51:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:51:1[;] len=1
/etc/racoon2/ha.conf:52:1[src] len=3
/etc/racoon2/ha.conf:52:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:52:1[;] len=1
/etc/racoon2/ha.conf:53:1[policy_index] len=12
/etc/racoon2/ha.conf:53:1[MobPfxDisc] len=10
/etc/racoon2/ha.conf:53:1[;] len=1
/etc/racoon2/ha.conf:54:1[upper_layer_protocol] len=20
/etc/racoon2/ha.conf:54:1[135] len=3
/etc/racoon2/ha.conf:54:1[93] len=2
/etc/racoon2/ha.conf:54:1[92] len=2
/etc/racoon2/ha.conf:54:1[;] len=1
/etc/racoon2/ha.conf:55:1[reqid] len=5
/etc/racoon2/ha.conf:55:1[203] len=3
/etc/racoon2/ha.conf:55:1[;] len=1
/etc/racoon2/ha.conf:56:1[}] len=1
/etc/racoon2/ha.conf:56:1[;] len=1
/etc/racoon2/ha.conf:58:1[# Tunnel all traffic between MN and HA when the MN is not at home.] len=66
/etc/racoon2/ha.conf:59:1[policy] len=6
/etc/racoon2/ha.conf:59:1[TunnelPayload] len=13
/etc/racoon2/ha.conf:59:1[{] len=1
/etc/racoon2/ha.conf:60:1[remote_index] len=12
/etc/racoon2/ha.conf:60:1[MobileNode] len=10
/etc/racoon2/ha.conf:60:1[;] len=1
/etc/racoon2/ha.conf:61:1[ipsec_mode] len=10
/etc/racoon2/ha.conf:61:1[tunnel] len=6
/etc/racoon2/ha.conf:61:1[;] len=1
/etc/racoon2/ha.conf:62:1[action] len=6
/etc/racoon2/ha.conf:62:1[auto_ipsec] len=10
/etc/racoon2/ha.conf:62:1[;] len=1
/etc/racoon2/ha.conf:63:1[ipsec_index] len=11
/etc/racoon2/ha.conf:63:1[{] len=1
/etc/racoon2/ha.conf:63:1[ipsec_esp] len=9
/etc/racoon2/ha.conf:63:1[;] len=1
/etc/racoon2/ha.conf:63:1[}] len=1
/etc/racoon2/ha.conf:63:1[;] len=1
/etc/racoon2/ha.conf:64:1[ipsec_level] len=11
/etc/racoon2/ha.conf:64:1[require] len=7
/etc/racoon2/ha.conf:64:1[;] len=1
/etc/racoon2/ha.conf:65:1[peers_sa_ipaddr] len=15
/etc/racoon2/ha.conf:65:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:65:1[;] len=1
/etc/racoon2/ha.conf:66:1[my_sa_ipaddr] len=12
/etc/racoon2/ha.conf:66:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:66:1[;] len=1
/etc/racoon2/ha.conf:67:1[install] len=7
/etc/racoon2/ha.conf:67:1[off] len=3
/etc/racoon2/ha.conf:67:1[;] len=1
/etc/racoon2/ha.conf:68:1[}] len=1
/etc/racoon2/ha.conf:68:1[;] len=1
/etc/racoon2/ha.conf:69:1[selector] len=8
/etc/racoon2/ha.conf:69:1[TunnelPayload_out] len=17
/etc/racoon2/ha.conf:69:1[{] len=1
/etc/racoon2/ha.conf:70:1[direction] len=9
/etc/racoon2/ha.conf:70:1[outbound] len=8
/etc/racoon2/ha.conf:70:1[;] len=1
/etc/racoon2/ha.conf:71:1[dst] len=3
/etc/racoon2/ha.conf:71:1[2001:660:4701:2::12] len=19
/etc/racoon2/ha.conf:71:1[;] len=1
/etc/racoon2/ha.conf:72:1[src] len=3
/etc/racoon2/ha.conf:72:1[2001:660:4701:2::1] len=18
/etc/racoon2/ha.conf:72:1[;] len=1
/etc/racoon2/ha.conf:73:1[policy_index] len=12
/etc/racoon2/ha.conf:73:1[TunnelPayload] len=13
/etc/racoon2/ha.conf:73:1[;] len=1
/etc/racoon2/ha.conf:74:1[reqid] len=5
/etc/racoon2/ha.conf:74:1[205] len=3
/etc/racoon2/ha.conf:74:1[;] len=1
/etc/racoon2/ha.conf:75:1[}] len=1
/etc/racoon2/ha.conf:75:1[;] len=1
root at cnc-111040277-HA:~# 

mip6d -d 10

root at cnc-111040277-HA:~# mip6d -d 10
mip6d[6377]: MIPL Mobile IPv6 for Linux v2.0.2-umip-0.4 started (Home Agent)
Sat Jun 20 13:25:23 main: MIPL Mobile IPv6 for Linux started in debug mode, not detaching from terminal
Sat Jun 20 13:25:23 conf_show: config_file = /etc/mip6d.conf
Sat Jun 20 13:25:23 conf_show: vt_hostname = localhost
Sat Jun 20 13:25:23 conf_show: vt_service = 7777
Sat Jun 20 13:25:23 conf_show: mip6_entity = 2
Sat Jun 20 13:25:23 conf_show: debug_level = 10
Sat Jun 20 13:25:23 conf_show: debug_log_file = stderr
Sat Jun 20 13:25:23 conf_show: PolicyModulePath = [internal]
Sat Jun 20 13:25:23 conf_show: DefaultBindingAclPolicy = 0
Sat Jun 20 13:25:23 conf_show: NonVolatileBindingCache = disabled
Sat Jun 20 13:25:23 conf_show: KeyMngMobCapability = enabled
Sat Jun 20 13:25:23 conf_show: UseMnHaIPsec = enabled
Sat Jun 20 13:25:23 conf_show: MnMaxHaBindingLife = 262140
Sat Jun 20 13:25:23 conf_show: MnMaxCnBindingLife = 420
Sat Jun 20 13:25:23 conf_show: MnRouterProbes = 0
Sat Jun 20 13:25:23 conf_show: MnRouterProbeTimeout = 0.000000
Sat Jun 20 13:25:23 conf_show: InitialBindackTimeoutFirstReg = 1.500000
Sat Jun 20 13:25:23 conf_show: InitialBindackTimeoutReReg = 1.000000
Sat Jun 20 13:25:23 conf_show: UseCnBuAck = disabled
Sat Jun 20 13:25:23 conf_show: DoRouteOptimizationMN = enabled
Sat Jun 20 13:25:23 conf_show: MnUseAllInterfaces = disabled
Sat Jun 20 13:25:23 conf_show: MnDiscardHaParamProb = disabled
Sat Jun 20 13:25:23 conf_show: SendMobPfxSols = enabled
Sat Jun 20 13:25:23 conf_show: OptimisticHandoff = disabled
Sat Jun 20 13:25:23 conf_show: MobRtrUseExplicitMode = enabled
Sat Jun 20 13:25:23 conf_show: SendMobPfxAdvs = enabled
Sat Jun 20 13:25:23 conf_show: SendUnsolMobPfxAdvs = enabled
Sat Jun 20 13:25:23 conf_show: MaxMobPfxAdvInterval = 86400
Sat Jun 20 13:25:23 conf_show: MinMobPfxAdvInterval = 600
Sat Jun 20 13:25:23 conf_show: HaMaxBindingLife = 262140
Sat Jun 20 13:25:23 conf_show: HaAcceptMobRtr = disabled
Sat Jun 20 13:25:23 conf_show: DoRouteOptimizationCN = enabled
Sat Jun 20 13:25:23 xfrm_cn_init: Adding policies and states for CN
Sat Jun 20 13:25:23 xfrm_ha_init: Adding policies and states for HA
Sat Jun 20 13:25:23 ha_mn_ipsec_init: Adding IPsec policies and states for HA
Sat Jun 20 13:25:23 ha_if_addr_setup: Joined anycast group 2001:660:4701:2:fdff:ffff:ffff:fffe on iface 4
mip6d[6377]: terminated (SIGINT)
Sat Jun 20 13:30:03 terminate: got SIGINT, exiting
Sat Jun 20 13:30:03 xfrm_ha_cleanup: Deleting policies and states for HA
Sat Jun 20 13:30:03 xfrm_cn_cleanup: Deleting policies and states for CN
mip6d[6377]: MIPL Mobile IPv6 for Linux v2.0.2-umip-0.4 stopped (Home Agent)
root at cnc-111040277-HA:~# 

config for MN =====>>>

###racoon2.conf###
interface {
    ike { MY_IP; };
    spmd { unix "/var/run/racoon2/spmif"; };
    spmd_password "/etc/racoon2/spmd.pwd";
};
resolver {
    resolver off;
};
include "/etc/racoon2/default.conf";
include "/etc/racoon2/mn.conf";

####default.conf#####
# $Id: default.conf,v 1.3 2007/07/11 07:53:48 mk Exp $
#
# default section
#
#default
#{
#    remote {
#        acceptable_kmp { ikev2; ikev1; kink; };
#        ikev1 {
#            logmode normal;
#            kmp_sa_lifetime_time 600 sec;
#            kmp_sa_lifetime_byte infinite;
#            interval_to_send 10 sec;
#            times_per_send 1;
#            ipsec_sa_nego_time_limit 40 sec;
#            kmp_enc_alg { aes192_cbc; aes128_cbc; 3des_cbc; };
#            kmp_hash_alg { sha1; md5; };
#            kmp_dh_group { modp3072; modp2048; modp1536; modp1024; };
#            kmp_auth_method { psk; };
#            random_pad_content on;
#            # max_padlen 50 bytes;
#        };
#        ikev2 {
#            logmode normal;
#            kmp_sa_lifetime_time infinite;
#            kmp_sa_lifetime_byte infinite;
#            max_retry_to_send 3;
#            interval_to_send 10 sec;
#            times_per_send 1;
#            kmp_sa_nego_time_limit 60 sec;
#            ipsec_sa_nego_time_limit 40 sec;
#            kmp_enc_alg { aes192_cbc; aes128_cbc; 3des_cbc; };
#            kmp_prf_alg { hmac_md5; hmac_sha1; aes_xcbc; };
#            kmp_hash_alg { hmac_sha1; hmac_md5; };
#            kmp_dh_group { modp3072; modp2048; modp1536; modp1024;  };
#            kmp_auth_method { psk; };
#            random_pad_content on;
#            random_padlen on;
#            max_padlen 50 bytes;
#        };
#        kink {
#            my_principal "kink/racoon2.wide.ad.jp";
#            nonce_size 16 B;
#        };
#    };
#
#    policy {
#        ipsec_mode transport;
#        ipsec_level require;
#    };
#
#    ipsec {
#        ipsec_sa_lifetime_time infinite;
#        ipsec_sa_lifetime_byte infinite;
#    };
#
#    sa {
#        esp_enc_alg { aes128_cbc; 3des_cbc; };
#        esp_auth_alg { hmac_sha1; hmac_md5; };
#    };
#};
ipsec ipsec_ah_esp {
    ipsec_sa_lifetime_time 28800 sec;
    sa_index { ah_01; esp_01; };
};
ipsec ipsec_esp {
    ipsec_sa_lifetime_time 28800 sec;
    sa_index esp_01;
};

sa ah_01 {
    sa_protocol ah;
    ah_auth_alg { hmac_sha1; hmac_md5; };
};
sa esp_01 {
    sa_protocol esp;
    esp_enc_alg { aes128_cbc; 3des_cbc; };
    esp_auth_alg { hmac_sha1; hmac_md5; };
};

########mn.conf########

# Home Agent address:  2001:660:4701:2::1
# MN Home address   :  2001:660:4701:2::12

remote HomeAgent {
    ikev2 {
        my_id        x509_subject "/etc/racoon2/certs/mn.mydomain.com.cert";
        peers_id     x509_subject "/etc/racoon2/certs/cacert.pem";
        kmp_auth_method { rsasig; };
        my_public_key    x509pem 
                "/etc/racoon2/certs/mn.mydomain.com.cert"
                "/etc/racoon2/certs/mn.mydomain.com.key.pem";
        peers_public_key x509pem
                "/etc/racoon2/certs/cacert.pem"
                "";
    };
};

# Policy and selector for protecting the BU/BA messages for Home Registration.
policy HomeRegBinding {
    remote_index     HomeAgent;
    ipsec_mode     transport;
    action         auto_ipsec;
    ipsec_index     { ipsec_esp; };
    ipsec_level    require;
    peers_sa_ipaddr    2001:660:4701:2::1;
    my_sa_ipaddr    2001:660:4701:2::12;
    install     off;
};
selector HomeRegBinding_out {
    direction     outbound;
    dst        2001:660:4701:2::1;
    src        2001:660:4701:2::12;
    policy_index     HomeRegBinding;
    upper_layer_protocol    135 5 6;
    reqid        200; # Note: you may choose whatever value you want but must be in sync with mip6d.conf and unique.
};

# Policy and selector for protecting the MPS/MPA messages for Mobile Prefix Discovery.
policy MobPfxDisc {
    remote_index     HomeAgent;
    ipsec_mode     transport;
    action         auto_ipsec;
    ipsec_index     { ipsec_esp; };
    ipsec_level    require;
    peers_sa_ipaddr    2001:660:4701:2::1;
    my_sa_ipaddr    2001:660:4701:2::12;
    install     off;
};
selector MobPfxDisc_out {
    direction     outbound;
    dst        2001:660:4701:2::1;
    src        2001:660:4701:2::12;
    policy_index     MobPfxDisc;
    upper_layer_protocol    135 92 93;
    reqid        202;
};

# Tunnel all traffic between MN and HA when the MN is not at home.
policy TunnelPayload {
    remote_index     HomeAgent;
    ipsec_mode     tunnel;
    action         auto_ipsec;
    ipsec_index     { ipsec_esp; };
    ipsec_level    require;
    peers_sa_ipaddr    2001:660:4701:2::1;
    my_sa_ipaddr    2001:660:4701:2::12;
    install     off;
};
selector TunnelPayload_out {
    direction     outbound;
    dst        2001:660:4701:2::1;
    src        2001:660:4701:2::12;
    policy_index     TunnelPayload;
    reqid        204;
};

#####mip6d.conf######

NodeConfig    MN;
DoRouteOptimizationMN    disabled;    # In case you want to TunnelPayload. Otherwise you must protect HoTi/CoTi exchanges instead.
UseCnBuAck    enabled;
MnDiscardHaParamProb    enabled;
MnRouterProbes    1;

Interface    "ath0";
MnHomeLink    "ath0" {
    HomeAgentAddress        2001:660:4701:2::1;
    HomeAddress        2001:660:4701:2::12/64;
    }

UseMnHaIPsec    enabled;
KeyMngMobCapability    enabled;

IPsecPolicySet    {
    HomeAgentAddress        2001:660:4701:2::1;
    HomeAddress        2001:660:4701:2::12/64;
    
    IPsecPolicy    HomeRegBinding    UseESP 200;
    IPsecPolicy    MobPfxDisc    UseESP 202;
    IPsecPolicy    TunnelPayload    UseESP 204;
}

here is the log ====>>>

spmd -Fddd

/etc/racoon2/mn.conf:51:1[;] len=1
/etc/racoon2/mn.conf:52:1[src] len=3
/etc/racoon2/mn.conf:52:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:52:1[;] len=1
/etc/racoon2/mn.conf:53:1[policy_index] len=12
/etc/racoon2/mn.conf:53:1[MobPfxDisc] len=10
/etc/racoon2/mn.conf:53:1[;] len=1
/etc/racoon2/mn.conf:54:1[upper_layer_protocol] len=20
/etc/racoon2/mn.conf:54:1[135] len=3
/etc/racoon2/mn.conf:54:1[92] len=2
/etc/racoon2/mn.conf:54:1[93] len=2
/etc/racoon2/mn.conf:54:1[;] len=1
/etc/racoon2/mn.conf:55:1[reqid] len=5
/etc/racoon2/mn.conf:55:1[202] len=3
/etc/racoon2/mn.conf:55:1[;] len=1
/etc/racoon2/mn.conf:56:1[}] len=1
/etc/racoon2/mn.conf:56:1[;] len=1
/etc/racoon2/mn.conf:58:1[# Tunnel all traffic between MN and HA when the MN is not at home.] len=66
/etc/racoon2/mn.conf:59:1[policy] len=6
/etc/racoon2/mn.conf:59:1[TunnelPayload] len=13
/etc/racoon2/mn.conf:59:1[{] len=1
/etc/racoon2/mn.conf:60:1[remote_index] len=12
/etc/racoon2/mn.conf:60:1[HomeAgent] len=9
/etc/racoon2/mn.conf:60:1[;] len=1
/etc/racoon2/mn.conf:61:1[ipsec_mode] len=10
/etc/racoon2/mn.conf:61:1[tunnel] len=6
/etc/racoon2/mn.conf:61:1[;] len=1
/etc/racoon2/mn.conf:62:1[action] len=6
/etc/racoon2/mn.conf:62:1[auto_ipsec] len=10
/etc/racoon2/mn.conf:62:1[;] len=1
/etc/racoon2/mn.conf:63:1[ipsec_index] len=11
/etc/racoon2/mn.conf:63:1[{] len=1
/etc/racoon2/mn.conf:63:1[ipsec_esp] len=9
/etc/racoon2/mn.conf:63:1[;] len=1
/etc/racoon2/mn.conf:63:1[}] len=1
/etc/racoon2/mn.conf:63:1[;] len=1
/etc/racoon2/mn.conf:64:1[ipsec_level] len=11
/etc/racoon2/mn.conf:64:1[require] len=7
/etc/racoon2/mn.conf:64:1[;] len=1
/etc/racoon2/mn.conf:65:1[peers_sa_ipaddr] len=15
/etc/racoon2/mn.conf:65:1[2001:660:4701:2::1] len=18
/etc/racoon2/mn.conf:65:1[;] len=1
/etc/racoon2/mn.conf:66:1[my_sa_ipaddr] len=12
/etc/racoon2/mn.conf:66:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:66:1[;] len=1
/etc/racoon2/mn.conf:67:1[install] len=7
/etc/racoon2/mn.conf:67:1[off] len=3
/etc/racoon2/mn.conf:67:1[;] len=1
/etc/racoon2/mn.conf:68:1[}] len=1
/etc/racoon2/mn.conf:68:1[;] len=1
/etc/racoon2/mn.conf:69:1[selector] len=8
/etc/racoon2/mn.conf:69:1[TunnelPayload_out] len=17
/etc/racoon2/mn.conf:69:1[{] len=1
/etc/racoon2/mn.conf:70:1[direction] len=9
/etc/racoon2/mn.conf:70:1[outbound] len=8
/etc/racoon2/mn.conf:70:1[;] len=1
/etc/racoon2/mn.conf:71:1[dst] len=3
/etc/racoon2/mn.conf:71:1[2001:660:4701:2::1] len=18
/etc/racoon2/mn.conf:71:1[;] len=1
/etc/racoon2/mn.conf:72:1[src] len=3
/etc/racoon2/mn.conf:72:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:72:1[;] len=1
/etc/racoon2/mn.conf:73:1[policy_index] len=12
/etc/racoon2/mn.conf:73:1[TunnelPayload] len=13
/etc/racoon2/mn.conf:73:1[;] len=1
/etc/racoon2/mn.conf:74:1[reqid] len=5
/etc/racoon2/mn.conf:74:1[204] len=3
/etc/racoon2/mn.conf:74:1[;] len=1
/etc/racoon2/mn.conf:75:1[}] len=1
/etc/racoon2/mn.conf:75:1[;] len=1
2009-06-21 06:16:09 [INFO]: main.c:171: Racoon Spmd - Security Policy Management Daemon - Started
2009-06-21 06:16:09 [INFO]: main.c:172: Spmd Version: 20071227d
2009-06-21 06:16:09 [DEBUG]: spmd_pfkey.c:319: No install for (selector=HomeRegBinding_out)
2009-06-21 06:16:09 [DEBUG]: spmd_pfkey.c:319: No install for (selector=MobPfxDisc_out)
2009-06-21 06:16:09 [DEBUG]: spmd_pfkey.c:319: No install for (selector=TunnelPayload_out)
2009-06-21 06:16:09 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091d40
2009-06-21 06:16:09 [DEBUG]: task.c:122: === ADD TASK: 0x8091d40
2009-06-21 06:16:09 [INFO]: main.c:450: 'files' found in nsswitch.conf hosts line, we will read hosts file
2009-06-21 06:16:09 [INFO]: main.c:459: 'dns' found in nsswitch.conf hosts line, we will start dns proxy service
2009-06-21 06:16:09 [DEBUG]: cfsetup.c:3866: read 16 bytes
2009-06-21 06:16:09 [DEBUG]: shell.c:765: Password=79E9AFC3236B96376719A1C9CCF7645D
2009-06-21 06:16:09 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091f60
2009-06-21 06:16:09 [DEBUG]: task.c:122: === ADD TASK: 0x8091f60
2009-06-21 06:16:09 [DEBUG]: task.c:347: [READ Queue][00]:0x8091d40:0x8058928
2009-06-21 06:16:09 [DEBUG]: task.c:347: [READ Queue][01]:0x8091f60:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:161: === DEL TASK: 0x8091d40
2009-06-21 06:16:29 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091d40:0x8058928
2009-06-21 06:16:29 [DEBUG]: if_pfkeyv2.c:279: REGISTER message is not interesting because pid 6243 is not mine
2009-06-21 06:16:29 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091d78
2009-06-21 06:16:29 [DEBUG]: task.c:122: === ADD TASK: 0x8091d78
2009-06-21 06:16:29 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][00]:0x8091f60:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][01]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][00]:0x8091f60:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][01]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:161: === DEL TASK: 0x8091d78
2009-06-21 06:16:29 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: if_pfkeyv2.c:279: REGISTER message is not interesting because pid 6243 is not mine
2009-06-21 06:16:29 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091d40
2009-06-21 06:16:29 [DEBUG]: task.c:122: === ADD TASK: 0x8091d40
2009-06-21 06:16:29 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][00]:0x8091f60:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][01]:0x8091d40:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][00]:0x8091f60:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][01]:0x8091d40:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:161: === DEL TASK: 0x8091d40
2009-06-21 06:16:29 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091d40:0x8058928
2009-06-21 06:16:29 [DEBUG]: if_pfkeyv2.c:279: REGISTER message is not interesting because pid 6243 is not mine
2009-06-21 06:16:29 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091d78
2009-06-21 06:16:29 [DEBUG]: task.c:122: === ADD TASK: 0x8091d78
2009-06-21 06:16:29 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][00]:0x8091f60:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][01]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][00]:0x8091f60:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][01]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:161: === DEL TASK: 0x8091f60
2009-06-21 06:16:29 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091f60:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: shell.c:691: Seed=74332732259E5528BA41AA10C3C0C4485F9CD201BC13C046988EE75341FBB1DEF5F7EF51BD34374CE63D64F1554C91B2E540FC5C77E403AADFBAB8F7A65D8C603FE92009-06-21 06:16:29 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091d40
2009-06-21 06:16:29 [DEBUG]: task.c:122: === ADD TASK: 0x8091d40
2009-06-21 06:16:29 [DEBUG]: task.c:86: === ALLOC TASK: 0x808e228
2009-06-21 06:16:29 [DEBUG]: task.c:122: === ADD TASK: 0x808e228
2009-06-21 06:16:29 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][00]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][01]:0x8091d40:0x805122c
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][02]:0x808e228:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][00]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][01]:0x8091d40:0x805122c
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][02]:0x808e228:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:161: === DEL TASK: 0x8091d40
2009-06-21 06:16:29 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091d40:0x805122c
2009-06-21 06:16:29 [DEBUG]: shell.c:615: SPMD Interface Command=>LOGIN
2009-06-21 06:16:29 [DEBUG]: cfsetup.c:3866: read 16 bytes
2009-06-21 06:16:29 [DEBUG]: shell.c:765: Password=79E9AFC3236B96376719A1C9CCF7645D
2009-06-21 06:16:29 [DEBUG]: shell.c:807: Spmd interface Login Password=>79E9AFC3236B96376719A1C9CCF7645D
2009-06-21 06:16:29 [DEBUG]: shell.c:808: Spmd interface Login Challenge=>D36D2AFC35807A512820268E597DC277AF0A9525
2009-06-21 06:16:29 [DEBUG]: shell.c:809: Spmd interface Login Hash=>355B65509FE85D859B4C29000FCBE43D498034DA
2009-06-21 06:16:29 [DEBUG]: shell.c:852: Spmd interface connected(fd=6)
2009-06-21 06:16:29 [DEBUG]: task.c:86: === ALLOC TASK: 0x808ec78
2009-06-21 06:16:29 [DEBUG]: task.c:122: === ADD TASK: 0x808ec78
2009-06-21 06:16:29 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][00]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][01]:0x808e228:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:403: [=READ Queue][02]:0x808ec78:0x805122c
2009-06-21 06:16:29 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][00]:0x8091d78:0x8058928
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][01]:0x808e228:0x8050e8f
2009-06-21 06:16:29 [DEBUG]: task.c:347: [READ Queue][02]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:161: === DEL TASK: 0x8091d78
2009-06-21 06:16:48 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091d78:0x8058928
2009-06-21 06:16:48 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2163: Found selector(=HomeRegBinding_out) suitable for the external policy.
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1480, selector_index=HomeRegBinding_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-21 06:16:48 [DEBUG]: task.c:86: === ALLOC TASK: 0x808eb88
2009-06-21 06:16:48 [DEBUG]: task.c:122: === ADD TASK: 0x808eb88
2009-06-21 06:16:48 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][02]:0x808eb88:0x8058928
2009-06-21 06:16:48 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][02]:0x808eb88:0x8058928
2009-06-21 06:16:48 [DEBUG]: task.c:161: === DEL TASK: 0x808eb88
2009-06-21 06:16:48 [DEBUG]: task.c:385: [RUN Queue][00]:0x808eb88:0x8058928
2009-06-21 06:16:48 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2163: Found selector(=HomeRegBinding_out) suitable for the external policy.
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1480, selector_index=HomeRegBinding_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1489, selector_index=HomeRegBinding_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-21 06:16:48 [DEBUG]: task.c:86: === ALLOC TASK: 0x8090c70
2009-06-21 06:16:48 [DEBUG]: task.c:122: === ADD TASK: 0x8090c70
2009-06-21 06:16:48 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][02]:0x8090c70:0x8058928
2009-06-21 06:16:48 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][02]:0x8090c70:0x8058928
2009-06-21 06:16:48 [DEBUG]: task.c:161: === DEL TASK: 0x8090c70
2009-06-21 06:16:48 [DEBUG]: task.c:385: [RUN Queue][00]:0x8090c70:0x8058928
2009-06-21 06:16:48 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2163: Found selector(=MobPfxDisc_out) suitable for the external policy.
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1480, selector_index=HomeRegBinding_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1489, selector_index=HomeRegBinding_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1496, selector_index=MobPfxDisc_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-21 06:16:48 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091c48
2009-06-21 06:16:48 [DEBUG]: task.c:122: === ADD TASK: 0x8091c48
2009-06-21 06:16:48 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091c48:0x8058928
2009-06-21 06:16:48 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c48:0x8058928
2009-06-21 06:16:48 [DEBUG]: task.c:161: === DEL TASK: 0x8091c48
2009-06-21 06:16:48 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091c48:0x8058928
2009-06-21 06:16:48 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2163: Found selector(=MobPfxDisc_out) suitable for the external policy.
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1480, selector_index=HomeRegBinding_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1489, selector_index=HomeRegBinding_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1496, selector_index=MobPfxDisc_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2107: {spid=1505, selector_index=MobPfxDisc_out}
2009-06-21 06:16:48 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-21 06:16:48 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091468
2009-06-21 06:16:48 [DEBUG]: task.c:122: === ADD TASK: 0x8091468
2009-06-21 06:16:48 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091468:0x8058928
2009-06-21 06:16:48 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:16:48 [DEBUG]: task.c:347: [READ Queue][02]:0x8091468:0x8058928
2009-06-21 06:17:48 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:17:48 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:17:48 [DEBUG]: task.c:347: [READ Queue][02]:0x8091468:0x8058928
2009-06-21 06:18:14 [DEBUG]: task.c:161: === DEL TASK: 0x8091468
2009-06-21 06:18:14 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091468:0x8058928
2009-06-21 06:18:14 [DEBUG]: spmd_pfkey.c:964: Delete: slid=HomeRegBinding_out, spid=1480
2009-06-21 06:18:14 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091c48
2009-06-21 06:18:14 [DEBUG]: task.c:122: === ADD TASK: 0x8091c48
2009-06-21 06:18:14 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091c48:0x8058928
2009-06-21 06:18:14 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c48:0x8058928
2009-06-21 06:18:14 [DEBUG]: task.c:161: === DEL TASK: 0x8091c48
2009-06-21 06:18:14 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091c48:0x8058928
2009-06-21 06:18:14 [DEBUG]: spmd_pfkey.c:964: Delete: slid=HomeRegBinding_out, spid=1489
2009-06-21 06:18:14 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091468
2009-06-21 06:18:14 [DEBUG]: task.c:122: === ADD TASK: 0x8091468
2009-06-21 06:18:14 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091468:0x8058928
2009-06-21 06:18:14 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][02]:0x8091468:0x8058928
2009-06-21 06:18:14 [DEBUG]: task.c:161: === DEL TASK: 0x8091468
2009-06-21 06:18:14 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091468:0x8058928
2009-06-21 06:18:14 [DEBUG]: spmd_pfkey.c:964: Delete: slid=MobPfxDisc_out, spid=1496
2009-06-21 06:18:14 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091c48
2009-06-21 06:18:14 [DEBUG]: task.c:122: === ADD TASK: 0x8091c48
2009-06-21 06:18:14 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091c48:0x8058928
2009-06-21 06:18:14 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][02]:0x8091c48:0x8058928
2009-06-21 06:18:14 [DEBUG]: task.c:161: === DEL TASK: 0x8091c48
2009-06-21 06:18:14 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091c48:0x8058928
2009-06-21 06:18:14 [DEBUG]: spmd_pfkey.c:964: Delete: slid=MobPfxDisc_out, spid=1505
2009-06-21 06:18:14 [DEBUG]: task.c:86: === ALLOC TASK: 0x8091438
2009-06-21 06:18:14 [DEBUG]: task.c:122: === ADD TASK: 0x8091438
2009-06-21 06:18:14 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:14 [DEBUG]: task.c:403: [=READ Queue][02]:0x8091438:0x8058928
2009-06-21 06:18:14 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:14 [DEBUG]: task.c:347: [READ Queue][02]:0x8091438:0x8058928
2009-06-21 06:18:16 [DEBUG]: task.c:161: === DEL TASK: 0x8091438
2009-06-21 06:18:16 [DEBUG]: task.c:385: [RUN Queue][00]:0x8091438:0x8058928
2009-06-21 06:18:16 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2163: Found selector(=HomeRegBinding_out) suitable for the external policy.
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12416, selector_index=HomeRegBinding_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-21 06:18:16 [DEBUG]: task.c:86: === ALLOC TASK: 0x8089ea0
2009-06-21 06:18:16 [DEBUG]: task.c:122: === ADD TASK: 0x8089ea0
2009-06-21 06:18:16 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][02]:0x8089ea0:0x8058928
2009-06-21 06:18:16 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][02]:0x8089ea0:0x8058928
2009-06-21 06:18:16 [DEBUG]: task.c:161: === DEL TASK: 0x8089ea0
2009-06-21 06:18:16 [DEBUG]: task.c:385: [RUN Queue][00]:0x8089ea0:0x8058928
2009-06-21 06:18:16 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2163: Found selector(=HomeRegBinding_out) suitable for the external policy.
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12416, selector_index=HomeRegBinding_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12425, selector_index=HomeRegBinding_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-21 06:18:16 [DEBUG]: task.c:86: === ALLOC TASK: 0x808a5f0
2009-06-21 06:18:16 [DEBUG]: task.c:122: === ADD TASK: 0x808a5f0
2009-06-21 06:18:16 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][02]:0x808a5f0:0x8058928
2009-06-21 06:18:16 [DEBUG]: task.c:97: === :FREE TASK: 0x80895d0
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][02]:0x808a5f0:0x8058928
2009-06-21 06:18:16 [DEBUG]: task.c:161: === DEL TASK: 0x808a5f0
2009-06-21 06:18:16 [DEBUG]: task.c:385: [RUN Queue][00]:0x808a5f0:0x8058928
2009-06-21 06:18:16 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2163: Found selector(=MobPfxDisc_out) suitable for the external policy.
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12416, selector_index=HomeRegBinding_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12425, selector_index=HomeRegBinding_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12432, selector_index=MobPfxDisc_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-21 06:18:16 [DEBUG]: task.c:86: === ALLOC TASK: 0x808ade0
2009-06-21 06:18:16 [DEBUG]: task.c:122: === ADD TASK: 0x808ade0
2009-06-21 06:18:16 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][02]:0x808ade0:0x8058928
2009-06-21 06:18:16 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][02]:0x808ade0:0x8058928
2009-06-21 06:18:16 [DEBUG]: task.c:161: === DEL TASK: 0x808ade0
2009-06-21 06:18:16 [DEBUG]: task.c:385: [RUN Queue][00]:0x808ade0:0x8058928
2009-06-21 06:18:16 [INTERNAL_ERR]: spmd_pfkey.c:1801: No spid_data entry with this sequence.
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2163: Found selector(=MobPfxDisc_out) suitable for the external policy.
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2105: spid data: dumping spid<->selector_index entries...
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12416, selector_index=HomeRegBinding_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12425, selector_index=HomeRegBinding_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12432, selector_index=MobPfxDisc_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2107: {spid=12441, selector_index=MobPfxDisc_out}
2009-06-21 06:18:16 [DEBUG]: spmd_pfkey.c:2109: spid data: done
2009-06-21 06:18:16 [DEBUG]: task.c:86: === ALLOC TASK: 0x808b5d0
2009-06-21 06:18:16 [DEBUG]: task.c:122: === ADD TASK: 0x808b5d0
2009-06-21 06:18:16 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:16 [DEBUG]: task.c:403: [=READ Queue][02]:0x808b5d0:0x8058928
2009-06-21 06:18:16 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][01]:0x808ec78:0x805122c
2009-06-21 06:18:16 [DEBUG]: task.c:347: [READ Queue][02]:0x808b5d0:0x8058928
2009-06-21 06:18:52 [DEBUG]: task.c:161: === DEL TASK: 0x808ec78
2009-06-21 06:18:52 [DEBUG]: task.c:385: [RUN Queue][00]:0x808ec78:0x805122c
2009-06-21 06:18:52 [INTERNAL_ERR]: shell.c:517: Can't read spmd interface socket=6
2009-06-21 06:18:52 [INFO]: shell.c:596: Spmd interface closed(fd=6)
2009-06-21 06:18:52 [DEBUG]: task.c:258: Failed to exec handler
2009-06-21 06:18:52 [DEBUG]: task.c:394: === TASK RUN
2009-06-21 06:18:52 [DEBUG]: task.c:403: [=READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:52 [DEBUG]: task.c:403: [=READ Queue][01]:0x808b5d0:0x8058928
2009-06-21 06:18:52 [DEBUG]: task.c:97: === :FREE TASK: 0x8089460
2009-06-21 06:18:52 [DEBUG]: task.c:347: [READ Queue][00]:0x808e228:0x8050e8f
2009-06-21 06:18:52 [DEBUG]: task.c:347: [READ Queue][01]:0x808b5d0:0x8058928
^X2009-06-21 06:18:57 [INFO]: signal.c:95: Signal(2) received, Start exit processing.
2009-06-21 06:18:57 [INFO]: spmd_pfkey.c:800: Flushing Security Policies...
2009-06-21 06:18:57 [DEBUG]: spmd_pfkey.c:986: Delete: slid=HomeRegBinding_out, spid=12416
2009-06-21 06:18:57 [INFO]: spmd_pfkey.c:809: spid=12416
2009-06-21 06:18:57 [DEBUG]: spmd_pfkey.c:986: Delete: slid=HomeRegBinding_out, spid=12425
2009-06-21 06:18:57 [INFO]: spmd_pfkey.c:809: spid=12425
2009-06-21 06:18:57 [DEBUG]: spmd_pfkey.c:986: Delete: slid=MobPfxDisc_out, spid=12432
2009-06-21 06:18:57 [INFO]: spmd_pfkey.c:809: spid=12432
2009-06-21 06:18:57 [DEBUG]: spmd_pfkey.c:986: Delete: slid=MobPfxDisc_out, spid=12441
2009-06-21 06:18:57 [INFO]: spmd_pfkey.c:809: spid=12441
2009-06-21 06:18:57 [INFO]: spmd_pfkey.c:813: ...Done.

iked -Fddd

root at brama-laptop:~# iked -ddd -F
reading config file /etc/racoon2/racoon2.conf
/etc/racoon2/racoon2.conf:1:1[interface] len=9
/etc/racoon2/racoon2.conf:1:1[{] len=1
/etc/racoon2/racoon2.conf:2:1[ike] len=3
/etc/racoon2/racoon2.conf:2:1[{] len=1
/etc/racoon2/racoon2.conf:2:1[MY_IP] len=5
/etc/racoon2/racoon2.conf:2:1[;] len=1
/etc/racoon2/racoon2.conf:2:1[}] len=1
/etc/racoon2/racoon2.conf:2:1[;] len=1
/etc/racoon2/racoon2.conf:3:1[spmd] len=4
/etc/racoon2/racoon2.conf:3:1[{] len=1
/etc/racoon2/racoon2.conf:3:1[unix] len=4
/etc/racoon2/racoon2.conf:3:1["/var/run/racoon2/spmif"] len=24
/etc/racoon2/racoon2.conf:3:1[;] len=1
/etc/racoon2/racoon2.conf:3:1[}] len=1
/etc/racoon2/racoon2.conf:3:1[;] len=1
/etc/racoon2/racoon2.conf:4:1[spmd_password] len=13
/etc/racoon2/racoon2.conf:4:1["/etc/racoon2/spmd.pwd"] len=23
/etc/racoon2/racoon2.conf:4:1[;] len=1
/etc/racoon2/racoon2.conf:5:1[}] len=1
/etc/racoon2/racoon2.conf:5:1[;] len=1
/etc/racoon2/racoon2.conf:6:1[resolver] len=8
/etc/racoon2/racoon2.conf:6:1[{] len=1
/etc/racoon2/racoon2.conf:7:1[resolver] len=8
/etc/racoon2/racoon2.conf:7:1[off] len=3
/etc/racoon2/racoon2.conf:7:1[;] len=1
/etc/racoon2/racoon2.conf:8:1[}] len=1
/etc/racoon2/racoon2.conf:8:1[;] len=1
/etc/racoon2/racoon2.conf:9:1[include] len=7
/etc/racoon2/racoon2.conf:9:1["/etc/racoon2/default.conf"] len=27
/etc/racoon2/racoon2.conf:9:1[;] len=1
reading config file /etc/racoon2/default.conf
/etc/racoon2/default.conf:1:1[# $Id: default.conf,v 1.3 2007/07/11 07:53:48 mk Exp $] len=54
/etc/racoon2/default.conf:2:1[#] len=1
/etc/racoon2/default.conf:3:1[# default section] len=17
/etc/racoon2/default.conf:4:1[#] len=1
/etc/racoon2/default.conf:5:1[#default] len=8
/etc/racoon2/default.conf:6:1[#{] len=2
/etc/racoon2/default.conf:7:1[# remote {] len=10
/etc/racoon2/default.conf:8:1[#         acceptable_kmp { ikev2; ikev1; kink; };] len=42
/etc/racoon2/default.conf:9:1[#         ikev1 {] len=10
/etc/racoon2/default.conf:10:1[#                        logmode normal;] len=19
/etc/racoon2/default.conf:11:1[#                        kmp_sa_lifetime_time 600 sec;] len=33
/etc/racoon2/default.conf:12:1[#                        kmp_sa_lifetime_byte infinite;] len=34
/etc/racoon2/default.conf:13:1[#                        interval_to_send 10 sec;] len=28
/etc/racoon2/default.conf:14:1[#                        times_per_send 1;] len=21
/etc/racoon2/default.conf:15:1[#                        ipsec_sa_nego_time_limit 40 sec;] len=36
/etc/racoon2/default.conf:16:1[#                        kmp_enc_alg { aes192_cbc; aes128_cbc; 3des_cbc; };] len=54
/etc/racoon2/default.conf:17:1[#                        kmp_hash_alg { sha1; md5; };] len=32
/etc/racoon2/default.conf:18:1[#                        kmp_dh_group { modp3072; modp2048; modp1536; modp1024; };] len=61
/etc/racoon2/default.conf:19:1[#                        kmp_auth_method { psk; };] len=29
/etc/racoon2/default.conf:20:1[#                        random_pad_content on;] len=26
/etc/racoon2/default.conf:21:1[#                        # max_padlen 50 bytes;] len=26
/etc/racoon2/default.conf:22:1[#                };] len=5
/etc/racoon2/default.conf:23:1[#                ikev2 {] len=10
/etc/racoon2/default.conf:24:1[#                        logmode normal;] len=19
/etc/racoon2/default.conf:25:1[#                        kmp_sa_lifetime_time infinite;] len=34
/etc/racoon2/default.conf:26:1[#                        kmp_sa_lifetime_byte infinite;] len=34
/etc/racoon2/default.conf:27:1[#                        max_retry_to_send 3;] len=24
/etc/racoon2/default.conf:28:1[#                        interval_to_send 10 sec;] len=28
/etc/racoon2/default.conf:29:1[#                        times_per_send 1;] len=21
/etc/racoon2/default.conf:30:1[#                        kmp_sa_nego_time_limit 60 sec;] len=34
/etc/racoon2/default.conf:31:1[#                        ipsec_sa_nego_time_limit 40 sec;] len=36
/etc/racoon2/default.conf:32:1[#                        kmp_enc_alg { aes192_cbc; aes128_cbc; 3des_cbc; };] len=54
/etc/racoon2/default.conf:33:1[#                        kmp_prf_alg { hmac_md5; hmac_sha1; aes_xcbc; };] len=51
/etc/racoon2/default.conf:34:1[#                        kmp_hash_alg { hmac_sha1; hmac_md5; };] len=42
/etc/racoon2/default.conf:35:1[#                        kmp_dh_group { modp3072; modp2048; modp1536; modp1024;  };] len=62
/etc/racoon2/default.conf:36:1[#                        kmp_auth_method { psk; };] len=29
/etc/racoon2/default.conf:37:1[#                        random_pad_content on;] len=26
/etc/racoon2/default.conf:38:1[#                        random_padlen on;] len=21
/etc/racoon2/default.conf:39:1[#                        max_padlen 50 bytes;] len=24
/etc/racoon2/default.conf:40:1[#                };] len=5
/etc/racoon2/default.conf:41:1[#                kink {] len=9
/etc/racoon2/default.conf:42:1[#                        my_principal "kink/racoon2.wide.ad.jp";] len=43
/etc/racoon2/default.conf:43:1[#                        nonce_size 16 B;] len=20
/etc/racoon2/default.conf:44:1[#                };] len=5
/etc/racoon2/default.conf:45:1[#        };] len=4
/etc/racoon2/default.conf:46:1[#] len=1
/etc/racoon2/default.conf:47:1[#        policy {] len=10
/etc/racoon2/default.conf:48:1[#                ipsec_mode transport;] len=24
/etc/racoon2/default.conf:49:1[#                ipsec_level require;] len=23
/etc/racoon2/default.conf:50:1[#        };] len=4
/etc/racoon2/default.conf:51:1[#] len=1
/etc/racoon2/default.conf:52:1[#        ipsec {] len=9
/etc/racoon2/default.conf:53:1[#                ipsec_sa_lifetime_time infinite;] len=35
/etc/racoon2/default.conf:54:1[#                ipsec_sa_lifetime_byte infinite;] len=35
/etc/racoon2/default.conf:55:1[#        };] len=4
/etc/racoon2/default.conf:56:1[#] len=1
/etc/racoon2/default.conf:57:1[#        sa {] len=6
/etc/racoon2/default.conf:58:1[#                esp_enc_alg { aes128_cbc; 3des_cbc; };] len=41
/etc/racoon2/default.conf:59:1[#                esp_auth_alg { hmac_sha1; hmac_md5; };] len=41
/etc/racoon2/default.conf:60:1[#        };] len=4
/etc/racoon2/default.conf:61:1[#};] len=3
/etc/racoon2/default.conf:62:1[ipsec] len=5
/etc/racoon2/default.conf:62:1[ipsec_ah_esp] len=12
/etc/racoon2/default.conf:62:1[{] len=1
/etc/racoon2/default.conf:63:1[ipsec_sa_lifetime_time] len=22
/etc/racoon2/default.conf:63:1[28800] len=5
/etc/racoon2/default.conf:63:1[sec] len=3
/etc/racoon2/default.conf:63:1[;] len=1
/etc/racoon2/default.conf:64:1[sa_index] len=8
/etc/racoon2/default.conf:64:1[{] len=1
/etc/racoon2/default.conf:64:1[ah_01] len=5
/etc/racoon2/default.conf:64:1[;] len=1
/etc/racoon2/default.conf:64:1[esp_01] len=6
/etc/racoon2/default.conf:64:1[;] len=1
/etc/racoon2/default.conf:64:1[}] len=1
/etc/racoon2/default.conf:64:1[;] len=1
/etc/racoon2/default.conf:65:1[}] len=1
/etc/racoon2/default.conf:65:1[;] len=1
/etc/racoon2/default.conf:66:1[ipsec] len=5
/etc/racoon2/default.conf:66:1[ipsec_esp] len=9
/etc/racoon2/default.conf:66:1[{] len=1
/etc/racoon2/default.conf:67:1[ipsec_sa_lifetime_time] len=22
/etc/racoon2/default.conf:67:1[28800] len=5
/etc/racoon2/default.conf:67:1[sec] len=3
/etc/racoon2/default.conf:67:1[;] len=1
/etc/racoon2/default.conf:68:1[sa_index] len=8
/etc/racoon2/default.conf:68:1[esp_01] len=6
/etc/racoon2/default.conf:68:1[;] len=1
/etc/racoon2/default.conf:69:1[}] len=1
/etc/racoon2/default.conf:69:1[;] len=1
/etc/racoon2/default.conf:71:1[sa] len=2
/etc/racoon2/default.conf:71:1[ah_01] len=5
/etc/racoon2/default.conf:71:1[{] len=1
/etc/racoon2/default.conf:72:1[sa_protocol] len=11
/etc/racoon2/default.conf:72:1[ah] len=2
/etc/racoon2/default.conf:72:1[;] len=1
/etc/racoon2/default.conf:73:1[ah_auth_alg] len=11
/etc/racoon2/default.conf:73:1[{] len=1
/etc/racoon2/default.conf:73:1[hmac_sha1] len=9
/etc/racoon2/default.conf:73:1[;] len=1
/etc/racoon2/default.conf:73:1[hmac_md5] len=8
/etc/racoon2/default.conf:73:1[;] len=1
/etc/racoon2/default.conf:73:1[}] len=1
/etc/racoon2/default.conf:73:1[;] len=1
/etc/racoon2/default.conf:74:1[}] len=1
/etc/racoon2/default.conf:74:1[;] len=1
/etc/racoon2/default.conf:75:1[sa] len=2
/etc/racoon2/default.conf:75:1[esp_01] len=6
/etc/racoon2/default.conf:75:1[{] len=1
/etc/racoon2/default.conf:76:1[sa_protocol] len=11
/etc/racoon2/default.conf:76:1[esp] len=3
/etc/racoon2/default.conf:76:1[;] len=1
/etc/racoon2/default.conf:77:1[esp_enc_alg] len=11
/etc/racoon2/default.conf:77:1[{] len=1
/etc/racoon2/default.conf:77:1[aes128_cbc] len=10
/etc/racoon2/default.conf:77:1[;] len=1
/etc/racoon2/default.conf:77:1[3des_cbc] len=8
/etc/racoon2/default.conf:77:1[;] len=1
/etc/racoon2/default.conf:77:1[}] len=1
/etc/racoon2/default.conf:77:1[;] len=1
/etc/racoon2/default.conf:78:1[esp_auth_alg] len=12
/etc/racoon2/default.conf:78:1[{] len=1
/etc/racoon2/default.conf:78:1[hmac_sha1] len=9
/etc/racoon2/default.conf:78:1[;] len=1
/etc/racoon2/default.conf:78:1[hmac_md5] len=8
/etc/racoon2/default.conf:78:1[;] len=1
/etc/racoon2/default.conf:78:1[}] len=1
/etc/racoon2/default.conf:78:1[;] len=1
/etc/racoon2/default.conf:79:1[}] len=1
/etc/racoon2/default.conf:79:1[;] len=1
/etc/racoon2/racoon2.conf:10:1[include] len=7
/etc/racoon2/racoon2.conf:10:1["/etc/racoon2/mn.conf"] len=22
/etc/racoon2/racoon2.conf:10:1[;] len=1
reading config file /etc/racoon2/mn.conf
/etc/racoon2/mn.conf:1:1[# Home Agent address:  2001:DB8:0:2::1   2001:660:4701:2::1] len=59
/etc/racoon2/mn.conf:2:1[# MN Home address   :  2001:DB8:0:2::2   2001:660:4701:2::12] len=60
/etc/racoon2/mn.conf:4:1[remote] len=6
/etc/racoon2/mn.conf:4:1[HomeAgent] len=9
/etc/racoon2/mn.conf:4:1[{] len=1
/etc/racoon2/mn.conf:5:1[ikev2] len=5
/etc/racoon2/mn.conf:5:1[{] len=1
/etc/racoon2/mn.conf:6:1[my_id] len=5
/etc/racoon2/mn.conf:6:1[x509_subject] len=12
/etc/racoon2/mn.conf:6:1["/etc/racoon2/certs/mn.mydomain.com.cert"] len=41
/etc/racoon2/mn.conf:6:1[;] len=1
/etc/racoon2/mn.conf:7:1[peers_id] len=8
/etc/racoon2/mn.conf:7:1[x509_subject] len=12
/etc/racoon2/mn.conf:7:1["/etc/racoon2/certs/cacert.pem"] len=31
/etc/racoon2/mn.conf:7:1[;] len=1
/etc/racoon2/mn.conf:8:1[kmp_auth_method] len=15
/etc/racoon2/mn.conf:8:1[{] len=1
/etc/racoon2/mn.conf:8:1[rsasig] len=6
/etc/racoon2/mn.conf:8:1[;] len=1
/etc/racoon2/mn.conf:8:1[}] len=1
/etc/racoon2/mn.conf:8:1[;] len=1
/etc/racoon2/mn.conf:9:1[my_public_key] len=13
/etc/racoon2/mn.conf:9:1[x509pem] len=7
/etc/racoon2/mn.conf:10:1["/etc/racoon2/certs/mn.mydomain.com.cert"] len=41
/etc/racoon2/mn.conf:11:1["/etc/racoon2/certs/mn.mydomain.com.key.pem"] len=44
/etc/racoon2/mn.conf:11:1[;] len=1
/etc/racoon2/mn.conf:12:1[peers_public_key] len=16
/etc/racoon2/mn.conf:12:1[x509pem] len=7
/etc/racoon2/mn.conf:13:1["/etc/racoon2/certs/cacert.pem"] len=31
/etc/racoon2/mn.conf:14:1[""] len=2
/etc/racoon2/mn.conf:14:1[;] len=1
/etc/racoon2/mn.conf:15:1[}] len=1
/etc/racoon2/mn.conf:15:1[;] len=1
/etc/racoon2/mn.conf:16:1[}] len=1
/etc/racoon2/mn.conf:16:1[;] len=1
/etc/racoon2/mn.conf:18:1[# Policy and selector for protecting the BU/BA messages for Home Registration.] len=78
/etc/racoon2/mn.conf:19:1[policy] len=6
/etc/racoon2/mn.conf:19:1[HomeRegBinding] len=14
/etc/racoon2/mn.conf:19:1[{] len=1
/etc/racoon2/mn.conf:20:1[remote_index] len=12
/etc/racoon2/mn.conf:20:1[HomeAgent] len=9
/etc/racoon2/mn.conf:20:1[;] len=1
/etc/racoon2/mn.conf:21:1[ipsec_mode] len=10
/etc/racoon2/mn.conf:21:1[transport] len=9
/etc/racoon2/mn.conf:21:1[;] len=1
/etc/racoon2/mn.conf:22:1[action] len=6
/etc/racoon2/mn.conf:22:1[auto_ipsec] len=10
/etc/racoon2/mn.conf:22:1[;] len=1
/etc/racoon2/mn.conf:23:1[ipsec_index] len=11
/etc/racoon2/mn.conf:23:1[{] len=1
/etc/racoon2/mn.conf:23:1[ipsec_esp] len=9
/etc/racoon2/mn.conf:23:1[;] len=1
/etc/racoon2/mn.conf:23:1[}] len=1
/etc/racoon2/mn.conf:23:1[;] len=1
/etc/racoon2/mn.conf:24:1[ipsec_level] len=11
/etc/racoon2/mn.conf:24:1[require] len=7
/etc/racoon2/mn.conf:24:1[;] len=1
/etc/racoon2/mn.conf:25:1[peers_sa_ipaddr] len=15
/etc/racoon2/mn.conf:25:1[2001:660:4701:2::1] len=18
/etc/racoon2/mn.conf:25:1[;] len=1
/etc/racoon2/mn.conf:26:1[my_sa_ipaddr] len=12
/etc/racoon2/mn.conf:26:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:26:1[;] len=1
/etc/racoon2/mn.conf:27:1[install] len=7
/etc/racoon2/mn.conf:27:1[off] len=3
/etc/racoon2/mn.conf:27:1[;] len=1
/etc/racoon2/mn.conf:28:1[}] len=1
/etc/racoon2/mn.conf:28:1[;] len=1
/etc/racoon2/mn.conf:29:1[selector] len=8
/etc/racoon2/mn.conf:29:1[HomeRegBinding_out] len=18
/etc/racoon2/mn.conf:29:1[{] len=1
/etc/racoon2/mn.conf:30:1[direction] len=9
/etc/racoon2/mn.conf:30:1[outbound] len=8
/etc/racoon2/mn.conf:30:1[;] len=1
/etc/racoon2/mn.conf:31:1[dst] len=3
/etc/racoon2/mn.conf:31:1[2001:660:4701:2::1] len=18
/etc/racoon2/mn.conf:31:1[;] len=1
/etc/racoon2/mn.conf:32:1[src] len=3
/etc/racoon2/mn.conf:32:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:32:1[;] len=1
/etc/racoon2/mn.conf:33:1[policy_index] len=12
/etc/racoon2/mn.conf:33:1[HomeRegBinding] len=14
/etc/racoon2/mn.conf:33:1[;] len=1
/etc/racoon2/mn.conf:34:1[upper_layer_protocol] len=20
/etc/racoon2/mn.conf:34:1[135] len=3
/etc/racoon2/mn.conf:34:1[5] len=1
/etc/racoon2/mn.conf:34:1[6] len=1
/etc/racoon2/mn.conf:34:1[;] len=1
/etc/racoon2/mn.conf:35:1[reqid] len=5
/etc/racoon2/mn.conf:35:1[200] len=3
/etc/racoon2/mn.conf:35:1[;] len=1
/etc/racoon2/mn.conf:35:1[# Note: you may choose whatever value you want but must be in sync with mip6d.conf and unique.] len=94
/etc/racoon2/mn.conf:36:1[}] len=1
/etc/racoon2/mn.conf:36:1[;] len=1
/etc/racoon2/mn.conf:38:1[# Policy and selector for protecting the MPS/MPA messages for Mobile Prefix Discovery.] len=86
/etc/racoon2/mn.conf:39:1[policy] len=6
/etc/racoon2/mn.conf:39:1[MobPfxDisc] len=10
/etc/racoon2/mn.conf:39:1[{] len=1
/etc/racoon2/mn.conf:40:1[remote_index] len=12
/etc/racoon2/mn.conf:40:1[HomeAgent] len=9
/etc/racoon2/mn.conf:40:1[;] len=1
/etc/racoon2/mn.conf:41:1[ipsec_mode] len=10
/etc/racoon2/mn.conf:41:1[transport] len=9
/etc/racoon2/mn.conf:41:1[;] len=1
/etc/racoon2/mn.conf:42:1[action] len=6
/etc/racoon2/mn.conf:42:1[auto_ipsec] len=10
/etc/racoon2/mn.conf:42:1[;] len=1
/etc/racoon2/mn.conf:43:1[ipsec_index] len=11
/etc/racoon2/mn.conf:43:1[{] len=1
/etc/racoon2/mn.conf:43:1[ipsec_esp] len=9
/etc/racoon2/mn.conf:43:1[;] len=1
/etc/racoon2/mn.conf:43:1[}] len=1
/etc/racoon2/mn.conf:43:1[;] len=1
/etc/racoon2/mn.conf:44:1[ipsec_level] len=11
/etc/racoon2/mn.conf:44:1[require] len=7
/etc/racoon2/mn.conf:44:1[;] len=1
/etc/racoon2/mn.conf:45:1[peers_sa_ipaddr] len=15
/etc/racoon2/mn.conf:45:1[2001:660:4701:2::1] len=18
/etc/racoon2/mn.conf:45:1[;] len=1
/etc/racoon2/mn.conf:46:1[my_sa_ipaddr] len=12
/etc/racoon2/mn.conf:46:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:46:1[;] len=1
/etc/racoon2/mn.conf:47:1[install] len=7
/etc/racoon2/mn.conf:47:1[off] len=3
/etc/racoon2/mn.conf:47:1[;] len=1
/etc/racoon2/mn.conf:48:1[}] len=1
/etc/racoon2/mn.conf:48:1[;] len=1
/etc/racoon2/mn.conf:49:1[selector] len=8
/etc/racoon2/mn.conf:49:1[MobPfxDisc_out] len=14
/etc/racoon2/mn.conf:49:1[{] len=1
/etc/racoon2/mn.conf:50:1[direction] len=9
/etc/racoon2/mn.conf:50:1[outbound] len=8
/etc/racoon2/mn.conf:50:1[;] len=1
/etc/racoon2/mn.conf:51:1[dst] len=3
/etc/racoon2/mn.conf:51:1[2001:660:4701:2::1] len=18
/etc/racoon2/mn.conf:51:1[;] len=1
/etc/racoon2/mn.conf:52:1[src] len=3
/etc/racoon2/mn.conf:52:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:52:1[;] len=1
/etc/racoon2/mn.conf:53:1[policy_index] len=12
/etc/racoon2/mn.conf:53:1[MobPfxDisc] len=10
/etc/racoon2/mn.conf:53:1[;] len=1
/etc/racoon2/mn.conf:54:1[upper_layer_protocol] len=20
/etc/racoon2/mn.conf:54:1[135] len=3
/etc/racoon2/mn.conf:54:1[92] len=2
/etc/racoon2/mn.conf:54:1[93] len=2
/etc/racoon2/mn.conf:54:1[;] len=1
/etc/racoon2/mn.conf:55:1[reqid] len=5
/etc/racoon2/mn.conf:55:1[202] len=3
/etc/racoon2/mn.conf:55:1[;] len=1
/etc/racoon2/mn.conf:56:1[}] len=1
/etc/racoon2/mn.conf:56:1[;] len=1
/etc/racoon2/mn.conf:58:1[# Tunnel all traffic between MN and HA when the MN is not at home.] len=66
/etc/racoon2/mn.conf:59:1[policy] len=6
/etc/racoon2/mn.conf:59:1[TunnelPayload] len=13
/etc/racoon2/mn.conf:59:1[{] len=1
/etc/racoon2/mn.conf:60:1[remote_index] len=12
/etc/racoon2/mn.conf:60:1[HomeAgent] len=9
/etc/racoon2/mn.conf:60:1[;] len=1
/etc/racoon2/mn.conf:61:1[ipsec_mode] len=10
/etc/racoon2/mn.conf:61:1[tunnel] len=6
/etc/racoon2/mn.conf:61:1[;] len=1
/etc/racoon2/mn.conf:62:1[action] len=6
/etc/racoon2/mn.conf:62:1[auto_ipsec] len=10
/etc/racoon2/mn.conf:62:1[;] len=1
/etc/racoon2/mn.conf:63:1[ipsec_index] len=11
/etc/racoon2/mn.conf:63:1[{] len=1
/etc/racoon2/mn.conf:63:1[ipsec_esp] len=9
/etc/racoon2/mn.conf:63:1[;] len=1
/etc/racoon2/mn.conf:63:1[}] len=1
/etc/racoon2/mn.conf:63:1[;] len=1
/etc/racoon2/mn.conf:64:1[ipsec_level] len=11
/etc/racoon2/mn.conf:64:1[require] len=7
/etc/racoon2/mn.conf:64:1[;] len=1
/etc/racoon2/mn.conf:65:1[peers_sa_ipaddr] len=15
/etc/racoon2/mn.conf:65:1[2001:660:4701:2::1] len=18
/etc/racoon2/mn.conf:65:1[;] len=1
/etc/racoon2/mn.conf:66:1[my_sa_ipaddr] len=12
/etc/racoon2/mn.conf:66:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:66:1[;] len=1
/etc/racoon2/mn.conf:67:1[install] len=7
/etc/racoon2/mn.conf:67:1[off] len=3
/etc/racoon2/mn.conf:67:1[;] len=1
/etc/racoon2/mn.conf:68:1[}] len=1
/etc/racoon2/mn.conf:68:1[;] len=1
/etc/racoon2/mn.conf:69:1[selector] len=8
/etc/racoon2/mn.conf:69:1[TunnelPayload_out] len=17
/etc/racoon2/mn.conf:69:1[{] len=1
/etc/racoon2/mn.conf:70:1[direction] len=9
/etc/racoon2/mn.conf:70:1[outbound] len=8
/etc/racoon2/mn.conf:70:1[;] len=1
/etc/racoon2/mn.conf:71:1[dst] len=3
/etc/racoon2/mn.conf:71:1[2001:660:4701:2::1] len=18
/etc/racoon2/mn.conf:71:1[;] len=1
/etc/racoon2/mn.conf:72:1[src] len=3
/etc/racoon2/mn.conf:72:1[2001:660:4701:2::12] len=19
/etc/racoon2/mn.conf:72:1[;] len=1
/etc/racoon2/mn.conf:73:1[policy_index] len=12
/etc/racoon2/mn.conf:73:1[TunnelPayload] len=13
/etc/racoon2/mn.conf:73:1[;] len=1
/etc/racoon2/mn.conf:74:1[reqid] len=5
/etc/racoon2/mn.conf:74:1[204] len=3
/etc/racoon2/mn.conf:74:1[;] len=1
/etc/racoon2/mn.conf:75:1[}] len=1
/etc/racoon2/mn.conf:75:1[;] len=1


mip6d -d 10

root at brama-laptop:~# mip6d -d 10
mip6d[6403]: MIPL Mobile IPv6 for Linux v2.0.2-umip-0.4 started (Mobile Node)
Sun Jun 21 06:18:16 main: MIPL Mobile IPv6 for Linux started in debug mode, not detaching from terminal
Sun Jun 21 06:18:16 conf_show: config_file = /etc/mip6d.conf
Sun Jun 21 06:18:16 conf_show: vt_hostname = localhost
Sun Jun 21 06:18:16 conf_show: vt_service = 7777
Sun Jun 21 06:18:16 conf_show: mip6_entity = 1
Sun Jun 21 06:18:16 conf_show: debug_level = 10
Sun Jun 21 06:18:16 conf_show: debug_log_file = stderr
Sun Jun 21 06:18:16 conf_show: PolicyModulePath = [internal]
Sun Jun 21 06:18:16 conf_show: DefaultBindingAclPolicy = 0
Sun Jun 21 06:18:16 conf_show: NonVolatileBindingCache = disabled
Sun Jun 21 06:18:16 conf_show: KeyMngMobCapability = enabled
Sun Jun 21 06:18:16 conf_show: UseMnHaIPsec = enabled
Sun Jun 21 06:18:16 conf_show: MnMaxHaBindingLife = 262140
Sun Jun 21 06:18:16 conf_show: MnMaxCnBindingLife = 420
Sun Jun 21 06:18:16 conf_show: MnRouterProbes = 1
Sun Jun 21 06:18:16 conf_show: MnRouterProbeTimeout = 0.000000
Sun Jun 21 06:18:16 conf_show: InitialBindackTimeoutFirstReg = 1.500000
Sun Jun 21 06:18:16 conf_show: InitialBindackTimeoutReReg = 1.000000
Sun Jun 21 06:18:16 conf_show: UseCnBuAck = enabled
Sun Jun 21 06:18:16 conf_show: DoRouteOptimizationMN = disabled
Sun Jun 21 06:18:16 conf_show: MnUseAllInterfaces = disabled
Sun Jun 21 06:18:16 conf_show: MnDiscardHaParamProb = enabled
Sun Jun 21 06:18:16 conf_show: SendMobPfxSols = enabled
Sun Jun 21 06:18:16 conf_show: OptimisticHandoff = disabled
Sun Jun 21 06:18:16 conf_show: MobRtrUseExplicitMode = enabled
Sun Jun 21 06:18:16 conf_show: SendMobPfxAdvs = enabled
Sun Jun 21 06:18:16 conf_show: SendUnsolMobPfxAdvs = enabled
Sun Jun 21 06:18:16 conf_show: MaxMobPfxAdvInterval = 86400
Sun Jun 21 06:18:16 conf_show: MinMobPfxAdvInterval = 600
Sun Jun 21 06:18:16 conf_show: HaMaxBindingLife = 262140
Sun Jun 21 06:18:16 conf_show: HaAcceptMobRtr = disabled
Sun Jun 21 06:18:16 conf_show: DoRouteOptimizationCN = enabled
Sun Jun 21 06:18:16 xfrm_cn_init: Adding policies and states for CN
Sun Jun 21 06:18:16 xfrm_mn_init: Adding policies and states for MN
Sun Jun 21 06:18:16 conf_home_addr_info: HoA address 2001:660:4701:2:0:0:0:12
Sun Jun 21 06:18:16 conf_home_addr_info: HA address 2001:660:4701:2:0:0:0:1
Sun Jun 21 06:18:16 __tunnel_add: created tunnel ip6tnl1 (7) from 2001:660:4701:2:0:0:0:12 to 2001:660:4701:2:0:0:0:1 user count 1
Sun Jun 21 06:18:16 conf_home_addr_info: Home address 2001:660:4701:2:0:0:0:12
Sun Jun 21 06:18:16 flag_hoa: set HoA 2001:660:4701:2:0:0:0:12/128 iif 7 flags 12 preferred_time 4294967295 valid_time 4294967295
Sun Jun 21 06:18:16 conf_home_addr_info: Added new home_addr_info successfully
mip6d[6403]: Interface 2 (ip6tnl0):type 769 unsupported
Sun Jun 21 06:18:16 __md_discover_router: discover link on iface ath0 (5)
mip6d[6403]: Interface 7 (ip6tnl1):type 769 unsupported
mip6d[6403]: Interface 7 (ip6tnl1):type 769 unsupported
Sun Jun 21 06:18:18 md_change_default_router: add new router fe80:0:0:0:21e:58ff:fe31:c1c3 on interface ath0 (5)
Sun Jun 21 06:18:18 md_update_router_stats: add coa 2001:660:4701:2:221:63ff:fe30:5e7b on interface (5)
Sun Jun 21 06:18:19 mn_addr_do_dad: DAD succeeded!
Sun Jun 21 06:18:19 mn_addr_do_dad: address = 2001:660:4701:2:0:0:0:12
Sun Jun 21 06:18:19 mn_move: 1741
Sun Jun 21 06:18:19 mn_move: in home net
Sun Jun 21 06:18:19 mv_hoa: move HoA 2001:660:4701:2:0:0:0:12/64 from iface 7 to 5
Sun Jun 21 06:18:25 md_expire_router: expiring router fe80:0:0:0:21e:58ff:fe31:c1c3 on iface ath0 (5)
Sun Jun 21 06:18:25 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:18:29 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:18:33 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:18:37 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:18:41 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:18:45 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:18:49 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:18:53 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:18:57 __md_discover_router: discover link on iface ath0 (5)
Sun Jun 21 06:19:01 __md_discover_router: discover link on iface ath0 (5)
mip6d[6403]: terminated (SIGINT)
Sun Jun 21 06:19:02 terminate: got SIGINT, exiting
Sun Jun 21 06:19:02 flag_hoa: set HoA 2001:660:4701:2:0:0:0:12/64 iif 5 flags 80 preferred_time 4294967295 valid_time 4294967295
Sun Jun 21 06:19:02 mn_block_rule_del: blackhole is not set.
Sun Jun 21 06:19:02 __tunnel_del: tunnel ip6tnl1 (7) from 2001:660:4701:2:0:0:0:12 to 2001:660:4701:2:0:0:0:1 user count decreased to 0
Sun Jun 21 06:19:02 __tunnel_del: tunnel deleted
Sun Jun 21 06:19:02 xfrm_mn_cleanup: Deleting policies and states for MN
Sun Jun 21 06:19:02 Failed to del policy:
Sun Jun 21 06:19:02 sel.daddr 2001:660:4701:2:0:0:0:12
sel.saddr 2001:660:4701:2:0:0:0:1
sel.dport 0
sel.dport_mask 0
sel.sport 600
sel.sport_mask ffff
sel.prefixlen_d 128
sel.prefixlen_s 128
sel.proto 135
sel.ifindex 0
Sun Jun 21 06:19:02 dir 0
type 0
Sun Jun 21 06:19:02 Failed to del policy:
Sun Jun 21 06:19:02 sel.daddr 2001:660:4701:2:0:0:0:1
sel.saddr 2001:660:4701:2:0:0:0:12
sel.dport 0
sel.dport_mask 0
sel.sport 500
sel.sport_mask ffff
sel.prefixlen_d 128
sel.prefixlen_s 128
sel.proto 135
sel.ifindex 0
Sun Jun 21 06:19:02 dir 1
type 0
Sun Jun 21 06:19:02 Failed to del policy:
Sun Jun 21 06:19:02 sel.daddr 2001:660:4701:2:0:0:0:12
sel.saddr 2001:660:4701:2:0:0:0:1
sel.dport 0
sel.dport_mask 0
sel.sport 9300
sel.sport_mask ffff
sel.prefixlen_d 128
sel.prefixlen_s 128
sel.proto 58
sel.ifindex 0
Sun Jun 21 06:19:02 dir 0
type 0
Sun Jun 21 06:19:02 Failed to del policy:
Sun Jun 21 06:19:02 sel.daddr 2001:660:4701:2:0:0:0:1
sel.saddr 2001:660:4701:2:0:0:0:12
sel.dport 0
sel.dport_mask 0
sel.sport 9200
sel.sport_mask ffff
sel.prefixlen_d 128
sel.prefixlen_s 128
sel.proto 58
sel.ifindex 0
Sun Jun 21 06:19:02 dir 1
type 0
Sun Jun 21 06:19:02 xfrm_cn_cleanup: Deleting policies and states for CN
mip6d[6403]: MIPL Mobile IPv6 for Linux v2.0.2-umip-0.4 stopped (Mobile Node)


here example ping from MN to CN when move to foreign network 

64 bytes from 2001:660:4701:3::20: icmp_seq=71 ttl=63 time=1.04 ms
64 bytes from 2001:660:4701:3::20: icmp_seq=72 ttl=63 time=0.996 ms
64 bytes from 2001:660:4701:3::20: icmp_seq=73 ttl=63 time=0.991 ms
64 bytes from 2001:660:4701:3::20: icmp_seq=74 ttl=63 time=1.06 ms
64 bytes from 2001:660:4701:3::20: icmp_seq=75 ttl=63 time=1.04 ms
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable

=====>>> config for CN

mip6d.conf

# This is the mip6d.conf file of the CN
# Location: /etc/mip6d.conf
# Mobile IPv6 configuration file: Correspondent Node
# This file provides MIPv6 functionality to the CN
# via daemon mip6d
NodeConfig CN;
## If set to > 0, will not detach from tty
DebugLevel 10;
## Enable RO
UseMnHaIPsec enabled;
DoRouteOptimizationCN enabled;
UseCnBuAck enabled;
KeyMngMobCapability enabled;
DoRouteOptimizationMN disabled;


that's all I have done. repository I used software.nautilus6.org gutsy with homeguy1.0

please help me for the config, because MN still can move to foreign network..

thanks before.



      Lebih aman saat online. Upgrade ke Internet Explorer 8 baru dan lebih cepat yang dioptimalkan untuk Yahoo! agar Anda merasa lebih aman. Gratis. Dapatkan IE8 di sini! 
http://downloads.yahoo.com/id/internetexplorer/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://ml.nautilus6.org/pipermail/support/attachments/20090621/e70dd094/attachment-0001.htm 


More information about the Support mailing list