Ayuda mascara e ip

Cyph3r

Tengo un ejercicio de Redes pero realmente estoy un poco perdido la pregunta es como apartir de una IP y una mascara saco la direccion de subred ?

Por ejemplo la Ip 19.30.80.5 y la mascara 255.255.192.0 que direccion de subred tiene ?

LOc0

This calculator will calculate the network address, the host address and the broadcast address for a given TCP/IP address and subnet mask.



These are actually fairly straightforward calculations. The easiest way to do it is to depict both the ip address and the subnet mask in binary. Take 19.30.80.5 with subnet mask 255.255.192.0 listed in binary:

      ip address: 00010011.00011110.01010000.00000101
     subnet mask: 11111111.11111111.11000000.00000000

If you do a binary AND between these two numbers, you get the network address:

      ip address: 00010011.00011110.01010000.00000101
     subnet mask: 11111111.11111111.11000000.00000000
	      -----------------------------------AND
 network address: 00010011.00011110.01000000.00000000

which translated back to dotted decimal notation is 19.30.64.0
[/i]

Sacado de -> http://www.subnetmask.info/

Salu2 ;)

Soltrac

jejeje yo soy profesor de redes y hace 3 semanas estuve intentando explicar esto. Los chavales me miraban con cara flipando

Cyph3r

ok muchas gracias ^^

Cyph3r

Vale ahora si que tengo un problemilla :(

Me pide hacer con esta IP de clase C 201.70.64.0 7 subredes ... pero mirandolo solo se podria hacer 2,4,8,16,... subredes no se puede hacer 7 dado que la mascara de subred al hacer

2n = 7 n = 2,8 es un decimal y no lo puedes representar luego decimalmente todas las ips..

javithelong

Coño, pos haz 8 y una no la usas ^^

Usuarios habituales

  • javithelong
  • Cyph3r
  • Soltrac
  • LOc0