mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-09 19:20:41 +03:00
Merge PR #1191: Proto: write message to log on session creation/deletion, remove redundant OpenVPN messages
This commit is contained in:
commit
818103950c
@ -2,6 +2,46 @@
|
||||
|
||||
#include "Proto_OpenVPN.h"
|
||||
|
||||
void ProtoLog(const PROTO *proto, const PROTO_SESSION *session, const char *name, ...)
|
||||
{
|
||||
wchar_t message[MAX_SIZE * 2];
|
||||
|
||||
if (proto == NULL)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (session != NULL)
|
||||
{
|
||||
wchar_t *proto_name;
|
||||
UINT current_len;
|
||||
va_list args;
|
||||
|
||||
proto_name = CopyStrToUni(session->Impl->Name());
|
||||
UniFormat(message, sizeof(message), _UU("LP_PREFIX_SESSION"), proto_name, &session->SrcIp, session->SrcPort, &session->DstIp, session->DstPort, L"UDP");
|
||||
Free(proto_name);
|
||||
|
||||
current_len = UniStrLen(message);
|
||||
|
||||
va_start(args, name);
|
||||
UniFormatArgs(message + current_len, sizeof(message) - current_len, _UU(name), args);
|
||||
va_end(args);
|
||||
}
|
||||
else
|
||||
{
|
||||
va_list args;
|
||||
|
||||
UniStrCpy(message, sizeof(message), _UU("LP_PREFIX_SESSION"));
|
||||
UniStrCat(message, sizeof(message), _UU(name));
|
||||
|
||||
va_start(args, name);
|
||||
UniFormatArgs(message, sizeof(message), message, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
WriteServerLog(proto->Cedar, message);
|
||||
}
|
||||
|
||||
int ProtoOptionCompare(void *p1, void *p2)
|
||||
{
|
||||
PROTO_OPTION *option_1, *option_2;
|
||||
@ -196,7 +236,7 @@ void ProtoDelete(PROTO *proto)
|
||||
|
||||
for (i = 0; i < HASH_LIST_NUM(proto->Sessions); ++i)
|
||||
{
|
||||
ProtoDeleteSession(LIST_DATA(proto->Sessions->AllList, i));
|
||||
ProtoSessionDelete(LIST_DATA(proto->Sessions->AllList, i));
|
||||
}
|
||||
ReleaseHashList(proto->Sessions);
|
||||
|
||||
@ -325,7 +365,7 @@ const PROTO_CONTAINER *ProtoDetect(const PROTO *proto, const PROTO_MODE mode, co
|
||||
return NULL;
|
||||
}
|
||||
|
||||
PROTO_SESSION *ProtoNewSession(PROTO *proto, const PROTO_CONTAINER *container, const IP *src_ip, const USHORT src_port, const IP *dst_ip, const USHORT dst_port)
|
||||
PROTO_SESSION *ProtoSessionNew(const PROTO *proto, const PROTO_CONTAINER *container, const IP *src_ip, const USHORT src_port, const IP *dst_ip, const USHORT dst_port)
|
||||
{
|
||||
LIST *options;
|
||||
PROTO_SESSION *session;
|
||||
@ -373,10 +413,12 @@ PROTO_SESSION *ProtoNewSession(PROTO *proto, const PROTO_CONTAINER *container, c
|
||||
session->Lock = NewLock();
|
||||
session->Thread = NewThread(ProtoSessionThread, session);
|
||||
|
||||
ProtoLog(proto, session, "LP_SESSION_CREATED");
|
||||
|
||||
return session;
|
||||
}
|
||||
|
||||
void ProtoDeleteSession(PROTO_SESSION *session)
|
||||
void ProtoSessionDelete(PROTO_SESSION *session)
|
||||
{
|
||||
if (session == NULL)
|
||||
{
|
||||
@ -399,6 +441,8 @@ void ProtoDeleteSession(PROTO_SESSION *session)
|
||||
|
||||
DeleteLock(session->Lock);
|
||||
|
||||
ProtoLog(session->Proto, session, "LP_SESSION_DELETED");
|
||||
|
||||
Free(session);
|
||||
}
|
||||
|
||||
@ -455,6 +499,7 @@ bool ProtoHandleConnection(PROTO *proto, SOCK *sock, const char *protocol)
|
||||
|
||||
{
|
||||
const PROTO_CONTAINER *container = NULL;
|
||||
wchar_t *proto_name;
|
||||
LIST *options;
|
||||
|
||||
if (protocol != NULL)
|
||||
@ -507,6 +552,10 @@ bool ProtoHandleConnection(PROTO *proto, SOCK *sock, const char *protocol)
|
||||
}
|
||||
|
||||
UnlockList(options);
|
||||
|
||||
proto_name = CopyStrToUni(container->Name);
|
||||
ProtoLog(proto, NULL, "LP_SESSION_CREATED", proto_name, &sock->RemoteIP, sock->RemotePort, &sock->LocalIP, sock->LocalPort, L"TCP");
|
||||
Free(proto_name);
|
||||
}
|
||||
|
||||
SetTimeout(sock, TIMEOUT_INFINITE);
|
||||
@ -596,6 +645,12 @@ bool ProtoHandleConnection(PROTO *proto, SOCK *sock, const char *protocol)
|
||||
ReleaseFifo(send_fifo);
|
||||
Free(buf);
|
||||
|
||||
{
|
||||
wchar_t *proto_name = CopyStrToUni(impl->Name());
|
||||
ProtoLog(proto, NULL, "LP_SESSION_DELETED", proto_name, &sock->RemoteIP, sock->RemotePort, &sock->LocalIP, sock->LocalPort, L"TCP");
|
||||
Free(proto_name);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -632,7 +687,7 @@ void ProtoHandleDatagrams(UDPLISTENER *listener, LIST *datagrams)
|
||||
continue;
|
||||
}
|
||||
|
||||
session = ProtoNewSession(proto, container, &tmp.SrcIp, tmp.SrcPort, &tmp.DstIp, tmp.DstPort);
|
||||
session = ProtoSessionNew(proto, container, &tmp.SrcIp, tmp.SrcPort, &tmp.DstIp, tmp.DstPort);
|
||||
if (session == NULL)
|
||||
{
|
||||
continue;
|
||||
@ -659,7 +714,7 @@ void ProtoHandleDatagrams(UDPLISTENER *listener, LIST *datagrams)
|
||||
if (session->Halt)
|
||||
{
|
||||
DeleteHash(sessions, session);
|
||||
ProtoDeleteSession(session);
|
||||
ProtoSessionDelete(session);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -78,6 +78,8 @@ typedef struct PROTO_SESSION
|
||||
volatile bool Halt;
|
||||
} PROTO_SESSION;
|
||||
|
||||
void ProtoLog(const PROTO *proto, const PROTO_SESSION *session, const char *name, ...);
|
||||
|
||||
int ProtoOptionCompare(void *p1, void *p2);
|
||||
int ProtoContainerCompare(void *p1, void *p2);
|
||||
int ProtoSessionCompare(void *p1, void *p2);
|
||||
@ -94,8 +96,8 @@ void ProtoContainerDelete(PROTO_CONTAINER *container);
|
||||
|
||||
const PROTO_CONTAINER *ProtoDetect(const PROTO *proto, const PROTO_MODE mode, const UCHAR *data, const UINT size);
|
||||
|
||||
PROTO_SESSION *ProtoNewSession(PROTO *proto, const PROTO_CONTAINER *container, const IP *src_ip, const USHORT src_port, const IP *dst_ip, const USHORT dst_port);
|
||||
void ProtoDeleteSession(PROTO_SESSION *session);
|
||||
PROTO_SESSION *ProtoSessionNew(const PROTO *proto, const PROTO_CONTAINER *container, const IP *src_ip, const USHORT src_port, const IP *dst_ip, const USHORT dst_port);
|
||||
void ProtoSessionDelete(PROTO_SESSION *session);
|
||||
|
||||
bool ProtoSetListenIP(PROTO *proto, const IP *ip);
|
||||
bool ProtoSetUdpPorts(PROTO *proto, const LIST *ports);
|
||||
|
@ -2139,8 +2139,6 @@ OPENVPN_SESSION *OvsNewSession(OPENVPN_SERVER *s, IP *server_ip, UINT server_por
|
||||
Debug("OpenVPN New Session: %s:%u -> %s:%u Proto=%u\n", server_ip_str, server_port,
|
||||
client_ip_str, client_port, protocol);
|
||||
|
||||
OvsLog(s, se, NULL, "LO_NEW_SESSION", (protocol == OPENVPN_PROTOCOL_UDP ? "UDP" : "TCP"));
|
||||
|
||||
return se;
|
||||
}
|
||||
|
||||
@ -2777,7 +2775,6 @@ void OvsRecvPacket(OPENVPN_SERVER *s, LIST *recv_packet_list, UINT protocol)
|
||||
OPENVPN_SESSION *se = LIST_DATA(delete_session_list, i);
|
||||
|
||||
Debug("Deleting Session %p\n", se);
|
||||
OvsLog(s, se, NULL, "LO_DELETE_SESSION");
|
||||
|
||||
OvsFreeSession(se);
|
||||
|
||||
@ -2982,8 +2979,6 @@ OPENVPN_SERVER *NewOpenVpnServer(const LIST *options, CEDAR *cedar, INTERRUPT_MA
|
||||
|
||||
s->NextSessionId = 1;
|
||||
|
||||
OvsLog(s, NULL, NULL, "LO_START");
|
||||
|
||||
s->Dh = DhNewFromBits(cedar->DhParamBits);
|
||||
|
||||
return s;
|
||||
@ -2999,8 +2994,6 @@ void FreeOpenVpnServer(OPENVPN_SERVER *s)
|
||||
return;
|
||||
}
|
||||
|
||||
OvsLog(s, NULL, NULL, "LO_STOP");
|
||||
|
||||
// Release the sessions list
|
||||
for (i = 0; i < LIST_NUM(s->SessionList); ++i)
|
||||
{
|
||||
|
@ -1810,6 +1810,12 @@ LS_API_AUTH_ERROR HTTPS API client "%r:%u" (%S): The embedded HTTPS web server
|
||||
LS_API_RPC_CALL HTTPS API client "%r:%u" (%S): The client called a JSON-API. Method: "%S", Returned error code: %u (0 = success), Returned error message: "%s"
|
||||
|
||||
|
||||
# (Proto log)
|
||||
LP_PREFIX_SESSION [%s] %r:%u -> %r:%u (%s):
|
||||
LP_SESSION_CREATED Session created.
|
||||
LP_SESSION_DELETED Session deleted.
|
||||
|
||||
|
||||
# (OpenVPN Logs)
|
||||
LO_PREFIX_RAW OpenVPN 模块:
|
||||
LO_PREFIX_SESSION OpenVPN 会话%u (%r:%u -> %r:%u):
|
||||
@ -1821,15 +1827,11 @@ LO_CLIENT_CERT Client certificate received (subject: CN="%s"), will use certif
|
||||
LO_CLIENT_UNVERIFIED_CERT Client certificate was provided but did not pass verification (error="%S"), will use password authentication.
|
||||
LO_CLIENT_NO_CERT Client certificate is not provided, will use password authentication.
|
||||
LO_OPTION_STR_SEND 发送选项字符串:"%S"
|
||||
LO_NEW_SESSION 已创建新的会话。协议:%S
|
||||
LO_INITIATE_REKEY re-keying 进程已开始。
|
||||
LO_CHANNEL_ESTABLISHED 该通道成为已建立的状态。
|
||||
LO_PUSH_REPLY 完整字符串回答:"%S"
|
||||
LO_CHANNEL_FAILED 无法连接通道。
|
||||
LO_CHANNEL_DISCONNECTED_BY_HUB 此 OpenVPN 的通道被终止,因为虚拟 HUB 管理员断开了此 VPN 会话。
|
||||
LO_DELETE_SESSION 删除会话中。
|
||||
LO_START OpenVPN Server 模块正在启动。
|
||||
LO_STOP OpenVPN Server 模块已停止。
|
||||
|
||||
|
||||
# (IPsec 日志)
|
||||
|
@ -1792,6 +1792,13 @@ LS_API_AUTH_OK HTTPS API client "%r:%u" (%S): Administration mode: "%S": The e
|
||||
LS_API_AUTH_ERROR HTTPS API client "%r:%u" (%S): The embedded HTTPS web server refused a login attempt. Username: "%S", Method: "%S", Path: "%S"
|
||||
LS_API_RPC_CALL HTTPS API client "%r:%u" (%S): The client called a JSON-API. Method: "%S", Returned error code: %u (0 = success), Returned error message: "%s"
|
||||
|
||||
|
||||
# (Proto log)
|
||||
LP_PREFIX_SESSION [%s] %r:%u -> %r:%u (%s):
|
||||
LP_SESSION_CREATED Session created.
|
||||
LP_SESSION_DELETED Session deleted.
|
||||
|
||||
|
||||
# (OpenVPN Logs)
|
||||
LO_PREFIX_RAW OpenVPN Module:
|
||||
LO_PREFIX_SESSION OpenVPN Session %u (%r:%u -> %r:%u):
|
||||
@ -1803,15 +1810,11 @@ LO_CLIENT_CERT Client certificate received (subject: CN="%s"), will use certif
|
||||
LO_CLIENT_UNVERIFIED_CERT Client certificate was provided but did not pass verification (error="%S"), will use password authentication.
|
||||
LO_CLIENT_NO_CERT Client certificate is not provided, will use password authentication.
|
||||
LO_OPTION_STR_SEND Option Strings to Send: "%S"
|
||||
LO_NEW_SESSION A new session is created. Protocol: %S
|
||||
LO_INITIATE_REKEY The re-keying process is started.
|
||||
LO_CHANNEL_ESTABLISHED The channel becomes the established state.
|
||||
LO_PUSH_REPLY The full strings replied: "%S"
|
||||
LO_CHANNEL_FAILED Failed to connect a channel.
|
||||
LO_CHANNEL_DISCONNECTED_BY_HUB This OpenVPN channel is being terminated because the administrator of the Virtual Hub has disconnected this the VPN Session.
|
||||
LO_DELETE_SESSION Deleting the session.
|
||||
LO_START The OpenVPN Server Module is starting.
|
||||
LO_STOP The OpenVPN Server Module is stopped.
|
||||
|
||||
|
||||
# (IPsec Logs)
|
||||
|
@ -1796,6 +1796,11 @@ LS_API_AUTH_OK HTTPS API クライアント "%r:%u" (%S): 管理モード: "%S
|
||||
LS_API_AUTH_ERROR HTTPS API クライアント "%r:%u" (%S): 組み込み HTTPS Web サーバーを用いてログインに失敗しました。使用されたユーザー名: "%S", メソッド: "%S", パス: "%S"
|
||||
LS_API_RPC_CALL HTTPS API クライアント "%r:%u" (%S): JSON-API を呼び出しました。メソッド名: "%S", 結果エラーコード: %u (0 = 成功), 結果エラーメッセージ: "%s"
|
||||
|
||||
# (Proto ログ)
|
||||
LP_PREFIX_SESSION [%s] %r:%u -> %r:%u (%s):
|
||||
LP_SESSION_CREATED Session created.
|
||||
LP_SESSION_DELETED Session deleted.
|
||||
|
||||
# (OpenVPN ログ)
|
||||
LO_PREFIX_RAW OpenVPN モジュール:
|
||||
LO_PREFIX_SESSION OpenVPN セッション %u (%r:%u -> %r:%u):
|
||||
@ -1807,15 +1812,11 @@ LO_CLIENT_CERT Client certificate received (subject: CN="%s"), will use certif
|
||||
LO_CLIENT_UNVERIFIED_CERT Client certificate was provided but did not pass verification (error="%S"), will use password authentication.
|
||||
LO_CLIENT_NO_CERT Client certificate is not provided, will use password authentication.
|
||||
LO_OPTION_STR_SEND 送信するオプション文字列: "%S"
|
||||
LO_NEW_SESSION 新しいセッションを作成しました。プロトコル: %S
|
||||
LO_INITIATE_REKEY このチャネルのリキーを開始します。
|
||||
LO_CHANNEL_ESTABLISHED チャネルが確立状態になりました。
|
||||
LO_PUSH_REPLY 応答オプション文字列の全文: "%S"
|
||||
LO_CHANNEL_FAILED チャネルの接続処理に失敗しました。
|
||||
LO_CHANNEL_DISCONNECTED_BY_HUB 仮想 HUB の管理者によって VPN セッションが切断されたため、この OpenVPN チャネルを切断します。
|
||||
LO_DELETE_SESSION セッションを削除します。
|
||||
LO_START OpenVPN サーバーモジュールを起動しました。
|
||||
LO_STOP OpenVPN サーバーモジュールを停止しました。
|
||||
|
||||
|
||||
# (IPsec ログ)
|
||||
|
@ -1778,6 +1778,12 @@ LS_API_AUTH_ERROR HTTPS API client "%r:%u" (%S): The embedded HTTPS web server
|
||||
LS_API_RPC_CALL HTTPS API client "%r:%u" (%S): The client called a JSON-API. Method: "%S", Returned error code: %u (0 = success), Returned error message: "%s"
|
||||
|
||||
|
||||
# (Proto 로그)
|
||||
LP_PREFIX_SESSION [%s] %r:%u -> %r:%u (%s):
|
||||
LP_SESSION_CREATED Session created.
|
||||
LP_SESSION_DELETED Session deleted.
|
||||
|
||||
|
||||
# (OpenVPN 로그)
|
||||
LO_PREFIX_RAW OpenVPN 모듈:
|
||||
LO_PREFIX_SESSION OpenVPN 세션 %u (%r:%u -> %r:%u):
|
||||
@ -1786,15 +1792,11 @@ LO_NEW_CHANNEL 새로운 채널을 만들었습니다.
|
||||
LO_CHANNEL_ESTABLISHED_NEWKEY 채널이 설정 상태가되었습니다 (원인:리키 완료).
|
||||
LO_OPTION_STR_RECV 받은 옵션 문자열:"%S"
|
||||
LO_OPTION_STR_SEND 보내는 옵션 문자열:"%S"
|
||||
LO_NEW_SESSION 새 세션을 만들었습니다. 프로토콜:%S
|
||||
LO_INITIATE_REKEY 이 채널의 리키를 시작합니다.
|
||||
LO_CHANNEL_ESTABLISHED 채널이 설정 상태가되었습니다 .
|
||||
LO_PUSH_REPLY 응답 옵션 문자열 전체:"%S"
|
||||
LO_CHANNEL_FAILED 채널의 접속 처리에 실패했습니다.
|
||||
LO_CHANNEL_DISCONNECTED_BY_HUB 가상 HUB 관리자가 VPN 세션이 끊어 졌기 때문에이 OpenVPN 채널을 끊습니다.
|
||||
LO_DELETE_SESSION 세션을 삭제합니다.
|
||||
LO_START OpenVPN 서버 모듈을 시작했습니다.
|
||||
LO_STOP OpenVPN 서버 모듈을 중지했습니다.
|
||||
|
||||
|
||||
# IPsec (로그)
|
||||
|
@ -1793,6 +1793,12 @@ LS_API_AUTH_ERROR HTTPS API client "%r:%u" (%S): The embedded HTTPS web server r
|
||||
LS_API_RPC_CALL HTTPS API client "%r:%u" (%S): The client called a JSON-API. Method: "%S", Returned error code: %u (0 = success), Returned error message: "%s"
|
||||
|
||||
|
||||
# (Proto log)
|
||||
LP_PREFIX_SESSION [%s] %r:%u -> %r:%u (%s):
|
||||
LP_SESSION_CREATED Session created.
|
||||
LP_SESSION_DELETED Session deleted.
|
||||
|
||||
|
||||
# (OpenVPN Logs)
|
||||
LO_PREFIX_RAW OpenVPN Module:
|
||||
LO_PREFIX_SESSION OpenVPN Session %u (%r:%u -> %r:%u):
|
||||
@ -1804,15 +1810,11 @@ LO_CLIENT_CERT Client certificate received (subject: CN="%s"), will use certific
|
||||
LO_CLIENT_UNVERIFIED_CERT Client certificate was provided but did not pass verification (error="%S"), will use password authentication.
|
||||
LO_CLIENT_NO_CERT Client certificate is not provided, will use password authentication.
|
||||
LO_OPTION_STR_SEND Option Strings to Send: "%S"
|
||||
LO_NEW_SESSION A new session is created. Protocol: %S
|
||||
LO_INITIATE_REKEY The re-keying process is started.
|
||||
LO_CHANNEL_ESTABLISHED The channel becomes the established state.
|
||||
LO_PUSH_REPLY The full strings replied: "%S"
|
||||
LO_CHANNEL_FAILED Failed to connect a channel.
|
||||
LO_CHANNEL_DISCONNECTED_BY_HUB This OpenVPN channel is being terminated because the administrator of the Virtual Hub has disconnected this the VPN Session.
|
||||
LO_DELETE_SESSION Deleting the session.
|
||||
LO_START The OpenVPN Server Module is starting.
|
||||
LO_STOP The OpenVPN Server Module is stopped.
|
||||
|
||||
|
||||
# (IPsec Logs)
|
||||
|
@ -1793,6 +1793,12 @@ LS_API_AUTH_ERROR HTTPS API client "%r:%u" (%S): The embedded HTTPS web server
|
||||
LS_API_RPC_CALL HTTPS API client "%r:%u" (%S): The client called a JSON-API. Method: "%S", Returned error code: %u (0 = success), Returned error message: "%s"
|
||||
|
||||
|
||||
# (Proto log)
|
||||
LP_PREFIX_SESSION [%s] %r:%u -> %r:%u (%s):
|
||||
LP_SESSION_CREATED Session created.
|
||||
LP_SESSION_DELETED Session deleted.
|
||||
|
||||
|
||||
# (OpenVPN Logs)
|
||||
LO_PREFIX_RAW OpenVPN Module:
|
||||
LO_PREFIX_SESSION OpenVPN Session %u (%r:%u -> %r:%u):
|
||||
@ -1804,15 +1810,11 @@ LO_CLIENT_CERT Client certificate received (subject: CN="%s"), will use certif
|
||||
LO_CLIENT_UNVERIFIED_CERT Client certificate was provided but did not pass verification (error="%S"), will use password authentication.
|
||||
LO_CLIENT_NO_CERT Client certificate is not provided, will use password authentication.
|
||||
LO_OPTION_STR_SEND Option Strings to Send: "%S"
|
||||
LO_NEW_SESSION A new session is created. Protocol: %S
|
||||
LO_INITIATE_REKEY The re-keying process is started.
|
||||
LO_CHANNEL_ESTABLISHED The channel becomes the established state.
|
||||
LO_PUSH_REPLY The full strings replied: "%S"
|
||||
LO_CHANNEL_FAILED Failed to connect a channel.
|
||||
LO_CHANNEL_DISCONNECTED_BY_HUB This OpenVPN channel is being terminated because the administrator of the Virtual Hub has disconnected this the VPN Session.
|
||||
LO_DELETE_SESSION Deleting the session.
|
||||
LO_START The OpenVPN Server Module is starting.
|
||||
LO_STOP The OpenVPN Server Module is stopped.
|
||||
|
||||
|
||||
# (IPsec Logs)
|
||||
|
@ -1813,7 +1813,13 @@ LS_API_AUTH_ERROR HTTPS API client "%r:%u" (%S): The embedded HTTPS web server
|
||||
LS_API_RPC_CALL HTTPS API client "%r:%u" (%S): The client called a JSON-API. Method: "%S", Returned error code: %u (0 = success), Returned error message: "%s"
|
||||
|
||||
|
||||
# (OpenVPN Logs)
|
||||
# (Proto 日誌)
|
||||
LP_PREFIX_SESSION [%s] %r:%u -> %r:%u (%s):
|
||||
LP_SESSION_CREATED Session created.
|
||||
LP_SESSION_DELETED Session deleted.
|
||||
|
||||
|
||||
# (OpenVPN 日誌)
|
||||
LO_PREFIX_RAW OpenVPN 模組:
|
||||
LO_PREFIX_SESSION OpenVPN 會話%u (%r:%u -> %r:%u):
|
||||
LO_PREFIX_CHANNEL OpenVPN 會話%u (%r:%u -> %r:%u) 通道 %u:
|
||||
@ -1824,15 +1830,11 @@ LO_CLIENT_CERT Client certificate received (subject: CN="%s"), will use certif
|
||||
LO_CLIENT_UNVERIFIED_CERT Client certificate was provided but did not pass verification (error="%S"), will use password authentication.
|
||||
LO_CLIENT_NO_CERT Client certificate is not provided, will use password authentication.
|
||||
LO_OPTION_STR_SEND 發送選項字串:"%S"
|
||||
LO_NEW_SESSION 已創建新的會話。協議:%S
|
||||
LO_INITIATE_REKEY re-keying 進程已開始。
|
||||
LO_CHANNEL_ESTABLISHED 該通道成為已建立的狀態。
|
||||
LO_PUSH_REPLY 完整字串回答:"%S"
|
||||
LO_CHANNEL_FAILED 無法連接通道。
|
||||
LO_CHANNEL_DISCONNECTED_BY_HUB 此 OpenVPN 的通道被終止,因為虛擬 HUB 管理員斷開了此 VPN 會話。
|
||||
LO_DELETE_SESSION 刪除會話中。
|
||||
LO_START OpenVPN Server 模組正在啟動。
|
||||
LO_STOP OpenVPN Server 模組已停止。
|
||||
|
||||
|
||||
# (IPsec 日誌)
|
||||
|
Loading…
Reference in New Issue
Block a user