-
It sounds like your current setup is probably "double natted", which definitely will break UPnP. What type of DSL router is it? Is it possible to replace it with a DSL modem that passes your real external IP to the linux firewall?
If not, most DSL routers have some sort of setup option to either:
1) turn on "bridging" which will then allow the external interface on...
2009-10-13 16:07:18 UTC by ewirt
-
I Was wondering if upnpd could forward packets to a second router. My network consists of a linux firewall sitting behind a DSL routers. In order to open a port I would have to open it up on both the linux firewall and the router.
Is there a way to have a upnpd act on the IGD request and forward the request to the router down the line.
2009-10-13 15:31:46 UTC by darkstego
-
I am having the same problem. I installed on debian lenny by apt-get. Stop working after about 10 days. I tried restarting the service, but to no avail. Only about restarting the server. If you find any solution please let me know.Thanks.
2009-09-29 01:54:30 UTC by bmeirelles
-
In pmlist.c in AddPortMapping, there calls to iptables from execv and iptc are inconsistent when compared against each other. One INSERTS a rule into the forwarding chain, and appends a rule into the prerouting chain, while the other appends into forwards, inserts into nat.
Attached is a fixed version of pmlist.c (Lines 247~300 have been somewhat changed)
2009-06-18 03:45:15 UTC by tigerfishdaisy
-
Hi everybody,
I had a routing setup already running to share my wireless connection through my laptop to any ethernet-connected device when I noticed I needed UPnP to connect better to Xbox live!
It was a very simple setup on a Ubuntu 8.10 laptop, most magic lied here:
#!/bin/bash
INET_IFACE=eth1
echo "1" > /proc/sys/net/ipv4/ip_forward
iptables -F
iptables -F -t nat...
2009-02-26 20:10:24 UTC by fdelosrios
-
A patch supplied by Daniel Tryba for Debian (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507313)
"Entries get appended to the PREROUTING table, the problem is I have a catchall to create a DMZ. The result is that the upnp rules aren't reachable.
The solution is pretty simple with the following patch:
Using the "forward_rules_append" config option to determine if the PREROUTING rule...
2009-02-22 19:47:53 UTC by leveret
-
Hi,
I know that part of UPnP software services is port forwarding
were can I find it in the code?
or maybe the manufacture didn't implement it.
please I will be happy for quick answer
Bests
Tamar.
2008-12-28 09:06:57 UTC by tamar_badichi
-
I attach an update (and working) SPEC file for RPM.
I tested them against CentOS 5. Is very similar to the FC9 SPEC file.
2008-07-15 20:59:26 UTC by aclinux
-
Create chains into table filter and table nat, put the rules for your firewall in the order as you want and use that chains in the configuration file for the ports used by upnpd.
2008-07-15 20:56:52 UTC by aclinux
-
This patch works if there are some aliases into the interface, for example, LAN is eth0, but I have assigned to it:
eth0:1 192.168.1.2
eth0:2 192.168.3.1
eth0:3 172.18.3.1
....
(I don't reviewed the patch)
2008-07-15 20:54:04 UTC by aclinux