Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
311 views

OSI TP4 Implementation For Linux Based System

I am working on implementing a connection between two computers. These two computers need to communicate using an OSI TP4 connection (Mac-Address to Mac-Address). I am using a Fedora 11 Linux system. ...
2
votes
3answers
138 views

Why Tcp faster than http?

I had a discussion with my manager, he said tcp is faster than http because of tcp is work on layer lower than http. Then I remember about the OSI Model that I learnt in university, so I think what ...
2
votes
5answers
2k views

Practical implications of OSI vs TCP/IP networking

I'm supposed to be setting up a 'geolocation based', ipv6, wireless mesh network to run on google android. I found what seems to be a good app to support the meshing: ...
1
vote
2answers
434 views

Application vs. Session Layer of OSI Model

I'm unsure if SO is the best place for this question, but here goes: Are login & logout procedures part of the Session layer or the Application Layer of the OSI model? Wikipedia says: The ...
1
vote
4answers
152 views

TCP compatibility: Why is TCP not compatible with packet broadcast and multicasting actions?

** http://en.wikipedia.org/wiki/User_Datagram_Protocol: ** "Unlike TCP, UDP is compatible with packet broadcast (sending to all on local network) and multicasting (send to all subscribers)."
1
vote
1answer
474 views

How to program the OSI reference model in language

I am studying networking and OSI model and all 7 layers. Like how each layer puts its own header and then removes on the receiver end. Is there any way that i can create the program in java or c or ...
1
vote
2answers
491 views

How Ethernet receives the bits and forms the Data Link Layer Frame

I am curious to know how the incoming bits at the physical layer are properly framed and sent to the data link layer. How the OS deal with this process. It would be grateful if you explained it in ...
1
vote
1answer
540 views

Looking for OSS for OSI Layer 2 Traffic Generator

I am looking for layer 2 traffic generator [open source]. Some OSS using winpcap or libpcap. Thanks a lot.
1
vote
5answers
2k views

OSI model - What's the presentation and session layer for?

So I feel I pretty well understand the application layer, and everything below (and including) the transport layer. The session and presentation layers, though, I don't fully understand. I've read ...
0
votes
3answers
54 views

intercept data received and sent from my computer?

I want to test a new protocol of communication, and for this i need to intercept every single package entering and leaving the network layer of the OSI model. any idea how to intercept those packages ...
0
votes
0answers
14 views

Validing frames and packets

I wish to test that the frames and packets I'm sending out from an application onto a com port are as expected. I wish to do these checks on the hdlc layer, transport layer and network layer. Can you ...
0
votes
1answer
87 views

What do the OSI layers do? [closed]

What does each of the OSI layers do, in brief?
0
votes
4answers
68 views

same functionality in osi model

Transport layer and datalink layer of OSI model provide similar functionality. If one of said was already there, why was the other needed
0
votes
0answers
103 views

Data type/structure for merging data in a datagridview

I have a currently have the user input a tag, I get the values for that tag (which are a timestamp/value pair) into a datagridview. I'd like the option to add multiple tags which would each get a ...
0
votes
1answer
167 views

Application-layer overhearing in ad hoc networks, much like TCP

I want to deploy an application on mobile devices participating in a WiFi ad hoc network that improves information robustness. The primary task is pretty simple: Send data (may be of bigger size) from ...
0
votes
1answer
234 views

Java OSI Transport Layer

I'm working on a project where I need to communicate with a device using the transport layer. The network connection will be OSI/CLNS over IP. I could be wrong, but I don't believe I can use ...
0
votes
1answer
221 views

risk related to using winPcap in place of socket

What I have read so far, winPcap allows you to bypass OS and bypass application and transport layer processing for TCP and provides direct access to the link layer. I am planning to use winpcap to do ...
0
votes
3answers
196 views

Access data passing through the networkcard using C++

Is there a way to control the data coming from the internet from specific address through the network card before it received by the kernel of the operating system using C++ or any language? In ...
0
votes
1answer
300 views

tco/ip,osi model,socket programming, networking

can anybody give me the names of best books(writer names also) on 1.tcp/ip 2.osi model 3.socket programming and a good book of networking?
0
votes
1answer
433 views

What is the Main Job of Logical Link Layer in Layer 2

I am curious to know what Logical Link Layer Does. what is its main significance. Is it part of Software ?. I am looking some detail's of LLC. Advance Thanks.
-1
votes
1answer
28 views

OSI model in VB.Net 2010 [closed]

I need to implement a communication protocol in VB.net 2010. Kind of an OSI model/architecture, but smaller using a vb class for each layer, how can I link them efficiently? Normally, the ...
-1
votes
1answer
40 views

How does layer 3 (network layer) recognize the IP address?

Layer 2 (Ethernet layer) recognizes the MAC address using ARP protocol. It sends a question to the whole network asking: "Which MAC address has the IP x?". That's how it recognizes the destination MAC ...
-1
votes
2answers
279 views

How do applications know which OSI protocol to use?

I would like to understand what happens when we type "google.com" in our browser wrt OSI model. What all protocols comes into picture AT EACH LAYER any how does they know which one to be used? Also ...