CCNA3 Skill Based Ass.
 




IT Certification FAQ

 
|
Home
|
Microsoft
|
CISCO
|
CompTIA
|
Exam/Study FAQ
|
Employment FAQ
| Links  | Forums  |
Book Reviews


FAQFAQ  SearchSearch  MemberlistMemberlist  UsergroupsUsergroups  RegisterRegister  ProfileProfile  Log in to check your private messagesPrivate messages  Log inLog in

CCNA3 Skill Based Ass.

 
Post new topic   Reply to topic    Forum Index -> CISCO
Author Message
Han420ok



Joined: 25 Jan 2007
Posts: 6

PostPosted: Tue Nov 20, 2007 7:27 am    Post subject: CCNA3 Skill Based Ass. Reply with quote

I have got a pdf introduction for the CCNA3 Skill based ass.
Is here any one who have took this exam,Please help me check is this one correct in the exam?
Please make sure this one is the exam. thanks a lot

Download in this link.
http://www.fihancn.com/CCNA3_SBAv3.pdf
Back to top
Han420ok



Joined: 25 Jan 2007
Posts: 6

PostPosted: Wed Nov 21, 2007 7:26 am    Post subject: Re: CCNA3 Skill Based Ass. Reply with quote

why do not have anyone tell me is it the exam questions?
Back to top
tbouhil



Joined: 11 Dec 2006
Posts: 11

PostPosted: Tue Jan 15, 2008 12:17 pm    Post subject: Re: CCNA3 Skill Based Ass. Reply with quote

yes my friend that is the correct CCNA 3 skill exam, but i don't have the answers.

did somebody send you the answers.
please let me know, i have the exam this Friday
Back to top
tbouhil



Joined: 11 Dec 2006
Posts: 11

PostPosted: Thu Jan 17, 2008 6:46 pm    Post subject: Re: CCNA3 Skill Based Ass. Reply with quote

Merida Router

Configure consoles and serial / Ethernet interfaces:
config t
hostname Merida
enable secret cisco
line con 0
password cisco
login
exec-timeout 0 0
line vty 0 4
password cisco
login
exit
interface fa0/0
ip address 192.168.1.1 255.255.255.0
no shutdown
interface s0
ip address 172.16.100.1 255.255.255.252
clock rate 56000
no shutdown
exit

Configure loopback address:
interface loopback 0
ip address 10.10.10.1 255.255.255.255
exit

copy running-config startup-config

Configure OSPF:
router ospf 50
network 172.16.100.0 0.0.0.3 area 0
log-adjacency-changes
exit
exit
ping 192.168.1.1

Configure bandwidth:
interface s0
bandwidth 64

Configure authentication:
config t
int s0
ip ospf message-digest-key 1 md5 fred
router ospf 50
area 0 authentication message-digest

Configure default route:
ip route 0.0.0.0 0.0.0.0 fa0/0
router ospf 50
default-information originate
exit
exit


Vargas Router

Configure consoles and serial interface:
config t
hostname Vargas
enable secret cisco
line con 0
password cisco
login
exec-timeout 0 0
line vty 0 4
password cisco
login
exit
interface s0
ip address 172.16.100.2 255.255.255.252
no shutdown

copy running-config startup-config

Configure loopback address:
interface Loopback 0
ip address 10.10.10.2 255.255.255.255
exit

Configure OSPF:
router ospf 50
network 172.16.1.0 0.0.0.255 area 0
network 172.16.10.0 0.0.0.255 area 0
network 172.16.20.0 0.0.0.255 area 0
network 172.16.100.0 0.0.0.3 area 0
log-adjacency-changes
exit
exit

Configure bandwidth:
interface s0
bandwidth 64

Configure authentication:
config t
int s0
ip ospf message-digest-key 1 md5 fred
router ospf 50
area 0 authentication message-digest

Configure VLAN trunk:
interface fa0/0
no ip address
no shutdown
interface fa0/0.1
encapsulation dot1q 1
ip address 172.16.1.1 255.255.255.0
interface fa0/0.10
encapsulation dot1q 10
ip address 172.16.10.1 255.255.255.0
interface fa0/0.20
encapsulation dot1q 20
ip address 172.16.20.1 255.255.255.0


Switch 1

Configure consoles:
config t
hostname Switch1
enable secret cisco
line con 0
password cisco
login
exec-timeout 0 0
line vty 0 15
password cisco
login

Configure layer 3 access to switch:
interface vlan 1
ip address 172.16.1.2 255.255.255.0
no shutdown
exit
ip default-gateway 172.16.1.1

Set switch as server and create / name VLANs:
vlan database
vtp domain group1
vtp server
vlan 10 name Faculty
vlan 20 name Student
exit

Configure trunking on fa0/1 (2950 series switch):
interface fa0/1
switchport mode trunk
(add - switchport trunk encapsulation dot1q - for 2900 series switches)
exit

Assign ports to VLANs:
interface fa0/5
switchport mode access
switchport access vlan 10
switchport port-security
switchport port-security maximum 1
switchport port-security violation shutdown

interface fa0/6
switchport mode access
switchport access vlan 10
switchport port-security
switchport port-security maximum 1
switchport port-security violation shutdown

interface fa0/7
switchport mode access
switchport access vlan 20
switchport port-security
switchport port-security maximum 1
switchport port-security violation shutdown

interface fa0/8
switchport mode access
switchport access vlan 20
switchport port-security
switchport port-security maximum 1
switchport port-security violation shutdown

Verify port security:
show port-security


Switch2

Configure consoles:
config t
hostname Switch2
enable secret cisco
line con 0
password cisco
login
exec-timeout 0 0
line vty 0 15
password cisco
login

Configure layer 3 access to switch:
interface vlan 1
ip address 172.16.1.3 255.255.255.0
no shutdown
exit
ip default-gateway 172.16.1.1

Set switch as client and create / name VLANs:
vlan database
vtp domain group1
vtp client
vlan 10 name Faculty
vlan 20 name Student
exit

Configure trunking on fa0/1 and fa0/2 (2950 series switch):
interface fa0/1
switchport mode trunk
(add - switchport trunk encapsulation dot1q - for 2900 series switches)
interface fa0/2
switchport mode trunk
(add - switchport trunk encapsulation dot1q - for 2900 series switches)
exit

Assign ports to VLANs:
interface fa0/5
switchport mode access
switchport access vlan 10
switchport port-security
switchport port-security maximum 1
switchport port-security violation shutdown

interface fa0/6
switchport mode access
switchport access vlan 10
switchport port-security
switchport port-security maximum 1
switchport port-security violation shutdown

interface fa0/7
switchport mode access
switchport access vlan 20
switchport port-security
switchport port-security maximum 1
switchport port-security violation shutdown

interface fa0/8
switchport mode access
switchport access vlan 20
switchport port-security
switchport port-security maximum 1
switchport port-security violation shutdown

Verify port security:
show port-security
exit
configure terminal
interface fastethernet0/1
switchport mode trunk
exit
configure terminal
interface fastethernet0/2
switchport mode trunk
exit
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Forum Index -> CISCO All times are GMT
Page 1 of 1

 

Copyright © 2002-2006 Web-S-Sense Pty. Ltd. All rights reserved.

Powered by phpBB
Advertising | Policies/Disclaimers | Contact us | Link to us


Featured Sites: Free Antivirus and Antispyware Info | Free PC Support | MCSE Directory