Difference between revisions of "ITT 2012/Activity2"

From Teknologisk videncenter
Jump to: navigation, search
m (Router project II)
m (Router project II)
Line 3: Line 3:
  
 
Build the network below in Packet Tracer and make a report explaining how it works.  
 
Build the network below in Packet Tracer and make a report explaining how it works.  
 +
[[Image:Router exercise II.png|600px|left|Routet network]]
  
  
 
+
=Example of router GW configuration=
[[Image:Router exercise II.png|600px|left|Routet network]]
+
<source lang=cli>
 
+
version 12.4
 +
hostname GW
 +
!
 +
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
 +
enable password class
 +
!
 +
interface Loopback0
 +
ip address 8.8.8.8 255.255.255.255
 +
!
 +
interface Loopback1
 +
ip address 8.8.4.4 255.255.255.255
 +
!
 +
interface Loopback2
 +
ip address 1.2.3.4 255.255.255.255
 +
!
 +
interface Loopback23
 +
ip address 1.1.1.1 255.255.255.255
 +
!
 +
interface FastEthernet0/0
 +
ip address 192.168.200.1 255.255.255.0
 +
duplex auto
 +
speed auto
 +
!
 +
router rip
 +
version 2
 +
redistribute static
 +
network 192.168.200.0
 +
default-information originate
 +
!
 +
ip classless
 +
ip route 0.0.0.0 0.0.0.0 Null0
 +
!
 +
line vty 0 4
 +
password cisco
 +
login
 +
</source>
 +
{{source cli}}
 
[[Category:ITT 2012]]
 
[[Category:ITT 2012]]

Revision as of 11:18, 4 December 2012

Router project II

Work together in groups between two and four.

Build the network below in Packet Tracer and make a report explaining how it works.

Routet network


Example of router GW configuration

version 12.4
hostname GW
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
enable password class
!
interface Loopback0
 ip address 8.8.8.8 255.255.255.255
!
interface Loopback1
 ip address 8.8.4.4 255.255.255.255
!
interface Loopback2
 ip address 1.2.3.4 255.255.255.255
!
interface Loopback23
 ip address 1.1.1.1 255.255.255.255
!
interface FastEthernet0/0
 ip address 192.168.200.1 255.255.255.0
 duplex auto
 speed auto
!
router rip
 version 2
 redistribute static 
 network 192.168.200.0
 default-information originate
!
ip classless
ip route 0.0.0.0 0.0.0.0 Null0 
!
line vty 0 4
 password cisco
 login