用Packet Tracer模拟个网

Standard

隔段时间要拿出来用用,否则真的要忘记的…

路由器Firewall

Firewall#show running-config 
Building configuration...
 
Current configuration : 856 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Firewall
!
interface FastEthernet0/0
 ip address 192.10.10.1 255.255.255.0
 ip nat inside
 duplex auto
 speed auto
!
interface Serial0/0
 ip address 202.1.1.1 255.255.255.0
 ip nat outside
!
router rip
 version 2
 network 192.10.10.0
 default-information originate
 no auto-summary
!
ip nat inside source list 1 interface Serial0/0 overload
ip nat inside source static tcp 192.10.1.3 80 202.1.1.1 80
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0 
!
access-list 1 permit 192.10.1.0 0.0.0.255
access-list 1 permit 192.10.2.0 0.0.0.255
access-list 1 permit 192.10.3.0 0.0.0.255
access-list 1 permit 192.10.4.0 0.0.0.255
access-list 1 permit 192.10.10.0 0.0.0.255
!
no cdp run
!
line con 0
!
line aux 0
!
line vty 0 4
 login
!
end

ISP

ISP#show running-config 
Building configuration...
 
Current configuration : 441 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname ISP
!
interface FastEthernet0/0
 ip address 202.1.2.1 255.255.255.0
 duplex auto
 speed auto
!
interface Serial0/0
 ip address 202.1.1.2 255.255.255.0
 clock rate 64000
!
ip classless
!
no cdp run
!
line con 0
!
line aux 0
!
line vty 0 4
 login
!
end

中心交换CW

CW#show running-config 
Building configuration...
 
Current configuration : 1675 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname CW
!
ip routing
!
spanning-tree mode pvst
!
interface FastEthernet0/1
 no switchport
 ip address 192.10.10.2 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/2
 switchport trunk encapsulation dot1q
 switchport mode trunk
!
interface FastEthernet0/3
 switchport trunk encapsulation dot1q
 switchport mode trunk
!
interface FastEthernet0/4
 switchport trunk encapsulation dot1q
 switchport mode trunk
!
interface FastEthernet0/5
!
interface FastEthernet0/6
!
.
.
.
!
interface FastEthernet0/23
!
interface FastEthernet0/24
!
interface GigabitEthernet0/1
!
interface GigabitEthernet0/2
!
interface Vlan1
 ip address 192.10.0.2 255.255.255.0
!
interface Vlan2
 ip address 192.10.1.2 255.255.255.0
!
interface Vlan3
 ip address 192.10.2.2 255.255.255.0
!
interface Vlan4
 ip address 192.10.3.2 255.255.255.0
!
router rip
 version 2
 network 192.10.1.0
 network 192.10.2.0
 network 192.10.3.0
 network 192.10.4.0
 network 192.10.10.0
 no auto-summary
!
ip classless
!
line con 0
!
line aux 0
!
line vty 0 4
 login
!
end

服务器汇聚SW

SW#show running-config 
Building configuration...
 
Current configuration : 1244 bytes
!
version 12.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname SW
!
!
spanning-tree mode pvst
!
interface FastEthernet0/1
 switchport mode trunk
!
interface FastEthernet0/2
 switchport access vlan 2
 switchport mode access
!
interface FastEthernet0/3
 switchport access vlan 2
 switchport mode access
!
interface FastEthernet0/4
 switchport access vlan 2
 switchport mode access
!
interface FastEthernet0/5
 switchport access vlan 2
 switchport mode access
!
interface FastEthernet0/6
 switchport access vlan 2
 switchport mode access
!
.
.
.

一楼

Floor1#sh running-config 
Building configuration...
 
Current configuration : 1206 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Floor1
!
spanning-tree mode pvst
!
interface FastEthernet0/1
 switchport trunk encapsulation dot1q
 switchport mode trunk
!
interface FastEthernet0/2
 switchport access vlan 3
 switchport mode access
!
.
.
.

源文件

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.