web-dev-qa-db-ja.com

SoftEtherVPNパケットログを理解する

SoftetherVPNからのパケットログの各部分を特定するのを手伝ってください。

たとえば、以下はパケットログです。

2017-06-07,23:40:20.888,SID-USER-[L2TP]-15,SID-SECURENAT-1,CA9DC6D826F0,00AC3A3F04D0,0x0800,78,TCP_CONNECTv4,SYN,192.168.52.112,56618,17.252.156.12,https(443),2147151822,0,WindowSize=65535,-,61.5.234.68,-

上記から日付、時刻、ユーザーIDを特定できますが、そのログのすべての部分について知りたいです。

SoftEther Webサイト でパケットログ形式を説明する公式ドキュメントが見つかりませんでした。

1
Arun Xavier

OKSoftEtherのソースコードを確認したところ見つかりました。

これが私が見つけたものです(TCPパケット)のパケットログ形式):

<Date>,<Time>,<Source session>,<Destination session>,
<Source MAC address>,<Destination MAC address>,<MAC protocol>,
<Packet size>,<Type of packet>,<TCP Flags(Control Bits)>,
<Source IP address>,<Source port>,<Destination IP address>,
<Destination Port>,<TCP Sequence Number>,<TCP ACK Number>,
<TCP window size and Meta Info>,<Packet Data>,
<Physical IP address(Source)>,< Physical IP address(Destination)>

ソース: https://github.com/SoftEtherVPN/SoftEtherVPN

ファイル:SoftEtherVPN/src/Cedar/Logging.c

0
Arun Xavier