do peers communicate via protocol?


 
Thread Tools Search this Thread
Special Forums IP Networking do peers communicate via protocol?
# 1  
Old 11-05-2009
do peers communicate via protocol?

actual transmission path is physical layer. do peers in n layer communicate on any issue using n layer protocol with each other. as far as i know this communication is said to be virtual.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Communicate with multiple process using named pipe

how to read and write on pipes to communicate with each other? (5 Replies)
Discussion started by: nimesh
5 Replies

2. Shell Programming and Scripting

Tcl: How to communicate serial port remotely

Hi all: i wanna automate a test written in Tcl, but stuck in serial communication. I had 2 PC, one is my local Windows machine, the other one is my test Linux server. The Linux box is connected to the test board via serial port. So I wanna send commands and get output through the... (4 Replies)
Discussion started by: allenxiao7
4 Replies

3. UNIX for Dummies Questions & Answers

Communicate to the OS(linux) using front end.

Hi guys , I want to develop a web page which is capable of executing the command on os and show the output on the browser.(Which involves reading and writing too.) I m using jsp language to develop the web page. How would i use it to communicate with my linux server? Any... (3 Replies)
Discussion started by: pinga123
3 Replies

4. Red Hat

unable to communicate with Linux machine

Hi all, I installed red hat 2.6.9-5 and when I am trying to ping it.I am able to ping any other machine in the network but unable to do vice-versa(means unable to ping this machine from any other machine) and getting the message -- please provide your valuable suggestions ... (2 Replies)
Discussion started by: smartgupta
2 Replies

5. Solaris

sun 8 unable to communicate through console

Hi : I have a e450 sun server that I just started up and I connect my laptop to the serial connection using a null modem cable and it just does not connect. I use hyperterminal, I dont connect a keyboard to the sun machine? Any ideas? Thanks a lot Al (3 Replies)
Discussion started by: alanj4
3 Replies

6. UNIX for Dummies Questions & Answers

simple app to communicate windows and linux/unix

Careful!!! This is a newbie question! Hello Community I'd like to develop a very simple application, on the one side (some windows pcs with a listener and sender) on the other side a linux server that does the same. Any suggestions about doing that? telnet, smbclient????? It must be... (3 Replies)
Discussion started by: ncatdesigner
3 Replies

7. Solaris

Communicate Serial Modem using non-Root user

Hi, I'm having a issue on communicating the serial GSM modem in Sun Solaris 5.9 To implement such connectiom, i'm using the "tip -115200 /dev/term/a" command and i successfully get the "connected" status And then i send a "AT" message and receive "OK" response from the modem :D Anyhow,... (0 Replies)
Discussion started by: darontan
0 Replies

8. UNIX for Advanced & Expert Users

Communicate with Domino from UNIX

How can i communicate with Domino Server using Unix. I want to use LDAP and JAVA. can u pls help me out. Thanks GP (1 Reply)
Discussion started by: gyanpsingh
1 Replies
Login or Register to Ask a Question
NATM(4) 						   BSD Kernel Interfaces Manual 						   NATM(4)

NAME
natm -- Native Mode ATM protocol layer DESCRIPTION
The BSD ATM software comes with a native mode ATM protocol layer which provides socket level access to AAL0 and AAL5 virtual circuits. To enable this protocol layer, add options NATM to your kernel configuration file and re-make the kernel (do not forget to do ``make clean''). NATM API
The NATM layer uses a struct sockaddr_natm to specify a virtual circuit: struct sockaddr_natm { u_int8_t snatm_len; /* length */ u_int8_t snatm_family; /* AF_NATM */ char snatm_if[IFNAMSIZ]; /* interface name */ u_int16_t snatm_vci; /* vci */ u_int8_t snatm_vpi; /* vpi */ }; To create an AAL5 connection to a virtual circuit with VPI 0, VCI 201 one would use the following: struct sockaddr_natm snatm; int s, r; s = socket(AF_NATM, SOCK_STREAM, PROTO_NATMAAL5); /* note: PROTO_NATMAAL0 is AAL0 */ if (s < 0) { perror("socket"); exit(1); } bzero(&snatm, sizeof(snatm)); snatm.snatm_len = sizeof(snatm); snatm.snatm_family = AF_NATM; sprintf(snatm.snatm_if, "en0"); snatm.snatm_vci = 201; snatm.snatm_vpi = 0; r = connect(s, (struct sockaddr *)&snatm, sizeof(snatm)); if (r < 0) { perror("connect"); exit(1); } /* s now connected to ATM! */ The socket() call simply creates an unconnected NATM socket. The connect() call associates an unconnected NATM socket with a virtual circuit and tells the driver to enable that virtual circuit for receiving data. After the connect() call one can read() or write() to the socket to perform ATM I/O. Internal NATM operation Internally, the NATM protocol layer keeps a list of all active virtual circuits on the system in natm_pcbs. This includes circuits currently being used for IP to prevent NATM and IP from clashing over virtual circuit usage. When a virtual circuit is enabled for receiving data, the NATM protocol layer passes the address of the protocol control block down to the driver as a receive ``handle''. When inbound data arrives, the driver passes the data back with the appropriate receive handle. The NATM layer uses this to avoid the overhead of a protocol control block lookup. This allows us to take advantage of the fact that ATM has already demultiplexed the data for us. CAVEATS
The NATM protocol support is subject to change as the ATM protocols develop. Users should not depend on details of the current implementa- tion, but rather the services exported. SEE ALSO
en(4), fatm(4), hatm(4), natmip(4), patm(4) AUTHORS
Chuck Cranor of Washington University implemented the NATM protocol layer along with the EN ATM driver in 1996 for NetBSD. BSD
December 29, 1997 BSD