Miniupnpd warning port 2869 help

I'm running miniupnpd and my wifes laptop constantly generates this warning in the system log all day long while she's connected.

Fri Mar 1 08:13:13 2024 daemon.warn miniupnpd[11178]: upnp_event_process_notify: connect(192.168.0.119:2869): Operation timed out

Google says that this port is typically used for:

Microsoft Internet Connection Firewall (ICF), Internet Connection Sharing (ICS), SSDP Discover Service, Microsoft Universal Plug and Play (UPnP), Microsoft Event Notification

How can I modify my miniupnpd settings in order to alleviate the constant warning message?

These are my settings


config upnpd 'config'
	option enabled '1'
	option download '1024'
	option upload '512'
	option internal_iface 'lan'
	option port '5000'
	option upnp_lease_file '/var/run/miniupnpd.leases'
	option igdv1 '1'
	option uuid 'xxx'
        option secure_mode '1'
        option log_output '0'

config perm_rule
	option action 'allow'
	option ext_ports '1024-65535'
	option int_addr '192.168.0.1/24'
	option int_ports '1024-65535'
	option comment 'Allow high ports'

config perm_rule
	option action 'deny'
	option ext_ports '0-65535'
	option int_addr '0.0.0.0/0'
	option int_ports '0-65535'
	option comment 'Default deny'

https://www.snbforums.com/threads/miniupnpd-connection-timed-out.26293/post-269766

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.