I don't mean to confuse anyone, but I understood the question to be which protocol handled fragmentation. I take that to mean which protocol fragments and reassembles packets (as opposed to files), and that protocol is IP.
http://www.closedsocket.com/
Pescho,
Sorry for the delayed reply (I haven't been checking this board very often). The host will fragment the payload, but it will not fragment TCP packets.
If I have 100k to send, my host may break those up into chunks of 8192 bytes each. Along the way, those 8k packets may be fragmented...
Hi Pescho,
Fragmentation is handled by IP. Although firewalls commonly analyze TCP headers, the TCP portion of a transmission is nothing but payload to the layer 2 and 3 devices handling it.
Hope that helps,
Jason Deckard
http://www.closedsocket.com/
Hello,
It is possible to change your network settings through the registry. Take a look at the entries under HKEY_LOCAL_MACHINE -> SYSTEM -> CurrentControlSet -> Services -> Tcpip -> Interfaces.
Each interface has its own settings, including IP address.
Good luck,
Jason Deckard...
Cheerful,
On many operating systems, this can be done with netstat. You can see a list of all your open ports with netstat -na from the command-line.
Regards,
Jason Deckard
http://www.closedsocket.com/
Actually, I apologize. I shouldn't post before having my morning coffee. The 125 address is, of course, completely valid on the 172.16.136.0 network.
Can you post any details about your router's configuration that might help identify the problem?
http://www.closedsocket.com/
If your mask is 11111111.11111111.11111111.10000000 (255.255.255.128), the host addresses on that subnet are 10000001 - 11111110 (129 - 254, with 255 as broadcast). This might be the reason why you cannot reach 125.
http://www.closedsocket.com/
Internet Explorer supports 3DES, which uses a key length of 168-bits. Also, the use of certificates in SSL is the defacto standard (the server normally identifies itself with a certificate and may request the client to do the same).
There is some bad information about SSL in this thread. If...
This is incorrect, as SSL is protocol independant. HTTP over SSL (HTTPS) is certainly common, but it is by no means the only way SSL or TLS can be deployed.
http://www.closedsocket.com/
Use the command netstat -o to see which process ID has the ports open, and then use the command tasklist to find out which application is associated with that process ID.
http://www.closedsocket.com/
Just a few quick suggestions:
-Check for loose cables.
-Connect to the router's administration page and see if it has a WAN side address. If so, see if you can ping any other machine on that subnet. If you can, it may well be an ISP issue.
-Bounce the LinkSys. I have one at home and every...
Ports allow applications to communicate over networks.
People often assume to know which application is using a port based on the port number. For example, port 23 is commonly used for telnet, and port 80 is commonly used by web servers. A list of commonly used ports can be found here...
Only four spaces are allocated for dest, but printf() will print until it reaches a null terminator or it attempts to read memory it doesn't have permission to read (causing the program to crash).
The characters that do not fit into dest are still written because your told strncpy() there was...
A slight correction: The length provided as the third argument to strncpy must leave room for a null terminator, so this is more appropriate:
strncpy(dest, source, sizeof(source) - 1);
Sorry for any confusion.
http://www.closedsocket.com/
You're passing in the size of source as the number of bytes to put into dest. That should read:
strncpy(dest, source, sizeof(dest));
http://www.closedsocket.com/
It is difficult to say because the speed of your hard drive is also a factor. The average effective rate on switched networks seems to be around 15 megabytes per second on 100baseT. Since you are going straight through using crossover, I imagine your rate will be better.
Perhaps testing a...
Kovacsa,
That is a programming error caused by attempting to perform a socket function (such as setsockopt()) on a descriptor that is not actually a socket.
Has the FTP software been recently ported to a different operating system?
Regards,
Jason Deckard
http://www.closedsocket.com/
If blocking it at your netgear isn't an option, consider updating your co-worker's HOSTS file. By adding an entry to resolve the Yahoo! Messenger server to a non-existant address on your LAN, he'll get connection time-outs when he tries to reach the messenger server.
Before you mess around...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.