leonheart 发表于 2018-7-12 12:37:42

cisco三层交换和多个vlan通信配置实例

  !
  interface FastEthernet0/1
  switchport mode trunk
  !
  interface FastEthernet0/2
  switchport mode trunk
  !
  interface FastEthernet0/3
  switchport mode access
  !
  interface FastEthernet0/4
  switchport access vlan 2
  switchport mode access
  !
  interface FastEthernet0/5
  !
  interface FastEthernet0/6
  !
  interface FastEthernet0/7
  !
  interface FastEthernet0/8
  !
  interface FastEthernet0/9
  !
  interface FastEthernet0/10
  !
  interface FastEthernet0/11
  !
  interface FastEthernet0/12
  !
  interface FastEthernet0/13
  !
  interface FastEthernet0/14
  !
  interface FastEthernet0/15
  !
  interface FastEthernet0/16
  !
  interface FastEthernet0/17
  !
  interface FastEthernet0/18
  !
  interface FastEthernet0/19
  !
  interface FastEthernet0/20
  !
  interface FastEthernet0/21
  !
  interface FastEthernet0/22
  !
  interface FastEthernet0/23
  !
  interface FastEthernet0/24
  !
  interface Vlan1
  no ip address
  shutdown
  !
  !
  line con 0
  !
  line vty 0 4
  login
  line vty 5 15
  login
  !
  !
  end
  switch1:
  B#show running-config
  Building configuration...
  Current configuration : 1039 bytes
  !
  version 12.1
  no service timestamps log datetime msec
  no service timestamps debug datetime msec
  no service password-encryption
  !
  hostname B
  !
  !
  !
  interface FastEthernet0/1
  !
  interface FastEthernet0/2
  switchport mode trunk
  !
  interface FastEthernet0/3
  switchport mode access
  !
  interface FastEthernet0/4
  switchport access vlan 2
  switchport mode access
  !
  interface FastEthernet0/5
  !
  interface FastEthernet0/6
  !
  interface FastEthernet0/7
  !
  interface FastEthernet0/8
  !
  interface FastEthernet0/9
  !
  interface FastEthernet0/10
  !
  interface FastEthernet0/11
  !
  interface FastEthernet0/12
  !
  interface FastEthernet0/13
  !
  interface FastEthernet0/14
  !
  interface FastEthernet0/15
  !
  interface FastEthernet0/16
  !
  interface FastEthernet0/17
  !
  interface FastEthernet0/18
  !
  interface FastEthernet0/19
  !
  interface FastEthernet0/20
  !
  interface FastEthernet0/21
  !
  interface FastEthernet0/22
  !
  interface FastEthernet0/23
  !
  interface FastEthernet0/24
  !
  interface Vlan1
  no ip address
  shutdown
  !
  !
  line con 0
  !
  line vty 0 4
  login
  line vty 5 15
  login
  !
  !
  end
  三层核心交换机配置:
  Center#show running-config
  Building configuration...
  Current configuration : 1165 bytes
  !
  version 12.2
  no service timestamps log datetime msec
  no service timestamps debug datetime msec
  no service password-encryption
  !
  hostname Center
  !
  !
  !
  ip routing
  !
  !
  !
  !
  !
  !
  !
  !
  ip ssh version 1
  !
  !
  !
  !
  !
  !
  interface FastEthernet0/1
  switchport mode trunk
  !
  interface FastEthernet0/2
  !
  interface FastEthernet0/3
  !
  interface FastEthernet0/4
  !
  interface FastEthernet0/5
  !
  interface FastEthernet0/6
  !
  interface FastEthernet0/7
  !
  interface FastEthernet0/8
  !
  interface FastEthernet0/9
  !
  interface FastEthernet0/10
  !
  interface FastEthernet0/11
  !
  interface FastEthernet0/12
  !
  interface FastEthernet0/13
  !
  interface FastEthernet0/14
  !
  interface FastEthernet0/15
  !
  interface FastEthernet0/16
  !
  interface FastEthernet0/17
  !
  interface FastEthernet0/18
  !
  interface FastEthernet0/19
  !
  interface FastEthernet0/20
  !
  interface FastEthernet0/21
  !
  interface FastEthernet0/22
  !
  interface FastEthernet0/23
  !
  interface FastEthernet0/24
  !
  interface GigabitEthernet0/1
  !
  interface GigabitEthernet0/2
  !
  interface Vlan1
  ip address 192.168.1.1 255.255.255.0
  !
  interface Vlan2
  ip address 192.168.2.1 255.255.255.0
  !

  ip>  !
  !
  !
  !
  !
  !
  !
  !
  !
  line con 0
  line vty 0 4
  login
  !
  !
  !
  end
  PC0上测试:
  PC>ipconfig
  IP Address......................: 192.168.1.3
  Subnet Mask.....................: 255.255.255.0
  Default Gateway.................: 192.168.1.1
  PC>ping 192.168.2.1
  Pinging 192.168.2.1 with 32 bytes of data:
  Reply from 192.168.2.1: bytes=32 time=63ms TTL=255
  Reply from 192.168.2.1: bytes=32 time=63ms TTL=255
  Reply from 192.168.2.1: bytes=32 time=62ms TTL=255
  Reply from 192.168.2.1: bytes=32 time=62ms TTL=255
  Ping statistics for 192.168.2.1:
  Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
  Approximate round trip times in milli-seconds:
  Minimum = 62ms, Maximum = 63ms, Average = 62ms
页: [1]
查看完整版本: cisco三层交换和多个vlan通信配置实例