A network protocol defines rules and conventions for communication between network devices.
17
votes
4answers
752 views
Basic questions about SNMP
I'm learning about SNMP, and writing some applications using it. I have some basic questions about the protocol:
Do the agents store its state on the device itself?
If there is a trap set on an ...
13
votes
9answers
711 views
Two Computers Finding Each Other over Internet [closed]
Given two computers attached to the Internet that know nothing about each other before hand, is it possible for one computer to be able to broadcast a message so that the second computer could receive ...
12
votes
5answers
2k views
How does the Half-Life 2 multiplayer protocol work?
I was wondering how the Half-Life 2 multiplayer protocol works in mods like Counter-Strike: Source or Day Of Defeat: Source. I believe that they use some kind of obfuscation and proprietary ...
11
votes
7answers
4k views
How Can I Reverse Engineer a Network Protocol (Metatrader 4)?
I need to reverse engineer the Metatrader 4 network protocol. MT4 Server doesn't have an API and I have found zero documentation about its protocol.
Any ideas about where I can start?
I never done ...
10
votes
4answers
828 views
Fastest reliable way for Clojure (Java) and Ruby apps to communicate
We have cloud-hosted (RackSpace cloud) Ruby and Java apps that will interact as follows:
Ruby app sends a request to Java app. Request consists of map structure containing strings, integers, other ...
10
votes
10answers
3k views
Available Game network protocol definition languages and code generation
I've been looking for a good general purpose binary network protocol definition framework to provide a way to write real-time game servers and clients (think World Of Warcraft or Quake III) in ...
10
votes
7answers
2k views
Are stateless protocols considered better to use over stateful protocols?
I can see that stateful protocols lead to less botched together 'emulated state' like cookies.
but testing becomes a lot harder to ensure that your implementation is correct and reconnects, and ...
10
votes
4answers
8k views
Setting TIME_WAIT TCP
We're trying to tune an application that accepts messages via TCP and also uses TCP for some of it's internal messaging. While load testing, we noticed that response time degrades significantly (and ...
10
votes
5answers
3k views
What SNMP library for .NET makes traps, sets or gets simple?
What are the best SNMP libraries to use with .NET? Specifically for listening for traps or sending set or get requests.
10
votes
7answers
13k views
What is the difference between 0.0.0.0 and 255.255.255.255 in IPv4?
I've heard some people say the IPv4 broadcast address is 0.0.0.0 and others say it is 255.255.255.255... would someone explain the real-world difference?
9
votes
1answer
1k views
Java and CANopen
Background
Dear friends,
I am required to create a java program on a laptop to receive/send CANopen messages.
RJ45 is chosen to be the network's physical medium.
I am new to CANopen and Java ...
8
votes
7answers
257 views
I'm an aspiring developer who wants to build large systems like PayPal. Which path should I follow?
I'm a 2nd year computer engineering student in Ethiopia, Africa. We have taken C and C++ and i've taught my self HTML, CSS, PHP(cakePHP framework too) and little javascript, JQUERY and mySQL to ...
8
votes
4answers
1k views
Why is writing a closed TCP socket worse than reading one?
When you read a closed TCP socket you get a regular error, i.e. it either returns 0 indicating EOF or -1 and an error code in errno which can be printed with perror.
However, when you write a closed ...
8
votes
10answers
2k views
How can I learn _really_ low-level network programming?
So I want to learn all about networks. Well below the socket, down to raw sockets and stuff. And I want to understand hubs, routers, access points, etc. For example, I'd like to be able to write my ...
8
votes
1answer
1k views
Everything a c++ developer should know about network programming?
So I am doing a lot of high performance network programming using Boost::Asio (or just Asio if you will), and have a pretty solid grasp of the essentials of both TCP and UDP protocols. I am wondering ...
8
votes
6answers
9k views
What is the largest TCP/IP network port number allowable for IPv4?
What is the highest port number one can use?
7
votes
4answers
1k views
Designing a network protocol for realtime data / mobile devices
I'm faced with a following dilemma:
Design a new network protocol which would be used between a server (Java software) and desktop and mobile clients. The mobile clients include J2ME, Android and ...
7
votes
4answers
1k views
Bluetooth Protocol?
Ok, this might just be a dumb question, but I was wondering if Bluetooth follows TCP or UDP protocol? From my knowledge of network protocols (which isn't much), I would say that it doesn't follow ...
7
votes
8answers
2k views
Network Communication Design Patterns
I've come to realize that several questions I asked in the past, such as this really boil down to a more fundamental question.
Are there any well known design patterns for network communications and ...
7
votes
12answers
650 views
In protocol design, why would you ever use 2 ports?
When a TCP Server does a socket accept on a port, it gets a new socket to work with that Client.
The accepting socket remains valid for that port and can accept further clients on that port.
Why did ...
6
votes
4answers
2k views
How to send large data using C# UdpClient?
I'm trying to send a large amount of data (more than 50 MB) using C# UdpClient.
So at first I split the data into 65507 byte blocks and send them in a loop.
for(int i = 0; i < packetCount; i++)
...
6
votes
0answers
728 views
SCTP with Multihoming as a Drop In Replacement for TCP
SCTP has native multi-homing support which if I understand it correctly will automatically reroute your packets over a secondary NIC if the primary interface goes down. I duplicated this ...
6
votes
3answers
3k views
Tcp connections hang on CLOSE_WAIT status
Client close the socket first, when there is not much data from server, tcp connection shutdown is okay like:
FIN -->
<-- ACK
<-- FIN, ACK
ACK -->
When the server is busying ...
6
votes
2answers
1k views
Tools for experimental Protocol Design & Development?
Are there any open source, high level tools that would facilitate and simplify development of experimental network protocols (TCP/UDP) using a GUI?
Basically, something like a dynamic state machine ...
5
votes
5answers
1k views
Socket Protocol Fundamentals
Recently, while reading a Socket Programming HOWTO the following section jumped out at me:
But if you plan to reuse your socket for further transfers, you need to realize that there is no "EOT" ...
5
votes
5answers
591 views
What is the most lightweight way to transmit data over the internet using Python?
I have two computers in geographically dispersed locations, both connected to the internet. On each computer I am running a Python program, and I would like to send and receive data from one to the ...
5
votes
6answers
184 views
Is there an open source (read free) tool that allows me to see my browser's HTTP commands?
I am getting into HTTP protocol specifics and I would like to see/understand the calls my browser makes as it is being used. I use Firebug (with Firefox) to look at/debug AJAX interactions, etc, but ...
5
votes
4answers
2k views
How to send a WOL package(or anything at all) through a nic which has no IP address?
I'm trying to send a WOL package on all interfaces in order to wake up the gateway(which is the DHCP server, so the machine won't have an IP yet).
And it seems that I can only bind sockets to IP and ...
5
votes
5answers
1k views
Frameworks for network protocol fuzzing?
Can anyone recommend any programmer-friendly (i.e. extensible) frameworks or systems for performing network level packet fuzzing?
I'm looking for such a system where I can program in additional ...
5
votes
8answers
1k views
Most efficient way to programatically determine if a web domain is available?
I am writing some code to determine whether a network domain is registered. For example, I want to check if "Google123.com" is available. There are at least two ways I can do this programatically, but ...
4
votes
4answers
179 views
TCP Hole Punching
I'm trying to implement TCP hole punching with windows socket using mingw toolchain. I think the process is right but the hole doesn't seems to take. I used this as reference.
A and B connect to the ...
4
votes
0answers
96 views
Need Android ProtoBuf RPC Examples?
I'm learning about ProtoBufs and would like a good example of using it within Android and having the *.proto file(s) residing on a server. I cant find any decent tutorials that are complete for RPC ...
4
votes
2answers
118 views
Using embedded C library in Python emulation
Short Question
Which would be easier to emulate (in Python) a complex (SAE J1939) communication stack from an existing embedded C library:
1) Full port - meaning manually convert all of the C ...
4
votes
1answer
119 views
Does using //www.example.com in Javascript chose http/https protocol automatically
Leaving out the http seems to make it connect using HTTP, but I don't have a site with HTTPS enabled to test whether its true for HTTPS also.
Does using //www.example.com/test.js automatically pick ...
4
votes
3answers
745 views
Want to implement a VPN for just one application
I looking for add support to a VPN for my software,
I known PPTP and OpenVPN , the two makes a system-wide binding, installing a TAP driver so all applications route their traffic to then.
How could ...
4
votes
3answers
6k views
Java HTTP Client Request with defined timeout
I would like to make BIT (Built in tests) to a number of server in my cloud. I need the request to fail on large timeout.
How should I do this with java?
Trying something like the below does not ...
4
votes
3answers
304 views
How to design a high-level application protocol and data format for metadata syncing between devices and server?
I am looking for guidance on how to best think about designing a high-level application protocol to sync metadata between end-user devices and a server.
My goal: the user can interact with the ...
4
votes
3answers
114 views
Inform me when site (server) is online again
When I ping one site it returns "Request timed out". I want to make little program that will inform me (sound beep or something like that) when this server is online again. No matter in which ...
4
votes
3answers
195 views
Rationale behind ACKs and SEQs?
I am not sure if people find this obvious but I have two questions:
During the 3-way handshake, why is ACK = SEQ + 1 i.e. why am I ACKing for the next byte that I am expecting from the sender?
After ...
4
votes
3answers
631 views
How does iPhone app communicate with other devices?
We bought a Grace wifi radio. Grace has a cool iPhone app that connects to the radio and lets you control it.
My question is.. how the heck does this work? How can the iPhone connect to the ...
4
votes
5answers
2k views
Python TCP stack implementation
Is there a python library which implements a standalone TCP stack?
I can't use the usual python socket library because I'm receiving a stream of packets over a socket (they are being tunneled to me ...
4
votes
4answers
1k views
implementing ack over UDP?
We have a system (built in C) in place that performs communication over UDP. Recently we have found a necessity to guarantee delivery of packets. My question is: what would be the minimum additions ...
4
votes
6answers
4k views
Winsock UDP packets being dropped?
We have a client/server communication system over UDP setup in windows. The problem we are facing is that when the throughput grows, packets are getting dropped. We suspect that this is due to the ...
4
votes
7answers
2k views
Which Protocol is best for File Transfer
What is the best protocol I can use to transfer a Big file, Which should be fast and reliable.
it might have low bandwidth systems i need a file transmition across the india.the file size may be 100 ...
4
votes
2answers
5k views
How to measure network performance (how to benchmark network protocol)
First, a bit of background. There are many various comparison of distributed version control systems (DVCS) which compare size of repository, or benchmark speed of operations. I haven't found any that ...
4
votes
3answers
390 views
Application level checksumming as the tcp checksumming might be too weak?
This Paper (When the CRC and TCP checksum disagree) suggests that since the TCP checksumming algorithm is rather weak, there would occur an undetected error every 16 million to 10 billion packets ...
4
votes
3answers
585 views
Which encoding is used by the HTTP protocol?
When a browser sends an HTTP request to a web server, what encoding is used to encode the HTTP protocol on the wire? Is it ASCII? UTF8? or UTF16? Or does it specify which encoding it uses in a ...
4
votes
2answers
750 views
How can I reverse engineer an application's protocol?
I'm using an application (an instant messenger) which is not very popular. I'm trying to find the protocol that it uses. I know it's using TCP/IP but I want to find out all the commands that it is ...
4
votes
4answers
246 views
Protocol simplicity versus “properness”
I have another argument with a friend of mine.
Consider having a need to design a simplistic JSON-based protocol, which is basically used to send sort of events (messages) between parties.
Say, ...
4
votes
3answers
5k views
Where is the Don't Fragment Bit of the IP Flags used?
I am curious to know where the "Don't Fragment" [DF] Bit of the IP Flags is used. As fragmentation is invisible to higher layers and they don't care too.
I am also looking for an example.
Thanks a ...