You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi, I have a question about logging. Usually when users utilize socks5/http protocols the log contains useful information like:
2026/06/30 10:49:25.218251 from tcp:123.456.789.111:54480 accepted tcp:site1.com:443 [direct]
2026/06/30 10:49:26.026377 from tcp:123.456.789.111:54494 accepted tcp:site2.com:443 [proxy]
If their connections go through tun interface everything works fine but the log has only IP addresses like:
2026/06/30 10:43:52.454934 from tcp:192.168.10.20:44406 accepted tcp:123.456.789.123:443 [direct]
2026/06/30 10:43:52.484062 from tcp:192.168.10.21:48905 accepted tcp:123.456.789.533:443 [proxy]
Is it possible to log domain names instead of IP- addresses?
tun and log settings are:
{
"protocol": "tun",
"settings": {
"name": "xray0",
"mtu": 1500
},
"sniffing": {
"enabled": true,
"destOverride": ["http", "tls", "fakedns"],
"routeOnly": false,
"metadataOnly": false
}
}
"log": {
"loglevel": "warning",
"dnsLog": true
}
All reactions