I have a simple node.js
server running on locahost:8127
:
const http = require('http');
http.createServer(function (req, res) {
console.log('incoming');
}).listen(8127);
Now I make requests from a browser to locahost:8127
and I want to capture all traffic between these two, so I've put the following display filter:
tcp.dstport==8127
But it doesn't show anything. Why?
I understand that additional details are required to answer the question, I'll provide, I just don't know what exactly is also required.