- Community Home
- >
- Networking
- >
- Legacy
- >
- Communications and Wireless
- >
- Re: TCP/TP
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2005 10:41 PM
12-28-2005 10:41 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2005 11:19 PM
12-28-2005 11:19 PM
Re: TCP/TP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2005 11:57 PM
12-29-2005 11:57 PM
Re: TCP/TP
The ip address is a logical address, and is used to send the data packets to the gateway/router that connects your computer to the internet. The gateway/router then translates from ip address to MAC address (using something known as arp - address resolution protocol) and send the data on to your computer using the MAC address.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2005 02:21 AM
12-30-2005 02:21 AM
Re: TCP/TP
Rich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2005 02:23 AM
12-30-2005 02:23 AM
Re: TCP/TP
More than likely if you check with your internet provider, you will find out that your IP address is Dynamic and can change at their will.
Rich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2005 04:39 AM
12-30-2005 04:39 AM
Solutionlet's start with the OSI layer, from bottom to top, PDNTSPA.
Application
Presentation
Session
Transport
Network
Data link
Physical
Physical referees to the actual transmission medium, copper, fibre, wireless, etc...
Data link is split into two sub layers, MAC Media Access Control and LLC Logical Link Control.
here's where MAC addresses come in. with a HUB, frames are rebroadcast over all lines, so there is no way to tell who's talking to whom. MAC addresses are used as a sender and receiver tags on the frames so systems know who's talking to who. a switch extends this more so, by unraveling the frame more, and only sending the frame to the proper MAC address.
the next layer up is Network. in TCP/IP the network protocol is IP Internet Protocol. while it is entirely possible send data directly over the MAC frame, it does not allow for multiple networks to be connected or to induce more then a fairly slim wire delay. a router corrects this by disassembling the data link layer, deciding where the packet should go based on it's IP address and writing a new data link layer for the next "hop".
in TCP/IP, the functions of the transport layer are split between the aforementioned IP, and the TCP and UDP session protocols. transport is responsible for getting packets over the network in the same way MAC is responsible for getting frames over the physical layer. there are other transport protocols, like ICMP, but they are not as important.
the Session layer is responsible for making a virtual channel for data to travel across, and ensuring that if any packets are lost, they get retransmitted. TCP, or Transmission Control Protocol, is a stateful session protocol, meaning that a channel must be negotiated between the two computers, and any data sent out must be acknowledged before moving on. UDP, or User Datagram Protocol is a stateless protocol, meaning that data can be sent off with no prior warning or delivery guarantee.
TCP is a phone call: "Hello" "Hello Bob, this is Adam" "Hello Adam, what's up" "just calling to tell you about the movie on Friday" "ok, got it, thanks Adam" "ok bob, bye-bye now" "bye"
UDP is a post card: "Bob- just a quick note to tell you about the movie on Friday"
in this way, TCP and UDP serve the same purpose for IP packets as LLC does for physical layer frames.
Presentation is the way data gets presented to applications, NFS, SMB, FTP, HTTP and Telnet are all good examples here. Mozilla and IE both use HTTP to get the actual data.
Application is, well, the application, IE or Mozilla as in the previous example.
hope that helps