Translate

martes, 28 de enero de 2014

Integración de Redes de Voz y Datos

Integración de Redes de Voz y Datos

Historia:

  • Alexander Graham Bell inventa el teléfono 1876 (Antonio Meucci 2002)
  • 1878 primera central telefónica (manual, se aprovecho la línea del telégrafo)
  • En 1880 Porfirio Díaz da a conocer la instalación del servicio telefónico de uso militar
  • 1892 primera central automática
  • 1947 se funda Telmex (Inicia en 1948, no existían los relevadores, no es automática es semiautomática)
  • 1980 Telmex inicia uso de sistemas digitales
Nota: en el Gobierno de Salinas de Gortari ya es privado Telmex.

RTPC (PSTN)

Red Telefónica pública Conmutada


Configuración de un ruter

Router> enable
Router# configure terminal
Router(config)# ip
Router(config-if)# interface fastethernet0/0
Router(config-if)# ip address 192.168.1.12 255.255.255.0
Router(config-if)# no shutdown
Router(config-if)# exit
Router(config)# exit
Router# host Bolillo
Bolillo# configure terminal
Bolillo(config)# serial 0/0/0
Bolillo(config-serial)# ip address 192.168.2.12 255.255.255.0
Bolillo(config-serial)# no shutdown
Bolillo(config-serial)# clock rater 128000
Bolillo(config-serial)# exit
Bolillo(config)# exit
Bolillo# show ip inteface brief
Bolillo# show ip route
Bolillo# copy running-config startup-config
Bolillo# show running-config
Bolillo#

jueves, 23 de enero de 2014

Para mayor duración de tus flores. For your flowers last longer.


Consejos:
  • Poner las flores en un lugar fresco, con luz y sin exponer al sol.
  • Rociar agua sobre tu arreglo por medio de un atomizador para mantenerlas frescas.
  • Cuando recibas un arreglo y venga sobre una esponja verde (oasis):
    • Mantén la esponja húmeda.
  • En caso de recibir un ramo o las flores en un florero:
    • Poner las flores en un florero, llenarlo a la mitad con agua.
    • El agua no debe llegar al follaje (las hojas de las flores).
    • Quita las hojas que lleguen al agua para que las bacterias no estén en el agua.
    • Corta en diagonal de 1 a 2 centímetros los tallos cada 3 días.
    • Lava los tallos si te es posible.
    • Cambiar el agua cada tercer día.


Tips:
  • Put the flowers in a cool place, with light and without exposing them to the sun.
  • Spray water on your arrangement by means of an atomizer to keep them cool.
  • When you receive an arrangement and come on a green sponge (oasis):
    • Keep the sponge moist.
  • In case of receiving a bouquet or flowers in a vase:
    • Put the flowers in a vase, fill it in half with water.
    • Water should not reach the foliage (the leaves of the flowers).
    • Remove the leaves that reach the water so that the bacteria are not in the water.
    • Cut the stems diagonally from 1 to 2 centimeters every 3 days.
    • Wash the stems if possible.
    • Change the water every third day

jueves, 16 de enero de 2014

Hola mundo en C, C++, Java, PHP

Vamos a ver como se escribe el famoso primer programa de la historia "Hola Mundo" en diferentes lenguajes de programación. Espero les sea de ayuda.

Hola mundo en C:

#include

int main ()
{
cout<<"Hola Mundo";

return 0;
}



Hola mundo en C++:

#include <stdio.h>

int main()
{
        printf("Hola mundo");
        return 0;
}



Hola mundo en Java:

public class Hello {
  public static void main(String[] args) {
    System.out.println("Hola mundo");
  }
}



Hola mundo en Php:

<html>
 <head>
  <title>Prueba de PHP</title>
 </head>
 <body>
 <?php echo '<p>Hola Mundo</p>'; ?>
 </body>
</html>

viernes, 10 de enero de 2014

Mi Primer Blog

Hola Mundo!


Vamos a compartir algunas cosas interesantes y de utilidad bueno pues, en el camino andamos.