lua文件
Wireshark 的 LUA 扩展,用于打印服务器处理 NFS 请求所花费的时间。
用法:
# for life capture
$ tshark -q -X lua_script:nfs.lua -f " port 2049 "
# or if nfs trafic is not on a standard port ( pNFS DS )
$ tshark -q -X lua_script:nfs.lua -f " port 32049 " -d tcp.port==32049,rpc
# for read from existing capture file capture file
$ tshark -q -r nfs.dump -X lua_script:nfs.lua
# or if you need to avoid temp files
$ dumpca
2023-02-07 16:42:07
4KB
Lua
1