Sunday, 18 January 2015


11 January.2015 ............>22 January.2015

1-Designing two networks each network has 8 hosts.


First network 192.168.10.0/24
Default gateway 192.168.10.1
First static host 192.168.10.2 ....>DNS server
First D-ip address 192.168.10.3
Last  D-ip address 192.168.10.10
------------------------------------

Second network is 192.168.20.0/24
Default gateway 192.168.20.1
First static host 192.168.20.2 ....>DHCP server
First D-ip address 192.168.20.3
Last  D-ip address 192.168.20.10
--------------------------------


2-Dedicate one DHCP server for the both networks.
3-Dedicate one DNS server for the both networks.
4-Simulation tasks using packet tracer.
5- Discussion the configurations with my supervisor (Have not done yet).
Video Simulation  1



Video Simulation  2 


Friday, 16 January 2015


15 December.2014 ------->8 January.2015

I was assigned to do backup/restore router configurations ,but before doing these tasks, i had to explain to my supervisor the way and the commands used for accomplish the given tasks by doing simulation using packet tracer.
Outlines were given by my supervisor to be shown in my simulation:

 Part1:
-Router named as Sabafon
-Two differant networks  first is 192.168.1.0 /24
              Second is        192.168.2.0 /24
-Config TFTP_SERVER 192.168.1.10
-Config telnet with 0 5
- Access Sabafon Router from   192.168.2.2
-Copy config_File to TFTP_SERVER as (any name)
print screen the saved file in the TFTP.
----------------
part2:
-Change the name of the router to UTeM
-Restore the backedup conf to the router
print screen
------------
Simulation Video
---------------------------

Configuration commands
Router> enable
Router# conf t
Router(config)# hostname sabafon
sabafon(config)# int f0/0
sabafon(config-if)#ip add 192.168.1.1 255.255.255.0
sabafon(config-if)# no shutdown

sabafon(config-if)#int f0/1
sabafon(config-if)#ip add 192.168.2.1 255.255.255.0
sabafon(config-if)# no shutdown
sabafon(config-if)# exit
sabafon(config)# line vty 0 5
sabafon(config-line)# password utem
sabafon(config-line)#login
sabafon(config-line)#end
sabafon#write

-------------------------
Router (Run file) contents


version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname sabafon
!
!
!
enable secret 5 $1$mERr$3HhIgMGBA/9qNmgzccuxv0
!
!
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
!
!
!
!
interface FastEthernet0/0
 ip address 192.168.1.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 192.168.2.1 255.255.255.0
 duplex auto
 speed auto
!
interface Vlan1
 no ip address
 shutdown
!
ip classless
!
!
!
!
!
!
!
line con 0
!
line aux 0
!
line vty 0 4
 password utem
 login
line vty 5
 password utem
 login
!
!
!
end