Sponsored Content
Special Forums IP Networking How to Network a PowerMac & a PC Post 777 by Neo on Wednesday 17th of January 2001 09:05:43 PM
Old 01-17-2001
Computers communcate cross-platform because they support a common (standard) network-protocol. In the case of the systems you mention, only TCP/IP is required to interoperate (provided you have them physically connected using standard link-layer protocols Smilie. There are myriad applications that run on top of TCP/IP based on your processing requirements.

[Edited by Neo on 01-17-2001 at 09:07 PM]
 

10 More Discussions You Might Find Interesting

1. OS X (Apple)

Mac OS X And The PowerMac G5

When they say that the G5 is the faster (more faster) than any UNIX Workstation that means Dual Processor Workstations right? (Stupid Question, I know) I heard theres one Super Super clusternode in a research and varsity joint in the US that will have over 1200 G5's chips in it? Medical,... (2 Replies)
Discussion started by: RedVenim
2 Replies

2. UNIX for Dummies Questions & Answers

HP-UX system & Network Administration II.PDF

Dear all, I plan to take HP-UX cert. EXAM. But, I cannot find hp-ux system & network administration II.pdf file Do you know where can I download?? Do you have? can you send to me? Thank you! (2 Replies)
Discussion started by: hkpcman
2 Replies

3. Linux Benchmarks

PowerMac 4400 YLD 3.0

CPU/Speed: PowerPC 603ev 200Mhz Ram: 92M EDO Ram Motherboard: Apple Bus: 2 PCI Cache: L1 32k and L2 256k Controller: ATA Disk: 2GB ATA Load: 1 user, running httpd, Xwin, various daemons Kernel: Linux 2.4.22-2f Kernel ELF?: ??? pgms: gcc versión 3.2.2 20030217 (Yellow Dog Linux 3.0 3.2.2-2a);... (0 Replies)
Discussion started by: clemare
0 Replies

4. IP Networking

How to find out why the network was down?, now the server is up & running

Hi there, solaris server was not reachable. Now the server is up & running I have to investigate the network logs (where i can get these logs)as such network issues are happening frequently. How to find why the netwrok has gone down ?? Thanx (1 Reply)
Discussion started by: Iqan Zahera
1 Replies

5. UNIX for Advanced & Expert Users

Network Shell Script & Blade Logic & Network Security

I am going to take up a position in Data & Network Security. I would need to write network shell scripts doing the following task: Going to around 2000 servers and findout which groups has access to each servers and which ids are there in each group that has access. I need to implement... (1 Reply)
Discussion started by: pinnacle
1 Replies

6. UNIX Benchmarks

Early PowerMac G5

Hardware Overview: Model Name: Power Mac G5 Model Identifier: PowerMac7,2 Processor Name: PowerPC 970 (2.2) Processor Speed: 1.8 GHz Number Of CPUs: 2 L2 Cache (per CPU): 512 KB Memory: 1.5 GB Bus Speed: 900 MHz Boot ROM Version:... (0 Replies)
Discussion started by: tnorth
0 Replies

7. What is on Your Mind?

Career in Networking & Network Security

Hii i want to make career in networking and i m new in this field could u plz help me what should i do (2 Replies)
Discussion started by: pawan_kumar
2 Replies

8. Hardware

Disk I/O & Network I/O

HI Team, I am working on ubuntu server through ssh, as its in US and i am in India. From last 4/5 days its working very slowly. It doen'st shows any load or more procsses, but works slowly. For that my senior told me to check Disk I/O & Network I/O of that server. Can anybody help me. I dont know... (0 Replies)
Discussion started by: paragnehete
0 Replies

9. Ubuntu

Disk I/O & Network I/O

HI Team, I am working on ubuntu server through ssh, as its in US and i am in India. From last 4/5 days its working very slowly. It doen'st shows any load or more procsses, but works slowly. For that my senior told me to check Disk I/O & Network I/O of that server. Can anybody help me. I dont... (1 Reply)
Discussion started by: paragnehete
1 Replies

10. Red Hat

hostapd & wired network ?

hi im using the following network with hostapd on the authenticator : Authentication server <---wired---> Authenticator(hostapd<----wired---> User (win XP with WinRadius) 1.100 -------- 1.200 , 0.13 ----- 0.12 and this is my configurations for hostapd : interface=eth1 driver=wired... (0 Replies)
Discussion started by: turner
0 Replies
UDP(4)							   BSD Kernel Interfaces Manual 						    UDP(4)

NAME
udp -- Internet User Datagram Protocol SYNOPSIS
#include <sys/socket.h> #include <netinet/in.h> int socket(AF_INET, SOCK_DGRAM, 0); DESCRIPTION
UDP is a simple, unreliable datagram protocol which is used to support the SOCK_DGRAM abstraction for the Internet protocol family. UDP sockets are connectionless, and are normally used with the sendto and recvfrom calls, though the connect(2) or connectx(2) call may also be used to fix the destination for future packets (in which case the recv(2) or read(2) and send(2) or write(2) system calls may be used). UDP address formats are identical to those used by TCP. In particular UDP provides a port identifier in addition to the normal Internet address format. Note that the UDP port space is separate from the TCP port space (i.e. a UDP port may not be ``connected'' to a TCP port). In addition broadcast packets may be sent (assuming the underlying network supports this) by using a reserved ``broadcast address''; this address is network interface dependent. Options at the IP transport level may be used with UDP; see ip(4). DIAGNOSTICS
A socket operation may fail with one of the following errors returned: [EISCONN] when trying to establish a connection on a socket which already has one, or when trying to send a datagram with the destina- tion address specified and the socket is already connected; [ENOTCONN] when trying to send a datagram, but no destination address is specified, and the socket hasn't been connected; [ENOBUFS] when the system runs out of memory for an internal data structure; [EADDRINUSE] when an attempt is made to create a socket with a port which has already been allocated; [EADDRNOTAVAIL] when an attempt is made to create a socket with a network address for which no network interface exists. SEE ALSO
connect(2), connectx(2), getsockopt(2), recv(2), send(2), socket(2), inet(4), intro(4), ip(4) HISTORY
The udp protocol appeared in 4.2BSD. 4.2 Berkeley Distribution March 18, 2015 4.2 Berkeley Distribution
All times are GMT -4. The time now is 04:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy