PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Forums Hébergement > Forum Noms de domaine > comp.protocols.tcp-ip > why can't block physical address?
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
comp.protocols.tcp-ip TCP and IP network protocols.

why can't block physical address?

Réponse
 
LinkBack Outils de la discussion
Vieux 12/05/2006, 10h26   #1
samplestrategy@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut why can't block physical address?

hi, i often hear that "block ip", but i know every computer has an
unique physical address, why we can't block physical address? you
know,some counties, say,china, usually more than one user use the same
ip, maybe one of them does something ' wrong ', then get
punished, his ip is blocked. but at the same time, the other people who
use the same ip can't access some sites. that's not fair to them.
in a tcp connection, the receiver can get the source ip, namely,the
ip of the sender. i wonder does the receiver know the physical address
of the sender in a tcp connection?

  Réponse avec citation
Vieux 12/05/2006, 12h56   #2
Marcos Martinez Sancho
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: why can't block physical address?

samplestrategy@gmail.com dixit:

> hi, i often hear that "block ip", but i know every computer has an
> unique physical address, why we can't block physical address? you
> know,some counties, say,china, usually more than one user use the same
> ip, maybe one of them does something ' wrong ', then get
> punished, his ip is blocked. but at the same time, the other people who
> use the same ip can't access some sites. that's not fair to them.
> in a tcp connection, the receiver can get the source ip, namely,the
> ip of the sender. i wonder does the receiver know the physical address
> of the sender in a tcp connection?


The IP header only contains source and destination IP address, while the
TCP header contains source and destination port (which are correlated to
the application we're running).

However, TCP/IP is just a transport protocol that usually encapsulates
another low-level protocol, for instance, and Ethernet frame containing MAC
addresses.

Marcos




  Réponse avec citation
Vieux 12/05/2006, 13h40   #3
briggs@encompasserve.org
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: why can't block physical address?

In article <1147425974.336498.59970@y43g2000cwc.googlegroups. com>, samplestrategy@gmail.com writes:
> hi, i often hear that "block ip", but i know every computer has an
> unique physical address, why we can't block physical address? you
> know,some counties, say,china, usually more than one user use the same
> ip, maybe one of them does something ' wrong ', then get
> punished, his ip is blocked. but at the same time, the other people who
> use the same ip can't access some sites. that's not fair to them.
> in a tcp connection, the receiver can get the source ip, namely,the
> ip of the sender. i wonder does the receiver know the physical address
> of the sender in a tcp connection?


The receiver does not know and, in general, has no way to find out.

That's rather the point of protocol layering.

Each layer hides the irrelevant details of the layer below and presents
a simplified interface for the layer above to interact with.

Even if you managed to figure out a way to learn the bad guy's MAC
address and stick it on a blacklist there's nothing to stop him from
presentind a different forged new MAC address tomorrow and bypassing
your list.

Not only do you have no way to learn his MAC address, you have no way
to verify his MAC address.

And no, it is not the case that every computer has a unique physical
address.
  Réponse avec citation
Vieux 12/05/2006, 21h43   #4
robertwessel2@yahoo.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: why can't block physical address?


briggs@encompasserve.org wrote:
> In article <1147425974.336498.59970@y43g2000cwc.googlegroups. com>, samplestrategy@gmail.com writes:
> > hi, i often hear that "block ip", but i know every computer has an
> > unique physical address, why we can't block physical address? you
> > know,some counties, say,china, usually more than one user use the same
> > ip, maybe one of them does something ' wrong ', then get
> > punished, his ip is blocked. but at the same time, the other people who
> > use the same ip can't access some sites. that's not fair to them.
> > in a tcp connection, the receiver can get the source ip, namely,the
> > ip of the sender. i wonder does the receiver know the physical address
> > of the sender in a tcp connection?

>
> The receiver does not know and, in general, has no way to find out.
>
> That's rather the point of protocol layering.
>
> Each layer hides the irrelevant details of the layer below and presents
> a simplified interface for the layer above to interact with.
>
> Even if you managed to figure out a way to learn the bad guy's MAC
> address and stick it on a blacklist there's nothing to stop him from
> presentind a different forged new MAC address tomorrow and bypassing
> your list.
>
> Not only do you have no way to learn his MAC address, you have no way
> to verify his MAC address.
>
> And no, it is not the case that every computer has a unique physical
> address.



I think the last point deserves emphasis. IEEE-style assigned MAC
addresses are an artifact of some LANs. And in that scope the best we
can be fairly certain of is that all the machines on a single LAN (or
bridged/switched collection of LANs) will have unique MAC addresses.
But there is no hard requirement that these be globally unique, they're
even commonly changeable (the entire block of addresses beginning with
x'40' is reserved for such locally assigned addresses. Some (usually
high-end) hardware comes without assigned addresses at all, and you
*have* to assign an LAA which will certainly not be globally unique.
Plus there have been a bunch of cases of vendors failing to properly
assign globally unique MAC addresses to networking gear (and so long as
you don't get two devices with the same MAC address on the same LAN,
you pretty much fine).

Of course there are a huge number of non-LAN style connections in use,
many of which have no MAC address or anything like that (for example,
all the dial-up users in the world), and in some cases no IP address
assigned to the link either. And then you can bury all the "real"
stuff under a VPN too.

Oh, and of course there's no reason a machine can't have many MAC
addresses assigned to it, and little to prevent it from using different
ones for different packets in the same "conversation."

  Réponse avec citation
Vieux 13/05/2006, 02h52   #5
Barry Margolin
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: why can't block physical address?

In article <1147425974.336498.59970@y43g2000cwc.googlegroups. com>,
samplestrategy@gmail.com wrote:

> hi, i often hear that "block ip", but i know every computer has an
> unique physical address, why we can't block physical address? you
> know,some counties, say,china, usually more than one user use the same
> ip, maybe one of them does something ' wrong ', then get
> punished, his ip is blocked. but at the same time, the other people who
> use the same ip can't access some sites. that's not fair to them.
> in a tcp connection, the receiver can get the source ip, namely,the
> ip of the sender. i wonder does the receiver know the physical address
> of the sender in a tcp connection?


What's the "physical address" of a computer on a dialup ISP?

--
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
*** PLEASE don't copy me on replies, I'll read them in the group ***
  Réponse avec citation
Vieux 14/05/2006, 13h04   #6
q_q_anonymous@yahoo.co.uk
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: why can't block physical address?


samplestrategy@gmail.com wrote:
> hi, i often hear that "block ip", but i know every computer has an
> unique physical address, why we can't block physical address? you
> know,some counties, say,china, usually more than one user use the same
> ip, maybe one of them does something ' wrong ', then get
> punished, his ip is blocked. but at the same time, the other people who
> use the same ip can't access some sites. that's not fair to them.
> in a tcp connection, the receiver can get the source ip, namely,the
> ip of the sender. i wonder does the receiver know the physical address
> of the sender in a tcp connection?


somebody thought that by physical address you meant MAC Address.
Because, physical can mean physical LAN technology! infact it usually
does.

The physical address you mean, is not stored in data transmissions.
Nobody has a list of ALL IPs and their corresponding physical
addresses. Only each ISP knows that for his clients.

  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 12h29.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,14564 seconds with 14 queries