You are on page 1of 4

ESCUELA POLITECNICA DEL EJRCITO

SEDE LATACUNGA

ASIGNATURA: REDES TEMA: Conexin de redes con NETGUI

INTEGRANTES: CAIZA LUIS NIVEL: SEXTO B


ING. David Rivas

OBJETIVOS Lograr establecer enlaces entre varios terminales mediante la aplicacin del software Netgui MARCO TERICO NetGUI NetGUI facilita el rpido desarrollo de interfaces grficas de usuario. Envuelve diferentes API (GTK, maldiciones, SDL, httpd) para dibujar widgets. Tiene un servidor de compilacin en httpd para servir de interfaz grfica de usuario para escritorios remotos. Adems utiliza CCS y JavaScript para garantizar la httpd-GUI es tan sensible como las otras herramientas. No necesariamente necesita una salida de escritorio o grfica para producir GUI. Reduce programacin GUI hinchada a un puado de funciones que son tan fciles de entender como HTML. Tiene un entorno global "sin estrs" para saltar solicitantes molestos con las respuestas por defecto. Produce eventos que pueden ser procesados usando getopt ()! NetGUI est escrito en C, porttil y muy pequea. DESARROLLO Conexin Entre Dos Terminales Ifconfig eth0 192.168.0.1 netmask 255.255.255.0 Ifconfig eth0 192.168.0.2 netmask 255.255.255.0 ifconfig eth0 up ifconfig eth1 up

Conexin Entre Tres Terminales con Switch CONFIGURACI DEL SWITCH Ifconfig s1 down brctl delbr s1 echo 0 < /proc/sys/net/ipv4/ip_forward ifconfig eth0 up ifconfig eth1 up ifconfig eth2 up brctl addbr b1 brctl addif b1 eth0 brctl addif b1 eth1 brctl addif b1 eth2 ifconfig b1 up

brctl showmacs b1 brctl stp b1 on brctl set bridgeprio s1 0x1000 brctl show brctl showstp b1 AADIMOS DIRECCIONES IP A LOS TERMINALES Ifconfig eth0 192.168.0.1 netmask 255.255.255.0 Ifconfig eth0 192.168.0.2 netmask 255.255.255.0 Ifconfig eth0 192.168.0.3 netmask 255.255.255.0

Configuracin De Dos Redes Distintas Con Router Y Switch CONFIGURACI DEL SWITCH UNO Y DOS Ifconfig s1 down brctl delbr s1 echo 0 < /proc/sys/net/ipv4/ip_forward ifconfig eth0 up ifconfig eth1 up ifconfig eth2 up brctl addbr b1 brctl addif b1 eth0 brctl addif b1 eth1 brctl addif b1 eth2 ifconfig b1 up brctl showmacs b1 brctl stp b1 on brctl set bridgeprio s1 0x1000 brctl show brctl showstp b1 Ifconfig s2 down brctl delbr s2 echo 0 < /proc/sys/net/ipv4/ip_forward ifconfig eth0 up ifconfig eth1 up ifconfig eth2 up brctl addbr b2 brctl addif b2 eth0 brctl addif b2 eth1

brctl addif b2 eth2 ifconfig b2 up brctl showmacs b2 brctl stp b2 on brctl set bridgeprio s2 0x1000 brctl show brctl showstp b2 CONFIGURACION DEL ROUTER echo 1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp arp -i eth0 -Ds 10.0.0.3 eth0 netmask 255.255.255.255 route add -host 10.0.0.3 dev eth1 echo 1 > /proc/sys/net/ipv4/conf/eth1/proxy_arp arp -i eth1 -Ds 10.0.0.2 eth1 netmask 255.255.255.255

You might also like