TinyUPnP icon indicating copy to clipboard operation
TinyUPnP copied to clipboard

Optimizations

Open Lan-Hekary opened this issue 6 years ago • 45 comments

I noticed that the library uses a lot of Memory and I started optimizing it and I wanted to share these Optimizations with the others. kindly check the commit and I am waiting for your comments. thanks.

Lan-Hekary avatar Jan 29 '19 03:01 Lan-Hekary

Cool! I'm hoping to launch a new version to test !!! excellent improve memory usage !!!

lucasromeiro avatar Jan 29 '19 16:01 lucasromeiro

Thanks 😃😃 There is still some bugs that needs to fixed of course but I need multiple people (with different routers) to test it. Like if the port already exists for another IP the call fails (Happened to me because the DHCP assigned a Different IP to the ESP) I am thinking of a Solution can we Delete the Port Mapping and Make another one if the old port mapping was for the esp only(Still working on it)

Also, Instead of just using the debugging methods, All the Methods must return an Enum for external Errors Handling by the user. Now I am working on a branch to make use of the struct _upnpRule and _upnpRuleNode to store the Configuration and I am going to modify the calls to Verify and Request multiple Port Mappings from the IGD. Tell me what do you want me to work on first 😃 I Have a bit for free time and I am enjoying myself with some programming 😃

Lan-Hekary avatar Jan 29 '19 19:01 Lan-Hekary

Thanks 😃😃 There is still some bugs that needs to fixed of course but I need multiple people (with different routers) to test it. Like if the port already exists for another IP the call fails (Happened to me because the DHCP assigned a Different IP to the ESP) I am thinking of a Solution can we Delete the Port Mapping and Make another one if the old port mapping was for the esp only(Still working on it)

Also, Instead of just using the debugging methods, All the Methods must return an Enum for external Errors Handling by the user. Now I am working on a branch to make use of the struct _upnpRule and _upnpRuleNode to store the Configuration and I am going to modify the calls to Verify and Request multiple Port Mappings from the IGD. Tell me what do you want me to work on first 😃 I Have a bit for free time and I am enjoying myself with some programming 😃

Wow!! very good! Many improvements! Can you make these improvements for that date? I can wait to test after you do. I'm really looking forward to it !!!

lucasromeiro avatar Jan 29 '19 19:01 lucasromeiro

if another ESP is using the same port, it is interesting that the function returns this information to the user to try another port. so the person's algorithm for automatically trying a different port: port + 1.

lucasromeiro avatar Jan 30 '19 00:01 lucasromeiro

Yup .. It will check the Friendly Name against the Name returned from the router .. If it's the same but with a Different internal IP address .. It will issue a DeletePortMapping then Add again with the current Address ..

I'd like to ask you for a favor 😃 . Before a making any new modification .. Can you test the Last Commit from my Fork on your router .. Specially the M-SEARCH Packet and the response form the router ... It only searches for the IGD .. But there is a lot of different Network configurations that can make the search fail .. So if you have a network with multiple routers in it I'd like to test it ..

Lan-Hekary avatar Jan 30 '19 09:01 Lan-Hekary

Hello! excelent idea!

I can test your final code. has it already been integrated into the main code? How can I download and test? instruct me what to do to test what you need! I can do. I have 2 routers here. I can get others. but I need you to instruct me how to test, if you have a test code it will make it easier.

lucasromeiro avatar Jan 30 '19 11:01 lucasromeiro

Hello guys! Good day! Nice! This library is getting more robust! Count on me to test! Can I pass some test code, where I only put the login and password of the wifi to test? I have some different brand routers here. I can test and say what happened!

lucasromeiro avatar Feb 01 '19 12:02 lucasromeiro

@Lan-Hekary

Like if the port already exists for another IP the call fails (Happened to me because the DHCP assigned a Different IP to the ESP) I am thinking of a Solution can we Delete the Port Mapping and Make another one if the old port mapping was for the esp only(Still working on it)

Changing the port dynamically is beside the point, you will know what call to make in order to connect to your device. You'll need some interface to show the user what port was selected.

ofekp avatar Feb 01 '19 12:02 ofekp

@lucasromeiro Do share your test result once you made them please.

ofekp avatar Feb 01 '19 12:02 ofekp

Hello @ofekp, thanks for your comments and I will try to make the changes ASAP, but I made a lot of changes after I posted this PR .. all based of using Strings :( now I have a whole different version that can Add Port Mappings for Multiple Rules ..

and I added the capability to DeletePortMapping and GetExternalIP also to remove the old port mapping if the ESP local IP changes ..

can you review this Branch? https://github.com/Lan-Hekary/TinyUPnP/tree/maplist

Lan-Hekary avatar Feb 01 '19 13:02 Lan-Hekary

@lucasromeiro Do share your test result once you made them please.

Sure !! I want to help! I have some routers here and I can test them !! I'm a little busy to develop a test program. Do you have something ready that I can use to test?

lucasromeiro avatar Feb 01 '19 13:02 lucasromeiro

@lucasromeiro Do share your test result once you made them please.

Sure !! I want to help! I have some routers here and I can test them !! I'm a little busy to develop a test program. Do you have something ready that I can use to test?

@lucasromeiro You can use the SimpleServer Example from the Examples Folder to test and open the router configuration page on the UPnP Port Mappings to see if the Port was addedd successfully or not ..

you can test the new Branch here: https://github.com/Lan-Hekary/TinyUPnP/tree/maplist

Just clone it the library folder and begin your tests also please don't forger to uncomment the // #define UPNP_DEBUG in the TinyUPnP.h file to allow for debug so that we can figure out the problems if there was any.

Thanks :)

Lan-Hekary avatar Feb 01 '19 13:02 Lan-Hekary

@lucasromeiro Do share your test result once you made them please.

Sure !! I want to help! I have some routers here and I can test them !! I'm a little busy to develop a test program. Do you have something ready that I can use to test?

@lucasromeiro You can use the SimpleServer Example from the Examples Folder to test and open the router configuration page on the UPnP Port Mappings to see if the Port was addedd successfully or not ..

you can test the new Branch here: https://github.com/Lan-Hekary/TinyUPnP/tree/maplist

Just clone it the library folder and begin your tests also please don't forger to uncomment the // #define UPNP_DEBUG in the TinyUPnP.h file to allow for debug so that we can figure out the problems if there was any.

Thanks :)

Perfect! Thank you for your guidance! I'll do the tests and return you

lucasromeiro avatar Feb 01 '19 13:02 lucasromeiro

@lucasromeiro Do share your test result once you made them please.

Sure !! I want to help! I have some routers here and I can test them !! I'm a little busy to develop a test program. Do you have something ready that I can use to test?

@lucasromeiro You can use the SimpleServer Example from the Examples Folder to test and open the router configuration page on the UPnP Port Mappings to see if the Port was addedd successfully or not ..

you can test the new Branch here: https://github.com/Lan-Hekary/TinyUPnP/tree/maplist

Just clone it the library folder and begin your tests also please don't forger to uncomment the // #define UPNP_DEBUG in the TinyUPnP.h file to allow for debug so that we can figure out the problems if there was any.

Thanks :)

I was able to access through the internal network, but could not access through external network using external ip. I also tested the site: https://www.yougetsignal.com/tools/open-ports/ Did not work. On my router nothing appears in the upnp session. It's empty.

First results:

//--------------------------------------------------------------------------- Test 1 - Router 1 //---------------------------------------------------------------------------

connectWiFi ...................... Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Timeout expired while waiting for the gateway router to respond to M-SEARCH message ERROR: Invalid router info, cannot continue

UPnP done

ets Jan 8 2013,rst cause:4, boot mode:(1,6)

wdt reset

//--------------------------------------------------------------------------- Test 2 - Router 1 //---------------------------------------------------------------------------

connectWiFi ............. Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] Gateway packet content (many variations for debug): packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs Timeout expired while adding a new port mapping ERROR: Invalid router info, cannot continue

UPnP done MDNS responder started HTTP server started Gateway Address: 192.168.15.1 Network Mask: 255.255.255.0

//--------------------------------------------------------------------------- Test 3 - Router 1 //---------------------------------------------------------------------------

Starting... connectWiFi .............. Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Timeout expired while waiting for the gateway router to respond to M-SEARCH message ERROR: Invalid router info, cannot continue

UPnP done MDNS responder started HTTP server started Gateway Address: 192.168.15.1 Network Mask: 255.255.255.0

//--------------------------------------------------------------------------- Test 4 - Router 1 //---------------------------------------------------------------------------

Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Timeout expired while adding a new port mapping ERROR: Invalid router info, cannot continue

UPnP done MDNS responder started HTTP server started Gateway Address: 192.168.15.1 Network Mask: 255.255.255.0

//--------------------------------------------------------------------------- Test 5 - Router 1 //---------------------------------------------------------------------------

Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Timeout expired while adding a new port mapping ERROR: Invalid router info, cannot continue

UPnP done MDNS responder started HTTP server started Gateway Address: 192.168.15.1 Network Mask: 255.255.255.0

//--------------------------------------------------------------------------- Test 6 - Router 1 //---------------------------------------------------------------------------

Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Timeout expired while waiting for the gateway router to respond to M-SEARCH message ERROR: Invalid router info, cannot continue

UPnP done MDNS responder started HTTP server started Gateway Address: 192.168.15.1 Network Mask: 255.255.255.0

//--------------------------------------------------------------------------- Test 7 - Router 1 //---------------------------------------------------------------------------

Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Timeout expired while waiting for the gateway router to respond to M-SEARCH message ERROR: Invalid router info, cannot continue

UPnP done MDNS responder started HTTP server started Gateway Address: 192.168.15.1 Network Mask: 255.255.255.0

//--------------------------------------------------------------------------- Test 8 - Router 1 //---------------------------------------------------------------------------

Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] Gateway packet content (many variations for debug): packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Timeout expired while adding a new port mapping ERROR: Invalid router info, cannot continue

UPnP done MDNS responder started HTTP server started Gateway Address: 192.168.15.1 Network Mask: 255.255.255.0

//--------------------------------------------------------------------------- Test 9 - Router 1 //---------------------------------------------------------------------------

Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid ?? [(IP unset)] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] Gateway packet content (many variations for debug): packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs Timeout expired while adding a new port mapping ERROR: Invalid router info, cannot continue

UPnP done MDNS responder started HTTP server started Gateway Address: 192.168.15.1 Network Mask: 255.255.255.0

lucasromeiro avatar Feb 01 '19 14:02 lucasromeiro

@lucasromeiro thanks for the Tests .. can you try to get call this URL from your browser and see if you get a response .. or 501 ?? http://192.168.15.1:5431/igdevicedesc.xml

try the library version at : https://github.com/ofekp/TinyUPnP does it give you the same result ??

I think the problem is that the router somehow does not support the GET Method on the Location ..

Lan-Hekary avatar Feb 01 '19 14:02 Lan-Hekary

@lucasromeiro thanks for the Tests .. can you try to get call this URL from your browser and see if you get a response .. or 501 ?? http://192.168.15.1:5431/igdevicedesc.xml

try the library version at : https://github.com/ofekp/TinyUPnP does it give you the same result ??

I think the problem is that the router somehow does not support the GET Method on the Location ..

I'll test the other version! The result of http://192.168.15.1:5431/igdevicedesc.xml was:

This XML file does not appear to have any style information associated with it. The document tree is shown below. <specVersion> 1 0 </specVersion> <URLBase>http://192.168.15.1:5431</URLBase> <deviceType> urn:schemas-upnp-org:device:InternetGatewayDevice:1 </deviceType> <presentationURL>http://192.168.15.1:80/</presentationURL> <friendlyName>RTV9015VW</friendlyName> ASKEY <manufacturerURL>http://www.realtek.com</manufacturerURL> <modelDescription>ADSL SoHo Router</modelDescription> <modelName>RTV9015VW</modelName> <modelNumber>8671x</modelNumber> <modelURL>http://www.realtek.com</modelURL> <UDN>uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428</UDN> <UPC>RTV9015VW</UPC> <serviceList> <serviceType>urn:schemas-upnp-org:service:Layer3Forwarding:1</serviceType> <serviceId>urn:upnp-org:serviceId:Layer3Forwarding1</serviceId> <controlURL>/control/Layer3Forwarding</controlURL> <eventSubURL>/event/Layer3Forwarding</eventSubURL> <SCPDURL>/upnp/layer3forwardingSCPD.xml</SCPDURL> </serviceList> <deviceList> <deviceType>urn:schemas-upnp-org:device:WANDevice:1</deviceType> <friendlyName>WANDevice</friendlyName> ASKEY <manufacturerURL>http://www.realtek.com</manufacturerURL> <modelDescription>ADSL SoHo Router</modelDescription> <modelName>ASKEY</modelName> <modelNumber>1</modelNumber> <modelURL>http://www.realtek.com</modelURL> <UDN>uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428</UDN> <UPC>RTV9015VW</UPC> <serviceList> <serviceType> urn:schemas-upnp-org:service:WANCommonInterfaceConfig:1 </serviceType> <serviceId>urn:upnp-org:serviceId:wancommoninterfaceconfig1</serviceId> <controlURL>/control/WANCommonInterfaceConfig</controlURL> <eventSubURL>/event/WANCommonInterfaceConfig</eventSubURL> <SCPDURL>/upnp/WAN/wancommoninterfaceconfigSCPD.xml</SCPDURL> </serviceList> <deviceList> <deviceType>urn:schemas-upnp-org:device:WANConnectionDevice:1</deviceType> <friendlyName>WANConnectionDevice</friendlyName> ASKEY <manufacturerURL>http://www.realtek.com</manufacturerURL> <modelDescription>ADSL SoHo Router</modelDescription> <modelName>RTV9015VW</modelName> <modelNumber>1</modelNumber> <modelURL>http://www.realtek.com</modelURL> <UDN>uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428</UDN> <UPC>RTV9015VW</UPC> <serviceList> <serviceType>urn:schemas-upnp-org:service:WANIPConnection:1</serviceType> <serviceId>urn:upnp-org:serviceId:wanipconnection1</serviceId> <controlURL>/control/WANIPConnection</controlURL> <eventSubURL>/event/WANIPConnection</eventSubURL> <SCPDURL>/upnp/WAN/wanipconnectionSCPD.xml</SCPDURL> <serviceType>urn:schemas-upnp-org:service:WANCableLinkConfig:1</serviceType> <serviceId>urn:upnp-org:serviceId:WANCableLinkConfig1</serviceId> <controlURL>/control/WANCableLinkConfig</controlURL> <eventSubURL/> <SCPDURL>/upnp/WAN/wancablelinkconfigSCPD.xml</SCPDURL> <serviceType> urn:schemas-upnp-org:service:WANEthernetLinkConfig:1 </serviceType> <serviceId>urn:upnp-org:serviceId:wanetherlinkconfig1</serviceId> <controlURL>/control/WANEthernetLinkConfig</controlURL> <eventSubURL>/event/WANEthernetLinkConfig</eventSubURL> <SCPDURL>/upnp/WAN/wanethernetlinkconfigSCPD.xml</SCPDURL> </serviceList> </deviceList> </deviceList>

lucasromeiro avatar Feb 01 '19 14:02 lucasromeiro

captura de tela 2019-02-01 as 11 55 39

lucasromeiro avatar Feb 01 '19 14:02 lucasromeiro

yup .. this data is valid .. but I and wondering why the router response is 501 unimplemented to a Simple GET Method ??

Lan-Hekary avatar Feb 01 '19 14:02 Lan-Hekary

using https://github.com/ofekp/TinyUPnP:

//--------------------------------------------------------------------------- Test 1 - Router 1 //---------------------------------------------------------------------------

........ Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [221] ip [192.168.15.1] port [1900] UDP packet read bytes [221] out of [221] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] out of [295] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] out of [266] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] out of [275] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] out of [338] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs Timeout expired while adding a new port mapping isGatewayInfoValid [192.168.15.1] port [5431] path [/igdevicedesc.xml] actionPort [5431] actionPath [] serviceTypeName [] port [5431] actionPort [5431] Verifying rule in IGD Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD 4013 TCP

HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

Could not find port mapping in IGD called addPortMappingEntry Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD deviceInfo->actionPath [] deviceInfo->serviceTypeName [] Content-Length was: 549

4013TCP4013192.168.15.10136000

HTTP/1.1 501 Not Implemented

Connection: close

Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

Timeout expired while trying to add the port mapping

Port Mappings: Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [0] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [1] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [2] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [3] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [4] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [5] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [6] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [7] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [8] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [9] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

//--------------------------------------------------------------------------- Test 2 - Router 1 //---------------------------------------------------------------------------

....................... Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [221] ip [192.168.15.1] port [1900] UDP packet read bytes [221] out of [221] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [223] ip [192.168.15.1] port [1900] UDP packet read bytes [223] out of [223] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] out of [295] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Timeout expired while waiting for the gateway router to respond to M-SEARCH message isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid ERROR: Invalid router info, cannot continue

Port Mappings: Invalid router info, cannot continue This was printed because adding the required port mapping failed Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [223] ip [192.168.15.1] port [1900] UDP packet read bytes [223] out of [223] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [221] ip [192.168.15.1] port [1900] UDP packet read bytes [221] out of [221] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] out of [266] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] out of [275] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] out of [338] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs Timeout expired while adding a new port mapping isGatewayInfoValid [192.168.15.1] port [5431] path [/igdevicedesc.xml] actionPort [5431] actionPath [] serviceTypeName [] port [5431] actionPort [5431] Verifying rule in IGD Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD 4013 TCP

HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

Could not find port mapping in IGD called addPortMappingEntry Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD deviceInfo->actionPath [] deviceInfo->serviceTypeName [] Content-Length was: 549

4013TCP4013192.168.15.10136000

HTTP/1.1 501 Not Implemented

Connection: close

Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

Timeout expired while trying to add the port mapping

Port Mappings: Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [0] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [1] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [2] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

//--------------------------------------------------------------------------- Test 3 - Router 1 //---------------------------------------------------------------------------

connectWiFi ...................... Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] out of [295] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] out of [266] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] out of [275] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] out of [338] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs Timeout expired while adding a new port mapping isGatewayInfoValid [192.168.15.1] port [5431] path [/igdevicedesc.xml] actionPort [5431] actionPath [] serviceTypeName [] port [5431] actionPort [5431] Verifying rule in IGD Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD 4018 TCP

HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

Could not find port mapping in IGD called addPortMappingEntry Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD deviceInfo->actionPath [] deviceInfo->serviceTypeName [] Content-Length was: 546

4018TCP4018192.168.15.101MiniDrome36000

HTTP/1.1 501 Not Implemented

Connection: close

Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

Timeout expired while trying to add the port mapping

Port Mappings: Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [0] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [1] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [2] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [3] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [4] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [5] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [6] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

lucasromeiro avatar Feb 01 '19 15:02 lucasromeiro

can you try another router .. I tried 2 on my side and they responded with 200 OK to the HTTP request .. This is an Implementation Error in your router I guess ..

On Fri, Feb 1, 2019, 5:09 PM lucasromeiro [email protected] wrote:

using https://github.com/ofekp/TinyUPnP:

//--------------------------------------------------------------------------- Test 1 - Router 1

//---------------------------------------------------------------------------

........ Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [221] ip [192.168.15.1] port [1900] UDP packet read bytes [221] out of [221] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] out of [295] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] out of [266] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] out of [275] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] out of [338] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs Timeout expired while adding a new port mapping isGatewayInfoValid [192.168.15.1] port [5431] path [/igdevicedesc.xml] actionPort [5431] actionPath [] serviceTypeName [] port [5431] actionPort [5431] Verifying rule in IGD Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD 4013 TCP

HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

Could not find port mapping in IGD called addPortMappingEntry Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD deviceInfo->actionPath [] deviceInfo->serviceTypeName [] Content-Length was: 549 4013TCP4013192.168.15.10136000

HTTP/1.1 501 Not Implemented

Connection: close

Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

Timeout expired while trying to add the port mapping

Port Mappings: Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [0] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [1] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [2] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [3] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [4] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [5] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [6] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [7] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [8] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [9] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

//--------------------------------------------------------------------------- Test 2 - Router 1

//---------------------------------------------------------------------------

....................... Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [221] ip [192.168.15.1] port [1900] UDP packet read bytes [221] out of [221] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [223] ip [192.168.15.1] port [1900] UDP packet read bytes [223] out of [223] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] out of [295] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Timeout expired while waiting for the gateway router to respond to M-SEARCH message isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid ERROR: Invalid router info, cannot continue

Port Mappings: Invalid router info, cannot continue This was printed because adding the required port mapping failed Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [223] ip [192.168.15.1] port [1900] UDP packet read bytes [223] out of [223] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [221] ip [192.168.15.1] port [1900] UDP packet read bytes [221] out of [221] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: upnp:rootdevice USN: uuid:63041253-1019-2006-1228-542f8a37f428::upnp:rootdevice

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] out of [266] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] out of [275] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] out of [338] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs Timeout expired while adding a new port mapping isGatewayInfoValid [192.168.15.1] port [5431] path [/igdevicedesc.xml] actionPort [5431] actionPath [] serviceTypeName [] port [5431] actionPort [5431] Verifying rule in IGD Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD 4013 TCP

HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

Could not find port mapping in IGD called addPortMappingEntry Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD deviceInfo->actionPath [] deviceInfo->serviceTypeName [] Content-Length was: 549 4013TCP4013192.168.15.10136000

HTTP/1.1 501 Not Implemented

Connection: close

Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

Timeout expired while trying to add the port mapping

Port Mappings: Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [0] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [1] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [2] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

//--------------------------------------------------------------------------- Test 3 - Router 1

//---------------------------------------------------------------------------

connectWiFi ...................... Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] out of [295] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] out of [266] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] out of [275] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] out of [338] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] TCP connection timeout while executing getIGDEventURLs Timeout expired while adding a new port mapping isGatewayInfoValid [192.168.15.1] port [5431] path [/igdevicedesc.xml] actionPort [5431] actionPath [] serviceTypeName [] port [5431] actionPort [5431] Verifying rule in IGD Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD 4018 TCP

HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

Could not find port mapping in IGD called addPortMappingEntry Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD deviceInfo->actionPath [] deviceInfo->serviceTypeName [] Content-Length was: 546 4018TCP4018192.168.15.101MiniDrome36000

HTTP/1.1 501 Not Implemented

Connection: close

Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

Timeout expired while trying to add the port mapping

Port Mappings: Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [0] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [1] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [2] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [3] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [4] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [5] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [6] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not ImplementedNot ImplementedThe HTTP Method is not implemented by this server.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/ofekp/TinyUPnP/pull/19#issuecomment-459754008, or mute the thread https://github.com/notifications/unsubscribe-auth/AMzIT9B0mt9C4SLhkEy32lhn04xKonJpks5vJFjBgaJpZM4aXNsV .

Lan-Hekary avatar Feb 01 '19 15:02 Lan-Hekary

Log router: captura de tela 2019-02-01 as 13 02 11

Debug:

Connected to VSE IP address: 192.168.15.10 Testing WiFi connection for [192.168.15.10] ==> GOOD Testing internet connection ==> GOOD isGatewayInfoValid [0.0.0.0] port [0] path [] actionPort [0] actionPath [] serviceTypeName [] Gateway info is not valid

Sending M-SEARCH to [239.255.255.250] Port [1900] M-SEARCH sent Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:InternetGatewayDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [285] ip [192.168.15.1] port [1900] UDP packet read bytes [285] out of [285] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:Layer3Forwarding: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:Layer3Forwarding:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [269] ip [192.168.15.1] port [1900] UDP packet read bytes [269] out of [269] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [301] ip [192.168.15.1] port [1900] UDP packet read bytes [301] out of [301] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCommonInterfaceConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCommonInterfaceConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:device:WANConnectionDevice: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:WANConnectionDevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [295] ip [192.168.15.1] port [1900] UDP packet read bytes [295] out of [295] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANEthernetLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANEthernetLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANIPConnection: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANIPConnection:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [289] ip [192.168.15.1] port [1900] UDP packet read bytes [289] out of [289] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=3000 EXT: LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-upnp-org:service:WANCableLinkConfig: USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:service:WANCableLinkConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [283] ip [192.168.15.1] port [1900] UDP packet read bytes [283] out of [283] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:device:WFADevice: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:device:WFADevice:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [293] ip [192.168.15.1] port [1900] UDP packet read bytes [293] out of [293] Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer: HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

HTTP/1.1 200 OK CACHE-CONTROL: max-age=1800 EXT: LOCATION: http://192.168.15.1:58231/simplecfg.xml SERVER:UPnP/1.0 BLR-TX4S/1.0 ST: urn:schemas-wifialliance-org:service:WFAWLANConfig: USN: uuid:63041253-1019-2006-1228-542f8a37f428::urn:schemas-wifialliance-org:service:WFAWLANConfig:

INTERNET_GATEWAY_DEVICE was not found Received packet of size [266] ip [192.168.15.1] port [1900] UDP packet read bytes [266] out of [266] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: upnp:rootdevice USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::upnp:rootdevice NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [275] ip [192.168.15.1] port [1900] UDP packet read bytes [275] out of [275] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE was not found Received packet of size [338] ip [192.168.15.1] port [1900] UDP packet read bytes [338] out of [338] Gateway packet content (many variations for debug): char at 0 N char at 1 O packetBuffer: NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

NOTIFY * HTTP/1.1 HOST: 239.255.255.250:1900 CACHE-CONTROL: max-age=3000 LOCATION: http://192.168.15.1:5431/igdevicedesc.xml SERVER: UPnP/1.0 BLR-TX4S/1.0 NT: urn:schemas-upnp-org:device:InternetGatewayDevice:1 USN: uuid:f5c1d177-62e5-45d1-a6e7-542f8a37f428::urn:schemas-upnp-org:device:InternetGatewayDevice:1 NTS: ssdp:alive

INTERNET_GATEWAY_DEVICE found IGD location found [http://192.168.15.1:5431/igdevicedesc.xml] 192.168.15.1 5431 /igdevicedesc.xml Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD called getIGDEventURLs deviceInfo->actionPath [] deviceInfo->path [/igdevicedesc.xml] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Timeout expired while adding a new port mapping isGatewayInfoValid [192.168.15.1] port [5431] path [/igdevicedesc.xml] actionPort [5431] actionPath [] serviceTypeName [] port [5431] actionPort [5431] Verifying rule in IGD Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD 4018 TCP

HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

Could not find port mapping in IGD called addPortMappingEntry Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD deviceInfo->actionPath [] deviceInfo->serviceTypeName [] Content-Length was: 546

4018TCP4018192.168.15.101MiniDrome36000

HTTP/1.1 501 Not Implemented

Connection: close

Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.

Timeout expired while trying to add the port mapping

Port Mappings: Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [0] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html

501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [1] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [2] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [3] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [4] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [5] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [6] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [7] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [8] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [9] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [10] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [11] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [12] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server. Connecting to IGD with host [192.168.15.1] port [5431] Connected to IGD Sending query for index [13] HTTP/1.1 501 Not Implemented Connection: close Content-type: text/html 501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server.rl l⸮⸮| ⸮l⸮|⸮l⸮b|⸮⸮⸮⸮r⸮b⸮b⸮⸮nn⸮lnn⸮⸮⸮bpp⸮⸮lrlrl

lucasromeiro avatar Feb 01 '19 16:02 lucasromeiro

Please let's attach text files. This PR is becoming too big because of log attachments.

ofekp avatar Feb 01 '19 18:02 ofekp

Hello, I did the second test! I used another modem! The conclusion was: With the "new" library worked! With the "old" library v2.0 did not work!

I saved the tests log to a file. I tested 2 times in each library by changing the code. only (https://github.com/Lan-Hekary/TinyUPnP/tree/maplist) worked, but it looks like they gave some error messages until they succeeded.

Do they need me to test on more modems? On the modem I tested yesterday, none worked. I did several tests. I did not understand why it did not work, upnp was active and alright. I hope logs help!

SECOND MODEM TEST.txt

lucasromeiro avatar Feb 02 '19 22:02 lucasromeiro

can you try another router .. I tried 2 on my side and they responded with 200 OK to the HTTP request .. This is an Implementation Error in your router I guess ..

I just tested on another router. The router I tested yesterday and upnp works. I already used this function on an IP security camera that I have. I have now put up the test on the second modem, totally different from the first one.

lucasromeiro avatar Feb 02 '19 22:02 lucasromeiro

@lucasromeiro I think you tested with the old library only .. the Log files Show a Debug that I Don't use any more : Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer:

So please update the library with https://github.com/Lan-Hekary/TinyUPnP/tree/maplist again this time I am confident it will work :D thank you for your time and effort man !!

Lan-Hekary avatar Feb 02 '19 22:02 Lan-Hekary

@lucasromeiro I think you tested with the old library only .. the Log files Show a Debug that I Don't use any more : Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer:

So please update the library with https://github.com/Lan-Hekary/TinyUPnP/tree/maplist again this time I am confident it will work :D thank you for your time and effort man !!

How strange. Why then did one library work and the other did not? do not understand. Did you look at the log file? one code worked and the other did not. strange that As for the test yesterday, none of them worked, I started using the new one and then I downloaded the old one. None worked. I can delete the old library and test the new one so there is no conflict. I will now do and test the nova. I'll delete everything from the old one before I will not have a problem!

lucasromeiro avatar Feb 02 '19 22:02 lucasromeiro

@lucasromeiro I think you tested with the old library only .. the Log files Show a Debug that I Don't use any more : Gateway packet content (many variations for debug): char at 0 H char at 1 T packetBuffer:

So please update the library with https://github.com/Lan-Hekary/TinyUPnP/tree/maplist again this time I am confident it will work :D thank you for your time and effort man !!

did not work see: test.txt

lucasromeiro avatar Feb 02 '19 22:02 lucasromeiro

I tracked the issue.. In the original implementation there was a check for URLBase but it was discarded .. in my modifications I enabled it .. but the router you tested does not have a URLBase tag in the description .. which is odd .. to get over this issue now until I investigate it further, please edit the line 646 in TinyUPnP.c file image

to boolean urlBaseFound = true;

and test again ..

Lan-Hekary avatar Feb 02 '19 23:02 Lan-Hekary

I tracked the issue.. In the original implementation there was a check for URLBase but it was discarded .. in my modifications I enabled it .. but the router you tested does not have a URLBase tag in the description .. which is odd .. to get over this issue now until I investigate it further, please edit the line 646 in TinyUPnP.c file image

to boolean urlBaseFound = true;

and test again ..

did not work see: test.txt

lucasromeiro avatar Feb 02 '19 23:02 lucasromeiro

I tracked the issue.. In the original implementation there was a check for URLBase but it was discarded .. in my modifications I enabled it .. but the router you tested does not have a URLBase tag in the description .. which is odd .. to get over this issue now until I investigate it further, please edit the line 646 in TinyUPnP.c file image

to boolean urlBaseFound = true;

and test again ..

I found an error in the previous test! I used the same code, but this time I filled in the field "#define FRIENDLY_NAME". In the previous test was "<FILL THIS!>". It does not seem to work if you have this string ... I have to fill something. In the other tests I had filled out. Only in the former that did not.

Here is the log: test.txt

lucasromeiro avatar Feb 02 '19 23:02 lucasromeiro