Replies: 8 comments 2 replies
-
Based on the log you are showing, I'm guessing you are using RustDesk clients which are in the same LAN as your server... so it is normal to see local IP. If you place your server outside of your network, you will see public IP instead. |
Beta Was this translation helpful? Give feedback.
-
understand, but those IP are not from the clients which use rustdesk.. |
Beta Was this translation helpful? Give feedback.
-
You are using Docker? Can you show your docker compose (without keys or secret of course) ? |
Beta Was this translation helpful? Give feedback.
-
yes, here it is:
|
Beta Was this translation helpful? Give feedback.
-
Alright. And docker host is behind some firewall? This 192.168.248.x network... is your docker network? You can check with |
Beta Was this translation helpful? Give feedback.
-
no, it is local lan |
Beta Was this translation helpful? Give feedback.
-
Ok but then I'm not sure to understand your problem... if your Rustdesk server is in the same LAN as your client... then it will show LAN IP. |
Beta Was this translation helpful? Give feedback.
-
It is normal that Docker container can't see Real IP if you using Docker bridge network mode, please use version: '3'
services:
hbbs:
container_name: hbbs
image: rustdesk/rustdesk-server:latest
command: hbbs -r x.x.x.x:21117
network_mode: host
volumes:
- ./data:/root
depends_on:
- hbbr
restart: unless-stopped
hbbr:
container_name: hbbr
image: rustdesk/rustdesk-server:latest
command: hbbr
network_mode: host
volumes:
- ./data:/root
restart: unless-stopped |
Beta Was this translation helpful? Give feedback.
-
Hi, i would like just to log IP from where to where users doing connection (all is in LAN).
Now i see only logs like:
But that IP is not real from users who do connection, what is the issue?
Beta Was this translation helpful? Give feedback.
All reactions