ip addres is only 0.0.0.0.0 not set when starting server in ros

hello i have a problem when i type this command in terminal “rosrun ros_tcp_endpoint default_server_endpoint.py”

i get “[INFO] [1652779573.140884]: Starting server on 0.0.0.0:10000” but i set my ip address to 192.168.1.101

why do i get 0.0.0.0 instead of 192.168.1.101

can you help please thank you

On a server, 0.0.0.0 just means “accept any incoming connection”, so this should be fine.
If you really care about it, you can set the ip in your command line: “rosrun ros_tcp_endpoint default_server_endpoint.py ~tcp_ip:=192.168.1.101”