The Precision landing code (probably running dronekit or pymavlink script?) must be using the same port as the port you’re trying to run mavproxy off.
What you want to do is: Run Mavproxy and open up forwarding on a port: Telemetry Forwarding — MAVProxy documentation
something like this: "mavproxy.py --master=/dev/ttyACM0 --baudrate 115200 --out 127.0.0.1:14550"
Assuming the pixhawk is connected to /dev/ttyACM0, it’ll start the mavproxy instance, and also open up forwarding at 14550. Then what you want to do is connect your prec land script to: udp:127.0.0.1:14550 instead of whatever direct connection to the Flight Controller it was using before. Should work now
I tried , But when I try to do what you said, On same IP adress its working, but its not working on different network.
How to solve this issues?
Looking forward on my issue.