Replies: 1 comment
|
@rems25000 A few things to verify: 1. Make sure you're testing the correct portsRemember that T-Pot changes some default management ports:
The honeypot ports (e.g. 22 for Cowrie) are separate from the management ports. :contentReference[oaicite:0]{index=0} For example: ssh -p 64295 <user>@192.168.10.xxx2. Verify that T-Pot is listening on the expected interfacesOn the T-Pot host, run: ss -tulnpor docker psSome management services are intentionally bound to localhost or protected by the T-Pot firewall, while honeypot services are exposed on the host interface. 3. Check the host firewallT-Pot manages its own firewall configuration rather than relying on UFW. Even if your inter-VLAN firewall allows the traffic, the T-Pot host may still reject it. Inspect the active rules: sudo nft list rulesetor, on older installations: sudo iptables -L -n -vLook for any rules that only permit traffic from the local subnet or explicitly drop traffic arriving from 4. Verify routingFrom the T-Pot host: ip routeAnd test connectivity back to your workstation: ping 192.168.50.xxx
traceroute 192.168.50.xxxSince this is inter-VLAN communication, return routing is just as important as the firewall rules. 5. Consider the recommended deploymentThe T-Pot documentation recommends placing the honeypot behind a firewall, forwarding honeypot ports (typically A few questions that would help narrow this down:
ip route
sudo nft list ruleset
docker psThat should help determine whether the issue is with host firewall rules, Docker networking, or the inter-VLAN routing. If this solves your problem, feel free to mark it as the accepted answer so others can find it easily. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello,
T-pot runs on a VM on an address 192.168.10.XXX/32
If I do an open port test from this interface, port 22 and the other ports respond well.
If I go from my PC to access the interface from an IP source at 192.168.50.XXX/32
--> No port responds to me.
Where should I configure, please?
PS: I do have a functional rule between vlan 50 and 10.
Thanks
All reactions