Page 1 of 1
SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 5th, 2015, 5:00 am
by homi79
Hello,
i just found out that SABnzbd is opening an UDP-port via UPNP directly after start up on my Fritzbox.
In my case it is UDP 56973.
But when i first saw it yesterday SABnzbd had already opened several UDP ports. I use it for 3 or 4 days now.
Is this normal behavior ?
What is the purpose of these opened ports? I couldn't find anything by searching the web.
Kind regards.
Re: SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 5th, 2015, 6:42 am
by sander
homi79 wrote:Hello,
i just found out that SABnzbd is opening an UDP-port via UPNP directly after start up
What makes you think SABnzbd is opening an UDP-port via UPnP?
homi79 wrote:
In my case it is UDP 56973.
And what is running on UDP port 56973? Probably not SABnzbd, so what would be the use for SABnzbd?
Re: SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 5th, 2015, 9:20 am
by homi79
sander wrote:
What makes you think SABnzbd is opening an UDP-port via UPnP?
because i tried to find out which application opens the port. So i deleted all UPNP opended ports
on my router. The port reopens via UPNP on the router right after! i start SABnzbd. I can definitely reproduce this behavior.
sander wrote:
And what is running on UDP port 56973? Probably not SABnzbd, so what would be the use for SABnzbd?
So you can say for sure, that sabnzbd is not the source of this behavior? I just want to be sure that this behavior is
not normal.. so i know i have to search a little bit more in detail maybe with Wireshark.
Re: SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 5th, 2015, 9:34 am
by sander
SABnzbd has no code for UPnP and SABnzbd does not use UDP.
You could find out which process is listening on port 56973. You can do that with "netstat"
On which operating system are you running SABnzbd?
Linux:
Code: Select all
netstat -apon | grep -i -e "listen "
Windows
Code: Select all
netstat -aon | find /i "listening"
tasklist | find /i "<process id>"
Does that show the process on port 56973?
Re: SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 5th, 2015, 9:36 am
by homi79
Ok thank you for your help. I will research it in more detail when i am at home at my computer.
OS is Win7
Re: SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 5th, 2015, 10:05 am
by sander
homi79 wrote:
OS is Win7
Here's how to find the name of the process listening on UDP port 49153 on Windows (tested on Windows 8 ):
Code: Select all
C:\Users\Sander>netstat -aon | find "UDP" | find "49153"
UDP [::]:49153 *:* 1488
C:\Users\Sander>tasklist | find /i "1488"
mDNSResponder.exe 1488 Services 0 4 140 K
So: UDP port 49153 <-> Process ID 1488 <-> mDNSResponder.exe
EDIT & PS:
If you run CMD as admin, you can use
which will automagically show the name of the binary involved. Alas the binary name is on the next line, so you can't use FIND:
Code: Select all
UDP [::]:49153 *:* 1488
[mDNSResponder.exe]
Re: SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 5th, 2015, 3:55 pm
by homi79
Thank you for your help. I found out that the "opener" was the IP-help-service of Win7.
Strangely it reopens the port via UPNP right after i start sabnzbd.
Re: SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 5th, 2015, 4:13 pm
by sander
homi79 wrote:Thank you for your help. I found out that the "opener" was the IP-help-service of Win7.
Strangely it reopens the port via UPNP right after i start sabnzbd.
Have you set SABnzbd's Logging to +Debug?
Re: SABnzbd opening UDP ports via UPNP (Fritzbox)
Posted: April 6th, 2015, 3:07 am
by homi79
At the Commandline? no..