Replies: 3 comments 1 reply
-
some other program is using port 47808 most likely? What happens if you reboot or try finding what PID is using port 47808 UDP |
Beta Was this translation helpful? Give feedback.
-
At least according to Chat GPT: To search for a program or PID using UDP ports on Linux, you can use the netstat or ss command in combination with other tools like grep or awk. In your specific case, you want to search for UDP port 47808, which is commonly used for BACnet. Here's how you can do it using netstat and grep:
Here's what this command does: netstat: This command is used to display network-related information, including active network connections and listening ports. grep 47808: This part of the command searches for the line that contains the UDP port 47808. Alternatively, you can use the ss command with similar options:
Both commands should provide you with information about any program or process listening on UDP port 47808 for BACnet. |
Beta Was this translation helpful? Give feedback.
-
I am sort of a newb in this stuff but i have a Docker container running a BACnet script (so I know that already) but I like this one: (curious if anyone else knows of easier ways)
i think once you find the PID number just kill it:
|
Beta Was this translation helpful? Give feedback.
-
HI @ChristianTremblay
im trying to setup a device servers to test my bacnet client
I folowed your guide on setting up the ip addresses here #254
but I am getting a Address already in use error
heres my config
Beta Was this translation helpful? Give feedback.
All reactions