تعلم من الصفر الاوامر الاساسية والرئيسية مع الشرح في بناء شبكة صغيرة. جزء الاول

Опубликовано: 01 Сентябрь 2026
на канале: IT.Hasbiro
594
22

اٌهم الاوامر في بناء شبكة صغيرة من رواتر وسويتش وحاسوبين. جزء الاول
لاتنسونا فضلاً في اعجاب واشتراك.
Enable
Show run
Sh interfaces
Sh ver
Sh vlan
Config t
no ip domain-lookup
hostname
service password-encryption
enable secret class
line con 0
password cisco
login
logging synchronous
line vty 0 15
password cisco
logging synchronous
login
exit
Switch1( config)# vlan 10
Switch1( config-vlan)# name Sales
Switch1( config-vlan)# exit
Switch1( config)# interface fa0/ 1
Switch1( config-if)# switchport mode access
Switch1( config-if)# switchport access vlan 10
Switch1( config-if)# exit
Switch1( config)# vlan 20
Switch1( config-vlan)# name Account
Switch1( config-vlan)# exit
Switch1( config)# interface fa0/ 2
Switch1( config-if)# switchport mode access
Switch1( config-if)# switchport access vlan 20
Switch1( config-if)# exit
Switch1( config)# interface fa0/ 3
Switch1( config-if)# switchport mode trunk
Switch1( config-if)# exit
Switch1( config-if)#do wr mem
Router
Router( config)# interface gig0/ 0.10
Router( config-subif)# encapsulation dot1q 10
Router( config-subif)# ip address 10.0.0.100 255.0.0.0
Router( config-subif)# exit
Router( config)# interface gig0/ 0.20
Router( config-subif)# encapsulation dot1q 20
Router( config-subif)# ip address 20.0.0.100 255.0.0.0
Router( config-subif)# exit
Router( config)# router rip
Router( config-router)# network 10.0.0.0
Router( config-router)# network 20.0.0.0
Router( config)# exit
Router( config)#do wr mem