This list is closed, nobody may subscribe to it.
| 2003 |
Jan
|
Feb
|
Mar
(3) |
Apr
(6) |
May
|
Jun
(14) |
Jul
(4) |
Aug
(19) |
Sep
(27) |
Oct
(7) |
Nov
(4) |
Dec
(3) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(58) |
Feb
(20) |
Mar
(70) |
Apr
(93) |
May
(102) |
Jun
(130) |
Jul
(47) |
Aug
(61) |
Sep
(149) |
Oct
(160) |
Nov
(243) |
Dec
(94) |
| 2005 |
Jan
(199) |
Feb
(166) |
Mar
(276) |
Apr
(422) |
May
(289) |
Jun
(222) |
Jul
(306) |
Aug
(154) |
Sep
(72) |
Oct
(163) |
Nov
(113) |
Dec
(195) |
| 2006 |
Jan
(174) |
Feb
(94) |
Mar
(130) |
Apr
(45) |
May
(85) |
Jun
(115) |
Jul
(120) |
Aug
(111) |
Sep
(210) |
Oct
(56) |
Nov
(72) |
Dec
(30) |
| 2007 |
Jan
(56) |
Feb
(49) |
Mar
(35) |
Apr
(58) |
May
(83) |
Jun
(101) |
Jul
(46) |
Aug
(58) |
Sep
(47) |
Oct
(58) |
Nov
(55) |
Dec
(54) |
| 2008 |
Jan
(52) |
Feb
(21) |
Mar
(20) |
Apr
(49) |
May
(20) |
Jun
(37) |
Jul
(101) |
Aug
(49) |
Sep
(75) |
Oct
(152) |
Nov
(34) |
Dec
(63) |
| 2009 |
Jan
(90) |
Feb
(12) |
Mar
(88) |
Apr
(49) |
May
(36) |
Jun
(36) |
Jul
(52) |
Aug
(54) |
Sep
(19) |
Oct
(45) |
Nov
(18) |
Dec
(34) |
| 2010 |
Jan
(12) |
Feb
(28) |
Mar
(18) |
Apr
(19) |
May
(14) |
Jun
(15) |
Jul
(24) |
Aug
(45) |
Sep
(6) |
Oct
(4) |
Nov
(21) |
Dec
(23) |
| 2011 |
Jan
(24) |
Feb
(45) |
Mar
(56) |
Apr
(18) |
May
(4) |
Jun
(10) |
Jul
(15) |
Aug
(38) |
Sep
(11) |
Oct
(48) |
Nov
(55) |
Dec
(29) |
| 2012 |
Jan
(41) |
Feb
(15) |
Mar
(24) |
Apr
(17) |
May
(12) |
Jun
(17) |
Jul
(18) |
Aug
(17) |
Sep
(17) |
Oct
(4) |
Nov
(8) |
Dec
(13) |
| 2013 |
Jan
(9) |
Feb
(1) |
Mar
(10) |
Apr
(18) |
May
(18) |
Jun
(14) |
Jul
(34) |
Aug
(6) |
Sep
(7) |
Oct
|
Nov
(8) |
Dec
(4) |
| 2014 |
Jan
(12) |
Feb
(6) |
Mar
(1) |
Apr
(12) |
May
|
Jun
(2) |
Jul
(20) |
Aug
(1) |
Sep
|
Oct
(3) |
Nov
(2) |
Dec
|
| 2015 |
Jan
(16) |
Feb
(2) |
Mar
(9) |
Apr
|
May
(56) |
Jun
(6) |
Jul
(7) |
Aug
(1) |
Sep
(17) |
Oct
(13) |
Nov
(23) |
Dec
(3) |
| 2016 |
Jan
(10) |
Feb
(8) |
Mar
(34) |
Apr
(19) |
May
(26) |
Jun
(3) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(6) |
Nov
(5) |
Dec
(2) |
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
(2) |
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(1) |
| 2019 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
1
|
2
|
3
|
4
|
5
|
6
(3) |
7
|
|
8
|
9
(1) |
10
|
11
|
12
|
13
(2) |
14
|
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
|
22
|
23
|
24
(1) |
25
|
26
|
27
|
28
|
|
29
|
30
|
|
|
|
|
|
|
From: DHARMENDRA P. <dha...@gm...> - 2013-09-24 09:39:59
|
Hi,
I want to use ipsec library but unable use it.
I am using it as follows:
char *sadb_in, *sadb_out;
char *policy_in = "in ipsec esp/transport//require
ah/transport//require";
char *policy_out = "out ipsec esp/transport//require
ah/transport//require";
sadb_in = ipsec_set_policy(policy_in, strlen(policy_in));
sadb_out = ipsec_set_policy(policy_in, strlen(policy_out));
------
------
sd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if( sd < 0 )
{
perror("socket");
exit(1);
}
ret_val= setsockopt(sd,SOL_SOCKET,\
SO_REUSEADDR,(char*)(&on),sizeof(int));
ret_val= setsockopt(sd, IPPROTO_IP, IP_IPSEC_POLICY, sadb_in,
ipsec_get_policylen(sadb_in));
ret_val= setsockopt(sd, IPPROTO_IP, IP_IPSEC_POLICY, sadb_out,
ipsec_get_policylen(sadb_out));
But my server is not accepting any request from the client.(without ipsec
my client server is working fine).
Please let me know what I am doing wrong, also if possible please share
ipsec enabled client server code snippet.
Thanks & Regards,
Dharmendra
|
|
From: Rainer W. <rwe...@mo...> - 2013-09-13 10:39:12
|
"Ozai" <oza...@gm...> writes: > Hi Sirs, > > Do you have any suggestion on this question?thank's. I suggested that you should provide the necessary information for helping you with this problem (that was the "Run the daemon with debug logging enabled". Provide the relevant part of the output."). For as long as you didn't do that, any complaints you send to this list are about as useful as writing them down on a piece of paper and digging that into the earth somewhere. |
|
From: Ozai <oza...@gm...> - 2013-09-13 09:26:50
|
Hi Sirs, Do you have any suggestion on this question?thank's. Best Regards, Ozai ----- Original Message ----- From: "Ozai" <oza...@gm...> To: <ips...@li...> Sent: Monday, September 09, 2013 10:01 AM Subject: Re: [Ipsec-tools-devel] failed to recv from pfkey on ipsec-tools-0.7.2 > Hi Sirs, > > You mean I can ignore this message??But sometime I started the IPSec,I > could receive this message then IPSec seem to be frozen and can not > work.How do I check this question?thank's. > > Best Regards, > Ozai > >> Date: Fri, 06 Sep 2013 16:24:41 +0100 >> From: Rainer Weikusat <rwe...@mo...> >> Subject: Re: [Ipsec-tools-devel] failed to recv from pfkey on >> ipsec-tools-0.7.2 >> To: <ips...@li...> >> Message-ID: <87w...@sa...> >> Content-Type: text/plain; charset=us-ascii >> >> "Ozai" <oza...@gm...> writes: >>> When I try the ipsec-tools-0.7.2,I got the messgae >>> racoon: ERROR: failed to recv from pfkey (Resource temporarily >>> unavailable) and racoon does not reolad. >>> >>> DO you have any idea on this question?Thank's. >> >> I figure this must be sort-of a cultural taboo but: "Run the daemon >> with debug logging enabled". Provide the relevant part of the output. >> >> NB: EAGAIN aka 'resource temporarily unavailable' is usually not an >> error, it just means 'no input was available at this time'. >> >> > |
|
From: Ozai <oza...@gm...> - 2013-09-09 02:01:08
|
Hi Sirs, You mean I can ignore this message??But sometime I started the IPSec,I could receive this message then IPSec seem to be frozen and can not work.How do I check this question?thank's. Best Regards, Ozai > Date: Fri, 06 Sep 2013 16:24:41 +0100 > From: Rainer Weikusat <rwe...@mo...> > Subject: Re: [Ipsec-tools-devel] failed to recv from pfkey on > ipsec-tools-0.7.2 > To: <ips...@li...> > Message-ID: <87w...@sa...> > Content-Type: text/plain; charset=us-ascii > > "Ozai" <oza...@gm...> writes: >> When I try the ipsec-tools-0.7.2,I got the messgae >> racoon: ERROR: failed to recv from pfkey (Resource temporarily >> unavailable) and racoon does not reolad. >> >> DO you have any idea on this question?Thank's. > > I figure this must be sort-of a cultural taboo but: "Run the daemon > with debug logging enabled". Provide the relevant part of the output. > > NB: EAGAIN aka 'resource temporarily unavailable' is usually not an > error, it just means 'no input was available at this time'. > > |
|
From: Rainer W. <rwe...@mo...> - 2013-09-06 15:24:56
|
"Ozai" <oza...@gm...> writes: > When I try the ipsec-tools-0.7.2,I got the messgae > racoon: ERROR: failed to recv from pfkey (Resource temporarily unavailable) and racoon does not reolad. > > DO you have any idea on this question?Thank's. I figure this must be sort-of a cultural taboo but: "Run the daemon with debug logging enabled". Provide the relevant part of the output. NB: EAGAIN aka 'resource temporarily unavailable' is usually not an error, it just means 'no input was available at this time'. |
|
From: Ozai <oza...@gm...> - 2013-09-06 10:08:15
|
Hi Sirs, When I try the ipsec-tools-0.7.2,I got the messgae racoon: ERROR: failed to recv from pfkey (Resource temporarily unavailable) and racoon does not reolad. DO you have any idea on this question?Thank's. Best Regards, Ozai |
|
From: Ozai <oza...@gm...> - 2013-09-06 09:58:40
|
Hi Sirs, When I try the ipsec-tools-0.7.2,I got the messgae racoon: ERROR: failed to recv from pfkey (Resource temporarily unavailable) and racoon does not reolad. DO you have any idea on this question?Thank's. Best Regards, Ozai |